Compare commits

...
Author SHA1 Message Date
Charles BochetandGitHub 58336fb70f fix: navigation menu item type backfill and frontend loading (#18730)
## Summary

- Move `BackfillNavigationMenuItemTypeCommand` from the 1-19 to the 1-20
upgrade path and split the DB transaction into two phases (data
backfill, then schema changes) to avoid the PostgreSQL error "cannot
ALTER TABLE because it has pending trigger events."
- Fix backfill logic to prefer `OBJECT` over `VIEW` for navigation menu
items that have `targetObjectMetadataId`, and correct already mis-typed
items. Tighten the `CHECK` constraint to enforce `viewId IS NULL` for
`OBJECT` type items.
- On the frontend, force `navigationMenuItems` into `staleEntityKeys`
when the server's `minimalMetadata` response omits the collection hash
(happens when the Redis cache hasn't been warmed after an upgrade),
ensuring the sidebar loads navigation items.

## Test plan

- [ ] Upgrade from 1.18 or 1.19 to 1.20 and verify the migration
completes without errors
- [ ] Verify navigation menu items of type `OBJECT` do not have a
`viewId` set in the database
- [ ] Sign out and sign in — confirm navigation menu items appear in the
sidebar on first load
- [ ] Verify `VIEW`-typed items also appear correctly in the sidebar

Made with [Cursor](https://cursor.com)
2026-03-18 11:56:19 +01:00
neo773andGitHub 87efaf2ff8 workspace:export command (#18695)
This PR adds a `workspace:export` server command for ongoing debug
tooling/administrative work

Demo Video shows
1. Exporting a sample workspace YC
2. Restoring Local DB Docker volume snapshot to Dropped YC Workspace
3. Importing exported SQL
4. Booting and navigating the imported Workspace



https://github.com/user-attachments/assets/0e1ac6cb-8ce1-440b-8b56-f81dcb27a9c8
2026-03-18 10:40:12 +00:00
Raphaël BosiandGitHub dedcf4e9b9 Support template variables in command menu item labels (#18707)
- Adds template variable interpolation (`${...}`) to command menu item
labels and short labels, enabling dynamic text like `Create new
${capitalize(objectMetadataItem.labelSingular)}` instead of static
`Create new record`.
- Supports `capitalize` and `lowercase` transform functions within
template expressions.
2026-03-18 10:26:58 +00:00
neo773andGitHub 928194cee4 fix Draft Email stuck Callout (#18719) 2026-03-18 10:19:33 +00:00
martmullandGitHub 13a357ab9f Publish new version (#18727)
as title
2026-03-18 09:54:54 +00:00
neo773andGitHub b1a7c5c4d6 Fix null connectedAccount crash in blocklist message deletion job (#18723)
Fixes TWENTY-SERVER-DRP
2026-03-18 10:41:56 +01:00
neo773andGitHub a8c445a1c2 Treat Microsoft Graph 400 with empty body as transient error (#18726)
Graph SDK occasionally returns a 400 with a null error message which is
not a real bad request but a transient hiccup.
Classify these as temporary errors so they get retried instead of
flooding Sentry.

Fixes TWENTY-SERVER-D3X
2026-03-18 10:41:10 +01:00
Charles BochetandGitHub a74edbf715 fix: route object color through standardOverrides for standard objects (#18717)
## Summary

- Fixes object `color` to use the `standardOverrides` mechanism for
standard objects, matching how `label`, `description`, and `icon`
already work
- Previously, color was written directly to the `objectMetadata.color`
column for **both** standard and custom objects, which meant user color
customizations on standard objects could be overwritten during metadata
syncs
- Custom objects continue to have `color` updated directly on the entity
(no change)

## Changes

| File | What changed |
|------|-------------|
| `object-metadata-standard-overrides-properties.constant.ts` | Added
`'color'` to `OBJECT_METADATA_STANDARD_OVERRIDES_PROPERTIES` so
`sanitizeRawUpdateObjectInput` routes color into `standardOverrides` for
standard objects |
| `resolve-object-metadata-standard-override.util.ts` | Extended to
support `'color'` as a key — handled like `icon` (no i18n/translation,
just direct override check) |
| `object-metadata.resolver.ts` | Added `@ResolveField` for `color` that
resolves through `resolveObjectMetadataStandardOverride`, matching the
existing `labelSingular`/`labelPlural`/`description`/`icon` resolve
fields |
| `flat-object-metadata-validator.service.ts` | Removed `'color'` from
`allowedOverrideKeys` for system objects since it now flows through
`standardOverrides` |
| `resolve-object-metadata-standard-override.util.spec.ts` | Added test
cases for custom object color, standard object color override, and
standard object color fallback |
| `successful-update-one-standard-object-metadata.integration-spec.ts` |
Added `'when updating color'` test case, included `color` in GraphQL
queries and `standardOverrides` fragment, reset color in `afterEach`
cleanup |

## How it works now

| Object type | Color update flow |
|---|---|
| **Custom** | Written directly to `objectMetadata.color` column |
| **Standard** | Stored in `objectMetadata.standardOverrides.color`,
resolved via `@ResolveField` at query time |

This is identical to how `label`, `description`, and `icon` have always
worked.

## Test plan

- [x] Unit tests pass
(`resolve-object-metadata-standard-override.util.spec.ts` — 21 tests)
- [x] Typecheck passes (`npx nx typecheck twenty-server`)
- [x] Lint passes (`npx nx lint:diff-with-main twenty-server`)
- [ ] Integration test snapshot regenerates correctly
(`successful-update-one-standard-object-metadata`)
- [ ] Verify standard object color editing from sidebar persists via
`standardOverrides`
- [ ] Verify custom object color editing from sidebar persists directly
on entity

Made with [Cursor](https://cursor.com)
2026-03-18 10:40:57 +01:00
Charles BochetandGitHub 0ae62898a3 fix: restructure navigationMenuItem type migration for safe upgrade path (#18722)
## Summary

- Restructures the `navigationMenuItem.type` column migration to follow
the established 3-step safe upgrade pattern (used for webhooks, files,
etc.)
- The previous migration added `type` as `NOT NULL DEFAULT 'VIEW'` with
a CHECK constraint in one step, which incorrectly assigned `VIEW` to all
existing rows regardless of their actual type (folders, records, links,
objects)
- Now: (1) migration adds column as nullable, (2) upgrade command
backfills correct type from existing columns (`viewId`,
`targetRecordId`, `targetObjectMetadataId`, `link`) and cleans
conflicting columns, (3) shared utility applies `NOT NULL` + `CHECK`
constraint

### Changes

**Modified:**
- `1773681736596-add-type-to-navigation-menu-item.ts` -- adds column as
nullable, no DEFAULT, no CHECK
- `navigation-menu-item.entity.ts` -- removed `default:
NavigationMenuItemType.VIEW` from column decorator
- `upgrade.command.ts` / `1-19-upgrade-version-command.module.ts` --
wired new command

**Created:**
- `1773681736596-makeNavigationMenuItemTypeNotNull.util.ts` -- shared
utility applying NOT NULL + CHECK constraint
- `1773822077682-make-navigation-menu-item-type-not-null.ts` --
migration calling the util with savepoint (succeeds on fresh installs,
swallows error on upgrades with NULL data)
- `1-19-backfill-navigation-menu-item-type.command.ts` -- upgrade
command that backfills type, cleans conflicting columns, then applies
constraints via the shared utility

### Execution flow

**Existing deployments (upgrade):**
1. TypeORM migration adds nullable `type` column, drops old CHECK
2. Savepoint migration fails gracefully (existing rows have NULL type)
3. 1-18 favorites migration creates items WITH correct type
4. 1-19 backfill command infers type for remaining NULL rows, cleans
conflicting columns, applies NOT NULL + CHECK

**Fresh installs:**
1. TypeORM migration adds nullable `type` column
2. Savepoint migration succeeds immediately (no data, constraints apply
cleanly)

## Test plan

- [x] `npx nx typecheck twenty-server` passes
- [x] `npx nx lint:diff-with-main twenty-server` passes
- [x] `npx nx test twenty-server` passes (477 suites, 4297 tests)
- [ ] Verify fresh database setup with `npx nx database:reset
twenty-server` applies both migrations and constraints correctly
- [ ] Verify upgrade path: existing navigation menu items get correct
type backfilled based on their columns

Made with [Cursor](https://cursor.com)
2026-03-18 10:39:50 +01:00
neo773andGitHub fb5b68f1d8 Skip threads with no participants in timeline formatting (#18725)
Threads with no FROM participants have no entry in the participants map,
causing extractParticipantSummary to receive undefined and crash

Fixes TWENTY-SERVER-FB8
2026-03-18 10:32:49 +01:00
Charles BochetandGitHub 2d4f6f8f6f fix: make 1.19 upgrade commands resilient to pre-existing data (#18716)
## Summary

- **BackfillMissingStandardViewsCommand**: When view validation fails
(e.g. a viewField references a field metadata that doesn't exist in the
workspace), log a warning and skip instead of throwing — so the
workspace upgrade continues with the remaining commands.
- **AddMissingSystemFieldsToStandardObjectsCommand**: Wrap both the
non-tsVector batch migration and each individual tsVector migration in
try-catch. If a field already exists (e.g. duplicate key on `name +
objectMetadataId + workspaceId`), the error is logged as a warning and
the command moves on to the next field.

These errors were observed during the 1.18 → 1.19 production upgrade for
workspaces with non-standard state (missing "owner" field metadata on
Opportunity, or searchVector fields already present with a different
universalIdentifier).

## Test plan

- [ ] Re-run upgrade on the affected production workspaces
- [ ] Verify upgrade completes successfully with warnings instead of
failures
- [ ] Confirm that workspaces which were already upgrading cleanly are
unaffected


Made with [Cursor](https://cursor.com)
2026-03-17 23:57:40 +01:00
Charles BochetandGitHub a82739cdb1 feat: optimistic metadata store updates for navigation menu items (#18710)
## Summary

- **Optimistic metadata store updates**: Replace `refetchQueries` with
direct `addToDraft`/`applyChanges` calls in create, update, and delete
navigation menu item mutation hooks for instant UI feedback. Client-side
UUID generation enables optimistic creates before the server responds.
- **SSE event enrichment with `targetRecordIdentifier`**: Introduce
`NavigationMenuItemRecordIdentifierService` to resolve record display
info (label, image) and enrich SSE metadata events at emission time, so
the sidebar shows record names immediately without a page refresh.
- **Centralized role permission resolution**: Add
`resolveRolePermissionConfigFromAuthContext` to `PermissionsService`,
removing duplicated role resolution logic from individual services.
- **Mutation fragments include `targetRecordIdentifier`**: Switch
create/update/delete mutations from `NavigationMenuItemFields` to
`NavigationMenuItemQueryFields` so the mutation response includes
`targetRecordIdentifier`, preventing a brief gap where RECORD favorites
are invisible in the sidebar.
- **Folder UI fixes**: Remove transparent border on
`StyledFolderContainer` that caused a 1px size inconsistency between
folder and non-folder items in Favorites. Make the folder kebab menu
hover-only instead of always visible.
2026-03-17 23:18:07 +01:00
Charles BochetandGitHub 058414fae5 Upgrade Ink to v6 and pause TUI on idle/error (#18705)
## Summary
- Upgrade `ink` from 5.1.1 to 6.8.0 in twenty-sdk (React 19 required, no
API breaking changes)
- Upgrade `react`/`react-dom` from 18 to 19 and
`@types/react`/`@types/react-dom` to 19 in twenty-sdk
- Enable `incrementalRendering` — only redraws changed lines instead of
full output, reducing flickering
- Pause the animation timer when the pipeline is not actively building
or syncing, so Ink stops re-rendering and the terminal becomes
scrollable (fixes inability to scroll up to read errors)
- Remove `AnimationProvider` context — derive animation frames from
`Date.now()` directly in `useStatusIcon`
- Export `NavigationMenuItemType` from `twenty-sdk` (re-exported from
`twenty-shared/types`)
- Add dedicated NavigationMenuItem integration tests to postcard-app
(unique positions, unique identifiers, valid object references)

## Test plan
- [ ] Run `twenty dev` and verify the TUI renders normally during
build/sync
- [ ] Trigger an error and verify the terminal output freezes and
becomes scrollable
- [ ] Verify that after fixing the error, the TUI resumes animating on
next build cycle
- [ ] Verify `import { NavigationMenuItemType } from "twenty-sdk"` works
- [ ] Run postcard-app integration tests and verify new
NavigationMenuItem tests pass
2026-03-17 20:24:39 +01:00
Thomas TrompetteGitHubgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>github-actionsCharles Bochet
994215e0dc Update store on data model mutation (#18684)
- enrich SSE events with relations
- remove queries from sse metadata events
- on sse event, manage store
- on object/field metadata changes, manage store

TODO left:
- fix other metadata items

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: github-actions <github-actions@twenty.com>
Co-authored-by: Charles Bochet <charles@twenty.com>
2026-03-17 19:32:19 +01:00
e62dfae741 i18n - translations (#18709)
Created by Github action

---------

Co-authored-by: github-actions <github-actions@twenty.com>
2026-03-17 19:08:21 +01:00
Charles BochetandGitHub 9f7c29bce8 refactor(twenty-front): unify Favorites and Workspace navigation menu item code (#18697)
## Summary

- Consolidate duplicated Favorites and Workspace navigation menu item
frontend code into a single unified codebase within
`navigation-menu-item/`
- Move all DnD-related code from `navigation/` module into
`navigation-menu-item/display/dnd/`, renaming `workspaceDndKit*` files
to `navigationMenuItemDndKit*`
- Unify duplicated components (DnD providers, DnD hooks, folder
components, orphan items, section shell) using a `NavigationSections`
enum to parameterize section-specific behavior
- Rename residual workspace-prefixed symbols
(`WorkspaceDndKitSortableItem`, `WorkspaceDndKitDroppableSlot`,
`useWorkspaceSectionItems`, etc.) to `navigationMenuItem`-prefixed
equivalents
- Clean `navigation/` module to only contain app-level concerns (drawer
layout, settings, routing)

### Key changes

| Before (duplicated) | After (unified) |
|---|---|
| `FavoritesDndKitProvider` + `WorkspaceDndKitProvider` |
`NavigationMenuItemDndKitProvider` with `section` prop |
| `useFavoritesDndKit` + `useWorkspaceDndKit` |
`useNavigationMenuItemDndKit(section)` |
| `FavoritesFolderItem` + `WorkspaceNavigationMenuItemsFolder` |
`NavigationMenuItemFolder` with `section` prop |
| `FavoritesOrphanItems` | `NavigationMenuItemOrphanItems` with
`section` prop |
| Separate section shells | Shared `NavigationMenuItemSection` with thin
wrappers |
| `WorkspaceDndKitSortableItem` | `NavigationMenuItemSortableItem` |
| `WorkspaceDndKitDroppableSlot` | `NavigationMenuItemDroppableSlot` |
| `useWorkspaceSectionItems` | `useNavigationMenuItemSectionItems` |
| `useWorkspaceFolderOpenState` | `useNavigationMenuItemFolderOpenState`
|

Net result: **~1650 lines deleted** across 51 files.

## Test plan

- [x] `npx nx typecheck twenty-front` passes
- [x] `npx nx lint twenty-front` passes (0 errors)
- [x] `npx nx test twenty-front` passes (763 suites, 4467 tests)
- [ ] Smoke test: Favorites section renders, DnD reorder works, folder
create/rename/delete works
- [ ] Smoke test: Workspace section renders, edit mode works, DnD
reorder works
- [ ] Smoke test: Add-to-navigation from side panel works for both
sections

Made with [Cursor](https://cursor.com)
2026-03-17 19:01:09 +01:00
5a51764b8e i18n - translations (#18704)
Created by Github action

Co-authored-by: github-actions <github-actions@twenty.com>
2026-03-17 17:38:17 +01:00
Raphaël BosiandGitHub abdab2fb7e [Command menu items] Create engine commands (#18681)
## Description

- Introduces a new engine command execution model that replaces the
previous approach of mapping `EngineComponentKey` to React components.
Instead, engine commands are now mounted headlessly via
`HeadlessEngineCommandMountRoot`, with their execution context populated
synchronously before mounting.
- Creates new headless command components
- Moves error handling from the SDK layer to the host app by wrapping
all mounted commands with a new `CommandMenuItemErrorBoundary`

The new flow works as follows:
- When a command menu item with an `engineComponentKey` is clicked,
`useCommandMenuItemFrontComponentCommands` calls
`useMountEngineCommand`, which synchronously reads the current context
store (object metadata, selected records, filters, view ID, etc.) and
writes a `MountedEngineCommandContext` into
`mountedEngineCommandsState`.
- The command is then mounted into `mountedEngineCommandsState`, which
triggers `HeadlessEngineCommandMountRoot` to render the corresponding
headless component from `ENGINE_COMPONENT_KEY_HEADLESS_COMPONENT_MAP`,
wrapped in `CommandMenuItemErrorBoundary`,
`ContextStoreComponentInstanceContext.Provider`, and
`EngineCommandComponentInstanceContext.Provider`.
- Each command component reads its execution context and delegates to
one of the 4 execution patterns: `HeadlessEngineCommandWrapperEffect`
(simple actions), `HeadlessConfirmationModalEngineCommandEffect`
(destructive actions needing confirmation),
`HeadlessNavigateEngineCommand` (GO_TO_* commands), or
`HeadlessOpenSidePanelPageEngineCommand` (SEARCH_RECORDS, ASK_AI,
VIEW_PREVIOUS_AI_CHATS).
- After execution, the command self-unmounts via
`useUnmountEngineCommand`, which removes the entry from
`mountedEngineCommandsState` and stops rendering the component.
2026-03-17 17:25:18 +01:00
bee474afdf i18n - translations (#18703)
Created by Github action

---------

Co-authored-by: github-actions <github-actions@twenty.com>
2026-03-17 16:47:38 +01:00
nitinandGitHub ab881350b2 refactor: unify layout customization mode (record pages + navigation) (#18640)
### What

Unifies record page layout editing and navigation menu editing into a
single global "layout customization" session. Dashboard editing stays
separate.

  ### How it works

  **Two edit mode systems, one context-based read:**
- `isLayoutCustomizationModeEnabledState` -- global atom for record
pages + navigation
- `isDashboardInEditModeComponentState` -- dashboard-only, independent
per-component atom
- `PageLayoutEditModeProvider` -- context that dispatches to
`RecordPageLayoutEditModeProvider` (reads global atom) or
`DashboardPageLayoutEditModeProvider` (reads component atom), one
component per file

  **Session registry + independent atoms:**
- `activeCustomizationPageLayoutIdsState` -- accumulates page layout IDs
as user navigates during customization (`string[]`)
- Save/cancel iterate the ID list and read each layout's draft/persisted
atoms independently
- Follows the same pattern as `settingsRoleIdsState` +
`settingsDraftRoleFamilyState`

  **Unified UI:**
- `LayoutCustomizationBar` replaces the old `NavigationMenuEditModeBar`
- Enter once -- edit record layouts + navigation -- save/cancel
everything together
- `useSaveLayoutCustomization` orchestrates sequential save: navigation
draft -- page layouts -- field widget groups
- Error snackbar on partial save failure (with TODO for future atomic
server mutation)

  **Draft protection during customization:**
- `PageLayoutRelationWidgetsSyncEffect` guarded -- only updates
persisted state from server, skips draft/currentLayouts while
customization is active
- `useExecuteTasksOnAnyLocationChange` skips draft reset when
customization mode is enabled
  - Command execution blocked during layout customization

  ### Cleanup
- Deleted `NavigationMenuEditModeBar`,
`isNavigationMenuInEditModeState`,
`isPageLayoutInEditModeComponentState`,
`useIsGlobalLayoutCustomizationActive`
- `DraftPageLayout` type changed from `Omit` to `Pick` (explicit fields)
- Removed save/cancel from `DefaultRecordCommandMenuItemsConfig` (bar
handles it now)
  - Extracted `useSaveFieldsWidgetGroups` from save orchestration
- Split `PageLayoutEditModeProvider` into 3 separate files (one
component per file, Twenty convention)

  ### Known issues
- **Stale deleted widget after save (pre-existing on `main`)**: Delete
widget -- save -- exit customization -- Apollo cache stale -- sync
effect overwrites Jotai from stale data -- widget reappears until
refresh. Separate PR needed, likely tied to the planned server-side
`saveLayoutCustomization` atomic endpoint.

  ### Open questions
- **Module location**: Layout customization hooks/states live in `/app`
-- should they move to their own `modules/layout-customization/`?
- **Atomic server mutation**: All save mutations are on metadata schema
(`createNavigationMenuItem`, `deleteNavigationMenuItem`,
`updateNavigationMenuItem`, `updatePageLayoutWithTabsAndWidgets`,
`upsertFieldsWidget`). A single `saveLayoutCustomization` endpoint could
make saves truly atomic.


https://github.com/user-attachments/assets/036ef542-97f3-485b-a68f-3726002c81fb
2026-03-17 16:24:09 +01:00
Thomas TrompetteandGitHub f38d72a4c2 Setup local instance on app creation (#18184)
Needs for `generate-api-key` command to be available on docker
2026-03-17 15:23:43 +01:00
3204175065 [FIx]: using the dynamic {objectLabelPlural} instead of hardcoded name (#18700)
Fixes #18607 

So previously i followed the frontend approach which led to
architectural mismatch.


- We already have the correct things implemented in the
`processViewNameWithTemplate` and in object metadata service. Found that
the seeder files had the hardcoded names instead of {objectLabelPlural}.
So changed all the hardcoded string to contain {objectLabelPlural} to
seed the new workspaces accurately.



- it will have a follow up PR for typeORM migration to migrate the
existing workspaces





https://github.com/user-attachments/assets/3b460f9f-c59d-49d1-8baa-17322d696ecc



I hope i am correct this time :)

Co-authored-by: Arun kumar <arunkumar@Aruns-MacBook-Air.local>
2026-03-17 14:16:23 +01:00
05a81c82a9 Add hotkeys to command menu items (#18682)
Add hotkeys column to the entity and plug it to the front end command
menu item display

---------

Co-authored-by: Charles Bochet <charles@twenty.com>
Co-authored-by: Charles Bochet <charlesBochet@users.noreply.github.com>
2026-03-17 14:09:19 +01:00
731e297147 Twenty sdk cli oauth (#18638)
<img width="1418" height="804" alt="image"
src="https://github.com/user-attachments/assets/de6c8222-6496-4a71-bc21-7e5e1269d5cb"
/>

---------

Co-authored-by: Félix Malfait <felix.malfait@gmail.com>
Co-authored-by: Félix Malfait <felix@twenty.com>
2026-03-17 11:43:17 +01:00
111debc1ce i18n - docs translations (#18692)
Created by Github action

Co-authored-by: github-actions <github-actions@twenty.com>
2026-03-17 11:14:55 +01:00
770a685556 i18n - translations (#18696)
Created by Github action

Co-authored-by: github-actions <github-actions@twenty.com>
2026-03-17 07:01:07 +01:00
Charles BochetandGitHub f1dfcfd163 refactor(twenty-front): reorganize NavigationMenuItem module into common/display/edit subfolders (#18691)
## Summary

- Reorganizes the `navigation-menu-item` frontend module from a flat
structure into `common/`, `display/`, and `edit/` subfolders with
type-specific subdirectories (`link/`, `folder/`, `object/`, `view/`,
`record/`)
- Every file is now in a leaf folder describing its type: `components/`,
`hooks/`, `utils/`, `types/`, or `constants/`
- Moves 14 NavigationMenuItem-related components out of
`object-metadata/` and `side-panel/pages/` into the
`navigation-menu-item` module where they belong
- Creates type-specific display utility functions (e.g.,
`getLinkNavigationMenuItemLabel`,
`getObjectNavigationMenuItemComputedLink`) to replace generic
switch-based functions
- Unifies the Favorites section drag-and-drop from `@hello-pangea/dnd`
to `@dnd-kit/react`, matching the Workspace section's DnD library
- Renames Favorites section components from `CurrentWorkspaceMember*` to
`Favorites*` for clarity
- Deletes unused `FavoritesDragDropProviderContent` and
`NavbarDragProvider`

## Test plan

- [x] `npx nx typecheck twenty-front` passes
- [x] `npx nx lint:diff-with-main twenty-front` passes (0 warnings, 0
errors)
- [x] `npx nx test twenty-front` passes (763 suites, 4467 tests)
- [ ] Verify favorites drag-and-drop still works in the UI (reorder
items, move between folders)
- [ ] Verify workspace edit mode drag-and-drop still works
- [ ] Verify "add to navigation" drag from command menu/side panel still
works
2026-03-17 06:46:50 +01:00
Charles BochetandGitHub 1be87eb97b chore: frontend dead code removal and naming cleanup (#18690)
## Summary

- **Delete 10 unused files**: 7 hooks (`useWorkflowRunUnsafe`,
`useGetViewById`, `useCreateViewFieldGroup`, `useDeleteViewFieldGroup`,
`useUpdateViewFieldGroup`, `useCreateManyViewFieldGroups`,
`useMoveViewColumns` + test), 1 component (`SettingsSummaryCard`), 1
utility (`createEventContext`)
- **Rename `objectMetadataItemsState` → `objectMetadataItemsSelector`**
across ~85 files to accurately reflect it is a derived selector (via
`createAtomSelector`), not a base Jotai atom

## Details

### Dead code removed

| Type | Name | Reason |
|------|------|--------|
| Hook | `useWorkflowRunUnsafe` | Never imported — duplicate of
`useWorkflowRun` without schema validation |
| Hook | `useGetViewById` | Never imported — `useViewById` is used
instead |
| Hook | `useCreateViewFieldGroup` | Never imported — CRUD done via
`usePerformViewFieldGroupAPIPersist` |
| Hook | `useDeleteViewFieldGroup` | Same as above |
| Hook | `useUpdateViewFieldGroup` | Same as above |
| Hook | `useCreateManyViewFieldGroups` | Same as above |
| Hook | `useMoveViewColumns` | Only imported by its own test — no
production usage |
| Component | `SettingsSummaryCard` | Never imported anywhere |
| Utility | `createEventContext` | Never imported anywhere |

### Rename

`objectMetadataItemsState` is created via `createAtomSelector` (it
derives from `objectMetadataItemsWithFieldsSelector`), so naming it
`*State` is misleading. Renamed to `objectMetadataItemsSelector` for
consistency with sibling selectors like
`objectMetadataItemsByNamePluralMapSelector`.
2026-03-17 00:49:37 +01:00
neo773andGitHub 1735c7527c fix 2FA UI layout (#18688)
/closes #18685
2026-03-17 00:33:16 +01:00
Charles BochetandGitHub 1bb642d7cd refactor: remove ProcessedNavigationMenuItem, derive display fields at point of use (#18687)
## Summary

- Removes `ProcessedNavigationMenuItem` type and the
`sortNavigationMenuItems` enrichment pipeline that pre-computed display
fields (label, link, icon, avatarUrl, etc.) for every navigation menu
item upfront
- Replaces with `filterAndSortNavigationMenuItems` (pure filter+sort
returning raw `NavigationMenuItem[]`) and small utility functions
(`getNavigationMenuItemLabel`, `getNavigationMenuItemComputedLink`,
`getNavigationMenuItemObjectNameSingular`) that components call on
demand
- Eliminates the redundant `itemType` field (was identical to the raw
`type` field) across ~30 consumer files
- Each type-specific renderer
(`NavigationDrawerItemForObjectMetadataItem`, `NavigationMenuItemIcon`,
link/folder components) now derives only the 1-2 display fields it
actually needs from the raw item + globally available Jotai atoms

Net result: -1199 / +1177 lines, 7 files deleted, 4 new utility files.
2026-03-17 00:33:06 +01:00
48285be164 i18n - translations (#18686)
Created by Github action

---------

Co-authored-by: github-actions <github-actions@twenty.com>
2026-03-17 00:09:04 +01:00
901 changed files with 21967 additions and 14533 deletions
+6 -4
View File
@@ -100,7 +100,7 @@ jobs:
create-twenty-app --version
mkdir -p /tmp/e2e-test-workspace
cd /tmp/e2e-test-workspace
create-twenty-app test-app --exhaustive --display-name "Test App" --description "E2E test app"
create-twenty-app test-app --exhaustive --display-name "Test App" --description "E2E test app" --skip-local-instance
- name: Install scaffolded app dependencies
run: |
@@ -151,22 +151,24 @@ jobs:
SEED_API_KEY: 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIyMDIwMjAyMC1lNmI1LTQ2ODAtOGEzMi1iODIwOTczNzE1NmIiLCJ1c2VySWQiOiIyMDIwMjAyMC1lNmI1LTQ2ODAtOGEzMi1iODIwOTczNzE1NmIiLCJ3b3Jrc3BhY2VJZCI6IjIwMjAyMDIwLTFjMjUtNGQwMi1iZjI1LTZhZWNjZjdlYTQxOSIsIndvcmtzcGFjZU1lbWJlcklkIjoiMjAyMDIwMjAtNDYzZi00MzViLTgyOGMtMTA3ZTAwN2EyNzExIiwidXNlcldvcmtzcGFjZUlkIjoiMjAyMDIwMjAtMWU3Yy00M2Q5LWE1ZGItNjg1YjUwNjlkODE2IiwidHlwZSI6IkFDQ0VTUyIsImF1dGhQcm92aWRlciI6InBhc3N3b3JkIiwiaWF0IjoxNzUxMjgxNzA0LCJleHAiOjIwNjY4NTc3MDR9.HMGqCsVlOAPVUBhKSGlD1X86VoHKt4LIUtET3CGIdik'
run: |
cd /tmp/e2e-test-workspace/test-app
npx --no-install twenty auth:login --api-key $SEED_API_KEY --api-url http://localhost:3000
npx --no-install twenty remote add --token $SEED_API_KEY --url http://localhost:3000
- name: Build scaffolded app
run: |
cd /tmp/e2e-test-workspace/test-app
npx --no-install twenty app:build
npx --no-install twenty build
test -d .twenty/output
- name: Execute hello-world logic function
run: |
cd /tmp/e2e-test-workspace/test-app
EXEC_OUTPUT=$(npx --no-install twenty function:execute --functionName hello-world-logic-function)
EXEC_OUTPUT=$(npx --no-install twenty exec --functionName hello-world-logic-function)
echo "$EXEC_OUTPUT"
echo "$EXEC_OUTPUT" | grep -q "Hello, World!"
- name: Run scaffolded app integration test
env:
TWENTY_API_URL: http://localhost:3000
run: |
cd /tmp/e2e-test-workspace/test-app
yarn test
+23 -23
View File
@@ -36,36 +36,36 @@ cd my-twenty-app
# Get help and list all available commands
yarn twenty help
# Authenticate using your API key (you'll be prompted)
yarn twenty auth:login
# Authenticate with your Twenty server
yarn twenty remote add --local
# Add a new entity to your application (guided)
yarn twenty entity:add
yarn twenty add
# Start dev mode: watches, builds, and syncs local changes to your workspace
# (also auto-generates typed CoreApiClient — MetadataApiClient ships pre-built with the SDK — both available via `twenty-sdk/clients`)
yarn twenty app:dev
yarn twenty dev
# Watch your application's function logs
yarn twenty function:logs
yarn twenty logs
# Execute a function with a JSON payload
yarn twenty function:execute -n my-function -p '{"key": "value"}'
yarn twenty exec -n my-function -p '{"key": "value"}'
# Execute the pre-install function
yarn twenty function:execute --preInstall
yarn twenty exec --preInstall
# Execute the post-install function
yarn twenty function:execute --postInstall
yarn twenty exec --postInstall
# Build the app for distribution
yarn twenty app:build
yarn twenty build
# Publish the app to npm or directly to a Twenty server
yarn twenty app:publish
yarn twenty publish
# Uninstall the application from the current workspace
yarn twenty app:uninstall
yarn twenty uninstall
```
## Scaffolding modes
@@ -110,10 +110,10 @@ npx create-twenty-app@latest my-app -m
## Next steps
- Run `yarn twenty help` to see all available commands.
- Use `yarn twenty auth:login` to authenticate with your Twenty workspace.
- Explore the generated project and add your first entity with `yarn twenty entity:add` (logic functions, front components, objects, roles, views, navigation menu items, skills).
- Use `yarn twenty app:dev` while you iterate — it watches, builds, and syncs changes to your workspace in real time.
- `CoreApiClient` (for workspace data via `/graphql`) is auto-generated by `yarn twenty app:dev`. `MetadataApiClient` (for workspace configuration and file uploads via `/metadata`) ships pre-built with the SDK. Both are available via `import { CoreApiClient, MetadataApiClient } from 'twenty-sdk/clients'`.
- Use `yarn twenty remote add --local` to authenticate with your Twenty workspace.
- Explore the generated project and add your first entity with `yarn twenty add` (logic functions, front components, objects, roles, views, navigation menu items, skills).
- Use `yarn twenty dev` while you iterate — it watches, builds, and syncs changes to your workspace in real time.
- `CoreApiClient` (for workspace data via `/graphql`) is auto-generated by `yarn twenty dev`. `MetadataApiClient` (for workspace configuration and file uploads via `/metadata`) ships pre-built with the SDK. Both are available via `import { CoreApiClient, MetadataApiClient } from 'twenty-sdk/clients'`.
## Build and publish your application
@@ -121,19 +121,19 @@ Once your app is ready, build and publish it using the CLI:
```bash
# Build the app (output goes to .twenty/output/)
yarn twenty app:build
yarn twenty build
# Build and create a tarball (.tgz) for distribution
yarn twenty app:build --tarball
yarn twenty build --tarball
# Publish to npm (requires npm login)
yarn twenty app:publish
yarn twenty publish
# Publish with a dist-tag (e.g. beta, next)
yarn twenty app:publish --tag beta
yarn twenty publish --tag beta
# Publish directly to a Twenty server (builds, uploads, and installs in one step)
yarn twenty app:publish --server https://app.twenty.com
# Deploy directly to a Twenty server (builds, uploads, and installs in one step)
yarn twenty deploy
```
### Publish to the Twenty marketplace
@@ -153,8 +153,8 @@ Our team reviews contributions for quality, security, and reusability before mer
## Troubleshooting
- Auth prompts not appearing: run `yarn twenty auth:login` again and verify the API key permissions.
- Types not generated: ensure `yarn twenty app:dev` is running — it autogenerates the typed client.
- Auth prompts not appearing: run `yarn twenty remote add --local` again and verify the API key permissions.
- Types not generated: ensure `yarn twenty dev` is running — it autogenerates the typed client.
## Contributing
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "create-twenty-app",
"version": "0.7.0",
"version": "0.8.0-canary.0",
"description": "Command-line interface to create Twenty application",
"main": "dist/cli.cjs",
"bin": "dist/cli.cjs",
+6
View File
@@ -27,6 +27,10 @@ const program = new Command(packageJson.name)
'--description <description>',
'Application description (skips prompt)',
)
.option(
'--skip-local-instance',
'Skip the local Twenty instance setup prompt',
)
.helpOption('-h, --help', 'Display this help message.')
.action(
async (
@@ -37,6 +41,7 @@ const program = new Command(packageJson.name)
name?: string;
displayName?: string;
description?: string;
skipLocalInstance?: boolean;
},
) => {
const modeFlags = [options?.exhaustive, options?.minimal].filter(Boolean);
@@ -72,6 +77,7 @@ const program = new Command(packageJson.name)
name: options?.name,
displayName: options?.displayName,
description: options?.description,
skipLocalInstance: options?.skipLocalInstance,
});
},
);
@@ -2,16 +2,10 @@ This is a [Twenty](https://twenty.com) application project bootstrapped with [`c
## Getting Started
First, authenticate to your workspace:
Start development mode — it auto-connects to your local Twenty server at localhost:3000:
```bash
yarn twenty auth:login
```
Then, start development mode to sync your app and watch for changes:
```bash
yarn twenty app:dev
yarn twenty dev
```
Open your Twenty instance and go to `/settings/applications` section to see the result.
@@ -21,19 +15,23 @@ Open your Twenty instance and go to `/settings/applications` section to see the
Run `yarn twenty help` to list all available commands. Common commands:
```bash
# Authentication
yarn twenty auth:login # Authenticate with Twenty
yarn twenty auth:logout # Remove credentials
yarn twenty auth:status # Check auth status
yarn twenty auth:switch # Switch default workspace
yarn twenty auth:list # List all configured workspaces
# Remotes & authentication
yarn twenty remote add --local # Connect to local Twenty server
yarn twenty remote add <url> # Connect to a remote server (OAuth)
yarn twenty remote list # List all configured remotes
yarn twenty remote switch # Switch default remote
yarn twenty remote status # Check auth status
yarn twenty remote remove <name> # Remove a remote
# Application
yarn twenty app:dev # Start dev mode (watch, build, sync, and auto-generate typed client)
yarn twenty entity:add # Add a new entity (object, field, function, front-component, role, view, navigation-menu-item)
yarn twenty function:logs # Stream function logs
yarn twenty function:execute # Execute a function with JSON payload
yarn twenty app:uninstall # Uninstall app from workspace
# Development
yarn twenty dev # Start dev mode (watch, build, sync, and auto-generate typed client)
yarn twenty build # Build the application
yarn twenty deploy # Deploy to a Twenty server
yarn twenty publish # Publish to npm
yarn twenty add # Add a new entity (object, field, function, front-component, role, view, navigation-menu-item)
yarn twenty exec # Execute a function with JSON payload
yarn twenty logs # Stream function logs
yarn twenty uninstall # Uninstall app from server
```
## Integration Tests
@@ -1,11 +1,16 @@
import { copyBaseApplicationProject } from '@/utils/app-template';
import { convertToLabel } from '@/utils/convert-to-label';
import { install } from '@/utils/install';
import {
type LocalInstanceResult,
setupLocalInstance,
} from '@/utils/setup-local-instance';
import { tryGitInit } from '@/utils/try-git-init';
import chalk from 'chalk';
import * as fs from 'fs-extra';
import inquirer from 'inquirer';
import kebabCase from 'lodash.kebabcase';
import { execSync } from 'node:child_process';
import * as path from 'path';
import { isDefined } from 'twenty-shared/utils';
@@ -22,6 +27,7 @@ type CreateAppOptions = {
name?: string;
displayName?: string;
description?: string;
skipLocalInstance?: boolean;
};
export class CreateAppCommand {
@@ -52,7 +58,29 @@ export class CreateAppCommand {
await tryGitInit(appDirectory);
this.logSuccess(appDirectory);
let localResult: LocalInstanceResult = { running: false };
if (!options.skipLocalInstance) {
const { needsLocalInstance } = await inquirer.prompt([
{
type: 'confirm',
name: 'needsLocalInstance',
message:
'Do you need a local instance of Twenty? Recommended if you not have one already.',
default: true,
},
]);
if (needsLocalInstance) {
localResult = await setupLocalInstance();
}
if (isDefined(localResult.apiKey)) {
this.runAuthLogin(appDirectory, localResult.apiKey);
}
}
this.logSuccess(appDirectory, localResult);
} catch (error) {
console.error(
chalk.red('Initialization failed:'),
@@ -179,16 +207,49 @@ export class CreateAppCommand {
console.log('');
}
private logSuccess(appDirectory: string): void {
private runAuthLogin(appDirectory: string, apiKey: string): void {
try {
execSync(
`yarn twenty auth:login --api-key "${apiKey}" --api-url http://localhost:3000`,
{ cwd: appDirectory, stdio: 'inherit' },
);
console.log(chalk.green('✅ Authenticated with local Twenty instance.'));
} catch {
console.log(
chalk.yellow(
'⚠️ Auto auth:login failed. Run `yarn twenty auth:login` manually.',
),
);
}
}
private logSuccess(
appDirectory: string,
localResult: LocalInstanceResult,
): void {
const dirName = appDirectory.split('/').reverse()[0] ?? '';
console.log(chalk.green('✅ Application created!'));
console.log('');
console.log(chalk.blue('Next steps:'));
console.log(chalk.gray(` cd ${dirName}`));
console.log(
chalk.gray(' yarn twenty auth:login # Authenticate with Twenty'),
);
console.log(chalk.gray(' yarn twenty app:dev # Start dev mode'));
if (localResult.apiKey) {
console.log(chalk.gray(' yarn twenty app:dev # Start dev mode'));
} else if (localResult.running) {
console.log(
chalk.gray(
' yarn twenty remote add --local # Authenticate with Twenty',
),
);
console.log(chalk.gray(' yarn twenty app:dev # Start dev mode'));
} else {
console.log(
chalk.gray(
' yarn twenty remote add --local # Authenticate with Twenty',
),
);
console.log(chalk.gray(' yarn twenty app:dev # Start dev mode'));
}
}
}
@@ -103,7 +103,6 @@ describe('scaffoldIntegrationTest', () => {
expect(content).toContain('TWENTY_API_KEY');
expect(content).not.toContain('TWENTY_TEST_API_KEY');
expect(content).toContain('TWENTY_API_URL');
expect(content).toContain('setup-test.ts');
expect(content).toContain('tsconfig.spec.json');
expect(content).toContain('integration-test.ts');
@@ -610,8 +610,9 @@ const createPackageJson = async ({
const devDependencies: Record<string, string> = {
typescript: '^5.9.3',
'@types/node': '^24.7.2',
'@types/react': '^18.2.0',
react: '^18.2.0',
'@types/react': '^19.0.0',
react: '^19.0.0',
'react-dom': '^19.0.0',
oxlint: '^0.16.0',
'twenty-sdk': createTwentyAppPackageJson.version,
};
@@ -0,0 +1,194 @@
import chalk from 'chalk';
import inquirer from 'inquirer';
import { execSync } from 'node:child_process';
import { isDefined } from 'twenty-shared/utils';
const INSTALL_SCRIPT_URL =
'https://raw.githubusercontent.com/twentyhq/twenty/main/packages/twenty-docker/scripts/install.sh';
const SERVER_CONTAINER = 'twenty-server-1';
const DB_CONTAINER = 'twenty-db-1';
const isDockerAvailable = (): boolean => {
try {
execSync('docker compose version', { stdio: 'ignore' });
return true;
} catch {
return false;
}
};
const isDockerRunning = (): boolean => {
try {
execSync('docker info', { stdio: 'ignore' });
return true;
} catch {
return false;
}
};
const isTwentyServerRunning = async (): Promise<boolean> => {
try {
const controller = new AbortController();
const timeoutId = setTimeout(() => controller.abort(), 3000);
const response = await fetch('http://localhost:3000/healthz', {
signal: controller.signal,
});
clearTimeout(timeoutId);
const body = await response.json();
return body.status === 'ok';
} catch {
return false;
}
};
const getActiveWorkspaceId = (): string | null => {
try {
const result = execSync(
`docker exec ${DB_CONTAINER} psql -U postgres -d default -t -c "SELECT id FROM core.workspace WHERE \\"activationStatus\\" = 'ACTIVE' LIMIT 1"`,
{ encoding: 'utf-8' },
).trim();
return result || null;
} catch {
return null;
}
};
const generateApiKeyToken = (workspaceId: string): string | null => {
try {
const output = execSync(
`docker exec -e NODE_ENV=development ${SERVER_CONTAINER} yarn command:prod workspace:generate-api-key -w ${workspaceId}`,
{ encoding: 'utf-8' },
);
const TOKEN_PREFIX = 'TOKEN:';
const tokenLine = output
.trim()
.split('\n')
.find((line) => line.includes(TOKEN_PREFIX));
if (!tokenLine) {
return null;
}
const tokenStartIndex =
tokenLine.indexOf(TOKEN_PREFIX) + TOKEN_PREFIX.length;
return tokenLine.slice(tokenStartIndex).trim();
} catch {
return null;
}
};
export type LocalInstanceResult = {
running: boolean;
apiKey?: string;
};
export const setupLocalInstance = async (): Promise<LocalInstanceResult> => {
console.log('');
console.log(chalk.blue('🐳 Setting up local Twenty instance...'));
if (await isTwentyServerRunning()) {
console.log(
chalk.green('✅ Twenty server is already running on localhost:3000.'),
);
} else {
if (!isDockerAvailable()) {
console.log(
chalk.yellow(
'⚠️ Docker Compose is not installed. Please install Docker first.',
),
);
console.log(chalk.gray(' See https://docs.docker.com/get-docker/'));
return { running: false };
}
if (!isDockerRunning()) {
console.log(
chalk.yellow(
'⚠️ Docker is not running. Please start Docker and try again.',
),
);
return { running: false };
}
try {
execSync(`bash <(curl -sL ${INSTALL_SCRIPT_URL})`, {
stdio: 'inherit',
shell: '/bin/bash',
});
} catch {
console.log(
chalk.yellow('⚠️ Local instance setup did not complete successfully.'),
);
return { running: false };
}
}
console.log('');
console.log(
chalk.blue(
'👉 Please create your workspace in the browser before continuing.',
),
);
const { workspaceCreated } = await inquirer.prompt([
{
type: 'confirm',
name: 'workspaceCreated',
message: 'Have you finished creating your workspace?',
default: true,
},
]);
if (!workspaceCreated) {
console.log(
chalk.yellow(
'⚠️ Skipping API key generation. Run `yarn twenty remote add --local` manually after creating your workspace.',
),
);
return { running: true };
}
console.log(chalk.blue('🔑 Generating API key for your workspace...'));
const workspaceId = getActiveWorkspaceId();
if (!isDefined(workspaceId)) {
console.log(
chalk.yellow(
'⚠️ No active workspace found. Make sure you completed the signup flow, then run `yarn twenty auth:login` manually.',
),
);
return { running: true };
}
const apiKey = generateApiKeyToken(workspaceId);
if (!isDefined(apiKey)) {
console.log(
chalk.yellow(
'⚠️ Could not generate API key. Run `yarn twenty auth:login` manually.',
),
);
return { running: true };
}
console.log(chalk.green('✅ API key generated for your workspace.'));
return { running: true, apiKey };
};
@@ -45,7 +45,6 @@ export default defineConfig({
include: ['src/**/*.integration-test.ts'],
setupFiles: ['src/__tests__/setup-test.ts'],
env: {
TWENTY_API_URL: 'http://localhost:3000',
TWENTY_API_KEY:
'${SEED_API_KEY}',
},
@@ -120,12 +119,13 @@ beforeAll(async () => {
fs.mkdirSync(TEST_CONFIG_DIR, { recursive: true });
const configFile = {
profiles: {
default: {
remotes: {
local: {
apiUrl: process.env.TWENTY_API_URL,
apiKey: process.env.TWENTY_API_KEY,
},
},
defaultRemote: 'local',
};
fs.writeFileSync(
@@ -5,13 +5,13 @@ This is a [Twenty](https://twenty.com) application project bootstrapped with [`c
First, authenticate to your workspace:
```bash
yarn twenty auth:login
yarn twenty remote add --local
```
Then, start development mode to sync your app and watch for changes:
```bash
yarn twenty app:dev
yarn twenty dev
```
Open your Twenty instance and go to `/settings/applications` section to see the result.
@@ -21,19 +21,19 @@ Open your Twenty instance and go to `/settings/applications` section to see the
Run `yarn twenty help` to list all available commands. Common commands:
```bash
# Authentication
yarn twenty auth:login # Authenticate with Twenty
yarn twenty auth:logout # Remove credentials
yarn twenty auth:status # Check auth status
yarn twenty auth:switch # Switch default workspace
yarn twenty auth:list # List all configured workspaces
# Remotes & Authentication
yarn twenty remote add --local # Authenticate with Twenty
yarn twenty remote status # Check auth status
yarn twenty remote switch # Switch default remote
yarn twenty remote list # List all configured remotes
yarn twenty remote remove <name> # Remove a remote
# Application
yarn twenty app:dev # Start dev mode (watch, build, sync, and auto-generate typed client)
yarn twenty entity:add # Add a new entity (object, field, function, front-component, role, view, navigation-menu-item)
yarn twenty function:logs # Stream function logs
yarn twenty function:execute # Execute a function with JSON payload
yarn twenty app:uninstall # Uninstall app from workspace
yarn twenty dev # Start dev mode (watch, build, sync, and auto-generate typed client)
yarn twenty add # Add a new entity (object, field, function, front-component, role, view, navigation-menu-item)
yarn twenty logs # Stream function logs
yarn twenty exec # Execute a function with JSON payload
yarn twenty uninstall # Uninstall app from workspace
```
## LLMs instructions
@@ -9,9 +9,9 @@
},
"packageManager": "yarn@4.9.2",
"scripts": {
"app:dev": "twenty app:dev",
"function:execute": "twenty function:execute",
"app:uninstall": "twenty app:uninstall",
"dev": "twenty dev",
"exec": "twenty exec",
"uninstall": "twenty uninstall",
"lint": "oxlint -c .oxlintrc.json .",
"lint:fix": "oxlint --fix -c .oxlintrc.json ."
},
@@ -9,16 +9,16 @@
},
"packageManager": "yarn@4.9.2",
"scripts": {
"auth:login": "twenty auth:login",
"auth:logout": "twenty auth:logout",
"auth:status": "twenty auth:status",
"auth:switch": "twenty auth:switch",
"auth:list": "twenty auth:list",
"app:dev": "twenty app:dev",
"entity:add": "twenty entity:add",
"function:logs": "twenty function:logs",
"function:execute": "twenty function:execute",
"app:uninstall": "twenty app:uninstall",
"remote:add": "twenty remote add --local",
"remote:status": "twenty remote status",
"remote:switch": "twenty remote switch",
"remote:list": "twenty remote list",
"remote:remove": "twenty remote remove",
"dev": "twenty dev",
"add": "twenty add",
"logs": "twenty logs",
"exec": "twenty exec",
"uninstall": "twenty uninstall",
"help": "twenty help",
"lint": "oxlint -c .oxlintrc.json .",
"lint:fix": "oxlint --fix -c .oxlintrc.json ."
@@ -9,16 +9,16 @@
},
"packageManager": "yarn@4.9.2",
"scripts": {
"auth:login": "twenty auth:login",
"auth:logout": "twenty auth:logout",
"auth:status": "twenty auth:status",
"auth:switch": "twenty auth:switch",
"auth:list": "twenty auth:list",
"app:dev": "twenty app:dev",
"entity:add": "twenty entity:add",
"function:logs": "twenty function:logs",
"function:execute": "twenty function:execute",
"app:uninstall": "twenty app:uninstall",
"remote:add": "twenty remote add --local",
"remote:status": "twenty remote status",
"remote:switch": "twenty remote switch",
"remote:list": "twenty remote list",
"remote:remove": "twenty remote remove",
"dev": "twenty dev",
"add": "twenty add",
"logs": "twenty logs",
"exec": "twenty exec",
"uninstall": "twenty uninstall",
"help": "twenty help",
"lint": "oxlint -c .oxlintrc.json .",
"lint:fix": "oxlint --fix -c .oxlintrc.json ."
@@ -9,16 +9,16 @@
},
"packageManager": "yarn@4.9.2",
"scripts": {
"auth:login": "twenty auth:login",
"auth:logout": "twenty auth:logout",
"auth:status": "twenty auth:status",
"auth:switch": "twenty auth:switch",
"auth:list": "twenty auth:list",
"app:dev": "twenty app:dev",
"entity:add": "twenty entity:add",
"function:logs": "twenty function:logs",
"function:execute": "twenty function:execute",
"app:uninstall": "twenty app:uninstall",
"remote:add": "twenty remote add --local",
"remote:status": "twenty remote status",
"remote:switch": "twenty remote switch",
"remote:list": "twenty remote list",
"remote:remove": "twenty remote remove",
"dev": "twenty dev",
"add": "twenty add",
"logs": "twenty logs",
"exec": "twenty exec",
"uninstall": "twenty uninstall",
"help": "twenty help",
"lint": "oxlint -c .oxlintrc.json .",
"lint:fix": "oxlint --fix -c .oxlintrc.json ."
+13 -13
View File
@@ -5,13 +5,13 @@ This is a [Twenty](https://twenty.com) application project bootstrapped with [`c
First, authenticate to your workspace:
```bash
yarn twenty auth:login
yarn twenty remote add --local
```
Then, start development mode to sync your app and watch for changes:
```bash
yarn twenty app:dev
yarn twenty dev
```
Open your Twenty instance and go to `/settings/applications` section to see the result.
@@ -21,19 +21,19 @@ Open your Twenty instance and go to `/settings/applications` section to see the
Run `yarn twenty help` to list all available commands. Common commands:
```bash
# Authentication
yarn twenty auth:login # Authenticate with Twenty
yarn twenty auth:logout # Remove credentials
yarn twenty auth:status # Check auth status
yarn twenty auth:switch # Switch default workspace
yarn twenty auth:list # List all configured workspaces
# Remotes & Authentication
yarn twenty remote add --local # Authenticate with Twenty
yarn twenty remote status # Check auth status
yarn twenty remote switch # Switch default remote
yarn twenty remote list # List all configured remotes
yarn twenty remote remove <name> # Remove a remote
# Application
yarn twenty app:dev # Start dev mode (watch, build, sync, and auto-generate typed client)
yarn twenty entity:add # Add a new entity (object, field, function, front-component, role, view, navigation-menu-item)
yarn twenty function:logs # Stream function logs
yarn twenty function:execute # Execute a function with JSON payload
yarn twenty app:uninstall # Uninstall app from workspace
yarn twenty dev # Start dev mode (watch, build, sync, and auto-generate typed client)
yarn twenty add # Add a new entity (object, field, function, front-component, role, view, navigation-menu-item)
yarn twenty logs # Stream function logs
yarn twenty exec # Execute a function with JSON payload
yarn twenty uninstall # Uninstall app from workspace
```
## Integration Tests
@@ -29,12 +29,13 @@ beforeAll(async () => {
fs.mkdirSync(TEST_CONFIG_DIR, { recursive: true });
const configFile = {
profiles: {
default: {
remotes: {
local: {
apiUrl: process.env.TWENTY_API_URL,
apiKey: process.env.TWENTY_API_KEY,
},
},
defaultRemote: 'local',
};
fs.writeFileSync(
@@ -5,13 +5,13 @@ This is a [Twenty](https://twenty.com) application project bootstrapped with [`c
First, authenticate to your workspace:
```bash
yarn twenty auth:login
yarn twenty remote add --local
```
Then, start development mode to sync your app and watch for changes:
```bash
yarn twenty app:dev
yarn twenty dev
```
Open your Twenty instance and go to `/settings/applications` section to see the result.
@@ -21,19 +21,19 @@ Open your Twenty instance and go to `/settings/applications` section to see the
Run `yarn twenty help` to list all available commands. Common commands:
```bash
# Authentication
yarn twenty auth:login # Authenticate with Twenty
yarn twenty auth:logout # Remove credentials
yarn twenty auth:status # Check auth status
yarn twenty auth:switch # Switch default workspace
yarn twenty auth:list # List all configured workspaces
# Remotes & Authentication
yarn twenty remote add --local # Authenticate with Twenty
yarn twenty remote status # Check auth status
yarn twenty remote switch # Switch default remote
yarn twenty remote list # List all configured remotes
yarn twenty remote remove <name> # Remove a remote
# Application
yarn twenty app:dev # Start dev mode (watch, build, sync, and auto-generate typed client)
yarn twenty entity:add # Add a new entity (object, field, function, front-component, role, view, navigation-menu-item)
yarn twenty function:logs # Stream function logs
yarn twenty function:execute # Execute a function with JSON payload
yarn twenty app:uninstall # Uninstall app from workspace
yarn twenty dev # Start dev mode (watch, build, sync, and auto-generate typed client)
yarn twenty add # Add a new entity (object, field, function, front-component, role, view, navigation-menu-item)
yarn twenty logs # Stream function logs
yarn twenty exec # Execute a function with JSON payload
yarn twenty uninstall # Uninstall app from workspace
```
## LLMs instructions
@@ -236,7 +236,7 @@ const handler = async (event: any) => {
},
});
// TODO: remove `as any` after running `yarn twenty app:dev` to regenerate the typed client
// TODO: remove `as any` after running `yarn twenty dev` to regenerate the typed client
const updateSummary = async (markdown: string) => {
await client.mutation({
updateCallRecording: {
@@ -1,5 +1,5 @@
---
title: خادم MCP},{
title: خادم MCP
description: اربط مساعدي الذكاء الاصطناعي بمساحة عمل Twenty الخاصة بك باستخدام بروتوكول سياق النموذج.
---
@@ -87,11 +87,11 @@ MCP حاليًا في مرحلة **ألفا** وهو متاح فقط في بعض
| **Cursor** | `.cursor/mcp.json` ضمن مشروعك، أو `~/.cursor/mcp.json` عالميًا |
| **ChatGPT** | فعِّل وضع المطوّر في **Settings > Apps & Connectors > Advanced settings**، ثم استخدم **Create** في **Settings > Apps & Connectors** لإضافة خادم MCP |
### ٢. الاتصال
### 2. الاتصال
أعِد تشغيل عميل MCP لديك (أو أعد تحميل ملف الإعداد). إذا كنت تستخدم OAuth فسيتم توجيهك إلى Twenty لتفويض الوصول. إذا كنت تستخدم مفتاح API فسيكون الاتصال فوريًا.
### ٣. ابدأ باستخدامه
### 3. ابدأ باستخدامه
اطلب من مساعد الذكاء الاصطناعي التفاعل مع نظام إدارة علاقات العملاء (CRM) لديك:
+2 -6
View File
@@ -23,7 +23,7 @@ module.exports = {
'./src/modules/databases/graphql/**/*.{ts,tsx}',
'./src/modules/analytics/graphql/**/*.{ts,tsx}',
'./src/modules/object-metadata/graphql/**/*.{ts,tsx}',
'./src/modules/navigation-menu-item/graphql/**/*.{ts,tsx}',
'./src/modules/navigation-menu-item/**/graphql/**/*.{ts,tsx}',
'./src/modules/command-menu-item/graphql/**/*.{ts,tsx}',
'./src/modules/attachments/graphql/**/*.{ts,tsx}',
'./src/modules/file/graphql/**/*.{ts,tsx}',
@@ -42,11 +42,7 @@ module.exports = {
overwrite: true,
generates: {
'./src/generated-metadata/graphql.ts': {
plugins: [
'typescript',
'typescript-operations',
'typed-document-node',
],
plugins: ['typescript', 'typescript-operations', 'typed-document-node'],
config: {
skipTypename: false,
scalars: {
File diff suppressed because one or more lines are too long
@@ -6,7 +6,7 @@ import { returnToPathState } from '@/auth/states/returnToPathState';
import { calendarBookingPageIdState } from '@/client-config/states/calendarBookingPageIdState';
import { useIsCurrentLocationOnAWorkspace } from '@/domain-manager/hooks/useIsCurrentLocationOnAWorkspace';
import { useDefaultHomePagePath } from '@/navigation/hooks/useDefaultHomePagePath';
import { objectMetadataItemsState } from '@/object-metadata/states/objectMetadataItemsState';
import { objectMetadataItemsSelector } from '@/object-metadata/states/objectMetadataItemsSelector';
import { useOnboardingStatus } from '@/onboarding/hooks/useOnboardingStatus';
import { useAtomStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomStateValue';
import { useIsWorkspaceActivationStatusEqualsTo } from '@/workspace/hooks/useIsWorkspaceActivationStatusEqualsTo';
@@ -40,7 +40,7 @@ export const usePageChangeEffectNavigateLocation = () => {
appPaths.some((appPath) => isMatchingLocation(location, appPath));
const objectNamePlural = useParams().objectNamePlural ?? '';
const objectMetadataItems = useAtomStateValue(objectMetadataItemsState);
const objectMetadataItems = useAtomStateValue(objectMetadataItemsSelector);
const objectMetadataItem = objectMetadataItems?.find(
(objectMetadataItem) => objectMetadataItem.namePlural === objectNamePlural,
);
+121 -102
View File
@@ -946,23 +946,23 @@ msgid "Add Item"
msgstr "Voeg item by"
#. js-lingui-id: cI2ZVO
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
msgid "Add item to folder"
msgstr ""
#. js-lingui-id: gaZXkv
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItemsFolder.tsx
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Add menu item"
msgstr ""
#. js-lingui-id: JbORSt
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Add menu item after"
msgstr ""
#. js-lingui-id: DKlI/M
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Add menu item before"
msgstr ""
@@ -1423,7 +1423,7 @@ msgid "All Objects"
msgstr "Alle objekte"
#. js-lingui-id: RoFE84
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
msgid "All objects are already in the sidebar"
msgstr ""
@@ -1438,7 +1438,7 @@ msgid "All set!"
msgstr "Alles reg!"
#. js-lingui-id: CHvT6e
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
@@ -1539,7 +1539,7 @@ msgid "alphabetical"
msgstr ""
#. js-lingui-id: eO7HSp
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectMenuItem.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectMenuItem.tsx
msgid "Already in navbar"
msgstr ""
@@ -1897,21 +1897,25 @@ msgstr ""
#. js-lingui-id: OJOR8q
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Are you sure you want to destroy these records? They won't be recoverable anymore."
msgstr "Is jy seker jy wil hierdie rekords vernietig? Hulle sal nie meer herstelbaar wees nie."
#. js-lingui-id: UK5TO6
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
msgid "Are you sure you want to destroy this record? It cannot be recovered anymore."
msgstr "Is jy seker jy wil hierdie rekord vernietig? Dit kan nie meer herstel word nie."
#. js-lingui-id: mcHVC1
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
msgid "Are you sure you want to restore these records?"
msgstr "Is jy seker jy wil hierdie rekords herstel?"
#. js-lingui-id: lmgkf0
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
msgid "Are you sure you want to restore this record?"
msgstr "Is jy seker jy wil hierdie rekord herstel?"
@@ -1952,6 +1956,7 @@ msgstr "Oplopend"
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Ask AI"
msgstr "Vra AI"
@@ -2559,13 +2564,11 @@ msgstr "Kan nie skandeer nie? Kopieer die"
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Cancel"
msgstr "Kanselleer"
#. js-lingui-id: HYLdMN
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Cancel Edition"
msgstr "Kanselleer uitgawe"
@@ -2966,7 +2969,7 @@ msgid "Collapse folder"
msgstr "Vou vouer toe"
#. js-lingui-id: jZlrte
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
msgid "Color"
msgstr ""
@@ -3896,10 +3899,9 @@ msgid "Customization"
msgstr "Pasmaak"
#. js-lingui-id: srRMnJ
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditObjectViewBase.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
msgid "Customize"
msgstr ""
@@ -3970,6 +3972,7 @@ msgstr "Donker"
#. js-lingui-id: ogQzcZ
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Dashboard duplicated successfully"
msgstr "Paneelbord suksesvol gedupliseer"
@@ -3983,7 +3986,7 @@ msgstr "Paneelborde"
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Data"
@@ -4305,7 +4308,7 @@ msgstr "verwyder"
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: 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/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
@@ -4392,7 +4395,7 @@ msgid "Delete field"
msgstr "Verwyder veld"
#. js-lingui-id: 97QUV6
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Delete Folder"
msgstr "Verwyder vouer"
@@ -4593,6 +4596,7 @@ msgstr "Vernietig {objectLabelPlural}"
#. js-lingui-id: kG5yO6
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Destroy Records"
msgstr "Vernietig rekords"
@@ -4932,9 +4936,9 @@ msgid "Edit Fields"
msgstr "Wysig velde"
#. js-lingui-id: uPHscS
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Edit folder"
msgstr ""
@@ -4955,9 +4959,9 @@ msgid "Edit Layout"
msgstr ""
#. js-lingui-id: /PoNoq
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Edit link"
msgstr ""
@@ -6120,11 +6124,13 @@ msgstr ""
#. js-lingui-id: NUmmdc
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Failed to duplicate dashboard"
msgstr "Kon nie paneelbord dupliseer nie"
#. js-lingui-id: WYXxQF
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
msgid "Failed to duplicate workflow"
msgstr ""
@@ -6188,9 +6194,9 @@ msgstr "Kon nie prent verwyder nie"
msgid "Failed to retry jobs. Please try again later."
msgstr "Kon nie werke herprobeer nie. Probeer asseblief later weer."
#. js-lingui-id: fuRtgB
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Failed to save navigation layout"
#. js-lingui-id: farFvy
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
msgid "Failed to save layout customization"
msgstr ""
#. js-lingui-id: y3HIOa
@@ -6308,7 +6314,7 @@ msgid "Fast Model"
msgstr ""
#. js-lingui-id: X9kySA
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItemFolders.tsx
#: src/modules/navigation-menu-item/display/sections/favorites/components/FavoritesSection.tsx
msgid "Favorites"
msgstr "Gunstelinge"
@@ -6580,8 +6586,8 @@ msgid "Flow"
msgstr "Vloei"
#. js-lingui-id: kNqMMd
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Folder"
msgstr ""
@@ -6591,8 +6597,8 @@ msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Folders"
msgstr "Lêers"
@@ -8022,7 +8028,7 @@ msgid "Layout"
msgstr "Uitleg"
#. js-lingui-id: W4nIBb
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
#: src/modules/layout-customization/components/LayoutCustomizationBar.tsx
msgid "Layout customization"
msgstr ""
@@ -8137,8 +8143,8 @@ msgid "Line Chart"
msgstr "Lyn grafiek"
#. js-lingui-id: yzF66j
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Link"
msgstr ""
@@ -8154,12 +8160,12 @@ msgid "Link copied to clipboard"
msgstr "Skakel na knipbord gekopieer"
#. js-lingui-id: vH3ZQY
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Link label"
msgstr ""
@@ -8798,7 +8804,7 @@ msgid "Most installed version"
msgstr ""
#. js-lingui-id: 3Ib6FN
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move down"
msgstr ""
@@ -8822,12 +8828,12 @@ msgid "Move to a folder"
msgstr ""
#. js-lingui-id: JCPOml
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move to folder"
msgstr ""
#. js-lingui-id: QyioBP
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move up"
msgstr ""
@@ -9073,9 +9079,9 @@ msgid "New Field"
msgstr "Nuwe Veld"
#. js-lingui-id: 96G6Re
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "New folder"
msgstr ""
@@ -9115,11 +9121,11 @@ msgid "New record"
msgstr "Nuwe rekord"
#. js-lingui-id: x6Ckh1
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/hooks/useOpenAddItemToFolderPage.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useNavigationMenuItemEditOrganizeActions.ts
#: src/modules/navigation-menu-item/edit/hooks/useOpenAddItemToFolderPage.ts
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
msgid "New sidebar item"
msgstr ""
@@ -9306,7 +9312,7 @@ msgid "No currency"
msgstr "Geen geldeenheid"
#. js-lingui-id: DKVJFE
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "No custom views available"
msgstr ""
@@ -9418,12 +9424,12 @@ msgid "No Files"
msgstr "Geen Lêers Nie"
#. js-lingui-id: pYblOw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folder"
msgstr "Geen vouer"
#. js-lingui-id: 6XMhqL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folders available"
msgstr ""
@@ -9510,7 +9516,7 @@ msgid "No object found"
msgstr ""
#. js-lingui-id: YFHO2u
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "No objects with views found"
msgstr ""
@@ -9587,14 +9593,14 @@ msgid "No Results"
msgstr "Geen Resultate"
#. js-lingui-id: AxPAXW
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/side-panel/components/SidePanelList.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No results found"
msgstr "Geen resultate gevind nie"
@@ -9619,12 +9625,12 @@ msgid "No Select field"
msgstr "Geen kiesveld nie"
#. js-lingui-id: RQ6tfU
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
msgid "No system objects available"
msgstr ""
#. js-lingui-id: Yf4rVG
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
msgid "No system objects with views found"
msgstr ""
@@ -9832,9 +9838,9 @@ msgstr "objek"
#: 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/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Object"
msgstr "Objek"
@@ -9894,9 +9900,9 @@ msgstr ""
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "Objects"
msgstr "Objekte"
@@ -10076,7 +10082,7 @@ msgid "Open side panel"
msgstr ""
#. js-lingui-id: OV5wZZ
#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx
#: src/modules/navigation-menu-item/display/sections/components/NavigationDrawerOpenedSection.tsx
msgid "Opened"
msgstr "Oopgemaak"
@@ -10148,7 +10154,7 @@ msgid "Organization plan"
msgstr ""
#. js-lingui-id: nV6twc
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Organize"
msgstr ""
@@ -10158,9 +10164,9 @@ msgstr ""
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: 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
msgid "Other"
msgstr "Ander"
@@ -10234,7 +10240,7 @@ msgid "Overview"
msgstr "Oorsig"
#. js-lingui-id: LtI9AS
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOwnerSection.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOwnerSection.tsx
msgid "Owner"
msgstr ""
@@ -10427,6 +10433,8 @@ msgstr "Vernietig rekord permanent"
#. js-lingui-id: 35dBYb
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
msgid "Permanently Destroy Record"
msgstr "Vernietig rekord permanent"
@@ -10437,6 +10445,7 @@ msgstr "Vernietig rekords permanent"
#. js-lingui-id: YyP8vD
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Permanently Destroy Records"
msgstr "Vernietig rekords permanent"
@@ -10958,7 +10967,7 @@ msgstr "rekord"
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Record"
msgstr "Rekord"
@@ -11134,14 +11143,16 @@ msgstr "Afstand"
msgid "Remove"
msgstr "Verwyder"
#. js-lingui-id: 0Urj9q
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "Remove {navigationMenuItemCount} navigation menu item?"
#. js-lingui-id: XABoh4
#. placeholder {0}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Remove {0} navigation menu items?"
msgstr ""
#. js-lingui-id: Ef5jwi
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "Remove {navigationMenuItemCount} navigation menu items?"
#. js-lingui-id: p/lN7X
#. placeholder {1}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Remove {1} navigation menu item?"
msgstr ""
#. js-lingui-id: 1O32oy
@@ -11171,7 +11182,7 @@ msgid "Remove from favorites"
msgstr "Verwyder uit gunstelinge"
#. js-lingui-id: 9VZ6f0
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Remove from sidebar"
msgstr ""
@@ -11218,7 +11229,7 @@ msgstr "Verwyder veranderlike"
#. js-lingui-id: 2wxgft
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/activities/files/components/AttachmentDropdown.tsx
msgid "Rename"
msgstr "Hernoem"
@@ -11359,6 +11370,8 @@ msgstr "Herstel rekord"
#. js-lingui-id: NzMNOA
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
msgid "Restore Record"
msgstr "Herstel rekord"
@@ -11370,6 +11383,8 @@ msgstr "Herstel rekords"
#. js-lingui-id: Xqj0Cb
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
msgid "Restore Records"
msgstr "Herstel rekords"
@@ -11385,7 +11400,7 @@ msgstr "Resultaat"
#. js-lingui-id: kx0s+n
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Results"
msgstr "Resultate"
@@ -11583,7 +11598,6 @@ msgstr "Saterdag"
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
#: src/modules/settings/components/SaveAndCancelButtons/SaveButton.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Save"
msgstr "Stoor"
@@ -11598,11 +11612,6 @@ msgstr "Stoor as nuwe aansig"
msgid "Save Dashboard"
msgstr "Stoor Paneelbord"
#. js-lingui-id: BZVCCj
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
msgid "Save Page Layout"
msgstr ""
#. js-lingui-id: veLq3R
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Scaffold a new app, then use the CLI to develop, publish, and distribute"
@@ -11647,6 +11656,8 @@ msgstr ""
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Search"
@@ -11685,7 +11696,7 @@ msgid "Search a field..."
msgstr "Soek 'n veld..."
#. js-lingui-id: ITQFzL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Search a folder..."
msgstr ""
@@ -11706,8 +11717,8 @@ msgid "Search a skill..."
msgstr ""
#. js-lingui-id: hVJ1MP
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
msgid "Search a system object..."
msgstr ""
@@ -11722,7 +11733,7 @@ msgid "Search a type"
msgstr "Soek 'n tipe"
#. js-lingui-id: +MhOVB
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Search a view..."
msgstr ""
@@ -11759,8 +11770,8 @@ msgstr "Soek vir 'n objek"
#. js-lingui-id: BoNHR0
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "Search an object..."
msgstr ""
@@ -11784,7 +11795,7 @@ msgid "Search colors"
msgstr "Soek kleure"
#. js-lingui-id: AR3FV/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
msgid "Search colors..."
msgstr ""
@@ -11853,7 +11864,7 @@ msgid "Search records"
msgstr "Soek rekords"
#. js-lingui-id: rRklUH
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Search records..."
msgstr ""
@@ -12079,7 +12090,7 @@ msgid "Select a field to display in this widget"
msgstr "Kies 'n veld om in hierdie widget te vertoon"
#. js-lingui-id: dtAvBz
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
msgid "Select a navigation item to edit"
msgstr ""
@@ -12641,6 +12652,11 @@ msgstr "Sommige"
msgid "Some folders"
msgstr "Sommige vouers"
#. js-lingui-id: hqUWge
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
msgid "Some layout changes could not be saved"
msgstr ""
#. js-lingui-id: nwtY4N
#: src/pages/auth/Authorize.tsx
msgid "Something went wrong"
@@ -13099,10 +13115,10 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -13481,13 +13497,14 @@ msgstr "Hierdie aksie kan nie ongedaan gemaak word nie. Dit sal permanent jou li
msgid "This action cannot be undone. This will permanently reset your two factor authentication method. <0/> Please type in your email to confirm."
msgstr "Hierdie aksie kan nie ongedaan gemaak word nie. Dit sal jou twee-faktor-verifikasiemetode permanent terugstel. <0/> Tik asseblief jou e-pos in om te bevestig."
#. js-lingui-id: lAHIY2
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "This action will delete this folder and all {navigationMenuItemCount} navigation menu items inside. Do you want to continue?"
#. js-lingui-id: XxxrMw
#. placeholder {2}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "This action will delete this folder and all {2} navigation menu items inside. Do you want to continue?"
msgstr ""
#. js-lingui-id: gSO0+U
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
msgstr ""
@@ -14014,7 +14031,7 @@ msgid "Type anything..."
msgstr "Tik enigiets..."
#. js-lingui-id: UhqKcC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Type to search records"
msgstr ""
@@ -14603,10 +14620,10 @@ msgid "view"
msgstr "aansig"
#. js-lingui-id: jpctdh
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "View"
msgstr "Aansig"
@@ -14705,6 +14722,7 @@ msgstr ""
#. js-lingui-id: ecVcAx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "View Previous AI Chats"
msgstr "Sien Vorige KI-kletse"
@@ -14740,7 +14758,7 @@ msgid "View workspace activity logs"
msgstr ""
#. js-lingui-id: 1I6UoR
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr ""
@@ -15034,6 +15052,7 @@ msgstr ""
#. js-lingui-id: 2jzcC5
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
msgid "Workflow duplicated successfully"
msgstr ""
@@ -15097,7 +15116,7 @@ msgstr "Werksvloeie"
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownVisibilityContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
msgid "Workspace"
msgstr "Werkruimte"
+121 -102
View File
@@ -946,23 +946,23 @@ msgid "Add Item"
msgstr "إضافة عنصر"
#. js-lingui-id: cI2ZVO
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
msgid "Add item to folder"
msgstr ""
#. js-lingui-id: gaZXkv
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItemsFolder.tsx
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Add menu item"
msgstr ""
#. js-lingui-id: JbORSt
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Add menu item after"
msgstr ""
#. js-lingui-id: DKlI/M
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Add menu item before"
msgstr ""
@@ -1423,7 +1423,7 @@ msgid "All Objects"
msgstr "كل الكائنات"
#. js-lingui-id: RoFE84
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
msgid "All objects are already in the sidebar"
msgstr ""
@@ -1438,7 +1438,7 @@ msgid "All set!"
msgstr "كل شيء جاهز!"
#. js-lingui-id: CHvT6e
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
@@ -1539,7 +1539,7 @@ msgid "alphabetical"
msgstr ""
#. js-lingui-id: eO7HSp
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectMenuItem.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectMenuItem.tsx
msgid "Already in navbar"
msgstr ""
@@ -1897,21 +1897,25 @@ msgstr ""
#. js-lingui-id: OJOR8q
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Are you sure you want to destroy these records? They won't be recoverable anymore."
msgstr "هل أنت متأكد أنك تريد إتلاف هذه السجلات؟ لن تكون قابلة للاسترداد بعد الآن."
#. js-lingui-id: UK5TO6
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
msgid "Are you sure you want to destroy this record? It cannot be recovered anymore."
msgstr "هل أنت متأكد أنك تريد تدمير هذا السجل؟ لن يمكن استرجاعه بعد الآن."
#. js-lingui-id: mcHVC1
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
msgid "Are you sure you want to restore these records?"
msgstr "هل أنت متأكد أنك تريد استعادة هذه السجلات؟"
#. js-lingui-id: lmgkf0
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
msgid "Are you sure you want to restore this record?"
msgstr "هل أنت متأكد أنك تريد استعادة هذا السجل؟"
@@ -1952,6 +1956,7 @@ msgstr "تصاعدي"
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Ask AI"
msgstr "اسأل الذكاء الاصطناعي"
@@ -2559,13 +2564,11 @@ msgstr "هل لا يمكنك المسح؟ انسخ الـ"
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Cancel"
msgstr "إلغاء"
#. js-lingui-id: HYLdMN
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Cancel Edition"
msgstr "إلغاء التعديل"
@@ -2966,7 +2969,7 @@ msgid "Collapse folder"
msgstr "طي المجلد"
#. js-lingui-id: jZlrte
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
msgid "Color"
msgstr ""
@@ -3896,10 +3899,9 @@ msgid "Customization"
msgstr "تخصيص"
#. js-lingui-id: srRMnJ
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditObjectViewBase.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
msgid "Customize"
msgstr ""
@@ -3970,6 +3972,7 @@ msgstr "داكن"
#. js-lingui-id: ogQzcZ
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Dashboard duplicated successfully"
msgstr "تم تكرار لوحة القيادة بنجاح"
@@ -3983,7 +3986,7 @@ msgstr "لوحات القيادة"
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "بيانات"
@@ -4305,7 +4308,7 @@ msgstr "حذف"
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: 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/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
@@ -4392,7 +4395,7 @@ msgid "Delete field"
msgstr "حذف الحقل"
#. js-lingui-id: 97QUV6
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Delete Folder"
msgstr "حذف المجلد"
@@ -4593,6 +4596,7 @@ msgstr "إتلاف {objectLabelPlural}"
#. js-lingui-id: kG5yO6
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Destroy Records"
msgstr "إتلاف السجلات"
@@ -4932,9 +4936,9 @@ msgid "Edit Fields"
msgstr "تحرير الحقول"
#. js-lingui-id: uPHscS
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Edit folder"
msgstr ""
@@ -4955,9 +4959,9 @@ msgid "Edit Layout"
msgstr ""
#. js-lingui-id: /PoNoq
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Edit link"
msgstr ""
@@ -6120,11 +6124,13 @@ msgstr ""
#. js-lingui-id: NUmmdc
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Failed to duplicate dashboard"
msgstr "فشل في تكرار لوحة القيادة"
#. js-lingui-id: WYXxQF
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
msgid "Failed to duplicate workflow"
msgstr ""
@@ -6188,9 +6194,9 @@ msgstr "فشل في إزالة الصورة"
msgid "Failed to retry jobs. Please try again later."
msgstr "فشل في إعادة محاولة الوظائف. يُرجى المحاولة مرة أخرى لاحقًا."
#. js-lingui-id: fuRtgB
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Failed to save navigation layout"
#. js-lingui-id: farFvy
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
msgid "Failed to save layout customization"
msgstr ""
#. js-lingui-id: y3HIOa
@@ -6308,7 +6314,7 @@ msgid "Fast Model"
msgstr ""
#. js-lingui-id: X9kySA
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItemFolders.tsx
#: src/modules/navigation-menu-item/display/sections/favorites/components/FavoritesSection.tsx
msgid "Favorites"
msgstr "المفضلة"
@@ -6580,8 +6586,8 @@ msgid "Flow"
msgstr "تدفق"
#. js-lingui-id: kNqMMd
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Folder"
msgstr ""
@@ -6591,8 +6597,8 @@ msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Folders"
msgstr "مجلدات"
@@ -8022,7 +8028,7 @@ msgid "Layout"
msgstr "التخطيط"
#. js-lingui-id: W4nIBb
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
#: src/modules/layout-customization/components/LayoutCustomizationBar.tsx
msgid "Layout customization"
msgstr ""
@@ -8137,8 +8143,8 @@ msgid "Line Chart"
msgstr "الرسم البياني الخطي"
#. js-lingui-id: yzF66j
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Link"
msgstr ""
@@ -8154,12 +8160,12 @@ msgid "Link copied to clipboard"
msgstr "تم نسخ الرابط إلى الحافظة"
#. js-lingui-id: vH3ZQY
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Link label"
msgstr ""
@@ -8798,7 +8804,7 @@ msgid "Most installed version"
msgstr ""
#. js-lingui-id: 3Ib6FN
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move down"
msgstr ""
@@ -8822,12 +8828,12 @@ msgid "Move to a folder"
msgstr ""
#. js-lingui-id: JCPOml
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move to folder"
msgstr ""
#. js-lingui-id: QyioBP
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move up"
msgstr ""
@@ -9073,9 +9079,9 @@ msgid "New Field"
msgstr "حقل جديد"
#. js-lingui-id: 96G6Re
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "New folder"
msgstr ""
@@ -9115,11 +9121,11 @@ msgid "New record"
msgstr "سجل جديد"
#. js-lingui-id: x6Ckh1
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/hooks/useOpenAddItemToFolderPage.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useNavigationMenuItemEditOrganizeActions.ts
#: src/modules/navigation-menu-item/edit/hooks/useOpenAddItemToFolderPage.ts
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
msgid "New sidebar item"
msgstr ""
@@ -9306,7 +9312,7 @@ msgid "No currency"
msgstr "لا توجد عملة"
#. js-lingui-id: DKVJFE
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "No custom views available"
msgstr ""
@@ -9418,12 +9424,12 @@ msgid "No Files"
msgstr "لا توجد ملفات"
#. js-lingui-id: pYblOw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folder"
msgstr "لا يوجد مجلد"
#. js-lingui-id: 6XMhqL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folders available"
msgstr ""
@@ -9510,7 +9516,7 @@ msgid "No object found"
msgstr ""
#. js-lingui-id: YFHO2u
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "No objects with views found"
msgstr ""
@@ -9587,14 +9593,14 @@ msgid "No Results"
msgstr "لا توجد نتائج"
#. js-lingui-id: AxPAXW
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/side-panel/components/SidePanelList.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No results found"
msgstr "لم يتم العثور على نتائج"
@@ -9619,12 +9625,12 @@ msgid "No Select field"
msgstr "لا حقل اختيار"
#. js-lingui-id: RQ6tfU
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
msgid "No system objects available"
msgstr ""
#. js-lingui-id: Yf4rVG
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
msgid "No system objects with views found"
msgstr ""
@@ -9832,9 +9838,9 @@ msgstr "كائن"
#: 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/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Object"
msgstr "كائن"
@@ -9894,9 +9900,9 @@ msgstr ""
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "Objects"
msgstr "كائنات"
@@ -10076,7 +10082,7 @@ msgid "Open side panel"
msgstr ""
#. js-lingui-id: OV5wZZ
#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx
#: src/modules/navigation-menu-item/display/sections/components/NavigationDrawerOpenedSection.tsx
msgid "Opened"
msgstr "تم الفتح"
@@ -10148,7 +10154,7 @@ msgid "Organization plan"
msgstr ""
#. js-lingui-id: nV6twc
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Organize"
msgstr ""
@@ -10158,9 +10164,9 @@ msgstr ""
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: 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
msgid "Other"
msgstr "أخرى"
@@ -10234,7 +10240,7 @@ msgid "Overview"
msgstr "نظرة عامة"
#. js-lingui-id: LtI9AS
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOwnerSection.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOwnerSection.tsx
msgid "Owner"
msgstr ""
@@ -10427,6 +10433,8 @@ msgstr "تدمير السجل نهائيًا"
#. js-lingui-id: 35dBYb
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
msgid "Permanently Destroy Record"
msgstr "اتلاف السجل نهائيًا"
@@ -10437,6 +10445,7 @@ msgstr "تدمير السجلات نهائيًا"
#. js-lingui-id: YyP8vD
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Permanently Destroy Records"
msgstr "إتلاف السجلات نهائيًا"
@@ -10958,7 +10967,7 @@ msgstr "السجل"
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Record"
msgstr "السجل"
@@ -11134,14 +11143,16 @@ msgstr "عن بعد"
msgid "Remove"
msgstr "\\\\"
#. js-lingui-id: 0Urj9q
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "Remove {navigationMenuItemCount} navigation menu item?"
#. js-lingui-id: XABoh4
#. placeholder {0}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Remove {0} navigation menu items?"
msgstr ""
#. js-lingui-id: Ef5jwi
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "Remove {navigationMenuItemCount} navigation menu items?"
#. js-lingui-id: p/lN7X
#. placeholder {1}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Remove {1} navigation menu item?"
msgstr ""
#. js-lingui-id: 1O32oy
@@ -11171,7 +11182,7 @@ msgid "Remove from favorites"
msgstr "\\\\"
#. js-lingui-id: 9VZ6f0
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Remove from sidebar"
msgstr ""
@@ -11218,7 +11229,7 @@ msgstr "إزالة المتغير"
#. js-lingui-id: 2wxgft
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/activities/files/components/AttachmentDropdown.tsx
msgid "Rename"
msgstr "إعادة التسمية"
@@ -11359,6 +11370,8 @@ msgstr "استعادة السجل"
#. js-lingui-id: NzMNOA
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
msgid "Restore Record"
msgstr "استعادة السجل"
@@ -11370,6 +11383,8 @@ msgstr "استعادة السجلات"
#. js-lingui-id: Xqj0Cb
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
msgid "Restore Records"
msgstr "استعادة السجلات"
@@ -11385,7 +11400,7 @@ msgstr "النتيجة"
#. js-lingui-id: kx0s+n
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Results"
msgstr "\\\\"
@@ -11583,7 +11598,6 @@ msgstr "السبت"
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
#: src/modules/settings/components/SaveAndCancelButtons/SaveButton.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Save"
msgstr "حفظ"
@@ -11598,11 +11612,6 @@ msgstr "احفظ كعرض جديد"
msgid "Save Dashboard"
msgstr "حفظ لوحة القيادة"
#. js-lingui-id: BZVCCj
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
msgid "Save Page Layout"
msgstr ""
#. js-lingui-id: veLq3R
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Scaffold a new app, then use the CLI to develop, publish, and distribute"
@@ -11647,6 +11656,8 @@ msgstr ""
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Search"
@@ -11685,7 +11696,7 @@ msgid "Search a field..."
msgstr "ابحث عن حقل..."
#. js-lingui-id: ITQFzL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Search a folder..."
msgstr ""
@@ -11706,8 +11717,8 @@ msgid "Search a skill..."
msgstr ""
#. js-lingui-id: hVJ1MP
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
msgid "Search a system object..."
msgstr ""
@@ -11722,7 +11733,7 @@ msgid "Search a type"
msgstr "ابحث عن نوع"
#. js-lingui-id: +MhOVB
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Search a view..."
msgstr ""
@@ -11759,8 +11770,8 @@ msgstr "ابحث عن كائن"
#. js-lingui-id: BoNHR0
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "Search an object..."
msgstr ""
@@ -11784,7 +11795,7 @@ msgid "Search colors"
msgstr "ابحث عن الألوان"
#. js-lingui-id: AR3FV/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
msgid "Search colors..."
msgstr ""
@@ -11853,7 +11864,7 @@ msgid "Search records"
msgstr "\\\\"
#. js-lingui-id: rRklUH
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Search records..."
msgstr ""
@@ -12079,7 +12090,7 @@ msgid "Select a field to display in this widget"
msgstr "اختر حقلاً لعرضه في هذه الأداة"
#. js-lingui-id: dtAvBz
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
msgid "Select a navigation item to edit"
msgstr ""
@@ -12641,6 +12652,11 @@ msgstr "بعض"
msgid "Some folders"
msgstr "بعض المجلدات"
#. js-lingui-id: hqUWge
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
msgid "Some layout changes could not be saved"
msgstr ""
#. js-lingui-id: nwtY4N
#: src/pages/auth/Authorize.tsx
msgid "Something went wrong"
@@ -13099,10 +13115,10 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -13481,13 +13497,14 @@ msgstr "لا يمكن التراجع عن هذا الإجراء. سيؤدي ذل
msgid "This action cannot be undone. This will permanently reset your two factor authentication method. <0/> Please type in your email to confirm."
msgstr "لا يمكن التراجع عن هذا الإجراء. سيؤدي ذلك إلى إعادة تعيين طريقة المصادقة الثنائية الخاصة بك بشكل دائم. <0/> الرجاء إدخال بريدك الإلكتروني للتأكيد."
#. js-lingui-id: lAHIY2
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "This action will delete this folder and all {navigationMenuItemCount} navigation menu items inside. Do you want to continue?"
#. js-lingui-id: XxxrMw
#. placeholder {2}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "This action will delete this folder and all {2} navigation menu items inside. Do you want to continue?"
msgstr ""
#. js-lingui-id: gSO0+U
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
msgstr ""
@@ -14014,7 +14031,7 @@ msgid "Type anything..."
msgstr "اكتب أي شيء..."
#. js-lingui-id: UhqKcC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Type to search records"
msgstr ""
@@ -14603,10 +14620,10 @@ msgid "view"
msgstr "عرض"
#. js-lingui-id: jpctdh
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "View"
msgstr "عرض"
@@ -14705,6 +14722,7 @@ msgstr ""
#. js-lingui-id: ecVcAx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "View Previous AI Chats"
msgstr "عرض الذكاءات الاصطناعية السابقة"
@@ -14740,7 +14758,7 @@ msgid "View workspace activity logs"
msgstr ""
#. js-lingui-id: 1I6UoR
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr ""
@@ -15032,6 +15050,7 @@ msgstr ""
#. js-lingui-id: 2jzcC5
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
msgid "Workflow duplicated successfully"
msgstr ""
@@ -15095,7 +15114,7 @@ msgstr "سير العمل"
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownVisibilityContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
msgid "Workspace"
msgstr "مساحة العمل"
+121 -102
View File
@@ -946,23 +946,23 @@ msgid "Add Item"
msgstr "Afegeix element"
#. js-lingui-id: cI2ZVO
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
msgid "Add item to folder"
msgstr ""
#. js-lingui-id: gaZXkv
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItemsFolder.tsx
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Add menu item"
msgstr ""
#. js-lingui-id: JbORSt
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Add menu item after"
msgstr ""
#. js-lingui-id: DKlI/M
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Add menu item before"
msgstr ""
@@ -1423,7 +1423,7 @@ msgid "All Objects"
msgstr "Tots els objectes"
#. js-lingui-id: RoFE84
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
msgid "All objects are already in the sidebar"
msgstr ""
@@ -1438,7 +1438,7 @@ msgid "All set!"
msgstr "Tot a punt!"
#. js-lingui-id: CHvT6e
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
@@ -1539,7 +1539,7 @@ msgid "alphabetical"
msgstr ""
#. js-lingui-id: eO7HSp
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectMenuItem.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectMenuItem.tsx
msgid "Already in navbar"
msgstr ""
@@ -1897,21 +1897,25 @@ msgstr ""
#. js-lingui-id: OJOR8q
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Are you sure you want to destroy these records? They won't be recoverable anymore."
msgstr "Esteu segur que voleu destruir aquests registres? Ja no seran recuperables."
#. js-lingui-id: UK5TO6
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
msgid "Are you sure you want to destroy this record? It cannot be recovered anymore."
msgstr "Esteu segur que voleu destruir aquest registre? No es podrà recuperar més endavant."
#. js-lingui-id: mcHVC1
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
msgid "Are you sure you want to restore these records?"
msgstr "Esteu segur que voleu restaurar aquests registres?"
#. js-lingui-id: lmgkf0
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
msgid "Are you sure you want to restore this record?"
msgstr "Esteu segur que voleu restaurar aquest registre?"
@@ -1952,6 +1956,7 @@ msgstr "Ascendent"
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Ask AI"
msgstr "Pregunta a l'IA"
@@ -2559,13 +2564,11 @@ msgstr "No pots escanejar? Copia la"
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Cancel"
msgstr "Cancel·la"
#. js-lingui-id: HYLdMN
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Cancel Edition"
msgstr "Cancel·la l'edició"
@@ -2966,7 +2969,7 @@ msgid "Collapse folder"
msgstr "Replega la carpeta"
#. js-lingui-id: jZlrte
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
msgid "Color"
msgstr ""
@@ -3896,10 +3899,9 @@ msgid "Customization"
msgstr "Personalització"
#. js-lingui-id: srRMnJ
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditObjectViewBase.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
msgid "Customize"
msgstr ""
@@ -3970,6 +3972,7 @@ msgstr "Fosc"
#. js-lingui-id: ogQzcZ
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Dashboard duplicated successfully"
msgstr "Quadre de comandament duplicat correctament"
@@ -3983,7 +3986,7 @@ msgstr "Taulers de comandament"
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Dades"
@@ -4305,7 +4308,7 @@ msgstr "elimina"
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: 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/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
@@ -4392,7 +4395,7 @@ msgid "Delete field"
msgstr "Esborra camp"
#. js-lingui-id: 97QUV6
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Delete Folder"
msgstr "Elimina la carpeta"
@@ -4593,6 +4596,7 @@ msgstr "Destruir {objectLabelPlural}"
#. js-lingui-id: kG5yO6
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Destroy Records"
msgstr "Destruir registres"
@@ -4932,9 +4936,9 @@ msgid "Edit Fields"
msgstr "Edita camps"
#. js-lingui-id: uPHscS
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Edit folder"
msgstr ""
@@ -4955,9 +4959,9 @@ msgid "Edit Layout"
msgstr ""
#. js-lingui-id: /PoNoq
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Edit link"
msgstr ""
@@ -6120,11 +6124,13 @@ msgstr ""
#. js-lingui-id: NUmmdc
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Failed to duplicate dashboard"
msgstr "No s'ha pogut duplicar el quadre de comandament"
#. js-lingui-id: WYXxQF
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
msgid "Failed to duplicate workflow"
msgstr ""
@@ -6188,9 +6194,9 @@ msgstr "No s'ha pogut eliminar la imatge"
msgid "Failed to retry jobs. Please try again later."
msgstr "Error en reintentar feines. Torneu-ho a provar més tard."
#. js-lingui-id: fuRtgB
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Failed to save navigation layout"
#. js-lingui-id: farFvy
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
msgid "Failed to save layout customization"
msgstr ""
#. js-lingui-id: y3HIOa
@@ -6308,7 +6314,7 @@ msgid "Fast Model"
msgstr ""
#. js-lingui-id: X9kySA
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItemFolders.tsx
#: src/modules/navigation-menu-item/display/sections/favorites/components/FavoritesSection.tsx
msgid "Favorites"
msgstr "Preferits"
@@ -6580,8 +6586,8 @@ msgid "Flow"
msgstr "Flux"
#. js-lingui-id: kNqMMd
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Folder"
msgstr ""
@@ -6591,8 +6597,8 @@ msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Folders"
msgstr "Carpetes"
@@ -8022,7 +8028,7 @@ msgid "Layout"
msgstr "Disseny"
#. js-lingui-id: W4nIBb
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
#: src/modules/layout-customization/components/LayoutCustomizationBar.tsx
msgid "Layout customization"
msgstr ""
@@ -8137,8 +8143,8 @@ msgid "Line Chart"
msgstr "Gràfic de línies"
#. js-lingui-id: yzF66j
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Link"
msgstr ""
@@ -8154,12 +8160,12 @@ msgid "Link copied to clipboard"
msgstr "Enllaç copiat al porta-retalls"
#. js-lingui-id: vH3ZQY
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Link label"
msgstr ""
@@ -8798,7 +8804,7 @@ msgid "Most installed version"
msgstr ""
#. js-lingui-id: 3Ib6FN
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move down"
msgstr ""
@@ -8822,12 +8828,12 @@ msgid "Move to a folder"
msgstr ""
#. js-lingui-id: JCPOml
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move to folder"
msgstr ""
#. js-lingui-id: QyioBP
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move up"
msgstr ""
@@ -9073,9 +9079,9 @@ msgid "New Field"
msgstr "Nou camp"
#. js-lingui-id: 96G6Re
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "New folder"
msgstr ""
@@ -9115,11 +9121,11 @@ msgid "New record"
msgstr "Nou registre"
#. js-lingui-id: x6Ckh1
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/hooks/useOpenAddItemToFolderPage.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useNavigationMenuItemEditOrganizeActions.ts
#: src/modules/navigation-menu-item/edit/hooks/useOpenAddItemToFolderPage.ts
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
msgid "New sidebar item"
msgstr ""
@@ -9306,7 +9312,7 @@ msgid "No currency"
msgstr "Sense moneda"
#. js-lingui-id: DKVJFE
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "No custom views available"
msgstr ""
@@ -9418,12 +9424,12 @@ msgid "No Files"
msgstr "Sense fitxers"
#. js-lingui-id: pYblOw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folder"
msgstr "Sense carpeta"
#. js-lingui-id: 6XMhqL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folders available"
msgstr ""
@@ -9510,7 +9516,7 @@ msgid "No object found"
msgstr ""
#. js-lingui-id: YFHO2u
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "No objects with views found"
msgstr ""
@@ -9587,14 +9593,14 @@ msgid "No Results"
msgstr "Cap resultat"
#. js-lingui-id: AxPAXW
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/side-panel/components/SidePanelList.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No results found"
msgstr "No s'han trobat resultats"
@@ -9619,12 +9625,12 @@ msgid "No Select field"
msgstr "Sense camp de selecció"
#. js-lingui-id: RQ6tfU
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
msgid "No system objects available"
msgstr ""
#. js-lingui-id: Yf4rVG
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
msgid "No system objects with views found"
msgstr ""
@@ -9832,9 +9838,9 @@ msgstr "objecte"
#: 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/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Object"
msgstr "Objecte"
@@ -9894,9 +9900,9 @@ msgstr ""
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "Objects"
msgstr "Objectes"
@@ -10076,7 +10082,7 @@ msgid "Open side panel"
msgstr ""
#. js-lingui-id: OV5wZZ
#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx
#: src/modules/navigation-menu-item/display/sections/components/NavigationDrawerOpenedSection.tsx
msgid "Opened"
msgstr "Obert"
@@ -10148,7 +10154,7 @@ msgid "Organization plan"
msgstr ""
#. js-lingui-id: nV6twc
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Organize"
msgstr ""
@@ -10158,9 +10164,9 @@ msgstr ""
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: 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
msgid "Other"
msgstr "Altres"
@@ -10234,7 +10240,7 @@ msgid "Overview"
msgstr "Visió general"
#. js-lingui-id: LtI9AS
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOwnerSection.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOwnerSection.tsx
msgid "Owner"
msgstr ""
@@ -10427,6 +10433,8 @@ msgstr "Destruir permanentment el registre"
#. js-lingui-id: 35dBYb
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
msgid "Permanently Destroy Record"
msgstr "Destruir permanentment el registre"
@@ -10437,6 +10445,7 @@ msgstr "Destruir permanentment els registres"
#. js-lingui-id: YyP8vD
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Permanently Destroy Records"
msgstr "Destruir permanentment registres"
@@ -10958,7 +10967,7 @@ msgstr "registre"
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Record"
msgstr "Registre"
@@ -11134,14 +11143,16 @@ msgstr "Remote"
msgid "Remove"
msgstr "Elimina"
#. js-lingui-id: 0Urj9q
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "Remove {navigationMenuItemCount} navigation menu item?"
#. js-lingui-id: XABoh4
#. placeholder {0}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Remove {0} navigation menu items?"
msgstr ""
#. js-lingui-id: Ef5jwi
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "Remove {navigationMenuItemCount} navigation menu items?"
#. js-lingui-id: p/lN7X
#. placeholder {1}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Remove {1} navigation menu item?"
msgstr ""
#. js-lingui-id: 1O32oy
@@ -11171,7 +11182,7 @@ msgid "Remove from favorites"
msgstr "Elimina dels preferits"
#. js-lingui-id: 9VZ6f0
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Remove from sidebar"
msgstr ""
@@ -11218,7 +11229,7 @@ msgstr "Elimina la variable"
#. js-lingui-id: 2wxgft
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/activities/files/components/AttachmentDropdown.tsx
msgid "Rename"
msgstr "Canvia el nom"
@@ -11359,6 +11370,8 @@ msgstr "Restaura el registre"
#. js-lingui-id: NzMNOA
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
msgid "Restore Record"
msgstr "Restaura el Registre"
@@ -11370,6 +11383,8 @@ msgstr "Restaurar registres"
#. js-lingui-id: Xqj0Cb
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
msgid "Restore Records"
msgstr "Restaura Registres"
@@ -11385,7 +11400,7 @@ msgstr "Resultat"
#. js-lingui-id: kx0s+n
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Results"
msgstr "Resultats"
@@ -11583,7 +11598,6 @@ msgstr "Dissabte"
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
#: src/modules/settings/components/SaveAndCancelButtons/SaveButton.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Save"
msgstr "Desa"
@@ -11598,11 +11612,6 @@ msgstr "Desa com a nova vista"
msgid "Save Dashboard"
msgstr "Desa el quadre de comandament"
#. js-lingui-id: BZVCCj
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
msgid "Save Page Layout"
msgstr ""
#. js-lingui-id: veLq3R
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Scaffold a new app, then use the CLI to develop, publish, and distribute"
@@ -11647,6 +11656,8 @@ msgstr ""
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Search"
@@ -11685,7 +11696,7 @@ msgid "Search a field..."
msgstr "Cerca un camp..."
#. js-lingui-id: ITQFzL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Search a folder..."
msgstr ""
@@ -11706,8 +11717,8 @@ msgid "Search a skill..."
msgstr ""
#. js-lingui-id: hVJ1MP
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
msgid "Search a system object..."
msgstr ""
@@ -11722,7 +11733,7 @@ msgid "Search a type"
msgstr "Cerca un tipus"
#. js-lingui-id: +MhOVB
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Search a view..."
msgstr ""
@@ -11759,8 +11770,8 @@ msgstr "Cerca un objecte"
#. js-lingui-id: BoNHR0
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "Search an object..."
msgstr ""
@@ -11784,7 +11795,7 @@ msgid "Search colors"
msgstr "Cerca colors"
#. js-lingui-id: AR3FV/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
msgid "Search colors..."
msgstr ""
@@ -11853,7 +11864,7 @@ msgid "Search records"
msgstr "Cerca enregistraments"
#. js-lingui-id: rRklUH
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Search records..."
msgstr ""
@@ -12079,7 +12090,7 @@ msgid "Select a field to display in this widget"
msgstr "Seleccioneu un camp per mostrar en aquest giny"
#. js-lingui-id: dtAvBz
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
msgid "Select a navigation item to edit"
msgstr ""
@@ -12641,6 +12652,11 @@ msgstr "Alguns"
msgid "Some folders"
msgstr "Algunes carpetes"
#. js-lingui-id: hqUWge
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
msgid "Some layout changes could not be saved"
msgstr ""
#. js-lingui-id: nwtY4N
#: src/pages/auth/Authorize.tsx
msgid "Something went wrong"
@@ -13099,10 +13115,10 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -13481,13 +13497,14 @@ msgstr "Aquesta acció no es pot desfer. Això eliminarà permanentment la teva
msgid "This action cannot be undone. This will permanently reset your two factor authentication method. <0/> Please type in your email to confirm."
msgstr "Aquesta acció no es pot desfer. Això restablirà permanentment el teu mètode d'autenticació de dos factors. <0/> Si us plau, escriu el teu correu electrònic per confirmar."
#. js-lingui-id: lAHIY2
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "This action will delete this folder and all {navigationMenuItemCount} navigation menu items inside. Do you want to continue?"
#. js-lingui-id: XxxrMw
#. placeholder {2}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "This action will delete this folder and all {2} navigation menu items inside. Do you want to continue?"
msgstr ""
#. js-lingui-id: gSO0+U
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
msgstr ""
@@ -14014,7 +14031,7 @@ msgid "Type anything..."
msgstr "Teclegeu qualsevol cosa..."
#. js-lingui-id: UhqKcC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Type to search records"
msgstr ""
@@ -14603,10 +14620,10 @@ msgid "view"
msgstr "vista"
#. js-lingui-id: jpctdh
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "View"
msgstr "Vista"
@@ -14705,6 +14722,7 @@ msgstr ""
#. js-lingui-id: ecVcAx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "View Previous AI Chats"
msgstr "Veure els xats d'IA anteriors"
@@ -14740,7 +14758,7 @@ msgid "View workspace activity logs"
msgstr ""
#. js-lingui-id: 1I6UoR
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr ""
@@ -15034,6 +15052,7 @@ msgstr ""
#. js-lingui-id: 2jzcC5
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
msgid "Workflow duplicated successfully"
msgstr ""
@@ -15097,7 +15116,7 @@ msgstr "Fluxos de treball"
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownVisibilityContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
msgid "Workspace"
msgstr "Espai de treball"
+121 -102
View File
@@ -946,23 +946,23 @@ msgid "Add Item"
msgstr "Přidat položku"
#. js-lingui-id: cI2ZVO
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
msgid "Add item to folder"
msgstr ""
#. js-lingui-id: gaZXkv
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItemsFolder.tsx
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Add menu item"
msgstr ""
#. js-lingui-id: JbORSt
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Add menu item after"
msgstr ""
#. js-lingui-id: DKlI/M
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Add menu item before"
msgstr ""
@@ -1423,7 +1423,7 @@ msgid "All Objects"
msgstr "Všechny objekty"
#. js-lingui-id: RoFE84
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
msgid "All objects are already in the sidebar"
msgstr ""
@@ -1438,7 +1438,7 @@ msgid "All set!"
msgstr "Vše hotovo!"
#. js-lingui-id: CHvT6e
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
@@ -1539,7 +1539,7 @@ msgid "alphabetical"
msgstr ""
#. js-lingui-id: eO7HSp
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectMenuItem.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectMenuItem.tsx
msgid "Already in navbar"
msgstr ""
@@ -1897,21 +1897,25 @@ msgstr ""
#. js-lingui-id: OJOR8q
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Are you sure you want to destroy these records? They won't be recoverable anymore."
msgstr "Jste si jistí, že chcete zničit tyto záznamy? Nebude možné je obnovit."
#. js-lingui-id: UK5TO6
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
msgid "Are you sure you want to destroy this record? It cannot be recovered anymore."
msgstr "Opravdu chcete zničit tento záznam? Nebude možné jej obnovit."
#. js-lingui-id: mcHVC1
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
msgid "Are you sure you want to restore these records?"
msgstr "Opravdu chcete obnovit tyto záznamy?"
#. js-lingui-id: lmgkf0
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
msgid "Are you sure you want to restore this record?"
msgstr "Opravdu chcete obnovit tento záznam?"
@@ -1952,6 +1956,7 @@ msgstr "Vzestupně"
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Ask AI"
msgstr "Zeptejte se AI"
@@ -2559,13 +2564,11 @@ msgstr "Nemůžete skenovat? Zkopírujte"
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Cancel"
msgstr "Storno"
#. js-lingui-id: HYLdMN
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Cancel Edition"
msgstr "Zrušit edici"
@@ -2966,7 +2969,7 @@ msgid "Collapse folder"
msgstr "Sbalit složku"
#. js-lingui-id: jZlrte
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
msgid "Color"
msgstr ""
@@ -3896,10 +3899,9 @@ msgid "Customization"
msgstr "Přizpůsobení"
#. js-lingui-id: srRMnJ
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditObjectViewBase.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
msgid "Customize"
msgstr ""
@@ -3970,6 +3972,7 @@ msgstr "Tmavý"
#. js-lingui-id: ogQzcZ
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Dashboard duplicated successfully"
msgstr "Ovládací panel byl úspěšně duplikován"
@@ -3983,7 +3986,7 @@ msgstr "Panely"
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Data"
@@ -4305,7 +4308,7 @@ msgstr "smazat"
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: 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/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
@@ -4392,7 +4395,7 @@ msgid "Delete field"
msgstr "Smazat pole"
#. js-lingui-id: 97QUV6
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Delete Folder"
msgstr "Smazat složku"
@@ -4593,6 +4596,7 @@ msgstr "Zničit {objectLabelPlural}"
#. js-lingui-id: kG5yO6
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Destroy Records"
msgstr "Zničit záznamy"
@@ -4932,9 +4936,9 @@ msgid "Edit Fields"
msgstr "Upravit pole"
#. js-lingui-id: uPHscS
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Edit folder"
msgstr ""
@@ -4955,9 +4959,9 @@ msgid "Edit Layout"
msgstr ""
#. js-lingui-id: /PoNoq
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Edit link"
msgstr ""
@@ -6120,11 +6124,13 @@ msgstr ""
#. js-lingui-id: NUmmdc
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Failed to duplicate dashboard"
msgstr "Nepodařilo se duplikovat ovládací panel"
#. js-lingui-id: WYXxQF
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
msgid "Failed to duplicate workflow"
msgstr ""
@@ -6188,9 +6194,9 @@ msgstr "Nepodařilo se odstranit obrázek"
msgid "Failed to retry jobs. Please try again later."
msgstr "Nepodařilo se znovu spustit úlohy. Prosím, zkuste to znovu později."
#. js-lingui-id: fuRtgB
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Failed to save navigation layout"
#. js-lingui-id: farFvy
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
msgid "Failed to save layout customization"
msgstr ""
#. js-lingui-id: y3HIOa
@@ -6308,7 +6314,7 @@ msgid "Fast Model"
msgstr ""
#. js-lingui-id: X9kySA
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItemFolders.tsx
#: src/modules/navigation-menu-item/display/sections/favorites/components/FavoritesSection.tsx
msgid "Favorites"
msgstr "Oblíbené"
@@ -6580,8 +6586,8 @@ msgid "Flow"
msgstr "Tok"
#. js-lingui-id: kNqMMd
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Folder"
msgstr ""
@@ -6591,8 +6597,8 @@ msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Folders"
msgstr "Složky"
@@ -8022,7 +8028,7 @@ msgid "Layout"
msgstr "Rozvržení"
#. js-lingui-id: W4nIBb
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
#: src/modules/layout-customization/components/LayoutCustomizationBar.tsx
msgid "Layout customization"
msgstr ""
@@ -8137,8 +8143,8 @@ msgid "Line Chart"
msgstr "Liniový graf"
#. js-lingui-id: yzF66j
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Link"
msgstr ""
@@ -8154,12 +8160,12 @@ msgid "Link copied to clipboard"
msgstr "Odkaz byl zkopírován do schránky"
#. js-lingui-id: vH3ZQY
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Link label"
msgstr ""
@@ -8798,7 +8804,7 @@ msgid "Most installed version"
msgstr ""
#. js-lingui-id: 3Ib6FN
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move down"
msgstr ""
@@ -8822,12 +8828,12 @@ msgid "Move to a folder"
msgstr ""
#. js-lingui-id: JCPOml
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move to folder"
msgstr ""
#. js-lingui-id: QyioBP
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move up"
msgstr ""
@@ -9073,9 +9079,9 @@ msgid "New Field"
msgstr "Nové pole"
#. js-lingui-id: 96G6Re
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "New folder"
msgstr ""
@@ -9115,11 +9121,11 @@ msgid "New record"
msgstr "Nový záznam"
#. js-lingui-id: x6Ckh1
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/hooks/useOpenAddItemToFolderPage.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useNavigationMenuItemEditOrganizeActions.ts
#: src/modules/navigation-menu-item/edit/hooks/useOpenAddItemToFolderPage.ts
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
msgid "New sidebar item"
msgstr ""
@@ -9306,7 +9312,7 @@ msgid "No currency"
msgstr "Žádná měna"
#. js-lingui-id: DKVJFE
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "No custom views available"
msgstr ""
@@ -9418,12 +9424,12 @@ msgid "No Files"
msgstr "Žádné soubory"
#. js-lingui-id: pYblOw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folder"
msgstr "Žádná složka"
#. js-lingui-id: 6XMhqL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folders available"
msgstr ""
@@ -9510,7 +9516,7 @@ msgid "No object found"
msgstr ""
#. js-lingui-id: YFHO2u
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "No objects with views found"
msgstr ""
@@ -9587,14 +9593,14 @@ msgid "No Results"
msgstr "Žádné výsledky"
#. js-lingui-id: AxPAXW
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/side-panel/components/SidePanelList.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No results found"
msgstr "Nenalezeny žádné výsledky"
@@ -9619,12 +9625,12 @@ msgid "No Select field"
msgstr "Žádné výběrové pole"
#. js-lingui-id: RQ6tfU
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
msgid "No system objects available"
msgstr ""
#. js-lingui-id: Yf4rVG
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
msgid "No system objects with views found"
msgstr ""
@@ -9832,9 +9838,9 @@ msgstr "objekt"
#: 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/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Object"
msgstr "Objekt"
@@ -9894,9 +9900,9 @@ msgstr ""
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "Objects"
msgstr "Objekty"
@@ -10076,7 +10082,7 @@ msgid "Open side panel"
msgstr ""
#. js-lingui-id: OV5wZZ
#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx
#: src/modules/navigation-menu-item/display/sections/components/NavigationDrawerOpenedSection.tsx
msgid "Opened"
msgstr "Otevřený"
@@ -10148,7 +10154,7 @@ msgid "Organization plan"
msgstr ""
#. js-lingui-id: nV6twc
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Organize"
msgstr ""
@@ -10158,9 +10164,9 @@ msgstr ""
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: 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
msgid "Other"
msgstr "Ostatní"
@@ -10234,7 +10240,7 @@ msgid "Overview"
msgstr "Přehled"
#. js-lingui-id: LtI9AS
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOwnerSection.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOwnerSection.tsx
msgid "Owner"
msgstr ""
@@ -10427,6 +10433,8 @@ msgstr "Trvale zničit záznam"
#. js-lingui-id: 35dBYb
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
msgid "Permanently Destroy Record"
msgstr "Trvale zničit záznam"
@@ -10437,6 +10445,7 @@ msgstr "Trvale zničit záznamy"
#. js-lingui-id: YyP8vD
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Permanently Destroy Records"
msgstr "Trvale zničit záznamy"
@@ -10958,7 +10967,7 @@ msgstr "záznam"
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Record"
msgstr "Záznam"
@@ -11134,14 +11143,16 @@ msgstr "Vzdálený"
msgid "Remove"
msgstr "Odstranit"
#. js-lingui-id: 0Urj9q
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "Remove {navigationMenuItemCount} navigation menu item?"
#. js-lingui-id: XABoh4
#. placeholder {0}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Remove {0} navigation menu items?"
msgstr ""
#. js-lingui-id: Ef5jwi
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "Remove {navigationMenuItemCount} navigation menu items?"
#. js-lingui-id: p/lN7X
#. placeholder {1}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Remove {1} navigation menu item?"
msgstr ""
#. js-lingui-id: 1O32oy
@@ -11171,7 +11182,7 @@ msgid "Remove from favorites"
msgstr "Odebrat z oblíbených"
#. js-lingui-id: 9VZ6f0
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Remove from sidebar"
msgstr ""
@@ -11218,7 +11229,7 @@ msgstr "Odstranit proměnnou"
#. js-lingui-id: 2wxgft
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/activities/files/components/AttachmentDropdown.tsx
msgid "Rename"
msgstr "Přejmenovat"
@@ -11359,6 +11370,8 @@ msgstr "Obnovit záznam"
#. js-lingui-id: NzMNOA
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
msgid "Restore Record"
msgstr "Obnovit záznam"
@@ -11370,6 +11383,8 @@ msgstr "Obnovit záznamy"
#. js-lingui-id: Xqj0Cb
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
msgid "Restore Records"
msgstr "Obnovit záznamy"
@@ -11385,7 +11400,7 @@ msgstr "Výsledek"
#. js-lingui-id: kx0s+n
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Results"
msgstr "Výsledky"
@@ -11583,7 +11598,6 @@ msgstr "Sobota"
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
#: src/modules/settings/components/SaveAndCancelButtons/SaveButton.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Save"
msgstr "Uložit"
@@ -11598,11 +11612,6 @@ msgstr "Uložit jako nové zobrazení"
msgid "Save Dashboard"
msgstr "Uložit panel"
#. js-lingui-id: BZVCCj
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
msgid "Save Page Layout"
msgstr ""
#. js-lingui-id: veLq3R
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Scaffold a new app, then use the CLI to develop, publish, and distribute"
@@ -11647,6 +11656,8 @@ msgstr ""
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Search"
@@ -11685,7 +11696,7 @@ msgid "Search a field..."
msgstr "Hledat ve sloupci..."
#. js-lingui-id: ITQFzL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Search a folder..."
msgstr ""
@@ -11706,8 +11717,8 @@ msgid "Search a skill..."
msgstr ""
#. js-lingui-id: hVJ1MP
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
msgid "Search a system object..."
msgstr ""
@@ -11722,7 +11733,7 @@ msgid "Search a type"
msgstr "Hledat typ"
#. js-lingui-id: +MhOVB
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Search a view..."
msgstr ""
@@ -11759,8 +11770,8 @@ msgstr "Hledat objekt"
#. js-lingui-id: BoNHR0
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "Search an object..."
msgstr ""
@@ -11784,7 +11795,7 @@ msgid "Search colors"
msgstr "Hledat barvy"
#. js-lingui-id: AR3FV/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
msgid "Search colors..."
msgstr ""
@@ -11853,7 +11864,7 @@ msgid "Search records"
msgstr "Hledání záznamů"
#. js-lingui-id: rRklUH
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Search records..."
msgstr ""
@@ -12079,7 +12090,7 @@ msgid "Select a field to display in this widget"
msgstr "Vyberte pole, které se má v tomto widgetu zobrazit"
#. js-lingui-id: dtAvBz
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
msgid "Select a navigation item to edit"
msgstr ""
@@ -12641,6 +12652,11 @@ msgstr "Některé"
msgid "Some folders"
msgstr "Některé složky"
#. js-lingui-id: hqUWge
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
msgid "Some layout changes could not be saved"
msgstr ""
#. js-lingui-id: nwtY4N
#: src/pages/auth/Authorize.tsx
msgid "Something went wrong"
@@ -13099,10 +13115,10 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -13481,13 +13497,14 @@ msgstr "Tato akce je nevratná. Tímto bude vaše členství v tomto pracovním
msgid "This action cannot be undone. This will permanently reset your two factor authentication method. <0/> Please type in your email to confirm."
msgstr "Tuto akci nelze vrátit zpět. Tímto dojde k trvalému resetování vaší metody dvoufaktorového ověřování. <0/> Pro potvrzení zadejte svůj e-mail."
#. js-lingui-id: lAHIY2
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "This action will delete this folder and all {navigationMenuItemCount} navigation menu items inside. Do you want to continue?"
#. js-lingui-id: XxxrMw
#. placeholder {2}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "This action will delete this folder and all {2} navigation menu items inside. Do you want to continue?"
msgstr ""
#. js-lingui-id: gSO0+U
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
msgstr ""
@@ -14014,7 +14031,7 @@ msgid "Type anything..."
msgstr "Napište cokoli..."
#. js-lingui-id: UhqKcC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Type to search records"
msgstr ""
@@ -14603,10 +14620,10 @@ msgid "view"
msgstr "pohled"
#. js-lingui-id: jpctdh
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "View"
msgstr "Pohled"
@@ -14705,6 +14722,7 @@ msgstr ""
#. js-lingui-id: ecVcAx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "View Previous AI Chats"
msgstr "Zobrazit předchozí AI diskuse"
@@ -14740,7 +14758,7 @@ msgid "View workspace activity logs"
msgstr ""
#. js-lingui-id: 1I6UoR
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr ""
@@ -15034,6 +15052,7 @@ msgstr ""
#. js-lingui-id: 2jzcC5
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
msgid "Workflow duplicated successfully"
msgstr ""
@@ -15097,7 +15116,7 @@ msgstr "Pracovní postupy"
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownVisibilityContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
msgid "Workspace"
msgstr "Pracovní prostor"
+121 -102
View File
@@ -946,23 +946,23 @@ msgid "Add Item"
msgstr "Tilføj element"
#. js-lingui-id: cI2ZVO
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
msgid "Add item to folder"
msgstr ""
#. js-lingui-id: gaZXkv
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItemsFolder.tsx
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Add menu item"
msgstr ""
#. js-lingui-id: JbORSt
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Add menu item after"
msgstr ""
#. js-lingui-id: DKlI/M
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Add menu item before"
msgstr ""
@@ -1423,7 +1423,7 @@ msgid "All Objects"
msgstr "Alle objekter"
#. js-lingui-id: RoFE84
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
msgid "All objects are already in the sidebar"
msgstr ""
@@ -1438,7 +1438,7 @@ msgid "All set!"
msgstr "Alt klar!"
#. js-lingui-id: CHvT6e
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
@@ -1539,7 +1539,7 @@ msgid "alphabetical"
msgstr ""
#. js-lingui-id: eO7HSp
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectMenuItem.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectMenuItem.tsx
msgid "Already in navbar"
msgstr ""
@@ -1897,21 +1897,25 @@ msgstr ""
#. js-lingui-id: OJOR8q
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Are you sure you want to destroy these records? They won't be recoverable anymore."
msgstr "Er du sikker på, at du vil ødelægge disse optegnelser? De kan ikke gendannes længere."
#. js-lingui-id: UK5TO6
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
msgid "Are you sure you want to destroy this record? It cannot be recovered anymore."
msgstr "Er du sikker på, at du vil ødelægge denne post? Den kan ikke gendannes længere."
#. js-lingui-id: mcHVC1
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
msgid "Are you sure you want to restore these records?"
msgstr "Er du sikker på, at du vil gendanne disse poster?"
#. js-lingui-id: lmgkf0
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
msgid "Are you sure you want to restore this record?"
msgstr "Er du sikker på, at du vil gendanne denne post?"
@@ -1952,6 +1956,7 @@ msgstr "Stigende"
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Ask AI"
msgstr "Spørg AI"
@@ -2559,13 +2564,11 @@ msgstr "Kan ikke scanne? Kopier"
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Cancel"
msgstr "Annuller"
#. js-lingui-id: HYLdMN
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Cancel Edition"
msgstr "Annuller udgave"
@@ -2966,7 +2969,7 @@ msgid "Collapse folder"
msgstr "Fold mappe sammen"
#. js-lingui-id: jZlrte
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
msgid "Color"
msgstr ""
@@ -3896,10 +3899,9 @@ msgid "Customization"
msgstr "Tilpasning"
#. js-lingui-id: srRMnJ
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditObjectViewBase.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
msgid "Customize"
msgstr ""
@@ -3970,6 +3972,7 @@ msgstr "Mørk"
#. js-lingui-id: ogQzcZ
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Dashboard duplicated successfully"
msgstr "Dashboard duplikeret med succes"
@@ -3983,7 +3986,7 @@ msgstr "Dashboards"
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Data"
@@ -4305,7 +4308,7 @@ msgstr "slet"
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: 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/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
@@ -4392,7 +4395,7 @@ msgid "Delete field"
msgstr "Slet felt"
#. js-lingui-id: 97QUV6
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Delete Folder"
msgstr "Slet mappe"
@@ -4593,6 +4596,7 @@ msgstr "Ødelæg {objectLabelPlural}"
#. js-lingui-id: kG5yO6
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Destroy Records"
msgstr "Ødelæg records"
@@ -4932,9 +4936,9 @@ msgid "Edit Fields"
msgstr "Rediger felter"
#. js-lingui-id: uPHscS
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Edit folder"
msgstr ""
@@ -4955,9 +4959,9 @@ msgid "Edit Layout"
msgstr ""
#. js-lingui-id: /PoNoq
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Edit link"
msgstr ""
@@ -6120,11 +6124,13 @@ msgstr ""
#. js-lingui-id: NUmmdc
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Failed to duplicate dashboard"
msgstr "Kunne ikke duplikere dashboard"
#. js-lingui-id: WYXxQF
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
msgid "Failed to duplicate workflow"
msgstr ""
@@ -6188,9 +6194,9 @@ msgstr "Kunne ikke fjerne billede"
msgid "Failed to retry jobs. Please try again later."
msgstr "Kunne ikke forsøge jobs igen. Prøv venligst igen senere."
#. js-lingui-id: fuRtgB
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Failed to save navigation layout"
#. js-lingui-id: farFvy
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
msgid "Failed to save layout customization"
msgstr ""
#. js-lingui-id: y3HIOa
@@ -6308,7 +6314,7 @@ msgid "Fast Model"
msgstr ""
#. js-lingui-id: X9kySA
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItemFolders.tsx
#: src/modules/navigation-menu-item/display/sections/favorites/components/FavoritesSection.tsx
msgid "Favorites"
msgstr "Favoritter"
@@ -6580,8 +6586,8 @@ msgid "Flow"
msgstr "Strøm"
#. js-lingui-id: kNqMMd
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Folder"
msgstr ""
@@ -6591,8 +6597,8 @@ msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Folders"
msgstr "Mapper"
@@ -8022,7 +8028,7 @@ msgid "Layout"
msgstr "Layout"
#. js-lingui-id: W4nIBb
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
#: src/modules/layout-customization/components/LayoutCustomizationBar.tsx
msgid "Layout customization"
msgstr ""
@@ -8137,8 +8143,8 @@ msgid "Line Chart"
msgstr "Linje Diagram"
#. js-lingui-id: yzF66j
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Link"
msgstr ""
@@ -8154,12 +8160,12 @@ msgid "Link copied to clipboard"
msgstr "Link kopieret til udklipsholder"
#. js-lingui-id: vH3ZQY
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Link label"
msgstr ""
@@ -8798,7 +8804,7 @@ msgid "Most installed version"
msgstr ""
#. js-lingui-id: 3Ib6FN
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move down"
msgstr ""
@@ -8822,12 +8828,12 @@ msgid "Move to a folder"
msgstr ""
#. js-lingui-id: JCPOml
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move to folder"
msgstr ""
#. js-lingui-id: QyioBP
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move up"
msgstr ""
@@ -9073,9 +9079,9 @@ msgid "New Field"
msgstr "Nyt felt"
#. js-lingui-id: 96G6Re
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "New folder"
msgstr ""
@@ -9115,11 +9121,11 @@ msgid "New record"
msgstr "Ny post"
#. js-lingui-id: x6Ckh1
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/hooks/useOpenAddItemToFolderPage.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useNavigationMenuItemEditOrganizeActions.ts
#: src/modules/navigation-menu-item/edit/hooks/useOpenAddItemToFolderPage.ts
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
msgid "New sidebar item"
msgstr ""
@@ -9306,7 +9312,7 @@ msgid "No currency"
msgstr "Ingen valuta"
#. js-lingui-id: DKVJFE
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "No custom views available"
msgstr ""
@@ -9418,12 +9424,12 @@ msgid "No Files"
msgstr "Ingen filer"
#. js-lingui-id: pYblOw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folder"
msgstr "Ingen mappe"
#. js-lingui-id: 6XMhqL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folders available"
msgstr ""
@@ -9510,7 +9516,7 @@ msgid "No object found"
msgstr ""
#. js-lingui-id: YFHO2u
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "No objects with views found"
msgstr ""
@@ -9587,14 +9593,14 @@ msgid "No Results"
msgstr "Ingen resultater"
#. js-lingui-id: AxPAXW
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/side-panel/components/SidePanelList.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No results found"
msgstr "Ingen resultater fundet"
@@ -9619,12 +9625,12 @@ msgid "No Select field"
msgstr "Ingen vælg felt"
#. js-lingui-id: RQ6tfU
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
msgid "No system objects available"
msgstr ""
#. js-lingui-id: Yf4rVG
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
msgid "No system objects with views found"
msgstr ""
@@ -9832,9 +9838,9 @@ msgstr "objekt"
#: 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/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Object"
msgstr "Objekt"
@@ -9894,9 +9900,9 @@ msgstr ""
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "Objects"
msgstr "Objekter"
@@ -10076,7 +10082,7 @@ msgid "Open side panel"
msgstr ""
#. js-lingui-id: OV5wZZ
#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx
#: src/modules/navigation-menu-item/display/sections/components/NavigationDrawerOpenedSection.tsx
msgid "Opened"
msgstr "Åbnet"
@@ -10148,7 +10154,7 @@ msgid "Organization plan"
msgstr ""
#. js-lingui-id: nV6twc
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Organize"
msgstr ""
@@ -10158,9 +10164,9 @@ msgstr ""
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: 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
msgid "Other"
msgstr "Andet"
@@ -10234,7 +10240,7 @@ msgid "Overview"
msgstr "Oversigt"
#. js-lingui-id: LtI9AS
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOwnerSection.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOwnerSection.tsx
msgid "Owner"
msgstr ""
@@ -10427,6 +10433,8 @@ msgstr "Permanent slet post"
#. js-lingui-id: 35dBYb
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
msgid "Permanently Destroy Record"
msgstr "Permanent slet post"
@@ -10437,6 +10445,7 @@ msgstr "Permanent slet poster"
#. js-lingui-id: YyP8vD
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Permanently Destroy Records"
msgstr "Permanent slet poster"
@@ -10958,7 +10967,7 @@ msgstr "post"
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Record"
msgstr "Registrering"
@@ -11134,14 +11143,16 @@ msgstr "Fjernforbindelse"
msgid "Remove"
msgstr "Fjern"
#. js-lingui-id: 0Urj9q
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "Remove {navigationMenuItemCount} navigation menu item?"
#. js-lingui-id: XABoh4
#. placeholder {0}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Remove {0} navigation menu items?"
msgstr ""
#. js-lingui-id: Ef5jwi
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "Remove {navigationMenuItemCount} navigation menu items?"
#. js-lingui-id: p/lN7X
#. placeholder {1}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Remove {1} navigation menu item?"
msgstr ""
#. js-lingui-id: 1O32oy
@@ -11171,7 +11182,7 @@ msgid "Remove from favorites"
msgstr "Fjern fra favoritter"
#. js-lingui-id: 9VZ6f0
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Remove from sidebar"
msgstr ""
@@ -11218,7 +11229,7 @@ msgstr "Fjern variabel"
#. js-lingui-id: 2wxgft
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/activities/files/components/AttachmentDropdown.tsx
msgid "Rename"
msgstr "Omdøb"
@@ -11359,6 +11370,8 @@ msgstr "Gendan post"
#. js-lingui-id: NzMNOA
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
msgid "Restore Record"
msgstr "Gendan post"
@@ -11370,6 +11383,8 @@ msgstr "Gendan poster"
#. js-lingui-id: Xqj0Cb
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
msgid "Restore Records"
msgstr "Gendan poster"
@@ -11385,7 +11400,7 @@ msgstr "Resultat"
#. js-lingui-id: kx0s+n
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Results"
msgstr "Resultater"
@@ -11583,7 +11598,6 @@ msgstr "Lørdag"
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
#: src/modules/settings/components/SaveAndCancelButtons/SaveButton.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Save"
msgstr "Gem"
@@ -11598,11 +11612,6 @@ msgstr "Gem som ny visning"
msgid "Save Dashboard"
msgstr "Gem dashboard"
#. js-lingui-id: BZVCCj
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
msgid "Save Page Layout"
msgstr ""
#. js-lingui-id: veLq3R
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Scaffold a new app, then use the CLI to develop, publish, and distribute"
@@ -11647,6 +11656,8 @@ msgstr ""
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Search"
@@ -11685,7 +11696,7 @@ msgid "Search a field..."
msgstr "Søg i et felt..."
#. js-lingui-id: ITQFzL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Search a folder..."
msgstr ""
@@ -11706,8 +11717,8 @@ msgid "Search a skill..."
msgstr ""
#. js-lingui-id: hVJ1MP
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
msgid "Search a system object..."
msgstr ""
@@ -11722,7 +11733,7 @@ msgid "Search a type"
msgstr "Søg efter en type"
#. js-lingui-id: +MhOVB
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Search a view..."
msgstr ""
@@ -11759,8 +11770,8 @@ msgstr "Søg efter et objekt"
#. js-lingui-id: BoNHR0
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "Search an object..."
msgstr ""
@@ -11784,7 +11795,7 @@ msgid "Search colors"
msgstr "Søg farver"
#. js-lingui-id: AR3FV/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
msgid "Search colors..."
msgstr ""
@@ -11853,7 +11864,7 @@ msgid "Search records"
msgstr "Søg poster"
#. js-lingui-id: rRklUH
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Search records..."
msgstr ""
@@ -12079,7 +12090,7 @@ msgid "Select a field to display in this widget"
msgstr "Vælg et felt, der skal vises i denne widget"
#. js-lingui-id: dtAvBz
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
msgid "Select a navigation item to edit"
msgstr ""
@@ -12641,6 +12652,11 @@ msgstr "Nogle"
msgid "Some folders"
msgstr "Nogle mapper"
#. js-lingui-id: hqUWge
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
msgid "Some layout changes could not be saved"
msgstr ""
#. js-lingui-id: nwtY4N
#: src/pages/auth/Authorize.tsx
msgid "Something went wrong"
@@ -13099,10 +13115,10 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -13483,13 +13499,14 @@ msgstr "Denne handling kan ikke fortrydes. Dette vil permanent fjerne dit medlem
msgid "This action cannot be undone. This will permanently reset your two factor authentication method. <0/> Please type in your email to confirm."
msgstr "Denne handling kan ikke fortrydes. Dette vil permanent nulstille din tofaktorgodkendelsesmetode. <0/> Indtast venligst din e-mail for at bekræfte."
#. js-lingui-id: lAHIY2
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "This action will delete this folder and all {navigationMenuItemCount} navigation menu items inside. Do you want to continue?"
#. js-lingui-id: XxxrMw
#. placeholder {2}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "This action will delete this folder and all {2} navigation menu items inside. Do you want to continue?"
msgstr ""
#. js-lingui-id: gSO0+U
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
msgstr ""
@@ -14016,7 +14033,7 @@ msgid "Type anything..."
msgstr "Skriv noget..."
#. js-lingui-id: UhqKcC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Type to search records"
msgstr ""
@@ -14605,10 +14622,10 @@ msgid "view"
msgstr "visning"
#. js-lingui-id: jpctdh
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "View"
msgstr "Visning"
@@ -14707,6 +14724,7 @@ msgstr ""
#. js-lingui-id: ecVcAx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "View Previous AI Chats"
msgstr "Se tidligere AI-chats"
@@ -14742,7 +14760,7 @@ msgid "View workspace activity logs"
msgstr ""
#. js-lingui-id: 1I6UoR
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr ""
@@ -15036,6 +15054,7 @@ msgstr ""
#. js-lingui-id: 2jzcC5
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
msgid "Workflow duplicated successfully"
msgstr ""
@@ -15099,7 +15118,7 @@ msgstr "Arbejdsgange"
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownVisibilityContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
msgid "Workspace"
msgstr "Arbejdsområde"
+121 -102
View File
@@ -946,23 +946,23 @@ msgid "Add Item"
msgstr "Element hinzufügen"
#. js-lingui-id: cI2ZVO
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
msgid "Add item to folder"
msgstr ""
#. js-lingui-id: gaZXkv
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItemsFolder.tsx
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Add menu item"
msgstr ""
#. js-lingui-id: JbORSt
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Add menu item after"
msgstr ""
#. js-lingui-id: DKlI/M
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Add menu item before"
msgstr ""
@@ -1423,7 +1423,7 @@ msgid "All Objects"
msgstr "Alle Objekte"
#. js-lingui-id: RoFE84
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
msgid "All objects are already in the sidebar"
msgstr ""
@@ -1438,7 +1438,7 @@ msgid "All set!"
msgstr "Alles bereit!"
#. js-lingui-id: CHvT6e
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
@@ -1539,7 +1539,7 @@ msgid "alphabetical"
msgstr ""
#. js-lingui-id: eO7HSp
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectMenuItem.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectMenuItem.tsx
msgid "Already in navbar"
msgstr ""
@@ -1897,21 +1897,25 @@ msgstr ""
#. js-lingui-id: OJOR8q
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Are you sure you want to destroy these records? They won't be recoverable anymore."
msgstr "Sind Sie sicher, dass Sie diese Datensätze zerstören möchten? Sie können nicht wiederhergestellt werden."
#. js-lingui-id: UK5TO6
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
msgid "Are you sure you want to destroy this record? It cannot be recovered anymore."
msgstr "Sind Sie sicher, dass Sie diesen Datensatz zerstören möchten? Er kann nicht wiederhergestellt werden."
#. js-lingui-id: mcHVC1
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
msgid "Are you sure you want to restore these records?"
msgstr "Sind Sie sicher, dass Sie diese Datensätze wiederherstellen möchten?"
#. js-lingui-id: lmgkf0
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
msgid "Are you sure you want to restore this record?"
msgstr "Sind Sie sicher, dass Sie diesen Datensatz wiederherstellen möchten?"
@@ -1952,6 +1956,7 @@ msgstr "Aufsteigend"
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Ask AI"
msgstr "AI fragen"
@@ -2559,13 +2564,11 @@ msgstr "Kann nicht gescannt werden? Kopieren Sie das"
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Cancel"
msgstr "Abbrechen"
#. js-lingui-id: HYLdMN
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Cancel Edition"
msgstr "Edition abbrechen"
@@ -2966,7 +2969,7 @@ msgid "Collapse folder"
msgstr "Ordner einklappen"
#. js-lingui-id: jZlrte
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
msgid "Color"
msgstr ""
@@ -3896,10 +3899,9 @@ msgid "Customization"
msgstr "Anpassung"
#. js-lingui-id: srRMnJ
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditObjectViewBase.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
msgid "Customize"
msgstr ""
@@ -3970,6 +3972,7 @@ msgstr "Dunkel"
#. js-lingui-id: ogQzcZ
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Dashboard duplicated successfully"
msgstr "Dashboard erfolgreich dupliziert"
@@ -3983,7 +3986,7 @@ msgstr "Dashboards"
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Daten"
@@ -4305,7 +4308,7 @@ msgstr "löschen"
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: 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/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
@@ -4392,7 +4395,7 @@ msgid "Delete field"
msgstr "Feld löschen"
#. js-lingui-id: 97QUV6
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Delete Folder"
msgstr "Ordner löschen"
@@ -4593,6 +4596,7 @@ msgstr "Zerstören {objectLabelPlural}"
#. js-lingui-id: kG5yO6
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Destroy Records"
msgstr "Datensätze zerstören"
@@ -4932,9 +4936,9 @@ msgid "Edit Fields"
msgstr "Felder bearbeiten"
#. js-lingui-id: uPHscS
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Edit folder"
msgstr ""
@@ -4955,9 +4959,9 @@ msgid "Edit Layout"
msgstr ""
#. js-lingui-id: /PoNoq
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Edit link"
msgstr ""
@@ -6120,11 +6124,13 @@ msgstr ""
#. js-lingui-id: NUmmdc
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Failed to duplicate dashboard"
msgstr "Duplizieren des Dashboards fehlgeschlagen"
#. js-lingui-id: WYXxQF
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
msgid "Failed to duplicate workflow"
msgstr ""
@@ -6188,9 +6194,9 @@ msgstr "Bild konnte nicht entfernt werden"
msgid "Failed to retry jobs. Please try again later."
msgstr "Aufgaben konnten nicht erneut versucht werden. Bitte versuchen Sie es später noch einmal."
#. js-lingui-id: fuRtgB
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Failed to save navigation layout"
#. js-lingui-id: farFvy
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
msgid "Failed to save layout customization"
msgstr ""
#. js-lingui-id: y3HIOa
@@ -6308,7 +6314,7 @@ msgid "Fast Model"
msgstr ""
#. js-lingui-id: X9kySA
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItemFolders.tsx
#: src/modules/navigation-menu-item/display/sections/favorites/components/FavoritesSection.tsx
msgid "Favorites"
msgstr "Favoriten"
@@ -6580,8 +6586,8 @@ msgid "Flow"
msgstr "Fluss"
#. js-lingui-id: kNqMMd
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Folder"
msgstr ""
@@ -6591,8 +6597,8 @@ msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Folders"
msgstr "Ordner"
@@ -8022,7 +8028,7 @@ msgid "Layout"
msgstr "Layout"
#. js-lingui-id: W4nIBb
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
#: src/modules/layout-customization/components/LayoutCustomizationBar.tsx
msgid "Layout customization"
msgstr ""
@@ -8137,8 +8143,8 @@ msgid "Line Chart"
msgstr "Liniendiagramm"
#. js-lingui-id: yzF66j
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Link"
msgstr ""
@@ -8154,12 +8160,12 @@ msgid "Link copied to clipboard"
msgstr "Link in die Zwischenablage kopiert"
#. js-lingui-id: vH3ZQY
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Link label"
msgstr ""
@@ -8798,7 +8804,7 @@ msgid "Most installed version"
msgstr ""
#. js-lingui-id: 3Ib6FN
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move down"
msgstr ""
@@ -8822,12 +8828,12 @@ msgid "Move to a folder"
msgstr ""
#. js-lingui-id: JCPOml
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move to folder"
msgstr ""
#. js-lingui-id: QyioBP
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move up"
msgstr ""
@@ -9073,9 +9079,9 @@ msgid "New Field"
msgstr "Neues Feld"
#. js-lingui-id: 96G6Re
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "New folder"
msgstr ""
@@ -9115,11 +9121,11 @@ msgid "New record"
msgstr "Neuer Datensatz"
#. js-lingui-id: x6Ckh1
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/hooks/useOpenAddItemToFolderPage.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useNavigationMenuItemEditOrganizeActions.ts
#: src/modules/navigation-menu-item/edit/hooks/useOpenAddItemToFolderPage.ts
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
msgid "New sidebar item"
msgstr ""
@@ -9306,7 +9312,7 @@ msgid "No currency"
msgstr "Keine Währung"
#. js-lingui-id: DKVJFE
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "No custom views available"
msgstr ""
@@ -9418,12 +9424,12 @@ msgid "No Files"
msgstr "Keine Dateien"
#. js-lingui-id: pYblOw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folder"
msgstr "Kein Ordner"
#. js-lingui-id: 6XMhqL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folders available"
msgstr ""
@@ -9510,7 +9516,7 @@ msgid "No object found"
msgstr ""
#. js-lingui-id: YFHO2u
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "No objects with views found"
msgstr ""
@@ -9587,14 +9593,14 @@ msgid "No Results"
msgstr "Keine Ergebnisse"
#. js-lingui-id: AxPAXW
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/side-panel/components/SidePanelList.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No results found"
msgstr "Keine Ergebnisse gefunden"
@@ -9619,12 +9625,12 @@ msgid "No Select field"
msgstr "Kein Auswahlfeld"
#. js-lingui-id: RQ6tfU
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
msgid "No system objects available"
msgstr ""
#. js-lingui-id: Yf4rVG
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
msgid "No system objects with views found"
msgstr ""
@@ -9832,9 +9838,9 @@ msgstr "objekt"
#: 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/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Object"
msgstr "Objekt"
@@ -9894,9 +9900,9 @@ msgstr ""
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "Objects"
msgstr "Objekte"
@@ -10076,7 +10082,7 @@ msgid "Open side panel"
msgstr ""
#. js-lingui-id: OV5wZZ
#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx
#: src/modules/navigation-menu-item/display/sections/components/NavigationDrawerOpenedSection.tsx
msgid "Opened"
msgstr "Geöffnet"
@@ -10148,7 +10154,7 @@ msgid "Organization plan"
msgstr ""
#. js-lingui-id: nV6twc
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Organize"
msgstr ""
@@ -10158,9 +10164,9 @@ msgstr ""
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: 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
msgid "Other"
msgstr "Andere"
@@ -10234,7 +10240,7 @@ msgid "Overview"
msgstr "Übersicht"
#. js-lingui-id: LtI9AS
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOwnerSection.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOwnerSection.tsx
msgid "Owner"
msgstr ""
@@ -10427,6 +10433,8 @@ msgstr "Datensatz dauerhaft löschen"
#. js-lingui-id: 35dBYb
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
msgid "Permanently Destroy Record"
msgstr "Datensatz dauerhaft zerstören"
@@ -10437,6 +10445,7 @@ msgstr "Datensätze dauerhaft vernichten"
#. js-lingui-id: YyP8vD
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Permanently Destroy Records"
msgstr "Datensätze dauerhaft zerstören"
@@ -10958,7 +10967,7 @@ msgstr "Datensatz"
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Record"
msgstr "Datensatz"
@@ -11134,14 +11143,16 @@ msgstr "Remote"
msgid "Remove"
msgstr "Entfernen"
#. js-lingui-id: 0Urj9q
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "Remove {navigationMenuItemCount} navigation menu item?"
#. js-lingui-id: XABoh4
#. placeholder {0}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Remove {0} navigation menu items?"
msgstr ""
#. js-lingui-id: Ef5jwi
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "Remove {navigationMenuItemCount} navigation menu items?"
#. js-lingui-id: p/lN7X
#. placeholder {1}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Remove {1} navigation menu item?"
msgstr ""
#. js-lingui-id: 1O32oy
@@ -11171,7 +11182,7 @@ msgid "Remove from favorites"
msgstr "Aus Favoriten entfernen"
#. js-lingui-id: 9VZ6f0
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Remove from sidebar"
msgstr ""
@@ -11218,7 +11229,7 @@ msgstr "Variable entfernen"
#. js-lingui-id: 2wxgft
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/activities/files/components/AttachmentDropdown.tsx
msgid "Rename"
msgstr "Umbenennen"
@@ -11359,6 +11370,8 @@ msgstr "Datensatz wiederherstellen"
#. js-lingui-id: NzMNOA
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
msgid "Restore Record"
msgstr "Datensatz wiederherstellen"
@@ -11370,6 +11383,8 @@ msgstr "Datensätze wiederherstellen"
#. js-lingui-id: Xqj0Cb
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
msgid "Restore Records"
msgstr "Datensätze wiederherstellen"
@@ -11385,7 +11400,7 @@ msgstr "Ergebnis"
#. js-lingui-id: kx0s+n
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Results"
msgstr "Ergebnisse"
@@ -11583,7 +11598,6 @@ msgstr "Samstag"
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
#: src/modules/settings/components/SaveAndCancelButtons/SaveButton.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Save"
msgstr "Speichern"
@@ -11598,11 +11612,6 @@ msgstr "Als neue Ansicht speichern"
msgid "Save Dashboard"
msgstr "Dashboard speichern"
#. js-lingui-id: BZVCCj
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
msgid "Save Page Layout"
msgstr ""
#. js-lingui-id: veLq3R
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Scaffold a new app, then use the CLI to develop, publish, and distribute"
@@ -11647,6 +11656,8 @@ msgstr ""
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Search"
@@ -11685,7 +11696,7 @@ msgid "Search a field..."
msgstr "Feld suchen..."
#. js-lingui-id: ITQFzL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Search a folder..."
msgstr ""
@@ -11706,8 +11717,8 @@ msgid "Search a skill..."
msgstr ""
#. js-lingui-id: hVJ1MP
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
msgid "Search a system object..."
msgstr ""
@@ -11722,7 +11733,7 @@ msgid "Search a type"
msgstr "Einen Typ suchen"
#. js-lingui-id: +MhOVB
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Search a view..."
msgstr ""
@@ -11759,8 +11770,8 @@ msgstr "Ein Objekt suchen"
#. js-lingui-id: BoNHR0
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "Search an object..."
msgstr ""
@@ -11784,7 +11795,7 @@ msgid "Search colors"
msgstr "Farben suchen"
#. js-lingui-id: AR3FV/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
msgid "Search colors..."
msgstr ""
@@ -11853,7 +11864,7 @@ msgid "Search records"
msgstr "Datensätze suchen"
#. js-lingui-id: rRklUH
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Search records..."
msgstr ""
@@ -12079,7 +12090,7 @@ msgid "Select a field to display in this widget"
msgstr "Wählen Sie ein Feld aus, das in diesem Widget angezeigt werden soll"
#. js-lingui-id: dtAvBz
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
msgid "Select a navigation item to edit"
msgstr ""
@@ -12641,6 +12652,11 @@ msgstr "Einige"
msgid "Some folders"
msgstr "Einige Ordner"
#. js-lingui-id: hqUWge
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
msgid "Some layout changes could not be saved"
msgstr ""
#. js-lingui-id: nwtY4N
#: src/pages/auth/Authorize.tsx
msgid "Something went wrong"
@@ -13099,10 +13115,10 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -13481,13 +13497,14 @@ msgstr "Diese Aktion kann nicht rückgängig gemacht werden. Dadurch wird Ihre M
msgid "This action cannot be undone. This will permanently reset your two factor authentication method. <0/> Please type in your email to confirm."
msgstr "Diese Aktion kann nicht rückgängig gemacht werden. Dadurch wird Ihre Zwei-Faktor-Authentifizierung dauerhaft zurückgesetzt. <0/> Bitte geben Sie zur Bestätigung Ihre E-Mail ein."
#. js-lingui-id: lAHIY2
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "This action will delete this folder and all {navigationMenuItemCount} navigation menu items inside. Do you want to continue?"
#. js-lingui-id: XxxrMw
#. placeholder {2}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "This action will delete this folder and all {2} navigation menu items inside. Do you want to continue?"
msgstr ""
#. js-lingui-id: gSO0+U
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
msgstr ""
@@ -14014,7 +14031,7 @@ msgid "Type anything..."
msgstr "Geben Sie irgendetwas ein..."
#. js-lingui-id: UhqKcC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Type to search records"
msgstr ""
@@ -14603,10 +14620,10 @@ msgid "view"
msgstr "ansicht"
#. js-lingui-id: jpctdh
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "View"
msgstr "Ansicht"
@@ -14705,6 +14722,7 @@ msgstr ""
#. js-lingui-id: ecVcAx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "View Previous AI Chats"
msgstr "Vorherige KI-Chats anzeigen"
@@ -14740,7 +14758,7 @@ msgid "View workspace activity logs"
msgstr ""
#. js-lingui-id: 1I6UoR
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr ""
@@ -15034,6 +15052,7 @@ msgstr ""
#. js-lingui-id: 2jzcC5
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
msgid "Workflow duplicated successfully"
msgstr ""
@@ -15097,7 +15116,7 @@ msgstr "Workflows"
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownVisibilityContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
msgid "Workspace"
msgstr "Arbeitsbereich"
+121 -102
View File
@@ -946,23 +946,23 @@ msgid "Add Item"
msgstr "Προσθήκη στοιχείου"
#. js-lingui-id: cI2ZVO
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
msgid "Add item to folder"
msgstr ""
#. js-lingui-id: gaZXkv
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItemsFolder.tsx
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Add menu item"
msgstr ""
#. js-lingui-id: JbORSt
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Add menu item after"
msgstr ""
#. js-lingui-id: DKlI/M
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Add menu item before"
msgstr ""
@@ -1423,7 +1423,7 @@ msgid "All Objects"
msgstr "Όλα τα Αντικείμενα"
#. js-lingui-id: RoFE84
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
msgid "All objects are already in the sidebar"
msgstr ""
@@ -1438,7 +1438,7 @@ msgid "All set!"
msgstr "Όλα έτοιμα!"
#. js-lingui-id: CHvT6e
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
@@ -1539,7 +1539,7 @@ msgid "alphabetical"
msgstr ""
#. js-lingui-id: eO7HSp
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectMenuItem.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectMenuItem.tsx
msgid "Already in navbar"
msgstr ""
@@ -1897,21 +1897,25 @@ msgstr ""
#. js-lingui-id: OJOR8q
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Are you sure you want to destroy these records? They won't be recoverable anymore."
msgstr "Είστε βέβαιοι ότι θέλετε να καταστρέψετε αυτές τις εγγραφές; Δεν θα είναι πλέον ανακτήσιμες."
#. js-lingui-id: UK5TO6
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
msgid "Are you sure you want to destroy this record? It cannot be recovered anymore."
msgstr "Είστε σίγουροι ότι θέλετε να καταστρέψετε αυτή την εγγραφή; Δεν μπορεί να ανακτηθεί πλέον."
#. js-lingui-id: mcHVC1
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
msgid "Are you sure you want to restore these records?"
msgstr "Είστε σίγουροι ότι θέλετε να επαναφέρετε αυτές τις εγγραφές;"
#. js-lingui-id: lmgkf0
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
msgid "Are you sure you want to restore this record?"
msgstr "Είστε σίγουροι ότι θέλετε να επαναφέρετε αυτή την εγγραφή;"
@@ -1952,6 +1956,7 @@ msgstr "Αύξουσα"
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Ask AI"
msgstr "Ρώτησε την AI"
@@ -2559,13 +2564,11 @@ msgstr "Δεν μπορείτε να σαρώσετε; Αντιγράψτε το
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Cancel"
msgstr "Ακύρωση"
#. js-lingui-id: HYLdMN
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Cancel Edition"
msgstr "Ακύρωση Έκδοσης"
@@ -2966,7 +2969,7 @@ msgid "Collapse folder"
msgstr "Σύμπτυξη φακέλου"
#. js-lingui-id: jZlrte
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
msgid "Color"
msgstr ""
@@ -3896,10 +3899,9 @@ msgid "Customization"
msgstr "Προσαρμογή"
#. js-lingui-id: srRMnJ
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditObjectViewBase.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
msgid "Customize"
msgstr ""
@@ -3970,6 +3972,7 @@ msgstr "Σκοτεινό"
#. js-lingui-id: ogQzcZ
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Dashboard duplicated successfully"
msgstr "Ο πίνακας ελέγχου αντιγράφηκε με επιτυχία"
@@ -3983,7 +3986,7 @@ msgstr "Πίνακες Ελέγχου"
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Δεδομένα"
@@ -4305,7 +4308,7 @@ msgstr "διαγραφή"
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: 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/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
@@ -4392,7 +4395,7 @@ msgid "Delete field"
msgstr "Διαγραφή πεδίου"
#. js-lingui-id: 97QUV6
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Delete Folder"
msgstr "Διαγραφή φακέλου"
@@ -4593,6 +4596,7 @@ msgstr "Καταστροφή {objectLabelPlural}"
#. js-lingui-id: kG5yO6
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Destroy Records"
msgstr "Καταστροφή εγγραφών"
@@ -4932,9 +4936,9 @@ msgid "Edit Fields"
msgstr "Επεξεργασία πεδίων"
#. js-lingui-id: uPHscS
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Edit folder"
msgstr ""
@@ -4955,9 +4959,9 @@ msgid "Edit Layout"
msgstr ""
#. js-lingui-id: /PoNoq
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Edit link"
msgstr ""
@@ -6120,11 +6124,13 @@ msgstr ""
#. js-lingui-id: NUmmdc
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Failed to duplicate dashboard"
msgstr "Αποτυχία αντιγραφής του πίνακα ελέγχου"
#. js-lingui-id: WYXxQF
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
msgid "Failed to duplicate workflow"
msgstr ""
@@ -6188,9 +6194,9 @@ msgstr "Αποτυχία αφαίρεσης εικόνας"
msgid "Failed to retry jobs. Please try again later."
msgstr "Αποτυχία επαναποστολής εργασιών. Παρακαλώ δοκιμάστε ξανά αργότερα."
#. js-lingui-id: fuRtgB
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Failed to save navigation layout"
#. js-lingui-id: farFvy
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
msgid "Failed to save layout customization"
msgstr ""
#. js-lingui-id: y3HIOa
@@ -6308,7 +6314,7 @@ msgid "Fast Model"
msgstr ""
#. js-lingui-id: X9kySA
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItemFolders.tsx
#: src/modules/navigation-menu-item/display/sections/favorites/components/FavoritesSection.tsx
msgid "Favorites"
msgstr "Αγαπημένα"
@@ -6580,8 +6586,8 @@ msgid "Flow"
msgstr "Ροή"
#. js-lingui-id: kNqMMd
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Folder"
msgstr ""
@@ -6591,8 +6597,8 @@ msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Folders"
msgstr "Φάκελοι"
@@ -8022,7 +8028,7 @@ msgid "Layout"
msgstr "Διάταξη"
#. js-lingui-id: W4nIBb
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
#: src/modules/layout-customization/components/LayoutCustomizationBar.tsx
msgid "Layout customization"
msgstr ""
@@ -8137,8 +8143,8 @@ msgid "Line Chart"
msgstr "Διάγραμμα γραμμής"
#. js-lingui-id: yzF66j
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Link"
msgstr ""
@@ -8154,12 +8160,12 @@ msgid "Link copied to clipboard"
msgstr "Ο σύνδεσμος αντιγράφηκε στο πρόχειρο"
#. js-lingui-id: vH3ZQY
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Link label"
msgstr ""
@@ -8798,7 +8804,7 @@ msgid "Most installed version"
msgstr ""
#. js-lingui-id: 3Ib6FN
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move down"
msgstr ""
@@ -8822,12 +8828,12 @@ msgid "Move to a folder"
msgstr ""
#. js-lingui-id: JCPOml
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move to folder"
msgstr ""
#. js-lingui-id: QyioBP
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move up"
msgstr ""
@@ -9073,9 +9079,9 @@ msgid "New Field"
msgstr "Νέο Πεδίο"
#. js-lingui-id: 96G6Re
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "New folder"
msgstr ""
@@ -9115,11 +9121,11 @@ msgid "New record"
msgstr "Νέα εγγραφή"
#. js-lingui-id: x6Ckh1
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/hooks/useOpenAddItemToFolderPage.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useNavigationMenuItemEditOrganizeActions.ts
#: src/modules/navigation-menu-item/edit/hooks/useOpenAddItemToFolderPage.ts
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
msgid "New sidebar item"
msgstr ""
@@ -9306,7 +9312,7 @@ msgid "No currency"
msgstr "Χωρίς νόμισμα"
#. js-lingui-id: DKVJFE
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "No custom views available"
msgstr ""
@@ -9418,12 +9424,12 @@ msgid "No Files"
msgstr "Χωρίς αρχεία"
#. js-lingui-id: pYblOw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folder"
msgstr "Κανένας φάκελος"
#. js-lingui-id: 6XMhqL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folders available"
msgstr ""
@@ -9510,7 +9516,7 @@ msgid "No object found"
msgstr ""
#. js-lingui-id: YFHO2u
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "No objects with views found"
msgstr ""
@@ -9587,14 +9593,14 @@ msgid "No Results"
msgstr "Χωρίς αποτελέσματα"
#. js-lingui-id: AxPAXW
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/side-panel/components/SidePanelList.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No results found"
msgstr "Δεν βρέθηκαν αποτελέσματα"
@@ -9619,12 +9625,12 @@ msgid "No Select field"
msgstr "Χωρίς πεδίο Επιλογής"
#. js-lingui-id: RQ6tfU
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
msgid "No system objects available"
msgstr ""
#. js-lingui-id: Yf4rVG
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
msgid "No system objects with views found"
msgstr ""
@@ -9832,9 +9838,9 @@ msgstr "αντικείμενο"
#: 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/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Object"
msgstr "Αντικείμενο"
@@ -9894,9 +9900,9 @@ msgstr ""
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "Objects"
msgstr "Αντικείμενα"
@@ -10076,7 +10082,7 @@ msgid "Open side panel"
msgstr ""
#. js-lingui-id: OV5wZZ
#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx
#: src/modules/navigation-menu-item/display/sections/components/NavigationDrawerOpenedSection.tsx
msgid "Opened"
msgstr "Ανοίχτηκε"
@@ -10148,7 +10154,7 @@ msgid "Organization plan"
msgstr ""
#. js-lingui-id: nV6twc
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Organize"
msgstr ""
@@ -10158,9 +10164,9 @@ msgstr ""
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: 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
msgid "Other"
msgstr "Άλλο"
@@ -10234,7 +10240,7 @@ msgid "Overview"
msgstr "Επισκόπηση"
#. js-lingui-id: LtI9AS
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOwnerSection.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOwnerSection.tsx
msgid "Owner"
msgstr ""
@@ -10427,6 +10433,8 @@ msgstr "Καταστροφή της εγγραφής οριστικά"
#. js-lingui-id: 35dBYb
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
msgid "Permanently Destroy Record"
msgstr "Καταστροφή της εγγραφής οριστικά"
@@ -10437,6 +10445,7 @@ msgstr "Καταστροφή των εγγραφών οριστικά"
#. js-lingui-id: YyP8vD
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Permanently Destroy Records"
msgstr "Καταστρέψτε μόνιμα τις εγγραφές"
@@ -10958,7 +10967,7 @@ msgstr "εγγραφή"
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Record"
msgstr "Εγγραφή"
@@ -11134,14 +11143,16 @@ msgstr "Απομακρυσμένα"
msgid "Remove"
msgstr "Αφαίρεση"
#. js-lingui-id: 0Urj9q
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "Remove {navigationMenuItemCount} navigation menu item?"
#. js-lingui-id: XABoh4
#. placeholder {0}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Remove {0} navigation menu items?"
msgstr ""
#. js-lingui-id: Ef5jwi
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "Remove {navigationMenuItemCount} navigation menu items?"
#. js-lingui-id: p/lN7X
#. placeholder {1}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Remove {1} navigation menu item?"
msgstr ""
#. js-lingui-id: 1O32oy
@@ -11171,7 +11182,7 @@ msgid "Remove from favorites"
msgstr "Αφαίρεση από τα αγαπημένα"
#. js-lingui-id: 9VZ6f0
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Remove from sidebar"
msgstr ""
@@ -11218,7 +11229,7 @@ msgstr "Αφαίρεση μεταβλητής"
#. js-lingui-id: 2wxgft
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/activities/files/components/AttachmentDropdown.tsx
msgid "Rename"
msgstr "Μετονομασία"
@@ -11359,6 +11370,8 @@ msgstr "Επαναφορά εγγραφής"
#. js-lingui-id: NzMNOA
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
msgid "Restore Record"
msgstr "Επαναφορά εγγραφής"
@@ -11370,6 +11383,8 @@ msgstr "Επαναφορά εγγραφών"
#. js-lingui-id: Xqj0Cb
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
msgid "Restore Records"
msgstr "Επαναφορά εγγραφών"
@@ -11385,7 +11400,7 @@ msgstr "Αποτέλεσμα"
#. js-lingui-id: kx0s+n
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Results"
msgstr "Αποτελέσματα"
@@ -11583,7 +11598,6 @@ msgstr "Σάββατο"
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
#: src/modules/settings/components/SaveAndCancelButtons/SaveButton.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Save"
msgstr "Αποθήκευση"
@@ -11598,11 +11612,6 @@ msgstr "Αποθήκευση ως νέα προβολή"
msgid "Save Dashboard"
msgstr "Αποθήκευση πίνακα ελέγχου"
#. js-lingui-id: BZVCCj
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
msgid "Save Page Layout"
msgstr ""
#. js-lingui-id: veLq3R
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Scaffold a new app, then use the CLI to develop, publish, and distribute"
@@ -11647,6 +11656,8 @@ msgstr ""
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Search"
@@ -11685,7 +11696,7 @@ msgid "Search a field..."
msgstr "Αναζήτηση πεδίου..."
#. js-lingui-id: ITQFzL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Search a folder..."
msgstr ""
@@ -11706,8 +11717,8 @@ msgid "Search a skill..."
msgstr ""
#. js-lingui-id: hVJ1MP
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
msgid "Search a system object..."
msgstr ""
@@ -11722,7 +11733,7 @@ msgid "Search a type"
msgstr "Αναζήτηση τύπου"
#. js-lingui-id: +MhOVB
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Search a view..."
msgstr ""
@@ -11759,8 +11770,8 @@ msgstr "Αναζήτηση αντικειμένου"
#. js-lingui-id: BoNHR0
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "Search an object..."
msgstr ""
@@ -11784,7 +11795,7 @@ msgid "Search colors"
msgstr "Αναζήτηση χρωμάτων"
#. js-lingui-id: AR3FV/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
msgid "Search colors..."
msgstr ""
@@ -11853,7 +11864,7 @@ msgid "Search records"
msgstr "Αναζήτηση εγγραφών"
#. js-lingui-id: rRklUH
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Search records..."
msgstr ""
@@ -12079,7 +12090,7 @@ msgid "Select a field to display in this widget"
msgstr "Επιλέξτε ένα πεδίο για εμφάνιση σε αυτό το γραφικό στοιχείο"
#. js-lingui-id: dtAvBz
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
msgid "Select a navigation item to edit"
msgstr ""
@@ -12643,6 +12654,11 @@ msgstr "Μερικά"
msgid "Some folders"
msgstr "Ορισμένοι φάκελοι"
#. js-lingui-id: hqUWge
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
msgid "Some layout changes could not be saved"
msgstr ""
#. js-lingui-id: nwtY4N
#: src/pages/auth/Authorize.tsx
msgid "Something went wrong"
@@ -13101,10 +13117,10 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -13485,13 +13501,14 @@ msgstr "Αυτή η ενέργεια δεν μπορεί να αναιρεθεί
msgid "This action cannot be undone. This will permanently reset your two factor authentication method. <0/> Please type in your email to confirm."
msgstr "Αυτή η ενέργεια δεν μπορεί να αναιρεθεί. Αυτό θα επαναφέρει μόνιμα τη μέθοδο ελέγχου ταυτότητας δύο παραγόντων σας. <0/> Παρακαλώ πληκτρολογήστε το email σας για επιβεβαίωση."
#. js-lingui-id: lAHIY2
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "This action will delete this folder and all {navigationMenuItemCount} navigation menu items inside. Do you want to continue?"
#. js-lingui-id: XxxrMw
#. placeholder {2}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "This action will delete this folder and all {2} navigation menu items inside. Do you want to continue?"
msgstr ""
#. js-lingui-id: gSO0+U
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
msgstr ""
@@ -14018,7 +14035,7 @@ msgid "Type anything..."
msgstr "Πληκτρολογήστε οτιδήποτε..."
#. js-lingui-id: UhqKcC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Type to search records"
msgstr ""
@@ -14607,10 +14624,10 @@ msgid "view"
msgstr "προβολή"
#. js-lingui-id: jpctdh
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "View"
msgstr "Προβολή"
@@ -14709,6 +14726,7 @@ msgstr ""
#. js-lingui-id: ecVcAx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "View Previous AI Chats"
msgstr "Εμφάνιση Προηγούμενων Συνομιλιών AI"
@@ -14744,7 +14762,7 @@ msgid "View workspace activity logs"
msgstr ""
#. js-lingui-id: 1I6UoR
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr ""
@@ -15038,6 +15056,7 @@ msgstr ""
#. js-lingui-id: 2jzcC5
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
msgid "Workflow duplicated successfully"
msgstr ""
@@ -15101,7 +15120,7 @@ msgstr "Ροές Εργασίας"
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownVisibilityContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
msgid "Workspace"
msgstr "Περιοχή Εργασίας"
+125 -106
View File
@@ -941,23 +941,23 @@ msgid "Add Item"
msgstr "Add Item"
#. js-lingui-id: cI2ZVO
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
msgid "Add item to folder"
msgstr "Add item to folder"
#. js-lingui-id: gaZXkv
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItemsFolder.tsx
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Add menu item"
msgstr "Add menu item"
#. js-lingui-id: JbORSt
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Add menu item after"
msgstr "Add menu item after"
#. js-lingui-id: DKlI/M
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Add menu item before"
msgstr "Add menu item before"
@@ -1418,7 +1418,7 @@ msgid "All Objects"
msgstr "All Objects"
#. js-lingui-id: RoFE84
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
msgid "All objects are already in the sidebar"
msgstr "All objects are already in the sidebar"
@@ -1433,7 +1433,7 @@ msgid "All set!"
msgstr "All set!"
#. js-lingui-id: CHvT6e
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
msgid "All system objects are already in the sidebar"
msgstr "All system objects are already in the sidebar"
@@ -1534,7 +1534,7 @@ msgid "alphabetical"
msgstr "alphabetical"
#. js-lingui-id: eO7HSp
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectMenuItem.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectMenuItem.tsx
msgid "Already in navbar"
msgstr "Already in navbar"
@@ -1892,21 +1892,25 @@ msgstr "Are you sure you want to delete this skill? This action cannot be undone
#. js-lingui-id: OJOR8q
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Are you sure you want to destroy these records? They won't be recoverable anymore."
msgstr "Are you sure you want to destroy these records? They won't be recoverable anymore."
#. js-lingui-id: UK5TO6
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
msgid "Are you sure you want to destroy this record? It cannot be recovered anymore."
msgstr "Are you sure you want to destroy this record? It cannot be recovered anymore."
#. js-lingui-id: mcHVC1
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
msgid "Are you sure you want to restore these records?"
msgstr "Are you sure you want to restore these records?"
#. js-lingui-id: lmgkf0
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
msgid "Are you sure you want to restore this record?"
msgstr "Are you sure you want to restore this record?"
@@ -1947,6 +1951,7 @@ msgstr "Ascending"
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Ask AI"
msgstr "Ask AI"
@@ -2554,13 +2559,11 @@ msgstr "Can't scan? Copy the"
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Cancel"
msgstr "Cancel"
#. js-lingui-id: HYLdMN
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Cancel Edition"
msgstr "Cancel Edition"
@@ -2961,7 +2964,7 @@ msgid "Collapse folder"
msgstr "Collapse folder"
#. js-lingui-id: jZlrte
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
msgid "Color"
msgstr "Color"
@@ -3891,10 +3894,9 @@ msgid "Customization"
msgstr "Customization"
#. js-lingui-id: srRMnJ
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditObjectViewBase.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
msgid "Customize"
msgstr "Customize"
@@ -3965,6 +3967,7 @@ msgstr "Dark"
#. js-lingui-id: ogQzcZ
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Dashboard duplicated successfully"
msgstr "Dashboard duplicated successfully"
@@ -3978,7 +3981,7 @@ msgstr "Dashboards"
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Data"
@@ -4300,7 +4303,7 @@ msgstr "delete"
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: 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/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
@@ -4387,7 +4390,7 @@ msgid "Delete field"
msgstr "Delete field"
#. js-lingui-id: 97QUV6
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Delete Folder"
msgstr "Delete Folder"
@@ -4588,6 +4591,7 @@ msgstr "Destroy {objectLabelPlural}"
#. js-lingui-id: kG5yO6
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Destroy Records"
msgstr "Destroy Records"
@@ -4927,9 +4931,9 @@ msgid "Edit Fields"
msgstr "Edit Fields"
#. js-lingui-id: uPHscS
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Edit folder"
msgstr "Edit folder"
@@ -4950,9 +4954,9 @@ msgid "Edit Layout"
msgstr "Edit Layout"
#. js-lingui-id: /PoNoq
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Edit link"
msgstr "Edit link"
@@ -6115,11 +6119,13 @@ msgstr "Failed to delete skill"
#. js-lingui-id: NUmmdc
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Failed to duplicate dashboard"
msgstr "Failed to duplicate dashboard"
#. js-lingui-id: WYXxQF
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
msgid "Failed to duplicate workflow"
msgstr "Failed to duplicate workflow"
@@ -6183,10 +6189,10 @@ msgstr "Failed to remove picture"
msgid "Failed to retry jobs. Please try again later."
msgstr "Failed to retry jobs. Please try again later."
#. js-lingui-id: fuRtgB
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Failed to save navigation layout"
msgstr "Failed to save navigation layout"
#. js-lingui-id: farFvy
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
msgid "Failed to save layout customization"
msgstr "Failed to save layout customization"
#. js-lingui-id: y3HIOa
#: src/pages/settings/ai/SettingsAgentForm.tsx
@@ -6303,7 +6309,7 @@ msgid "Fast Model"
msgstr "Fast Model"
#. js-lingui-id: X9kySA
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItemFolders.tsx
#: src/modules/navigation-menu-item/display/sections/favorites/components/FavoritesSection.tsx
msgid "Favorites"
msgstr "Favorites"
@@ -6575,8 +6581,8 @@ msgid "Flow"
msgstr "Flow"
#. js-lingui-id: kNqMMd
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Folder"
msgstr "Folder"
@@ -6586,8 +6592,8 @@ msgid "Folder name"
msgstr "Folder name"
#. js-lingui-id: HSh8u/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Folders"
msgstr "Folders"
@@ -8017,7 +8023,7 @@ msgid "Layout"
msgstr "Layout"
#. js-lingui-id: W4nIBb
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
#: src/modules/layout-customization/components/LayoutCustomizationBar.tsx
msgid "Layout customization"
msgstr "Layout customization"
@@ -8132,8 +8138,8 @@ msgid "Line Chart"
msgstr "Line Chart"
#. js-lingui-id: yzF66j
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Link"
msgstr "Link"
@@ -8149,12 +8155,12 @@ msgid "Link copied to clipboard"
msgstr "Link copied to clipboard"
#. js-lingui-id: vH3ZQY
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Link label"
msgstr "Link label"
@@ -8793,7 +8799,7 @@ msgid "Most installed version"
msgstr "Most installed version"
#. js-lingui-id: 3Ib6FN
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move down"
msgstr "Move down"
@@ -8817,12 +8823,12 @@ msgid "Move to a folder"
msgstr "Move to a folder"
#. js-lingui-id: JCPOml
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move to folder"
msgstr "Move to folder"
#. js-lingui-id: QyioBP
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move up"
msgstr "Move up"
@@ -9068,9 +9074,9 @@ msgid "New Field"
msgstr "New Field"
#. js-lingui-id: 96G6Re
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "New folder"
msgstr "New folder"
@@ -9110,11 +9116,11 @@ msgid "New record"
msgstr "New record"
#. js-lingui-id: x6Ckh1
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/hooks/useOpenAddItemToFolderPage.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useNavigationMenuItemEditOrganizeActions.ts
#: src/modules/navigation-menu-item/edit/hooks/useOpenAddItemToFolderPage.ts
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
msgid "New sidebar item"
msgstr "New sidebar item"
@@ -9301,7 +9307,7 @@ msgid "No currency"
msgstr "No currency"
#. js-lingui-id: DKVJFE
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "No custom views available"
msgstr "No custom views available"
@@ -9413,12 +9419,12 @@ msgid "No Files"
msgstr "No Files"
#. js-lingui-id: pYblOw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folder"
msgstr "No folder"
#. js-lingui-id: 6XMhqL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folders available"
msgstr "No folders available"
@@ -9505,7 +9511,7 @@ msgid "No object found"
msgstr "No object found"
#. js-lingui-id: YFHO2u
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "No objects with views found"
msgstr "No objects with views found"
@@ -9582,14 +9588,14 @@ msgid "No Results"
msgstr "No Results"
#. js-lingui-id: AxPAXW
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/side-panel/components/SidePanelList.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No results found"
msgstr "No results found"
@@ -9614,12 +9620,12 @@ msgid "No Select field"
msgstr "No Select field"
#. js-lingui-id: RQ6tfU
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
msgid "No system objects available"
msgstr "No system objects available"
#. js-lingui-id: Yf4rVG
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
msgid "No system objects with views found"
msgstr "No system objects with views found"
@@ -9827,9 +9833,9 @@ msgstr "object"
#: 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/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Object"
msgstr "Object"
@@ -9889,9 +9895,9 @@ msgstr "objects"
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "Objects"
msgstr "Objects"
@@ -10071,7 +10077,7 @@ msgid "Open side panel"
msgstr "Open side panel"
#. js-lingui-id: OV5wZZ
#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx
#: src/modules/navigation-menu-item/display/sections/components/NavigationDrawerOpenedSection.tsx
msgid "Opened"
msgstr "Opened"
@@ -10143,7 +10149,7 @@ msgid "Organization plan"
msgstr "Organization plan"
#. js-lingui-id: nV6twc
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Organize"
msgstr "Organize"
@@ -10153,9 +10159,9 @@ msgstr "Organize"
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: 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
msgid "Other"
msgstr "Other"
@@ -10229,7 +10235,7 @@ msgid "Overview"
msgstr "Overview"
#. js-lingui-id: LtI9AS
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOwnerSection.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOwnerSection.tsx
msgid "Owner"
msgstr "Owner"
@@ -10422,6 +10428,8 @@ msgstr "Permanently destroy record"
#. js-lingui-id: 35dBYb
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
msgid "Permanently Destroy Record"
msgstr "Permanently Destroy Record"
@@ -10432,6 +10440,7 @@ msgstr "Permanently destroy records"
#. js-lingui-id: YyP8vD
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Permanently Destroy Records"
msgstr "Permanently Destroy Records"
@@ -10953,7 +10962,7 @@ msgstr "record"
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Record"
msgstr "Record"
@@ -11129,15 +11138,17 @@ msgstr "Remote"
msgid "Remove"
msgstr "Remove"
#. js-lingui-id: 0Urj9q
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "Remove {navigationMenuItemCount} navigation menu item?"
msgstr "Remove {navigationMenuItemCount} navigation menu item?"
#. js-lingui-id: XABoh4
#. placeholder {0}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Remove {0} navigation menu items?"
msgstr "Remove {0} navigation menu items?"
#. js-lingui-id: Ef5jwi
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "Remove {navigationMenuItemCount} navigation menu items?"
msgstr "Remove {navigationMenuItemCount} navigation menu items?"
#. js-lingui-id: p/lN7X
#. placeholder {1}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Remove {1} navigation menu item?"
msgstr "Remove {1} navigation menu item?"
#. js-lingui-id: 1O32oy
#: src/modules/settings/accounts/components/SettingsAccountsRowDropdownMenu.tsx
@@ -11166,7 +11177,7 @@ msgid "Remove from favorites"
msgstr "Remove from favorites"
#. js-lingui-id: 9VZ6f0
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Remove from sidebar"
msgstr "Remove from sidebar"
@@ -11213,7 +11224,7 @@ msgstr "Remove variable"
#. js-lingui-id: 2wxgft
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/activities/files/components/AttachmentDropdown.tsx
msgid "Rename"
msgstr "Rename"
@@ -11354,6 +11365,8 @@ msgstr "Restore record"
#. js-lingui-id: NzMNOA
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
msgid "Restore Record"
msgstr "Restore Record"
@@ -11365,6 +11378,8 @@ msgstr "Restore records"
#. js-lingui-id: Xqj0Cb
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
msgid "Restore Records"
msgstr "Restore Records"
@@ -11380,7 +11395,7 @@ msgstr "Result"
#. js-lingui-id: kx0s+n
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Results"
msgstr "Results"
@@ -11578,7 +11593,6 @@ msgstr "Saturday"
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
#: src/modules/settings/components/SaveAndCancelButtons/SaveButton.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Save"
msgstr "Save"
@@ -11593,11 +11607,6 @@ msgstr "Save as new view"
msgid "Save Dashboard"
msgstr "Save Dashboard"
#. js-lingui-id: BZVCCj
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
msgid "Save Page Layout"
msgstr "Save Page Layout"
#. js-lingui-id: veLq3R
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Scaffold a new app, then use the CLI to develop, publish, and distribute"
@@ -11642,6 +11651,8 @@ msgstr "Score"
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Search"
@@ -11680,7 +11691,7 @@ msgid "Search a field..."
msgstr "Search a field..."
#. js-lingui-id: ITQFzL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Search a folder..."
msgstr "Search a folder..."
@@ -11701,8 +11712,8 @@ msgid "Search a skill..."
msgstr "Search a skill..."
#. js-lingui-id: hVJ1MP
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
msgid "Search a system object..."
msgstr "Search a system object..."
@@ -11717,7 +11728,7 @@ msgid "Search a type"
msgstr "Search a type"
#. js-lingui-id: +MhOVB
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Search a view..."
msgstr "Search a view..."
@@ -11754,8 +11765,8 @@ msgstr "Search an object"
#. js-lingui-id: BoNHR0
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "Search an object..."
msgstr "Search an object..."
@@ -11779,7 +11790,7 @@ msgid "Search colors"
msgstr "Search colors"
#. js-lingui-id: AR3FV/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
msgid "Search colors..."
msgstr "Search colors..."
@@ -11848,7 +11859,7 @@ msgid "Search records"
msgstr "Search records"
#. js-lingui-id: rRklUH
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Search records..."
msgstr "Search records..."
@@ -12074,7 +12085,7 @@ msgid "Select a field to display in this widget"
msgstr "Select a field to display in this widget"
#. js-lingui-id: dtAvBz
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
msgid "Select a navigation item to edit"
msgstr "Select a navigation item to edit"
@@ -12636,6 +12647,11 @@ msgstr "Some"
msgid "Some folders"
msgstr "Some folders"
#. js-lingui-id: hqUWge
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
msgid "Some layout changes could not be saved"
msgstr "Some layout changes could not be saved"
#. js-lingui-id: nwtY4N
#: src/pages/auth/Authorize.tsx
msgid "Something went wrong"
@@ -13094,10 +13110,10 @@ msgstr "System fields"
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr "System objects"
@@ -13478,13 +13494,14 @@ msgstr "This action cannot be undone. This will permanently remove your membersh
msgid "This action cannot be undone. This will permanently reset your two factor authentication method. <0/> Please type in your email to confirm."
msgstr "This action cannot be undone. This will permanently reset your two factor authentication method. <0/> Please type in your email to confirm."
#. js-lingui-id: lAHIY2
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "This action will delete this folder and all {navigationMenuItemCount} navigation menu items inside. Do you want to continue?"
msgstr "This action will delete this folder and all {navigationMenuItemCount} navigation menu items inside. Do you want to continue?"
#. js-lingui-id: XxxrMw
#. placeholder {2}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "This action will delete this folder and all {2} navigation menu items inside. Do you want to continue?"
msgstr "This action will delete this folder and all {2} navigation menu items inside. Do you want to continue?"
#. js-lingui-id: gSO0+U
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
msgstr "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
@@ -14011,7 +14028,7 @@ msgid "Type anything..."
msgstr "Type anything..."
#. js-lingui-id: UhqKcC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Type to search records"
msgstr "Type to search records"
@@ -14600,10 +14617,10 @@ msgid "view"
msgstr "view"
#. js-lingui-id: jpctdh
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "View"
msgstr "View"
@@ -14702,6 +14719,7 @@ msgstr "View marketplace page"
#. js-lingui-id: ecVcAx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "View Previous AI Chats"
msgstr "View Previous AI Chats"
@@ -14737,7 +14755,7 @@ msgid "View workspace activity logs"
msgstr "View workspace activity logs"
#. js-lingui-id: 1I6UoR
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr "Views"
@@ -15031,6 +15049,7 @@ msgstr "Workflow agents"
#. js-lingui-id: 2jzcC5
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
msgid "Workflow duplicated successfully"
msgstr "Workflow duplicated successfully"
@@ -15094,7 +15113,7 @@ msgstr "Workflows"
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownVisibilityContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
msgid "Workspace"
msgstr "Workspace"
+121 -102
View File
@@ -946,23 +946,23 @@ msgid "Add Item"
msgstr "Agregar elemento"
#. js-lingui-id: cI2ZVO
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
msgid "Add item to folder"
msgstr ""
#. js-lingui-id: gaZXkv
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItemsFolder.tsx
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Add menu item"
msgstr ""
#. js-lingui-id: JbORSt
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Add menu item after"
msgstr ""
#. js-lingui-id: DKlI/M
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Add menu item before"
msgstr ""
@@ -1423,7 +1423,7 @@ msgid "All Objects"
msgstr "Todos los objetos"
#. js-lingui-id: RoFE84
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
msgid "All objects are already in the sidebar"
msgstr ""
@@ -1438,7 +1438,7 @@ msgid "All set!"
msgstr "¡Todo listo!"
#. js-lingui-id: CHvT6e
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
@@ -1539,7 +1539,7 @@ msgid "alphabetical"
msgstr ""
#. js-lingui-id: eO7HSp
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectMenuItem.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectMenuItem.tsx
msgid "Already in navbar"
msgstr ""
@@ -1897,21 +1897,25 @@ msgstr ""
#. js-lingui-id: OJOR8q
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Are you sure you want to destroy these records? They won't be recoverable anymore."
msgstr "¿Está seguro de que desea destruir estos registros? Ya no serán recuperables."
#. js-lingui-id: UK5TO6
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
msgid "Are you sure you want to destroy this record? It cannot be recovered anymore."
msgstr "¿Está seguro de que desea destruir este registro? Ya no se podrá recuperar."
#. js-lingui-id: mcHVC1
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
msgid "Are you sure you want to restore these records?"
msgstr "¿Está seguro de que desea restaurar estos registros?"
#. js-lingui-id: lmgkf0
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
msgid "Are you sure you want to restore this record?"
msgstr "¿Está seguro de que desea restaurar este registro?"
@@ -1952,6 +1956,7 @@ msgstr "Ascendente"
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Ask AI"
msgstr "Preguntar a IA"
@@ -2559,13 +2564,11 @@ msgstr "¿No puedes escanear? Copia el"
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Cancel"
msgstr "Cancelar"
#. js-lingui-id: HYLdMN
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Cancel Edition"
msgstr "Cancelar edición"
@@ -2966,7 +2969,7 @@ msgid "Collapse folder"
msgstr "Contraer carpeta"
#. js-lingui-id: jZlrte
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
msgid "Color"
msgstr ""
@@ -3896,10 +3899,9 @@ msgid "Customization"
msgstr "Personalización"
#. js-lingui-id: srRMnJ
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditObjectViewBase.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
msgid "Customize"
msgstr ""
@@ -3970,6 +3972,7 @@ msgstr "Oscuro"
#. js-lingui-id: ogQzcZ
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Dashboard duplicated successfully"
msgstr "Se duplicó el tablero con éxito"
@@ -3983,7 +3986,7 @@ msgstr "Tableros"
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Datos"
@@ -4305,7 +4308,7 @@ msgstr "eliminar"
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: 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/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
@@ -4392,7 +4395,7 @@ msgid "Delete field"
msgstr "Eliminar campo"
#. js-lingui-id: 97QUV6
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Delete Folder"
msgstr "Eliminar carpeta"
@@ -4593,6 +4596,7 @@ msgstr "Destruir {objectLabelPlural}"
#. js-lingui-id: kG5yO6
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Destroy Records"
msgstr "Destruir registros"
@@ -4932,9 +4936,9 @@ msgid "Edit Fields"
msgstr "Editar campos"
#. js-lingui-id: uPHscS
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Edit folder"
msgstr ""
@@ -4955,9 +4959,9 @@ msgid "Edit Layout"
msgstr ""
#. js-lingui-id: /PoNoq
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Edit link"
msgstr ""
@@ -6120,11 +6124,13 @@ msgstr ""
#. js-lingui-id: NUmmdc
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Failed to duplicate dashboard"
msgstr "Error al duplicar el tablero"
#. js-lingui-id: WYXxQF
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
msgid "Failed to duplicate workflow"
msgstr "Error al duplicar el flujo de trabajo"
@@ -6188,9 +6194,9 @@ msgstr "No se pudo eliminar la imagen"
msgid "Failed to retry jobs. Please try again later."
msgstr "No se pudieron reintentar los trabajos. Por favor, inténtelo de nuevo más tarde."
#. js-lingui-id: fuRtgB
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Failed to save navigation layout"
#. js-lingui-id: farFvy
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
msgid "Failed to save layout customization"
msgstr ""
#. js-lingui-id: y3HIOa
@@ -6308,7 +6314,7 @@ msgid "Fast Model"
msgstr ""
#. js-lingui-id: X9kySA
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItemFolders.tsx
#: src/modules/navigation-menu-item/display/sections/favorites/components/FavoritesSection.tsx
msgid "Favorites"
msgstr "Favoritos"
@@ -6580,8 +6586,8 @@ msgid "Flow"
msgstr "Flujo"
#. js-lingui-id: kNqMMd
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Folder"
msgstr ""
@@ -6591,8 +6597,8 @@ msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Folders"
msgstr "Carpetas"
@@ -8022,7 +8028,7 @@ msgid "Layout"
msgstr "Diseño"
#. js-lingui-id: W4nIBb
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
#: src/modules/layout-customization/components/LayoutCustomizationBar.tsx
msgid "Layout customization"
msgstr ""
@@ -8137,8 +8143,8 @@ msgid "Line Chart"
msgstr "Gráfico de líneas"
#. js-lingui-id: yzF66j
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Link"
msgstr ""
@@ -8154,12 +8160,12 @@ msgid "Link copied to clipboard"
msgstr "Enlace copiado al portapapeles"
#. js-lingui-id: vH3ZQY
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Link label"
msgstr ""
@@ -8798,7 +8804,7 @@ msgid "Most installed version"
msgstr ""
#. js-lingui-id: 3Ib6FN
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move down"
msgstr ""
@@ -8822,12 +8828,12 @@ msgid "Move to a folder"
msgstr ""
#. js-lingui-id: JCPOml
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move to folder"
msgstr ""
#. js-lingui-id: QyioBP
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move up"
msgstr ""
@@ -9073,9 +9079,9 @@ msgid "New Field"
msgstr "Nuevo Campo"
#. js-lingui-id: 96G6Re
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "New folder"
msgstr ""
@@ -9115,11 +9121,11 @@ msgid "New record"
msgstr "Nuevo registro"
#. js-lingui-id: x6Ckh1
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/hooks/useOpenAddItemToFolderPage.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useNavigationMenuItemEditOrganizeActions.ts
#: src/modules/navigation-menu-item/edit/hooks/useOpenAddItemToFolderPage.ts
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
msgid "New sidebar item"
msgstr ""
@@ -9306,7 +9312,7 @@ msgid "No currency"
msgstr "Sin moneda"
#. js-lingui-id: DKVJFE
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "No custom views available"
msgstr ""
@@ -9418,12 +9424,12 @@ msgid "No Files"
msgstr "Sin archivos"
#. js-lingui-id: pYblOw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folder"
msgstr "Sin carpeta"
#. js-lingui-id: 6XMhqL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folders available"
msgstr ""
@@ -9510,7 +9516,7 @@ msgid "No object found"
msgstr ""
#. js-lingui-id: YFHO2u
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "No objects with views found"
msgstr ""
@@ -9587,14 +9593,14 @@ msgid "No Results"
msgstr "Sin resultados"
#. js-lingui-id: AxPAXW
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/side-panel/components/SidePanelList.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No results found"
msgstr "No se encontraron resultados"
@@ -9619,12 +9625,12 @@ msgid "No Select field"
msgstr "Sin campo de selección"
#. js-lingui-id: RQ6tfU
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
msgid "No system objects available"
msgstr ""
#. js-lingui-id: Yf4rVG
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
msgid "No system objects with views found"
msgstr ""
@@ -9832,9 +9838,9 @@ msgstr "objeto"
#: 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/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Object"
msgstr "Objeto"
@@ -9894,9 +9900,9 @@ msgstr ""
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "Objects"
msgstr "Objetos"
@@ -10076,7 +10082,7 @@ msgid "Open side panel"
msgstr ""
#. js-lingui-id: OV5wZZ
#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx
#: src/modules/navigation-menu-item/display/sections/components/NavigationDrawerOpenedSection.tsx
msgid "Opened"
msgstr "Abierto"
@@ -10148,7 +10154,7 @@ msgid "Organization plan"
msgstr ""
#. js-lingui-id: nV6twc
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Organize"
msgstr ""
@@ -10158,9 +10164,9 @@ msgstr ""
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: 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
msgid "Other"
msgstr "Otros"
@@ -10234,7 +10240,7 @@ msgid "Overview"
msgstr "Resumen"
#. js-lingui-id: LtI9AS
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOwnerSection.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOwnerSection.tsx
msgid "Owner"
msgstr ""
@@ -10427,6 +10433,8 @@ msgstr "Destruir registro permanentemente"
#. js-lingui-id: 35dBYb
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
msgid "Permanently Destroy Record"
msgstr "Destruir registro permanentemente"
@@ -10437,6 +10445,7 @@ msgstr "Destruir registros de forma permanente"
#. js-lingui-id: YyP8vD
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Permanently Destroy Records"
msgstr "Destruir registros de forma permanente"
@@ -10958,7 +10967,7 @@ msgstr "registro"
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Record"
msgstr "Registro"
@@ -11134,14 +11143,16 @@ msgstr "Remoto"
msgid "Remove"
msgstr "Eliminar"
#. js-lingui-id: 0Urj9q
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "Remove {navigationMenuItemCount} navigation menu item?"
#. js-lingui-id: XABoh4
#. placeholder {0}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Remove {0} navigation menu items?"
msgstr ""
#. js-lingui-id: Ef5jwi
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "Remove {navigationMenuItemCount} navigation menu items?"
#. js-lingui-id: p/lN7X
#. placeholder {1}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Remove {1} navigation menu item?"
msgstr ""
#. js-lingui-id: 1O32oy
@@ -11171,7 +11182,7 @@ msgid "Remove from favorites"
msgstr "Quitar de favoritos"
#. js-lingui-id: 9VZ6f0
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Remove from sidebar"
msgstr ""
@@ -11218,7 +11229,7 @@ msgstr "Eliminar variable"
#. js-lingui-id: 2wxgft
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/activities/files/components/AttachmentDropdown.tsx
msgid "Rename"
msgstr "Renombrar"
@@ -11359,6 +11370,8 @@ msgstr "Restaurar registro"
#. js-lingui-id: NzMNOA
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
msgid "Restore Record"
msgstr "Restaurar registro"
@@ -11370,6 +11383,8 @@ msgstr "Restaurar registros"
#. js-lingui-id: Xqj0Cb
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
msgid "Restore Records"
msgstr "Restaurar registros"
@@ -11385,7 +11400,7 @@ msgstr "Resultado"
#. js-lingui-id: kx0s+n
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Results"
msgstr "Resultados"
@@ -11583,7 +11598,6 @@ msgstr "Sábado"
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
#: src/modules/settings/components/SaveAndCancelButtons/SaveButton.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Save"
msgstr "Guardar"
@@ -11598,11 +11612,6 @@ msgstr "Guardar como nueva vista"
msgid "Save Dashboard"
msgstr "Guardar Tablero"
#. js-lingui-id: BZVCCj
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
msgid "Save Page Layout"
msgstr ""
#. js-lingui-id: veLq3R
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Scaffold a new app, then use the CLI to develop, publish, and distribute"
@@ -11647,6 +11656,8 @@ msgstr ""
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Search"
@@ -11685,7 +11696,7 @@ msgid "Search a field..."
msgstr "Buscar un campo..."
#. js-lingui-id: ITQFzL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Search a folder..."
msgstr ""
@@ -11706,8 +11717,8 @@ msgid "Search a skill..."
msgstr ""
#. js-lingui-id: hVJ1MP
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
msgid "Search a system object..."
msgstr ""
@@ -11722,7 +11733,7 @@ msgid "Search a type"
msgstr "Buscar un tipo"
#. js-lingui-id: +MhOVB
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Search a view..."
msgstr ""
@@ -11759,8 +11770,8 @@ msgstr "Buscar un objeto"
#. js-lingui-id: BoNHR0
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "Search an object..."
msgstr ""
@@ -11784,7 +11795,7 @@ msgid "Search colors"
msgstr "Buscar colores"
#. js-lingui-id: AR3FV/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
msgid "Search colors..."
msgstr ""
@@ -11853,7 +11864,7 @@ msgid "Search records"
msgstr "Buscar registros"
#. js-lingui-id: rRklUH
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Search records..."
msgstr ""
@@ -12079,7 +12090,7 @@ msgid "Select a field to display in this widget"
msgstr "Selecciona un campo para mostrar en este widget"
#. js-lingui-id: dtAvBz
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
msgid "Select a navigation item to edit"
msgstr ""
@@ -12641,6 +12652,11 @@ msgstr "Alguno"
msgid "Some folders"
msgstr "Algunas carpetas"
#. js-lingui-id: hqUWge
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
msgid "Some layout changes could not be saved"
msgstr ""
#. js-lingui-id: nwtY4N
#: src/pages/auth/Authorize.tsx
msgid "Something went wrong"
@@ -13099,10 +13115,10 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr "Objetos del sistema"
@@ -13483,13 +13499,14 @@ msgstr "Esta acción no se puede deshacer. Esto eliminará permanentemente su me
msgid "This action cannot be undone. This will permanently reset your two factor authentication method. <0/> Please type in your email to confirm."
msgstr "Esta acción no se puede deshacer. Esto restablecerá permanentemente tu método de autenticación de dos factores. <0/> Escribe tu correo electrónico para confirmar."
#. js-lingui-id: lAHIY2
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "This action will delete this folder and all {navigationMenuItemCount} navigation menu items inside. Do you want to continue?"
#. js-lingui-id: XxxrMw
#. placeholder {2}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "This action will delete this folder and all {2} navigation menu items inside. Do you want to continue?"
msgstr ""
#. js-lingui-id: gSO0+U
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
msgstr ""
@@ -14016,7 +14033,7 @@ msgid "Type anything..."
msgstr "Escribe cualquier cosa..."
#. js-lingui-id: UhqKcC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Type to search records"
msgstr ""
@@ -14605,10 +14622,10 @@ msgid "view"
msgstr "vista"
#. js-lingui-id: jpctdh
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "View"
msgstr "Vista"
@@ -14707,6 +14724,7 @@ msgstr ""
#. js-lingui-id: ecVcAx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "View Previous AI Chats"
msgstr "Ver chats previos de IA"
@@ -14742,7 +14760,7 @@ msgid "View workspace activity logs"
msgstr ""
#. js-lingui-id: 1I6UoR
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr ""
@@ -15036,6 +15054,7 @@ msgstr ""
#. js-lingui-id: 2jzcC5
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
msgid "Workflow duplicated successfully"
msgstr "Se duplicó el Workflow con éxito"
@@ -15099,7 +15118,7 @@ msgstr "Workflows"
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownVisibilityContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
msgid "Workspace"
msgstr "Espacio de trabajo"
+121 -102
View File
@@ -946,23 +946,23 @@ msgid "Add Item"
msgstr "Lisää kohde"
#. js-lingui-id: cI2ZVO
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
msgid "Add item to folder"
msgstr ""
#. js-lingui-id: gaZXkv
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItemsFolder.tsx
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Add menu item"
msgstr ""
#. js-lingui-id: JbORSt
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Add menu item after"
msgstr ""
#. js-lingui-id: DKlI/M
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Add menu item before"
msgstr ""
@@ -1423,7 +1423,7 @@ msgid "All Objects"
msgstr "Kaikki objektit"
#. js-lingui-id: RoFE84
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
msgid "All objects are already in the sidebar"
msgstr ""
@@ -1438,7 +1438,7 @@ msgid "All set!"
msgstr "Valmista!"
#. js-lingui-id: CHvT6e
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
@@ -1539,7 +1539,7 @@ msgid "alphabetical"
msgstr ""
#. js-lingui-id: eO7HSp
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectMenuItem.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectMenuItem.tsx
msgid "Already in navbar"
msgstr ""
@@ -1897,21 +1897,25 @@ msgstr ""
#. js-lingui-id: OJOR8q
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Are you sure you want to destroy these records? They won't be recoverable anymore."
msgstr "Oletko varma, että haluat tuhota nämä tietueet? Niitä ei voida enää palauttaa."
#. js-lingui-id: UK5TO6
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
msgid "Are you sure you want to destroy this record? It cannot be recovered anymore."
msgstr "Oletko varma, että haluat tuhota tämän tietueen? Sitä ei voi enää palauttaa."
#. js-lingui-id: mcHVC1
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
msgid "Are you sure you want to restore these records?"
msgstr "Oletko varma, että haluat palauttaa nämä tietueet?"
#. js-lingui-id: lmgkf0
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
msgid "Are you sure you want to restore this record?"
msgstr "Oletko varma, että haluat palauttaa tämän tietueen?"
@@ -1952,6 +1956,7 @@ msgstr "Nouseva"
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Ask AI"
msgstr "Kysy AI:lta"
@@ -2559,13 +2564,11 @@ msgstr "Et voi skannata? Kopioi"
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Cancel"
msgstr "Peruuta"
#. js-lingui-id: HYLdMN
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Cancel Edition"
msgstr "Peruuta muokkaus"
@@ -2966,7 +2969,7 @@ msgid "Collapse folder"
msgstr "Supista kansio"
#. js-lingui-id: jZlrte
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
msgid "Color"
msgstr ""
@@ -3896,10 +3899,9 @@ msgid "Customization"
msgstr "Mukauttaminen"
#. js-lingui-id: srRMnJ
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditObjectViewBase.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
msgid "Customize"
msgstr ""
@@ -3970,6 +3972,7 @@ msgstr "Tumma"
#. js-lingui-id: ogQzcZ
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Dashboard duplicated successfully"
msgstr "Hallintapaneeli monistettiin onnistuneesti"
@@ -3983,7 +3986,7 @@ msgstr "Koontinäytöt"
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Data"
@@ -4305,7 +4308,7 @@ msgstr "poista"
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: 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/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
@@ -4392,7 +4395,7 @@ msgid "Delete field"
msgstr "Poista kenttä"
#. js-lingui-id: 97QUV6
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Delete Folder"
msgstr "Poista kansio"
@@ -4593,6 +4596,7 @@ msgstr "Tuhoa {objectLabelPlural}"
#. js-lingui-id: kG5yO6
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Destroy Records"
msgstr "Tuhota tietueet"
@@ -4932,9 +4936,9 @@ msgid "Edit Fields"
msgstr "Muokkaa kenttiä"
#. js-lingui-id: uPHscS
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Edit folder"
msgstr ""
@@ -4955,9 +4959,9 @@ msgid "Edit Layout"
msgstr ""
#. js-lingui-id: /PoNoq
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Edit link"
msgstr ""
@@ -6120,11 +6124,13 @@ msgstr ""
#. js-lingui-id: NUmmdc
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Failed to duplicate dashboard"
msgstr "Hallintapaneelin monistaminen epäonnistui"
#. js-lingui-id: WYXxQF
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
msgid "Failed to duplicate workflow"
msgstr ""
@@ -6188,9 +6194,9 @@ msgstr "Kuvan poistaminen epäonnistui"
msgid "Failed to retry jobs. Please try again later."
msgstr "Epäonnistui uusien tehtävien yrittämisessä. Yritä myöhemmin uudelleen."
#. js-lingui-id: fuRtgB
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Failed to save navigation layout"
#. js-lingui-id: farFvy
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
msgid "Failed to save layout customization"
msgstr ""
#. js-lingui-id: y3HIOa
@@ -6308,7 +6314,7 @@ msgid "Fast Model"
msgstr ""
#. js-lingui-id: X9kySA
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItemFolders.tsx
#: src/modules/navigation-menu-item/display/sections/favorites/components/FavoritesSection.tsx
msgid "Favorites"
msgstr "Suosikit"
@@ -6580,8 +6586,8 @@ msgid "Flow"
msgstr "Virtaus"
#. js-lingui-id: kNqMMd
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Folder"
msgstr ""
@@ -6591,8 +6597,8 @@ msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Folders"
msgstr "Kansiot"
@@ -8022,7 +8028,7 @@ msgid "Layout"
msgstr "Ulkoasu"
#. js-lingui-id: W4nIBb
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
#: src/modules/layout-customization/components/LayoutCustomizationBar.tsx
msgid "Layout customization"
msgstr ""
@@ -8137,8 +8143,8 @@ msgid "Line Chart"
msgstr "Viivakaavio"
#. js-lingui-id: yzF66j
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Link"
msgstr ""
@@ -8154,12 +8160,12 @@ msgid "Link copied to clipboard"
msgstr "Linkki kopioitu leikepöydälle"
#. js-lingui-id: vH3ZQY
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Link label"
msgstr ""
@@ -8798,7 +8804,7 @@ msgid "Most installed version"
msgstr ""
#. js-lingui-id: 3Ib6FN
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move down"
msgstr ""
@@ -8822,12 +8828,12 @@ msgid "Move to a folder"
msgstr ""
#. js-lingui-id: JCPOml
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move to folder"
msgstr ""
#. js-lingui-id: QyioBP
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move up"
msgstr ""
@@ -9073,9 +9079,9 @@ msgid "New Field"
msgstr "Uusi kenttä"
#. js-lingui-id: 96G6Re
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "New folder"
msgstr ""
@@ -9115,11 +9121,11 @@ msgid "New record"
msgstr "Uusi tietue"
#. js-lingui-id: x6Ckh1
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/hooks/useOpenAddItemToFolderPage.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useNavigationMenuItemEditOrganizeActions.ts
#: src/modules/navigation-menu-item/edit/hooks/useOpenAddItemToFolderPage.ts
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
msgid "New sidebar item"
msgstr ""
@@ -9306,7 +9312,7 @@ msgid "No currency"
msgstr "Ei valuuttaa"
#. js-lingui-id: DKVJFE
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "No custom views available"
msgstr ""
@@ -9418,12 +9424,12 @@ msgid "No Files"
msgstr "Ei tiedostoja"
#. js-lingui-id: pYblOw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folder"
msgstr "Ei kansiota"
#. js-lingui-id: 6XMhqL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folders available"
msgstr ""
@@ -9510,7 +9516,7 @@ msgid "No object found"
msgstr ""
#. js-lingui-id: YFHO2u
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "No objects with views found"
msgstr ""
@@ -9587,14 +9593,14 @@ msgid "No Results"
msgstr "Ei tuloksia"
#. js-lingui-id: AxPAXW
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/side-panel/components/SidePanelList.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No results found"
msgstr "Tuloksia ei löytynyt"
@@ -9619,12 +9625,12 @@ msgid "No Select field"
msgstr "Ei valintakenttää"
#. js-lingui-id: RQ6tfU
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
msgid "No system objects available"
msgstr ""
#. js-lingui-id: Yf4rVG
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
msgid "No system objects with views found"
msgstr ""
@@ -9832,9 +9838,9 @@ msgstr "objekti"
#: 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/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Object"
msgstr "Objekti"
@@ -9894,9 +9900,9 @@ msgstr ""
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "Objects"
msgstr "Objektit"
@@ -10076,7 +10082,7 @@ msgid "Open side panel"
msgstr ""
#. js-lingui-id: OV5wZZ
#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx
#: src/modules/navigation-menu-item/display/sections/components/NavigationDrawerOpenedSection.tsx
msgid "Opened"
msgstr "Avattu"
@@ -10148,7 +10154,7 @@ msgid "Organization plan"
msgstr ""
#. js-lingui-id: nV6twc
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Organize"
msgstr ""
@@ -10158,9 +10164,9 @@ msgstr ""
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: 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
msgid "Other"
msgstr "Muu"
@@ -10234,7 +10240,7 @@ msgid "Overview"
msgstr "Yleiskatsaus"
#. js-lingui-id: LtI9AS
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOwnerSection.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOwnerSection.tsx
msgid "Owner"
msgstr ""
@@ -10427,6 +10433,8 @@ msgstr "Tuhotaan tietue pysyvästi"
#. js-lingui-id: 35dBYb
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
msgid "Permanently Destroy Record"
msgstr "Tuhota tiedosto pysyvästi"
@@ -10437,6 +10445,7 @@ msgstr "Tuhotaan tietueet pysyvästi"
#. js-lingui-id: YyP8vD
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Permanently Destroy Records"
msgstr "Tuhota pysyvästi tietueet"
@@ -10958,7 +10967,7 @@ msgstr "tietue"
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Record"
msgstr "Tietue"
@@ -11134,14 +11143,16 @@ msgstr "Etä"
msgid "Remove"
msgstr "Poista"
#. js-lingui-id: 0Urj9q
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "Remove {navigationMenuItemCount} navigation menu item?"
#. js-lingui-id: XABoh4
#. placeholder {0}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Remove {0} navigation menu items?"
msgstr ""
#. js-lingui-id: Ef5jwi
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "Remove {navigationMenuItemCount} navigation menu items?"
#. js-lingui-id: p/lN7X
#. placeholder {1}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Remove {1} navigation menu item?"
msgstr ""
#. js-lingui-id: 1O32oy
@@ -11171,7 +11182,7 @@ msgid "Remove from favorites"
msgstr "Poista suosikeista"
#. js-lingui-id: 9VZ6f0
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Remove from sidebar"
msgstr ""
@@ -11218,7 +11229,7 @@ msgstr "Poista muuttuja"
#. js-lingui-id: 2wxgft
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/activities/files/components/AttachmentDropdown.tsx
msgid "Rename"
msgstr "Nimeä uudelleen"
@@ -11359,6 +11370,8 @@ msgstr "Palauta tietue"
#. js-lingui-id: NzMNOA
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
msgid "Restore Record"
msgstr "Palauta tietue"
@@ -11370,6 +11383,8 @@ msgstr "Palauta tietueet"
#. js-lingui-id: Xqj0Cb
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
msgid "Restore Records"
msgstr "Palauta tietueet"
@@ -11385,7 +11400,7 @@ msgstr "Tulos"
#. js-lingui-id: kx0s+n
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Results"
msgstr "Tulokset"
@@ -11583,7 +11598,6 @@ msgstr "Lauantai"
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
#: src/modules/settings/components/SaveAndCancelButtons/SaveButton.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Save"
msgstr "Tallenna"
@@ -11598,11 +11612,6 @@ msgstr "Tallenna uutena näkymänä"
msgid "Save Dashboard"
msgstr "Tallenna hallintapaneeli"
#. js-lingui-id: BZVCCj
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
msgid "Save Page Layout"
msgstr ""
#. js-lingui-id: veLq3R
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Scaffold a new app, then use the CLI to develop, publish, and distribute"
@@ -11647,6 +11656,8 @@ msgstr ""
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Search"
@@ -11685,7 +11696,7 @@ msgid "Search a field..."
msgstr "Etsi kenttää..."
#. js-lingui-id: ITQFzL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Search a folder..."
msgstr ""
@@ -11706,8 +11717,8 @@ msgid "Search a skill..."
msgstr ""
#. js-lingui-id: hVJ1MP
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
msgid "Search a system object..."
msgstr ""
@@ -11722,7 +11733,7 @@ msgid "Search a type"
msgstr "Etsi tyyppiä"
#. js-lingui-id: +MhOVB
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Search a view..."
msgstr ""
@@ -11759,8 +11770,8 @@ msgstr "Etsi objekti"
#. js-lingui-id: BoNHR0
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "Search an object..."
msgstr ""
@@ -11784,7 +11795,7 @@ msgid "Search colors"
msgstr "Etsi värejä"
#. js-lingui-id: AR3FV/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
msgid "Search colors..."
msgstr ""
@@ -11853,7 +11864,7 @@ msgid "Search records"
msgstr "Hae tietueita"
#. js-lingui-id: rRklUH
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Search records..."
msgstr ""
@@ -12079,7 +12090,7 @@ msgid "Select a field to display in this widget"
msgstr "Valitse kenttä, joka näytetään tässä widgetissä"
#. js-lingui-id: dtAvBz
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
msgid "Select a navigation item to edit"
msgstr ""
@@ -12641,6 +12652,11 @@ msgstr "Jotkut"
msgid "Some folders"
msgstr "Jotkin kansiot"
#. js-lingui-id: hqUWge
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
msgid "Some layout changes could not be saved"
msgstr ""
#. js-lingui-id: nwtY4N
#: src/pages/auth/Authorize.tsx
msgid "Something went wrong"
@@ -13099,10 +13115,10 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -13481,13 +13497,14 @@ msgstr "Tätä toimintoa ei voi peruuttaa. Tämä poistaa jäsenyytesi pysyväst
msgid "This action cannot be undone. This will permanently reset your two factor authentication method. <0/> Please type in your email to confirm."
msgstr "Tätä toimintoa ei voi peruuttaa. Tämä nollaa pysyvästi kaksivaiheisen todennustapasi. <0/> Vahvista kirjoittamalla sähköpostiosoitteesi."
#. js-lingui-id: lAHIY2
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "This action will delete this folder and all {navigationMenuItemCount} navigation menu items inside. Do you want to continue?"
#. js-lingui-id: XxxrMw
#. placeholder {2}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "This action will delete this folder and all {2} navigation menu items inside. Do you want to continue?"
msgstr ""
#. js-lingui-id: gSO0+U
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
msgstr ""
@@ -14014,7 +14031,7 @@ msgid "Type anything..."
msgstr "Kirjoita jotain..."
#. js-lingui-id: UhqKcC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Type to search records"
msgstr ""
@@ -14603,10 +14620,10 @@ msgid "view"
msgstr "näkymä"
#. js-lingui-id: jpctdh
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "View"
msgstr "Näkymä"
@@ -14705,6 +14722,7 @@ msgstr ""
#. js-lingui-id: ecVcAx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "View Previous AI Chats"
msgstr "Näytä edelliset AI Keskustelut"
@@ -14740,7 +14758,7 @@ msgid "View workspace activity logs"
msgstr ""
#. js-lingui-id: 1I6UoR
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr ""
@@ -15034,6 +15052,7 @@ msgstr ""
#. js-lingui-id: 2jzcC5
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
msgid "Workflow duplicated successfully"
msgstr ""
@@ -15097,7 +15116,7 @@ msgstr "Työnkulut"
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownVisibilityContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
msgid "Workspace"
msgstr "Työtila"
+121 -102
View File
@@ -946,23 +946,23 @@ msgid "Add Item"
msgstr "Ajouter un élément"
#. js-lingui-id: cI2ZVO
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
msgid "Add item to folder"
msgstr ""
#. js-lingui-id: gaZXkv
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItemsFolder.tsx
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Add menu item"
msgstr ""
#. js-lingui-id: JbORSt
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Add menu item after"
msgstr ""
#. js-lingui-id: DKlI/M
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Add menu item before"
msgstr ""
@@ -1423,7 +1423,7 @@ msgid "All Objects"
msgstr "Tous les objets"
#. js-lingui-id: RoFE84
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
msgid "All objects are already in the sidebar"
msgstr ""
@@ -1438,7 +1438,7 @@ msgid "All set!"
msgstr "Tout est prêt !"
#. js-lingui-id: CHvT6e
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
@@ -1539,7 +1539,7 @@ msgid "alphabetical"
msgstr ""
#. js-lingui-id: eO7HSp
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectMenuItem.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectMenuItem.tsx
msgid "Already in navbar"
msgstr ""
@@ -1897,21 +1897,25 @@ msgstr ""
#. js-lingui-id: OJOR8q
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Are you sure you want to destroy these records? They won't be recoverable anymore."
msgstr "Êtes-vous sûr de vouloir détruire ces enregistrements ? Ils ne seront plus récupérables."
#. js-lingui-id: UK5TO6
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
msgid "Are you sure you want to destroy this record? It cannot be recovered anymore."
msgstr "Êtes-vous sûr de vouloir détruire cet enregistrement ? Il ne pourra pas être récupéré."
#. js-lingui-id: mcHVC1
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
msgid "Are you sure you want to restore these records?"
msgstr "Êtes-vous sûr de vouloir restaurer ces enregistrements ?"
#. js-lingui-id: lmgkf0
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
msgid "Are you sure you want to restore this record?"
msgstr "Êtes-vous sûr de vouloir restaurer cet enregistrement ?"
@@ -1952,6 +1956,7 @@ msgstr "Ascendant"
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Ask AI"
msgstr "Demander à l'IA"
@@ -2559,13 +2564,11 @@ msgstr "Impossible de scanner ? Copiez le"
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Cancel"
msgstr "Annuler"
#. js-lingui-id: HYLdMN
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Cancel Edition"
msgstr "Annuler l'édition"
@@ -2966,7 +2969,7 @@ msgid "Collapse folder"
msgstr "Replier le dossier"
#. js-lingui-id: jZlrte
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
msgid "Color"
msgstr ""
@@ -3896,10 +3899,9 @@ msgid "Customization"
msgstr "Personnalisation"
#. js-lingui-id: srRMnJ
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditObjectViewBase.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
msgid "Customize"
msgstr ""
@@ -3970,6 +3972,7 @@ msgstr "Sombre"
#. js-lingui-id: ogQzcZ
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Dashboard duplicated successfully"
msgstr "Tableau de bord dupliqué avec succès"
@@ -3983,7 +3986,7 @@ msgstr "Tableaux de bord"
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Données"
@@ -4305,7 +4308,7 @@ msgstr "supprimer"
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: 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/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
@@ -4392,7 +4395,7 @@ msgid "Delete field"
msgstr "Supprimer le champ"
#. js-lingui-id: 97QUV6
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Delete Folder"
msgstr "Supprimer le dossier"
@@ -4593,6 +4596,7 @@ msgstr "Détruire {objectLabelPlural}"
#. js-lingui-id: kG5yO6
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Destroy Records"
msgstr "Détruire les enregistrements"
@@ -4932,9 +4936,9 @@ msgid "Edit Fields"
msgstr "Modifier les champs"
#. js-lingui-id: uPHscS
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Edit folder"
msgstr ""
@@ -4955,9 +4959,9 @@ msgid "Edit Layout"
msgstr ""
#. js-lingui-id: /PoNoq
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Edit link"
msgstr ""
@@ -6120,11 +6124,13 @@ msgstr ""
#. js-lingui-id: NUmmdc
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Failed to duplicate dashboard"
msgstr "Échec de la duplication du tableau de bord"
#. js-lingui-id: WYXxQF
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
msgid "Failed to duplicate workflow"
msgstr ""
@@ -6188,9 +6194,9 @@ msgstr "Échec de la suppression de l'image"
msgid "Failed to retry jobs. Please try again later."
msgstr "Échec du réessai des tâches. Veuillez réessayer plus tard."
#. js-lingui-id: fuRtgB
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Failed to save navigation layout"
#. js-lingui-id: farFvy
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
msgid "Failed to save layout customization"
msgstr ""
#. js-lingui-id: y3HIOa
@@ -6308,7 +6314,7 @@ msgid "Fast Model"
msgstr ""
#. js-lingui-id: X9kySA
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItemFolders.tsx
#: src/modules/navigation-menu-item/display/sections/favorites/components/FavoritesSection.tsx
msgid "Favorites"
msgstr "Favoris"
@@ -6580,8 +6586,8 @@ msgid "Flow"
msgstr "Flux"
#. js-lingui-id: kNqMMd
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Folder"
msgstr ""
@@ -6591,8 +6597,8 @@ msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Folders"
msgstr "Dossiers"
@@ -8022,7 +8028,7 @@ msgid "Layout"
msgstr "Disposition"
#. js-lingui-id: W4nIBb
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
#: src/modules/layout-customization/components/LayoutCustomizationBar.tsx
msgid "Layout customization"
msgstr ""
@@ -8137,8 +8143,8 @@ msgid "Line Chart"
msgstr ""
#. js-lingui-id: yzF66j
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Link"
msgstr ""
@@ -8154,12 +8160,12 @@ msgid "Link copied to clipboard"
msgstr "Lien copié dans le presse-papiers"
#. js-lingui-id: vH3ZQY
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Link label"
msgstr ""
@@ -8798,7 +8804,7 @@ msgid "Most installed version"
msgstr ""
#. js-lingui-id: 3Ib6FN
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move down"
msgstr ""
@@ -8822,12 +8828,12 @@ msgid "Move to a folder"
msgstr ""
#. js-lingui-id: JCPOml
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move to folder"
msgstr ""
#. js-lingui-id: QyioBP
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move up"
msgstr ""
@@ -9073,9 +9079,9 @@ msgid "New Field"
msgstr "Nouveau champ"
#. js-lingui-id: 96G6Re
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "New folder"
msgstr ""
@@ -9115,11 +9121,11 @@ msgid "New record"
msgstr "Nouvel enregistrement"
#. js-lingui-id: x6Ckh1
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/hooks/useOpenAddItemToFolderPage.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useNavigationMenuItemEditOrganizeActions.ts
#: src/modules/navigation-menu-item/edit/hooks/useOpenAddItemToFolderPage.ts
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
msgid "New sidebar item"
msgstr ""
@@ -9306,7 +9312,7 @@ msgid "No currency"
msgstr "Aucune devise"
#. js-lingui-id: DKVJFE
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "No custom views available"
msgstr ""
@@ -9418,12 +9424,12 @@ msgid "No Files"
msgstr "Aucun fichier"
#. js-lingui-id: pYblOw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folder"
msgstr "Aucun dossier"
#. js-lingui-id: 6XMhqL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folders available"
msgstr ""
@@ -9510,7 +9516,7 @@ msgid "No object found"
msgstr ""
#. js-lingui-id: YFHO2u
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "No objects with views found"
msgstr ""
@@ -9587,14 +9593,14 @@ msgid "No Results"
msgstr "Aucun résultat"
#. js-lingui-id: AxPAXW
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/side-panel/components/SidePanelList.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No results found"
msgstr "Aucun résultat trouvé"
@@ -9619,12 +9625,12 @@ msgid "No Select field"
msgstr "Aucun champ de sélection"
#. js-lingui-id: RQ6tfU
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
msgid "No system objects available"
msgstr ""
#. js-lingui-id: Yf4rVG
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
msgid "No system objects with views found"
msgstr ""
@@ -9832,9 +9838,9 @@ msgstr "objet"
#: 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/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Object"
msgstr "Objet"
@@ -9894,9 +9900,9 @@ msgstr ""
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "Objects"
msgstr "Objets"
@@ -10076,7 +10082,7 @@ msgid "Open side panel"
msgstr ""
#. js-lingui-id: OV5wZZ
#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx
#: src/modules/navigation-menu-item/display/sections/components/NavigationDrawerOpenedSection.tsx
msgid "Opened"
msgstr "Ouvert"
@@ -10148,7 +10154,7 @@ msgid "Organization plan"
msgstr ""
#. js-lingui-id: nV6twc
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Organize"
msgstr ""
@@ -10158,9 +10164,9 @@ msgstr ""
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: 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
msgid "Other"
msgstr "Autres"
@@ -10234,7 +10240,7 @@ msgid "Overview"
msgstr "Vue d'ensemble"
#. js-lingui-id: LtI9AS
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOwnerSection.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOwnerSection.tsx
msgid "Owner"
msgstr ""
@@ -10427,6 +10433,8 @@ msgstr "Détruire définitivement l'enregistrement"
#. js-lingui-id: 35dBYb
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
msgid "Permanently Destroy Record"
msgstr "Détruire définitivement l'enregistrement"
@@ -10437,6 +10445,7 @@ msgstr "Détruire définitivement les enregistrements"
#. js-lingui-id: YyP8vD
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Permanently Destroy Records"
msgstr "Détruire définitivement les enregistrements"
@@ -10958,7 +10967,7 @@ msgstr "enregistrement"
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Record"
msgstr "Enregistrer"
@@ -11134,14 +11143,16 @@ msgstr "À distance"
msgid "Remove"
msgstr "Retirer"
#. js-lingui-id: 0Urj9q
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "Remove {navigationMenuItemCount} navigation menu item?"
#. js-lingui-id: XABoh4
#. placeholder {0}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Remove {0} navigation menu items?"
msgstr ""
#. js-lingui-id: Ef5jwi
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "Remove {navigationMenuItemCount} navigation menu items?"
#. js-lingui-id: p/lN7X
#. placeholder {1}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Remove {1} navigation menu item?"
msgstr ""
#. js-lingui-id: 1O32oy
@@ -11171,7 +11182,7 @@ msgid "Remove from favorites"
msgstr "Retirer des favoris"
#. js-lingui-id: 9VZ6f0
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Remove from sidebar"
msgstr ""
@@ -11218,7 +11229,7 @@ msgstr "Supprimer la variable"
#. js-lingui-id: 2wxgft
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/activities/files/components/AttachmentDropdown.tsx
msgid "Rename"
msgstr "Renommer"
@@ -11359,6 +11370,8 @@ msgstr "Restaurer l'enregistrement"
#. js-lingui-id: NzMNOA
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
msgid "Restore Record"
msgstr "Restaurer l'enregistrement"
@@ -11370,6 +11383,8 @@ msgstr "Restaurer les enregistrements"
#. js-lingui-id: Xqj0Cb
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
msgid "Restore Records"
msgstr "Restaurer les enregistrements"
@@ -11385,7 +11400,7 @@ msgstr "Résultat"
#. js-lingui-id: kx0s+n
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Results"
msgstr "Résultats"
@@ -11583,7 +11598,6 @@ msgstr "Samedi"
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
#: src/modules/settings/components/SaveAndCancelButtons/SaveButton.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Save"
msgstr "Enregistrer"
@@ -11598,11 +11612,6 @@ msgstr "Enregistrer comme nouvelle vue"
msgid "Save Dashboard"
msgstr "Enregistrer le tableau de bord"
#. js-lingui-id: BZVCCj
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
msgid "Save Page Layout"
msgstr ""
#. js-lingui-id: veLq3R
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Scaffold a new app, then use the CLI to develop, publish, and distribute"
@@ -11647,6 +11656,8 @@ msgstr ""
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Search"
@@ -11685,7 +11696,7 @@ msgid "Search a field..."
msgstr "Rechercher un champ..."
#. js-lingui-id: ITQFzL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Search a folder..."
msgstr ""
@@ -11706,8 +11717,8 @@ msgid "Search a skill..."
msgstr ""
#. js-lingui-id: hVJ1MP
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
msgid "Search a system object..."
msgstr ""
@@ -11722,7 +11733,7 @@ msgid "Search a type"
msgstr "Rechercher un type"
#. js-lingui-id: +MhOVB
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Search a view..."
msgstr ""
@@ -11759,8 +11770,8 @@ msgstr "Rechercher un objet"
#. js-lingui-id: BoNHR0
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "Search an object..."
msgstr ""
@@ -11784,7 +11795,7 @@ msgid "Search colors"
msgstr "Rechercher des couleurs"
#. js-lingui-id: AR3FV/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
msgid "Search colors..."
msgstr ""
@@ -11853,7 +11864,7 @@ msgid "Search records"
msgstr "Rechercher des enregistrements"
#. js-lingui-id: rRklUH
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Search records..."
msgstr ""
@@ -12079,7 +12090,7 @@ msgid "Select a field to display in this widget"
msgstr "Sélectionnez un champ à afficher dans ce widget"
#. js-lingui-id: dtAvBz
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
msgid "Select a navigation item to edit"
msgstr ""
@@ -12641,6 +12652,11 @@ msgstr "Certains"
msgid "Some folders"
msgstr "Certains dossiers"
#. js-lingui-id: hqUWge
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
msgid "Some layout changes could not be saved"
msgstr ""
#. js-lingui-id: nwtY4N
#: src/pages/auth/Authorize.tsx
msgid "Something went wrong"
@@ -13099,10 +13115,10 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -13483,13 +13499,14 @@ msgstr "Cette action est irréversible. Cela supprimera définitivement votre ap
msgid "This action cannot be undone. This will permanently reset your two factor authentication method. <0/> Please type in your email to confirm."
msgstr "Cette action est irréversible. Elle réinitialisera définitivement votre méthode d'authentification à deux facteurs. <0/> Veuillez saisir votre adresse e-mail pour confirmer."
#. js-lingui-id: lAHIY2
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "This action will delete this folder and all {navigationMenuItemCount} navigation menu items inside. Do you want to continue?"
#. js-lingui-id: XxxrMw
#. placeholder {2}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "This action will delete this folder and all {2} navigation menu items inside. Do you want to continue?"
msgstr ""
#. js-lingui-id: gSO0+U
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
msgstr ""
@@ -14016,7 +14033,7 @@ msgid "Type anything..."
msgstr "Tapez n'importe quoi..."
#. js-lingui-id: UhqKcC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Type to search records"
msgstr ""
@@ -14605,10 +14622,10 @@ msgid "view"
msgstr "vue"
#. js-lingui-id: jpctdh
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "View"
msgstr "Vue"
@@ -14707,6 +14724,7 @@ msgstr ""
#. js-lingui-id: ecVcAx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "View Previous AI Chats"
msgstr "Voir les Discussions AI Précédentes"
@@ -14742,7 +14760,7 @@ msgid "View workspace activity logs"
msgstr ""
#. js-lingui-id: 1I6UoR
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr ""
@@ -15036,6 +15054,7 @@ msgstr ""
#. js-lingui-id: 2jzcC5
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
msgid "Workflow duplicated successfully"
msgstr ""
@@ -15099,7 +15118,7 @@ msgstr "Workflows"
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownVisibilityContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
msgid "Workspace"
msgstr "Espace de travail"
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
+121 -102
View File
@@ -946,23 +946,23 @@ msgid "Add Item"
msgstr "הוסף פריט"
#. js-lingui-id: cI2ZVO
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
msgid "Add item to folder"
msgstr ""
#. js-lingui-id: gaZXkv
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItemsFolder.tsx
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Add menu item"
msgstr ""
#. js-lingui-id: JbORSt
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Add menu item after"
msgstr ""
#. js-lingui-id: DKlI/M
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Add menu item before"
msgstr ""
@@ -1423,7 +1423,7 @@ msgid "All Objects"
msgstr "כל האובייקטים"
#. js-lingui-id: RoFE84
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
msgid "All objects are already in the sidebar"
msgstr ""
@@ -1438,7 +1438,7 @@ msgid "All set!"
msgstr "הכול מוכן!"
#. js-lingui-id: CHvT6e
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
@@ -1539,7 +1539,7 @@ msgid "alphabetical"
msgstr ""
#. js-lingui-id: eO7HSp
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectMenuItem.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectMenuItem.tsx
msgid "Already in navbar"
msgstr ""
@@ -1897,21 +1897,25 @@ msgstr ""
#. js-lingui-id: OJOR8q
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Are you sure you want to destroy these records? They won't be recoverable anymore."
msgstr "האם אתה בטוח שברצונך להשמיד את הרשומות הללו? רשומות אלו לא תהיינה ניתנות לשחזור."
#. js-lingui-id: UK5TO6
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
msgid "Are you sure you want to destroy this record? It cannot be recovered anymore."
msgstr "האם אתה בטוח שברצונך להשמיד את הרשומה הזו? היא לא תהיה ניתנת לשחזור עוד."
#. js-lingui-id: mcHVC1
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
msgid "Are you sure you want to restore these records?"
msgstr "האם אתה בטוח שברצונך לשחזר את הרשומות הללו?"
#. js-lingui-id: lmgkf0
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
msgid "Are you sure you want to restore this record?"
msgstr "האם אתה בטוח שברצונך לשחזר את הרשומה הזו?"
@@ -1952,6 +1956,7 @@ msgstr "עולה"
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Ask AI"
msgstr "שאל את ה-AI"
@@ -2559,13 +2564,11 @@ msgstr "לא ניתן לסרוק? העתק את"
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Cancel"
msgstr "בטל"
#. js-lingui-id: HYLdMN
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Cancel Edition"
msgstr "בטל עריכה"
@@ -2966,7 +2969,7 @@ msgid "Collapse folder"
msgstr "כווץ תיקייה"
#. js-lingui-id: jZlrte
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
msgid "Color"
msgstr ""
@@ -3896,10 +3899,9 @@ msgid "Customization"
msgstr "התאמה אישית"
#. js-lingui-id: srRMnJ
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditObjectViewBase.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
msgid "Customize"
msgstr ""
@@ -3970,6 +3972,7 @@ msgstr "כהה"
#. js-lingui-id: ogQzcZ
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Dashboard duplicated successfully"
msgstr "לוח הבקרה שוכפל בהצלחה"
@@ -3983,7 +3986,7 @@ msgstr "לוחות בקרה"
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "מידע"
@@ -4305,7 +4308,7 @@ msgstr "מחק"
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: 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/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
@@ -4392,7 +4395,7 @@ msgid "Delete field"
msgstr "מחק שדה"
#. js-lingui-id: 97QUV6
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Delete Folder"
msgstr "מחק תיקייה"
@@ -4593,6 +4596,7 @@ msgstr "השמדת {objectLabelPlural}"
#. js-lingui-id: kG5yO6
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Destroy Records"
msgstr "השמד רשומות"
@@ -4932,9 +4936,9 @@ msgid "Edit Fields"
msgstr "עריכת שדות"
#. js-lingui-id: uPHscS
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Edit folder"
msgstr ""
@@ -4955,9 +4959,9 @@ msgid "Edit Layout"
msgstr ""
#. js-lingui-id: /PoNoq
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Edit link"
msgstr ""
@@ -6120,11 +6124,13 @@ msgstr ""
#. js-lingui-id: NUmmdc
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Failed to duplicate dashboard"
msgstr "שכפול לוח הבקרה נכשל"
#. js-lingui-id: WYXxQF
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
msgid "Failed to duplicate workflow"
msgstr ""
@@ -6188,9 +6194,9 @@ msgstr "הסרת התמונה נכשלה"
msgid "Failed to retry jobs. Please try again later."
msgstr "נכשל בהפעלה מחדש של עבודות. נא לנסות שוב מאוחר יותר."
#. js-lingui-id: fuRtgB
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Failed to save navigation layout"
#. js-lingui-id: farFvy
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
msgid "Failed to save layout customization"
msgstr ""
#. js-lingui-id: y3HIOa
@@ -6308,7 +6314,7 @@ msgid "Fast Model"
msgstr ""
#. js-lingui-id: X9kySA
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItemFolders.tsx
#: src/modules/navigation-menu-item/display/sections/favorites/components/FavoritesSection.tsx
msgid "Favorites"
msgstr "מועדפים"
@@ -6580,8 +6586,8 @@ msgid "Flow"
msgstr "זרם"
#. js-lingui-id: kNqMMd
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Folder"
msgstr ""
@@ -6591,8 +6597,8 @@ msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Folders"
msgstr "תיקיות"
@@ -8022,7 +8028,7 @@ msgid "Layout"
msgstr "פריסה"
#. js-lingui-id: W4nIBb
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
#: src/modules/layout-customization/components/LayoutCustomizationBar.tsx
msgid "Layout customization"
msgstr ""
@@ -8137,8 +8143,8 @@ msgid "Line Chart"
msgstr "תרשים קו"
#. js-lingui-id: yzF66j
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Link"
msgstr ""
@@ -8154,12 +8160,12 @@ msgid "Link copied to clipboard"
msgstr "הקישור הועתק ללוח הגזירים"
#. js-lingui-id: vH3ZQY
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Link label"
msgstr ""
@@ -8798,7 +8804,7 @@ msgid "Most installed version"
msgstr ""
#. js-lingui-id: 3Ib6FN
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move down"
msgstr ""
@@ -8822,12 +8828,12 @@ msgid "Move to a folder"
msgstr ""
#. js-lingui-id: JCPOml
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move to folder"
msgstr ""
#. js-lingui-id: QyioBP
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move up"
msgstr ""
@@ -9073,9 +9079,9 @@ msgid "New Field"
msgstr "שדה חדש"
#. js-lingui-id: 96G6Re
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "New folder"
msgstr ""
@@ -9115,11 +9121,11 @@ msgid "New record"
msgstr "רשומה חדשה"
#. js-lingui-id: x6Ckh1
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/hooks/useOpenAddItemToFolderPage.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useNavigationMenuItemEditOrganizeActions.ts
#: src/modules/navigation-menu-item/edit/hooks/useOpenAddItemToFolderPage.ts
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
msgid "New sidebar item"
msgstr ""
@@ -9306,7 +9312,7 @@ msgid "No currency"
msgstr "אין מטבע"
#. js-lingui-id: DKVJFE
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "No custom views available"
msgstr ""
@@ -9418,12 +9424,12 @@ msgid "No Files"
msgstr "אין קבצים"
#. js-lingui-id: pYblOw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folder"
msgstr "אין תיקייה"
#. js-lingui-id: 6XMhqL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folders available"
msgstr ""
@@ -9510,7 +9516,7 @@ msgid "No object found"
msgstr ""
#. js-lingui-id: YFHO2u
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "No objects with views found"
msgstr ""
@@ -9587,14 +9593,14 @@ msgid "No Results"
msgstr "אין תוצאות"
#. js-lingui-id: AxPAXW
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/side-panel/components/SidePanelList.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No results found"
msgstr "לא נמצאו תוצאות"
@@ -9619,12 +9625,12 @@ msgid "No Select field"
msgstr "אין שדה בחירה"
#. js-lingui-id: RQ6tfU
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
msgid "No system objects available"
msgstr ""
#. js-lingui-id: Yf4rVG
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
msgid "No system objects with views found"
msgstr ""
@@ -9832,9 +9838,9 @@ msgstr "אובייקט"
#: 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/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Object"
msgstr "אובייקט"
@@ -9894,9 +9900,9 @@ msgstr ""
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "Objects"
msgstr "אובייקטים"
@@ -10076,7 +10082,7 @@ msgid "Open side panel"
msgstr ""
#. js-lingui-id: OV5wZZ
#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx
#: src/modules/navigation-menu-item/display/sections/components/NavigationDrawerOpenedSection.tsx
msgid "Opened"
msgstr "נפתח"
@@ -10148,7 +10154,7 @@ msgid "Organization plan"
msgstr ""
#. js-lingui-id: nV6twc
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Organize"
msgstr ""
@@ -10158,9 +10164,9 @@ msgstr ""
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: 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
msgid "Other"
msgstr "אחר"
@@ -10234,7 +10240,7 @@ msgid "Overview"
msgstr "סקירה כללית"
#. js-lingui-id: LtI9AS
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOwnerSection.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOwnerSection.tsx
msgid "Owner"
msgstr ""
@@ -10427,6 +10433,8 @@ msgstr "להשמיד לצמיתות את הרשומה"
#. js-lingui-id: 35dBYb
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
msgid "Permanently Destroy Record"
msgstr "השמד לצמיתות את הרשומה"
@@ -10437,6 +10445,7 @@ msgstr "להשמיד לצמיתות את הרשומות"
#. js-lingui-id: YyP8vD
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Permanently Destroy Records"
msgstr "השמד לצמיתות את הרשומות"
@@ -10958,7 +10967,7 @@ msgstr "רשומה"
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Record"
msgstr "רשומה"
@@ -11134,14 +11143,16 @@ msgstr "מרוחק"
msgid "Remove"
msgstr "\\"
#. js-lingui-id: 0Urj9q
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "Remove {navigationMenuItemCount} navigation menu item?"
#. js-lingui-id: XABoh4
#. placeholder {0}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Remove {0} navigation menu items?"
msgstr ""
#. js-lingui-id: Ef5jwi
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "Remove {navigationMenuItemCount} navigation menu items?"
#. js-lingui-id: p/lN7X
#. placeholder {1}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Remove {1} navigation menu item?"
msgstr ""
#. js-lingui-id: 1O32oy
@@ -11171,7 +11182,7 @@ msgid "Remove from favorites"
msgstr "\\"
#. js-lingui-id: 9VZ6f0
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Remove from sidebar"
msgstr ""
@@ -11218,7 +11229,7 @@ msgstr "הסר משתנה"
#. js-lingui-id: 2wxgft
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/activities/files/components/AttachmentDropdown.tsx
msgid "Rename"
msgstr "שנה שם"
@@ -11359,6 +11370,8 @@ msgstr "שחזור רשומה"
#. js-lingui-id: NzMNOA
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
msgid "Restore Record"
msgstr "שחזור רשומה"
@@ -11370,6 +11383,8 @@ msgstr "שחזור רשומות"
#. js-lingui-id: Xqj0Cb
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
msgid "Restore Records"
msgstr "שחזור רשומות"
@@ -11385,7 +11400,7 @@ msgstr "תוצאה"
#. js-lingui-id: kx0s+n
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Results"
msgstr "\\"
@@ -11583,7 +11598,6 @@ msgstr "יום שבת"
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
#: src/modules/settings/components/SaveAndCancelButtons/SaveButton.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Save"
msgstr "שמור"
@@ -11598,11 +11612,6 @@ msgstr "שמור כתצוגה חדשה"
msgid "Save Dashboard"
msgstr "שמור לוח בקרה"
#. js-lingui-id: BZVCCj
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
msgid "Save Page Layout"
msgstr ""
#. js-lingui-id: veLq3R
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Scaffold a new app, then use the CLI to develop, publish, and distribute"
@@ -11647,6 +11656,8 @@ msgstr ""
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Search"
@@ -11685,7 +11696,7 @@ msgid "Search a field..."
msgstr "חפש שדה..."
#. js-lingui-id: ITQFzL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Search a folder..."
msgstr ""
@@ -11706,8 +11717,8 @@ msgid "Search a skill..."
msgstr ""
#. js-lingui-id: hVJ1MP
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
msgid "Search a system object..."
msgstr ""
@@ -11722,7 +11733,7 @@ msgid "Search a type"
msgstr "חפש סוג"
#. js-lingui-id: +MhOVB
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Search a view..."
msgstr ""
@@ -11759,8 +11770,8 @@ msgstr "חפש אובייקט"
#. js-lingui-id: BoNHR0
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "Search an object..."
msgstr ""
@@ -11784,7 +11795,7 @@ msgid "Search colors"
msgstr "חפש צבעים"
#. js-lingui-id: AR3FV/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
msgid "Search colors..."
msgstr ""
@@ -11853,7 +11864,7 @@ msgid "Search records"
msgstr "\\"
#. js-lingui-id: rRklUH
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Search records..."
msgstr ""
@@ -12079,7 +12090,7 @@ msgid "Select a field to display in this widget"
msgstr "בחר/י שדה להצגה בווידג'ט הזה"
#. js-lingui-id: dtAvBz
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
msgid "Select a navigation item to edit"
msgstr ""
@@ -12641,6 +12652,11 @@ msgstr "חלק"
msgid "Some folders"
msgstr "כמה תיקיות"
#. js-lingui-id: hqUWge
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
msgid "Some layout changes could not be saved"
msgstr ""
#. js-lingui-id: nwtY4N
#: src/pages/auth/Authorize.tsx
msgid "Something went wrong"
@@ -13099,10 +13115,10 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -13481,13 +13497,14 @@ msgstr "לא ניתן לבטל פעולה זו. זה יסיר לצמיתות א
msgid "This action cannot be undone. This will permanently reset your two factor authentication method. <0/> Please type in your email to confirm."
msgstr "פעולה זו אינה ניתנת לביטול. פעולה זו תאפס לצמיתות את שיטת האימות הדו-שלבי שלך. <0/> אנא הקלד את כתובת הדוא\"ל שלך כדי לאשר."
#. js-lingui-id: lAHIY2
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "This action will delete this folder and all {navigationMenuItemCount} navigation menu items inside. Do you want to continue?"
#. js-lingui-id: XxxrMw
#. placeholder {2}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "This action will delete this folder and all {2} navigation menu items inside. Do you want to continue?"
msgstr ""
#. js-lingui-id: gSO0+U
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
msgstr ""
@@ -14014,7 +14031,7 @@ msgid "Type anything..."
msgstr "הקלד כל דבר..."
#. js-lingui-id: UhqKcC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Type to search records"
msgstr ""
@@ -14603,10 +14620,10 @@ msgid "view"
msgstr "תצוגה"
#. js-lingui-id: jpctdh
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "View"
msgstr "תצוגה"
@@ -14705,6 +14722,7 @@ msgstr ""
#. js-lingui-id: ecVcAx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "View Previous AI Chats"
msgstr "הצג שיחות AI קודמות"
@@ -14740,7 +14758,7 @@ msgid "View workspace activity logs"
msgstr ""
#. js-lingui-id: 1I6UoR
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr ""
@@ -15034,6 +15052,7 @@ msgstr ""
#. js-lingui-id: 2jzcC5
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
msgid "Workflow duplicated successfully"
msgstr ""
@@ -15097,7 +15116,7 @@ msgstr "זרימות עבודה"
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownVisibilityContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
msgid "Workspace"
msgstr "סביבת עבודה"
+121 -102
View File
@@ -946,23 +946,23 @@ msgid "Add Item"
msgstr "Tétel hozzáadása"
#. js-lingui-id: cI2ZVO
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
msgid "Add item to folder"
msgstr ""
#. js-lingui-id: gaZXkv
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItemsFolder.tsx
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Add menu item"
msgstr ""
#. js-lingui-id: JbORSt
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Add menu item after"
msgstr ""
#. js-lingui-id: DKlI/M
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Add menu item before"
msgstr ""
@@ -1423,7 +1423,7 @@ msgid "All Objects"
msgstr "Összes Objektum"
#. js-lingui-id: RoFE84
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
msgid "All objects are already in the sidebar"
msgstr ""
@@ -1438,7 +1438,7 @@ msgid "All set!"
msgstr "Minden kész!"
#. js-lingui-id: CHvT6e
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
@@ -1539,7 +1539,7 @@ msgid "alphabetical"
msgstr ""
#. js-lingui-id: eO7HSp
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectMenuItem.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectMenuItem.tsx
msgid "Already in navbar"
msgstr ""
@@ -1897,21 +1897,25 @@ msgstr ""
#. js-lingui-id: OJOR8q
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Are you sure you want to destroy these records? They won't be recoverable anymore."
msgstr "Biztos, hogy megsemmisíti ezeket a rekordokat? Többé nem lesznek visszaállíthatók."
#. js-lingui-id: UK5TO6
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
msgid "Are you sure you want to destroy this record? It cannot be recovered anymore."
msgstr "Biztosan meg akarja semmisíteni ezt a rekordot? Többé nem állítható helyre."
#. js-lingui-id: mcHVC1
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
msgid "Are you sure you want to restore these records?"
msgstr "Biztos, hogy vissza akarja állítani ezeket a rekordokat?"
#. js-lingui-id: lmgkf0
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
msgid "Are you sure you want to restore this record?"
msgstr "Biztos, hogy vissza akarja állítani ezt a rekordot?"
@@ -1952,6 +1956,7 @@ msgstr "Növekvő"
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Ask AI"
msgstr "Kérdezze a MI-t"
@@ -2559,13 +2564,11 @@ msgstr "Nem tud beolvasni? Másolja a"
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Cancel"
msgstr "Mégse"
#. js-lingui-id: HYLdMN
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Cancel Edition"
msgstr "Szerkesztés törlése"
@@ -2966,7 +2969,7 @@ msgid "Collapse folder"
msgstr "Mappa összecsukása"
#. js-lingui-id: jZlrte
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
msgid "Color"
msgstr ""
@@ -3896,10 +3899,9 @@ msgid "Customization"
msgstr "Testreszabás"
#. js-lingui-id: srRMnJ
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditObjectViewBase.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
msgid "Customize"
msgstr ""
@@ -3970,6 +3972,7 @@ msgstr "Sötét"
#. js-lingui-id: ogQzcZ
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Dashboard duplicated successfully"
msgstr "Irányítópult sikeresen duplikálva"
@@ -3983,7 +3986,7 @@ msgstr "Irányítópultok"
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Adat"
@@ -4305,7 +4308,7 @@ msgstr "törlés"
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: 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/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
@@ -4392,7 +4395,7 @@ msgid "Delete field"
msgstr "Mező törlése"
#. js-lingui-id: 97QUV6
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Delete Folder"
msgstr "Mappa törlése"
@@ -4593,6 +4596,7 @@ msgstr "Megsemmisítés {objectLabelPlural}"
#. js-lingui-id: kG5yO6
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Destroy Records"
msgstr "Rekordok megsemmisítése"
@@ -4932,9 +4936,9 @@ msgid "Edit Fields"
msgstr "Mezők szerkesztése"
#. js-lingui-id: uPHscS
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Edit folder"
msgstr ""
@@ -4955,9 +4959,9 @@ msgid "Edit Layout"
msgstr ""
#. js-lingui-id: /PoNoq
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Edit link"
msgstr ""
@@ -6120,11 +6124,13 @@ msgstr ""
#. js-lingui-id: NUmmdc
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Failed to duplicate dashboard"
msgstr "Nem sikerült duplikálni az irányítópultot"
#. js-lingui-id: WYXxQF
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
msgid "Failed to duplicate workflow"
msgstr ""
@@ -6188,9 +6194,9 @@ msgstr "Nem sikerült eltávolítani a képet"
msgid "Failed to retry jobs. Please try again later."
msgstr "Nem sikerült újraindítani az állásokat. Kérjük, próbálja meg újra később."
#. js-lingui-id: fuRtgB
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Failed to save navigation layout"
#. js-lingui-id: farFvy
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
msgid "Failed to save layout customization"
msgstr ""
#. js-lingui-id: y3HIOa
@@ -6308,7 +6314,7 @@ msgid "Fast Model"
msgstr ""
#. js-lingui-id: X9kySA
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItemFolders.tsx
#: src/modules/navigation-menu-item/display/sections/favorites/components/FavoritesSection.tsx
msgid "Favorites"
msgstr "Kedvencek"
@@ -6580,8 +6586,8 @@ msgid "Flow"
msgstr "Folyamat"
#. js-lingui-id: kNqMMd
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Folder"
msgstr ""
@@ -6591,8 +6597,8 @@ msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Folders"
msgstr "Mappák"
@@ -8022,7 +8028,7 @@ msgid "Layout"
msgstr "Elrendezés"
#. js-lingui-id: W4nIBb
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
#: src/modules/layout-customization/components/LayoutCustomizationBar.tsx
msgid "Layout customization"
msgstr ""
@@ -8137,8 +8143,8 @@ msgid "Line Chart"
msgstr "Vonaldiagram"
#. js-lingui-id: yzF66j
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Link"
msgstr ""
@@ -8154,12 +8160,12 @@ msgid "Link copied to clipboard"
msgstr "A link vágólapra másolva"
#. js-lingui-id: vH3ZQY
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Link label"
msgstr ""
@@ -8798,7 +8804,7 @@ msgid "Most installed version"
msgstr ""
#. js-lingui-id: 3Ib6FN
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move down"
msgstr ""
@@ -8822,12 +8828,12 @@ msgid "Move to a folder"
msgstr ""
#. js-lingui-id: JCPOml
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move to folder"
msgstr ""
#. js-lingui-id: QyioBP
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move up"
msgstr ""
@@ -9073,9 +9079,9 @@ msgid "New Field"
msgstr "Új mező"
#. js-lingui-id: 96G6Re
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "New folder"
msgstr ""
@@ -9115,11 +9121,11 @@ msgid "New record"
msgstr "Új rekord"
#. js-lingui-id: x6Ckh1
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/hooks/useOpenAddItemToFolderPage.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useNavigationMenuItemEditOrganizeActions.ts
#: src/modules/navigation-menu-item/edit/hooks/useOpenAddItemToFolderPage.ts
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
msgid "New sidebar item"
msgstr ""
@@ -9306,7 +9312,7 @@ msgid "No currency"
msgstr "Nincs pénznem"
#. js-lingui-id: DKVJFE
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "No custom views available"
msgstr ""
@@ -9418,12 +9424,12 @@ msgid "No Files"
msgstr "Nincsenek fájlok"
#. js-lingui-id: pYblOw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folder"
msgstr "Nincs mappa"
#. js-lingui-id: 6XMhqL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folders available"
msgstr ""
@@ -9510,7 +9516,7 @@ msgid "No object found"
msgstr ""
#. js-lingui-id: YFHO2u
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "No objects with views found"
msgstr ""
@@ -9587,14 +9593,14 @@ msgid "No Results"
msgstr "Nincs találat"
#. js-lingui-id: AxPAXW
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/side-panel/components/SidePanelList.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No results found"
msgstr "Nincs találat"
@@ -9619,12 +9625,12 @@ msgid "No Select field"
msgstr "Nincs Választó mező"
#. js-lingui-id: RQ6tfU
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
msgid "No system objects available"
msgstr ""
#. js-lingui-id: Yf4rVG
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
msgid "No system objects with views found"
msgstr ""
@@ -9832,9 +9838,9 @@ msgstr "objektum"
#: 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/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Object"
msgstr "Objektum"
@@ -9894,9 +9900,9 @@ msgstr ""
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "Objects"
msgstr "Objektumok"
@@ -10076,7 +10082,7 @@ msgid "Open side panel"
msgstr ""
#. js-lingui-id: OV5wZZ
#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx
#: src/modules/navigation-menu-item/display/sections/components/NavigationDrawerOpenedSection.tsx
msgid "Opened"
msgstr "Megnyitva"
@@ -10148,7 +10154,7 @@ msgid "Organization plan"
msgstr ""
#. js-lingui-id: nV6twc
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Organize"
msgstr ""
@@ -10158,9 +10164,9 @@ msgstr ""
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: 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
msgid "Other"
msgstr "Egyéb"
@@ -10234,7 +10240,7 @@ msgid "Overview"
msgstr "Áttekintés"
#. js-lingui-id: LtI9AS
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOwnerSection.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOwnerSection.tsx
msgid "Owner"
msgstr ""
@@ -10427,6 +10433,8 @@ msgstr "Rekord végleges megsemmisítése"
#. js-lingui-id: 35dBYb
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
msgid "Permanently Destroy Record"
msgstr "Rekord végleges megsemmisítése"
@@ -10437,6 +10445,7 @@ msgstr "Rekordok végleges megsemmisítése"
#. js-lingui-id: YyP8vD
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Permanently Destroy Records"
msgstr "Rekordok végleges megsemmisítése"
@@ -10958,7 +10967,7 @@ msgstr "rekord"
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Record"
msgstr "Rekord"
@@ -11134,14 +11143,16 @@ msgstr "Távoli"
msgid "Remove"
msgstr "Eltávolítás"
#. js-lingui-id: 0Urj9q
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "Remove {navigationMenuItemCount} navigation menu item?"
#. js-lingui-id: XABoh4
#. placeholder {0}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Remove {0} navigation menu items?"
msgstr ""
#. js-lingui-id: Ef5jwi
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "Remove {navigationMenuItemCount} navigation menu items?"
#. js-lingui-id: p/lN7X
#. placeholder {1}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Remove {1} navigation menu item?"
msgstr ""
#. js-lingui-id: 1O32oy
@@ -11171,7 +11182,7 @@ msgid "Remove from favorites"
msgstr "Eltávolítás a kedvencek közül"
#. js-lingui-id: 9VZ6f0
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Remove from sidebar"
msgstr ""
@@ -11218,7 +11229,7 @@ msgstr "Változó eltávolítása"
#. js-lingui-id: 2wxgft
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/activities/files/components/AttachmentDropdown.tsx
msgid "Rename"
msgstr "Átnevezés"
@@ -11359,6 +11370,8 @@ msgstr "Rekord visszaállítása"
#. js-lingui-id: NzMNOA
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
msgid "Restore Record"
msgstr "Rekord visszaállítása"
@@ -11370,6 +11383,8 @@ msgstr "Rekordok visszaállítása"
#. js-lingui-id: Xqj0Cb
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
msgid "Restore Records"
msgstr "Rekordok visszaállítása"
@@ -11385,7 +11400,7 @@ msgstr "Eredmény"
#. js-lingui-id: kx0s+n
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Results"
msgstr "Találatok"
@@ -11583,7 +11598,6 @@ msgstr "Szombat"
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
#: src/modules/settings/components/SaveAndCancelButtons/SaveButton.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Save"
msgstr "Mentés"
@@ -11598,11 +11612,6 @@ msgstr "Mentés új nézetként"
msgid "Save Dashboard"
msgstr "Irányítópult mentése"
#. js-lingui-id: BZVCCj
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
msgid "Save Page Layout"
msgstr ""
#. js-lingui-id: veLq3R
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Scaffold a new app, then use the CLI to develop, publish, and distribute"
@@ -11647,6 +11656,8 @@ msgstr ""
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Search"
@@ -11685,7 +11696,7 @@ msgid "Search a field..."
msgstr "Mező keresése..."
#. js-lingui-id: ITQFzL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Search a folder..."
msgstr ""
@@ -11706,8 +11717,8 @@ msgid "Search a skill..."
msgstr ""
#. js-lingui-id: hVJ1MP
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
msgid "Search a system object..."
msgstr ""
@@ -11722,7 +11733,7 @@ msgid "Search a type"
msgstr "Típus keresése"
#. js-lingui-id: +MhOVB
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Search a view..."
msgstr ""
@@ -11759,8 +11770,8 @@ msgstr "Objektum keresése"
#. js-lingui-id: BoNHR0
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "Search an object..."
msgstr ""
@@ -11784,7 +11795,7 @@ msgid "Search colors"
msgstr "Színek keresése"
#. js-lingui-id: AR3FV/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
msgid "Search colors..."
msgstr ""
@@ -11853,7 +11864,7 @@ msgid "Search records"
msgstr "Rekordok keresése"
#. js-lingui-id: rRklUH
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Search records..."
msgstr ""
@@ -12079,7 +12090,7 @@ msgid "Select a field to display in this widget"
msgstr "Válasszon egy mezőt a widgetben való megjelenítéshez"
#. js-lingui-id: dtAvBz
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
msgid "Select a navigation item to edit"
msgstr ""
@@ -12641,6 +12652,11 @@ msgstr "Néhány"
msgid "Some folders"
msgstr "Néhány mappa"
#. js-lingui-id: hqUWge
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
msgid "Some layout changes could not be saved"
msgstr ""
#. js-lingui-id: nwtY4N
#: src/pages/auth/Authorize.tsx
msgid "Something went wrong"
@@ -13099,10 +13115,10 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -13481,13 +13497,14 @@ msgstr "Ez a művelet nem visszavonható. Ez véglegesen eltávolítja a tagság
msgid "This action cannot be undone. This will permanently reset your two factor authentication method. <0/> Please type in your email to confirm."
msgstr "Ez a művelet nem visszavonható. Ez véglegesen visszaállítja a kétlépcsős hitelesítési módszerét. <0/> Kérjük, a megerősítéshez írja be az e-mail címét."
#. js-lingui-id: lAHIY2
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "This action will delete this folder and all {navigationMenuItemCount} navigation menu items inside. Do you want to continue?"
#. js-lingui-id: XxxrMw
#. placeholder {2}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "This action will delete this folder and all {2} navigation menu items inside. Do you want to continue?"
msgstr ""
#. js-lingui-id: gSO0+U
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
msgstr ""
@@ -14014,7 +14031,7 @@ msgid "Type anything..."
msgstr "Írjon be bármit..."
#. js-lingui-id: UhqKcC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Type to search records"
msgstr ""
@@ -14603,10 +14620,10 @@ msgid "view"
msgstr "nézet"
#. js-lingui-id: jpctdh
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "View"
msgstr "Nézet"
@@ -14705,6 +14722,7 @@ msgstr ""
#. js-lingui-id: ecVcAx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "View Previous AI Chats"
msgstr "Előző AI csevegések megtekintése"
@@ -14740,7 +14758,7 @@ msgid "View workspace activity logs"
msgstr ""
#. js-lingui-id: 1I6UoR
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr ""
@@ -15034,6 +15052,7 @@ msgstr ""
#. js-lingui-id: 2jzcC5
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
msgid "Workflow duplicated successfully"
msgstr ""
@@ -15097,7 +15116,7 @@ msgstr "Munkafolyamatok"
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownVisibilityContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
msgid "Workspace"
msgstr "Munkaterület"
+121 -102
View File
@@ -946,23 +946,23 @@ msgid "Add Item"
msgstr "Aggiungi elemento"
#. js-lingui-id: cI2ZVO
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
msgid "Add item to folder"
msgstr ""
#. js-lingui-id: gaZXkv
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItemsFolder.tsx
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Add menu item"
msgstr ""
#. js-lingui-id: JbORSt
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Add menu item after"
msgstr ""
#. js-lingui-id: DKlI/M
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Add menu item before"
msgstr ""
@@ -1423,7 +1423,7 @@ msgid "All Objects"
msgstr "Tutti gli oggetti"
#. js-lingui-id: RoFE84
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
msgid "All objects are already in the sidebar"
msgstr ""
@@ -1438,7 +1438,7 @@ msgid "All set!"
msgstr "Tutto pronto!"
#. js-lingui-id: CHvT6e
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
@@ -1539,7 +1539,7 @@ msgid "alphabetical"
msgstr ""
#. js-lingui-id: eO7HSp
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectMenuItem.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectMenuItem.tsx
msgid "Already in navbar"
msgstr ""
@@ -1897,21 +1897,25 @@ msgstr ""
#. js-lingui-id: OJOR8q
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Are you sure you want to destroy these records? They won't be recoverable anymore."
msgstr "Sei sicuro di voler distruggere questi record? Non saranno più recuperabili."
#. js-lingui-id: UK5TO6
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
msgid "Are you sure you want to destroy this record? It cannot be recovered anymore."
msgstr "Sei sicuro di voler distruggere questo record? Non potrà più essere recuperato."
#. js-lingui-id: mcHVC1
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
msgid "Are you sure you want to restore these records?"
msgstr "Sei sicuro di voler ripristinare questi record?"
#. js-lingui-id: lmgkf0
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
msgid "Are you sure you want to restore this record?"
msgstr "Sei sicuro di voler ripristinare questo record?"
@@ -1952,6 +1956,7 @@ msgstr "Ascendente"
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Ask AI"
msgstr "Chiedi a AI"
@@ -2559,13 +2564,11 @@ msgstr "Non puoi scansionare? Copia il"
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Cancel"
msgstr "Annulla"
#. js-lingui-id: HYLdMN
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Cancel Edition"
msgstr "Annulla Edizione"
@@ -2966,7 +2969,7 @@ msgid "Collapse folder"
msgstr "Comprimi cartella"
#. js-lingui-id: jZlrte
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
msgid "Color"
msgstr ""
@@ -3896,10 +3899,9 @@ msgid "Customization"
msgstr "Personalizzazione"
#. js-lingui-id: srRMnJ
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditObjectViewBase.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
msgid "Customize"
msgstr ""
@@ -3970,6 +3972,7 @@ msgstr "Scuro"
#. js-lingui-id: ogQzcZ
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Dashboard duplicated successfully"
msgstr "Cruscotto duplicato con successo"
@@ -3983,7 +3986,7 @@ msgstr "Cruscotti"
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Dati"
@@ -4305,7 +4308,7 @@ msgstr "elimina"
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: 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/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
@@ -4392,7 +4395,7 @@ msgid "Delete field"
msgstr "Elimina campo"
#. js-lingui-id: 97QUV6
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Delete Folder"
msgstr "Elimina cartella"
@@ -4593,6 +4596,7 @@ msgstr "Distruggi {objectLabelPlural}"
#. js-lingui-id: kG5yO6
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Destroy Records"
msgstr "Distruggi record"
@@ -4932,9 +4936,9 @@ msgid "Edit Fields"
msgstr "Modifica campi"
#. js-lingui-id: uPHscS
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Edit folder"
msgstr ""
@@ -4955,9 +4959,9 @@ msgid "Edit Layout"
msgstr ""
#. js-lingui-id: /PoNoq
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Edit link"
msgstr ""
@@ -6120,11 +6124,13 @@ msgstr ""
#. js-lingui-id: NUmmdc
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Failed to duplicate dashboard"
msgstr "Impossibile duplicare il cruscotto"
#. js-lingui-id: WYXxQF
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
msgid "Failed to duplicate workflow"
msgstr ""
@@ -6188,9 +6194,9 @@ msgstr "Impossibile rimuovere l'immagine"
msgid "Failed to retry jobs. Please try again later."
msgstr "Impossibile riprovare i lavori. Per favore riprova più tardi."
#. js-lingui-id: fuRtgB
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Failed to save navigation layout"
#. js-lingui-id: farFvy
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
msgid "Failed to save layout customization"
msgstr ""
#. js-lingui-id: y3HIOa
@@ -6308,7 +6314,7 @@ msgid "Fast Model"
msgstr ""
#. js-lingui-id: X9kySA
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItemFolders.tsx
#: src/modules/navigation-menu-item/display/sections/favorites/components/FavoritesSection.tsx
msgid "Favorites"
msgstr "Preferiti"
@@ -6580,8 +6586,8 @@ msgid "Flow"
msgstr "Flusso"
#. js-lingui-id: kNqMMd
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Folder"
msgstr ""
@@ -6591,8 +6597,8 @@ msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Folders"
msgstr "Cartelle"
@@ -8022,7 +8028,7 @@ msgid "Layout"
msgstr "Disposizione"
#. js-lingui-id: W4nIBb
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
#: src/modules/layout-customization/components/LayoutCustomizationBar.tsx
msgid "Layout customization"
msgstr ""
@@ -8137,8 +8143,8 @@ msgid "Line Chart"
msgstr "Grafico a Linea"
#. js-lingui-id: yzF66j
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Link"
msgstr ""
@@ -8154,12 +8160,12 @@ msgid "Link copied to clipboard"
msgstr "Link copiato negli appunti"
#. js-lingui-id: vH3ZQY
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Link label"
msgstr ""
@@ -8798,7 +8804,7 @@ msgid "Most installed version"
msgstr ""
#. js-lingui-id: 3Ib6FN
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move down"
msgstr ""
@@ -8822,12 +8828,12 @@ msgid "Move to a folder"
msgstr ""
#. js-lingui-id: JCPOml
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move to folder"
msgstr ""
#. js-lingui-id: QyioBP
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move up"
msgstr ""
@@ -9073,9 +9079,9 @@ msgid "New Field"
msgstr "Nuovo Campo"
#. js-lingui-id: 96G6Re
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "New folder"
msgstr ""
@@ -9115,11 +9121,11 @@ msgid "New record"
msgstr "Nuovo record"
#. js-lingui-id: x6Ckh1
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/hooks/useOpenAddItemToFolderPage.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useNavigationMenuItemEditOrganizeActions.ts
#: src/modules/navigation-menu-item/edit/hooks/useOpenAddItemToFolderPage.ts
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
msgid "New sidebar item"
msgstr ""
@@ -9306,7 +9312,7 @@ msgid "No currency"
msgstr "Nessuna valuta"
#. js-lingui-id: DKVJFE
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "No custom views available"
msgstr ""
@@ -9418,12 +9424,12 @@ msgid "No Files"
msgstr "Nessun file"
#. js-lingui-id: pYblOw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folder"
msgstr "Nessuna cartella"
#. js-lingui-id: 6XMhqL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folders available"
msgstr ""
@@ -9510,7 +9516,7 @@ msgid "No object found"
msgstr ""
#. js-lingui-id: YFHO2u
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "No objects with views found"
msgstr ""
@@ -9587,14 +9593,14 @@ msgid "No Results"
msgstr "Nessun risultato"
#. js-lingui-id: AxPAXW
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/side-panel/components/SidePanelList.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No results found"
msgstr "Nessun risultato trovato"
@@ -9619,12 +9625,12 @@ msgid "No Select field"
msgstr "Nessun campo di selezione"
#. js-lingui-id: RQ6tfU
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
msgid "No system objects available"
msgstr ""
#. js-lingui-id: Yf4rVG
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
msgid "No system objects with views found"
msgstr ""
@@ -9832,9 +9838,9 @@ msgstr "oggetto"
#: 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/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Object"
msgstr "Oggetto"
@@ -9894,9 +9900,9 @@ msgstr ""
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "Objects"
msgstr "Oggetti"
@@ -10076,7 +10082,7 @@ msgid "Open side panel"
msgstr ""
#. js-lingui-id: OV5wZZ
#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx
#: src/modules/navigation-menu-item/display/sections/components/NavigationDrawerOpenedSection.tsx
msgid "Opened"
msgstr "Aperto"
@@ -10148,7 +10154,7 @@ msgid "Organization plan"
msgstr ""
#. js-lingui-id: nV6twc
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Organize"
msgstr ""
@@ -10158,9 +10164,9 @@ msgstr ""
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: 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
msgid "Other"
msgstr "Altro"
@@ -10234,7 +10240,7 @@ msgid "Overview"
msgstr "Panoramica"
#. js-lingui-id: LtI9AS
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOwnerSection.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOwnerSection.tsx
msgid "Owner"
msgstr ""
@@ -10427,6 +10433,8 @@ msgstr "Distruggi definitivamente il record"
#. js-lingui-id: 35dBYb
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
msgid "Permanently Destroy Record"
msgstr "Distruggi permanentemente il record"
@@ -10437,6 +10445,7 @@ msgstr "Distruggi definitivamente i record"
#. js-lingui-id: YyP8vD
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Permanently Destroy Records"
msgstr "Distruggi definitivamente i record"
@@ -10958,7 +10967,7 @@ msgstr "record"
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Record"
msgstr "Registro"
@@ -11134,14 +11143,16 @@ msgstr "Remoto"
msgid "Remove"
msgstr "Rimuovi"
#. js-lingui-id: 0Urj9q
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "Remove {navigationMenuItemCount} navigation menu item?"
#. js-lingui-id: XABoh4
#. placeholder {0}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Remove {0} navigation menu items?"
msgstr ""
#. js-lingui-id: Ef5jwi
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "Remove {navigationMenuItemCount} navigation menu items?"
#. js-lingui-id: p/lN7X
#. placeholder {1}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Remove {1} navigation menu item?"
msgstr ""
#. js-lingui-id: 1O32oy
@@ -11171,7 +11182,7 @@ msgid "Remove from favorites"
msgstr "Rimuovi dai preferiti"
#. js-lingui-id: 9VZ6f0
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Remove from sidebar"
msgstr ""
@@ -11218,7 +11229,7 @@ msgstr "Rimuovi variabile"
#. js-lingui-id: 2wxgft
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/activities/files/components/AttachmentDropdown.tsx
msgid "Rename"
msgstr "Rinomina"
@@ -11359,6 +11370,8 @@ msgstr "Ripristina record"
#. js-lingui-id: NzMNOA
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
msgid "Restore Record"
msgstr "Ripristina record"
@@ -11370,6 +11383,8 @@ msgstr "Ripristina record"
#. js-lingui-id: Xqj0Cb
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
msgid "Restore Records"
msgstr "Ripristina record"
@@ -11385,7 +11400,7 @@ msgstr "Risultato"
#. js-lingui-id: kx0s+n
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Results"
msgstr "Risultati"
@@ -11583,7 +11598,6 @@ msgstr "Sabato"
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
#: src/modules/settings/components/SaveAndCancelButtons/SaveButton.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Save"
msgstr "Salva"
@@ -11598,11 +11612,6 @@ msgstr "Salva come nuova vista"
msgid "Save Dashboard"
msgstr "Salva Cruscotto"
#. js-lingui-id: BZVCCj
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
msgid "Save Page Layout"
msgstr ""
#. js-lingui-id: veLq3R
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Scaffold a new app, then use the CLI to develop, publish, and distribute"
@@ -11647,6 +11656,8 @@ msgstr ""
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Search"
@@ -11685,7 +11696,7 @@ msgid "Search a field..."
msgstr "Cerca un campo..."
#. js-lingui-id: ITQFzL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Search a folder..."
msgstr ""
@@ -11706,8 +11717,8 @@ msgid "Search a skill..."
msgstr ""
#. js-lingui-id: hVJ1MP
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
msgid "Search a system object..."
msgstr ""
@@ -11722,7 +11733,7 @@ msgid "Search a type"
msgstr "Cerca un tipo"
#. js-lingui-id: +MhOVB
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Search a view..."
msgstr ""
@@ -11759,8 +11770,8 @@ msgstr "Cerca un oggetto"
#. js-lingui-id: BoNHR0
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "Search an object..."
msgstr ""
@@ -11784,7 +11795,7 @@ msgid "Search colors"
msgstr "Cerca colori"
#. js-lingui-id: AR3FV/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
msgid "Search colors..."
msgstr ""
@@ -11853,7 +11864,7 @@ msgid "Search records"
msgstr "Cerca record"
#. js-lingui-id: rRklUH
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Search records..."
msgstr ""
@@ -12079,7 +12090,7 @@ msgid "Select a field to display in this widget"
msgstr "Seleziona un campo da visualizzare in questo widget"
#. js-lingui-id: dtAvBz
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
msgid "Select a navigation item to edit"
msgstr ""
@@ -12641,6 +12652,11 @@ msgstr "Alcuni"
msgid "Some folders"
msgstr "Alcune cartelle"
#. js-lingui-id: hqUWge
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
msgid "Some layout changes could not be saved"
msgstr ""
#. js-lingui-id: nwtY4N
#: src/pages/auth/Authorize.tsx
msgid "Something went wrong"
@@ -13099,10 +13115,10 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -13483,13 +13499,14 @@ msgstr "Questa azione non può essere annullata. Questo rimuoverà definitivamen
msgid "This action cannot be undone. This will permanently reset your two factor authentication method. <0/> Please type in your email to confirm."
msgstr "Questa azione non può essere annullata. Questo ripristinerà in modo permanente il tuo metodo di autenticazione a due fattori. <0/> Digita la tua email per confermare."
#. js-lingui-id: lAHIY2
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "This action will delete this folder and all {navigationMenuItemCount} navigation menu items inside. Do you want to continue?"
#. js-lingui-id: XxxrMw
#. placeholder {2}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "This action will delete this folder and all {2} navigation menu items inside. Do you want to continue?"
msgstr ""
#. js-lingui-id: gSO0+U
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
msgstr ""
@@ -14016,7 +14033,7 @@ msgid "Type anything..."
msgstr "Digita qualsiasi cosa..."
#. js-lingui-id: UhqKcC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Type to search records"
msgstr ""
@@ -14605,10 +14622,10 @@ msgid "view"
msgstr "vista"
#. js-lingui-id: jpctdh
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "View"
msgstr "Vista"
@@ -14707,6 +14724,7 @@ msgstr ""
#. js-lingui-id: ecVcAx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "View Previous AI Chats"
msgstr "Vedi chat AI precedenti"
@@ -14742,7 +14760,7 @@ msgid "View workspace activity logs"
msgstr ""
#. js-lingui-id: 1I6UoR
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr ""
@@ -15036,6 +15054,7 @@ msgstr ""
#. js-lingui-id: 2jzcC5
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
msgid "Workflow duplicated successfully"
msgstr ""
@@ -15099,7 +15118,7 @@ msgstr "Workflows"
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownVisibilityContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
msgid "Workspace"
msgstr "Workspace"
+121 -102
View File
@@ -946,23 +946,23 @@ msgid "Add Item"
msgstr "アイテムを追加"
#. js-lingui-id: cI2ZVO
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
msgid "Add item to folder"
msgstr ""
#. js-lingui-id: gaZXkv
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItemsFolder.tsx
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Add menu item"
msgstr ""
#. js-lingui-id: JbORSt
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Add menu item after"
msgstr ""
#. js-lingui-id: DKlI/M
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Add menu item before"
msgstr ""
@@ -1423,7 +1423,7 @@ msgid "All Objects"
msgstr "すべてのオブジェクト"
#. js-lingui-id: RoFE84
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
msgid "All objects are already in the sidebar"
msgstr ""
@@ -1438,7 +1438,7 @@ msgid "All set!"
msgstr "準備完了!"
#. js-lingui-id: CHvT6e
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
@@ -1539,7 +1539,7 @@ msgid "alphabetical"
msgstr ""
#. js-lingui-id: eO7HSp
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectMenuItem.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectMenuItem.tsx
msgid "Already in navbar"
msgstr ""
@@ -1897,21 +1897,25 @@ msgstr ""
#. js-lingui-id: OJOR8q
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Are you sure you want to destroy these records? They won't be recoverable anymore."
msgstr "これらのレコードを本当に破壊しますか? もう復元できません。"
#. js-lingui-id: UK5TO6
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
msgid "Are you sure you want to destroy this record? It cannot be recovered anymore."
msgstr "このレコードを削除してもよろしいですか? もう復元することはできません。"
#. js-lingui-id: mcHVC1
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
msgid "Are you sure you want to restore these records?"
msgstr "これらのレコードを復元してもよろしいですか?"
#. js-lingui-id: lmgkf0
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
msgid "Are you sure you want to restore this record?"
msgstr "このレコードを復元しますか?"
@@ -1952,6 +1956,7 @@ msgstr "昇順"
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Ask AI"
msgstr "AIに尋ねる"
@@ -2559,13 +2564,11 @@ msgstr "スキャンできませんか? コピーしてください"
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Cancel"
msgstr "キャンセル"
#. js-lingui-id: HYLdMN
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Cancel Edition"
msgstr "編集をキャンセル"
@@ -2966,7 +2969,7 @@ msgid "Collapse folder"
msgstr "フォルダーを折りたたむ"
#. js-lingui-id: jZlrte
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
msgid "Color"
msgstr ""
@@ -3896,10 +3899,9 @@ msgid "Customization"
msgstr "カスタマイズ"
#. js-lingui-id: srRMnJ
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditObjectViewBase.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
msgid "Customize"
msgstr ""
@@ -3970,6 +3972,7 @@ msgstr "\\ダ\\ー\\ク"
#. js-lingui-id: ogQzcZ
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Dashboard duplicated successfully"
msgstr "ダッシュボードが正常に複製されました"
@@ -3983,7 +3986,7 @@ msgstr "ダッシュボード"
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "データ"
@@ -4305,7 +4308,7 @@ msgstr "削除"
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: 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/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
@@ -4392,7 +4395,7 @@ msgid "Delete field"
msgstr "フィールドを削除"
#. js-lingui-id: 97QUV6
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Delete Folder"
msgstr "フォルダーを削除"
@@ -4593,6 +4596,7 @@ msgstr "{objectLabelPlural}を破壊する"
#. js-lingui-id: kG5yO6
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Destroy Records"
msgstr "レコードを破壊"
@@ -4932,9 +4936,9 @@ msgid "Edit Fields"
msgstr "フィールドを編集"
#. js-lingui-id: uPHscS
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Edit folder"
msgstr ""
@@ -4955,9 +4959,9 @@ msgid "Edit Layout"
msgstr ""
#. js-lingui-id: /PoNoq
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Edit link"
msgstr ""
@@ -6120,11 +6124,13 @@ msgstr ""
#. js-lingui-id: NUmmdc
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Failed to duplicate dashboard"
msgstr "ダッシュボードの複製に失敗しました"
#. js-lingui-id: WYXxQF
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
msgid "Failed to duplicate workflow"
msgstr ""
@@ -6188,9 +6194,9 @@ msgstr "画像を削除できませんでした"
msgid "Failed to retry jobs. Please try again later."
msgstr "ジョブの再試行に失敗しました。後でもう一度お試しください。"
#. js-lingui-id: fuRtgB
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Failed to save navigation layout"
#. js-lingui-id: farFvy
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
msgid "Failed to save layout customization"
msgstr ""
#. js-lingui-id: y3HIOa
@@ -6308,7 +6314,7 @@ msgid "Fast Model"
msgstr ""
#. js-lingui-id: X9kySA
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItemFolders.tsx
#: src/modules/navigation-menu-item/display/sections/favorites/components/FavoritesSection.tsx
msgid "Favorites"
msgstr "お気に入り"
@@ -6580,8 +6586,8 @@ msgid "Flow"
msgstr "フロー"
#. js-lingui-id: kNqMMd
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Folder"
msgstr ""
@@ -6591,8 +6597,8 @@ msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Folders"
msgstr "フォルダー"
@@ -8022,7 +8028,7 @@ msgid "Layout"
msgstr "レイアウト"
#. js-lingui-id: W4nIBb
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
#: src/modules/layout-customization/components/LayoutCustomizationBar.tsx
msgid "Layout customization"
msgstr ""
@@ -8137,8 +8143,8 @@ msgid "Line Chart"
msgstr "ラインチャート"
#. js-lingui-id: yzF66j
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Link"
msgstr ""
@@ -8154,12 +8160,12 @@ msgid "Link copied to clipboard"
msgstr "リンクがクリップボードにコピーされました"
#. js-lingui-id: vH3ZQY
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Link label"
msgstr ""
@@ -8798,7 +8804,7 @@ msgid "Most installed version"
msgstr ""
#. js-lingui-id: 3Ib6FN
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move down"
msgstr ""
@@ -8822,12 +8828,12 @@ msgid "Move to a folder"
msgstr ""
#. js-lingui-id: JCPOml
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move to folder"
msgstr ""
#. js-lingui-id: QyioBP
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move up"
msgstr ""
@@ -9073,9 +9079,9 @@ msgid "New Field"
msgstr "新規フィールド"
#. js-lingui-id: 96G6Re
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "New folder"
msgstr ""
@@ -9115,11 +9121,11 @@ msgid "New record"
msgstr "新しいレコード"
#. js-lingui-id: x6Ckh1
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/hooks/useOpenAddItemToFolderPage.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useNavigationMenuItemEditOrganizeActions.ts
#: src/modules/navigation-menu-item/edit/hooks/useOpenAddItemToFolderPage.ts
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
msgid "New sidebar item"
msgstr ""
@@ -9306,7 +9312,7 @@ msgid "No currency"
msgstr "通貨なし"
#. js-lingui-id: DKVJFE
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "No custom views available"
msgstr ""
@@ -9418,12 +9424,12 @@ msgid "No Files"
msgstr "ファイルなし"
#. js-lingui-id: pYblOw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folder"
msgstr "フォルダーなし"
#. js-lingui-id: 6XMhqL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folders available"
msgstr ""
@@ -9510,7 +9516,7 @@ msgid "No object found"
msgstr ""
#. js-lingui-id: YFHO2u
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "No objects with views found"
msgstr ""
@@ -9587,14 +9593,14 @@ msgid "No Results"
msgstr "結果なし"
#. js-lingui-id: AxPAXW
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/side-panel/components/SidePanelList.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No results found"
msgstr "結果が見つかりません"
@@ -9619,12 +9625,12 @@ msgid "No Select field"
msgstr "選択フィールドなし"
#. js-lingui-id: RQ6tfU
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
msgid "No system objects available"
msgstr ""
#. js-lingui-id: Yf4rVG
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
msgid "No system objects with views found"
msgstr ""
@@ -9832,9 +9838,9 @@ msgstr "オブジェクト"
#: 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/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Object"
msgstr "オブジェクト"
@@ -9894,9 +9900,9 @@ msgstr ""
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "Objects"
msgstr "オブジェクト"
@@ -10076,7 +10082,7 @@ msgid "Open side panel"
msgstr ""
#. js-lingui-id: OV5wZZ
#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx
#: src/modules/navigation-menu-item/display/sections/components/NavigationDrawerOpenedSection.tsx
msgid "Opened"
msgstr "開いた"
@@ -10148,7 +10154,7 @@ msgid "Organization plan"
msgstr ""
#. js-lingui-id: nV6twc
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Organize"
msgstr ""
@@ -10158,9 +10164,9 @@ msgstr ""
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: 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
msgid "Other"
msgstr "その他"
@@ -10234,7 +10240,7 @@ msgid "Overview"
msgstr "概要"
#. js-lingui-id: LtI9AS
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOwnerSection.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOwnerSection.tsx
msgid "Owner"
msgstr ""
@@ -10427,6 +10433,8 @@ msgstr "レコードを永久に削除"
#. js-lingui-id: 35dBYb
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
msgid "Permanently Destroy Record"
msgstr "レコードを永久に削除"
@@ -10437,6 +10445,7 @@ msgstr "レコードを永久に破壊する"
#. js-lingui-id: YyP8vD
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Permanently Destroy Records"
msgstr "レコードを完全に破壊"
@@ -10958,7 +10967,7 @@ msgstr "レコード"
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Record"
msgstr "記録"
@@ -11134,14 +11143,16 @@ msgstr "リモート"
msgid "Remove"
msgstr "削除"
#. js-lingui-id: 0Urj9q
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "Remove {navigationMenuItemCount} navigation menu item?"
#. js-lingui-id: XABoh4
#. placeholder {0}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Remove {0} navigation menu items?"
msgstr ""
#. js-lingui-id: Ef5jwi
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "Remove {navigationMenuItemCount} navigation menu items?"
#. js-lingui-id: p/lN7X
#. placeholder {1}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Remove {1} navigation menu item?"
msgstr ""
#. js-lingui-id: 1O32oy
@@ -11171,7 +11182,7 @@ msgid "Remove from favorites"
msgstr "お気に入りから削除"
#. js-lingui-id: 9VZ6f0
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Remove from sidebar"
msgstr ""
@@ -11218,7 +11229,7 @@ msgstr "変数を削除"
#. js-lingui-id: 2wxgft
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/activities/files/components/AttachmentDropdown.tsx
msgid "Rename"
msgstr "名前を変更"
@@ -11359,6 +11370,8 @@ msgstr "レコードを復元"
#. js-lingui-id: NzMNOA
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
msgid "Restore Record"
msgstr "レコードを復元"
@@ -11370,6 +11383,8 @@ msgstr "レコードを復元"
#. js-lingui-id: Xqj0Cb
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
msgid "Restore Records"
msgstr "レコードを復元"
@@ -11385,7 +11400,7 @@ msgstr "結果"
#. js-lingui-id: kx0s+n
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Results"
msgstr "結果"
@@ -11583,7 +11598,6 @@ msgstr "土曜日"
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
#: src/modules/settings/components/SaveAndCancelButtons/SaveButton.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Save"
msgstr "保存"
@@ -11598,11 +11612,6 @@ msgstr "新しいビューとして保存"
msgid "Save Dashboard"
msgstr "ダッシュボードを保存"
#. js-lingui-id: BZVCCj
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
msgid "Save Page Layout"
msgstr ""
#. js-lingui-id: veLq3R
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Scaffold a new app, then use the CLI to develop, publish, and distribute"
@@ -11647,6 +11656,8 @@ msgstr ""
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Search"
@@ -11685,7 +11696,7 @@ msgid "Search a field..."
msgstr "フィールドを検索..."
#. js-lingui-id: ITQFzL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Search a folder..."
msgstr ""
@@ -11706,8 +11717,8 @@ msgid "Search a skill..."
msgstr ""
#. js-lingui-id: hVJ1MP
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
msgid "Search a system object..."
msgstr ""
@@ -11722,7 +11733,7 @@ msgid "Search a type"
msgstr "タイプを検索"
#. js-lingui-id: +MhOVB
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Search a view..."
msgstr ""
@@ -11759,8 +11770,8 @@ msgstr "オブジェクトを検索"
#. js-lingui-id: BoNHR0
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "Search an object..."
msgstr ""
@@ -11784,7 +11795,7 @@ msgid "Search colors"
msgstr "色を検索"
#. js-lingui-id: AR3FV/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
msgid "Search colors..."
msgstr ""
@@ -11853,7 +11864,7 @@ msgid "Search records"
msgstr "レコードを検索"
#. js-lingui-id: rRklUH
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Search records..."
msgstr ""
@@ -12079,7 +12090,7 @@ msgid "Select a field to display in this widget"
msgstr "このウィジェットに表示するフィールドを選択してください"
#. js-lingui-id: dtAvBz
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
msgid "Select a navigation item to edit"
msgstr ""
@@ -12641,6 +12652,11 @@ msgstr "一部"
msgid "Some folders"
msgstr "いくつかのフォルダー"
#. js-lingui-id: hqUWge
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
msgid "Some layout changes could not be saved"
msgstr ""
#. js-lingui-id: nwtY4N
#: src/pages/auth/Authorize.tsx
msgid "Something went wrong"
@@ -13099,10 +13115,10 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -13481,13 +13497,14 @@ msgstr "この操作は取り消せません。これにより、ワークスペ
msgid "This action cannot be undone. This will permanently reset your two factor authentication method. <0/> Please type in your email to confirm."
msgstr "この操作は取り消せません。二要素認証の方法が完全にリセットされます。<0/> 確認のため、メールアドレスを入力してください。"
#. js-lingui-id: lAHIY2
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "This action will delete this folder and all {navigationMenuItemCount} navigation menu items inside. Do you want to continue?"
#. js-lingui-id: XxxrMw
#. placeholder {2}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "This action will delete this folder and all {2} navigation menu items inside. Do you want to continue?"
msgstr ""
#. js-lingui-id: gSO0+U
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
msgstr ""
@@ -14014,7 +14031,7 @@ msgid "Type anything..."
msgstr "何でも入力..."
#. js-lingui-id: UhqKcC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Type to search records"
msgstr ""
@@ -14603,10 +14620,10 @@ msgid "view"
msgstr "ビュー"
#. js-lingui-id: jpctdh
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "View"
msgstr "ビュー"
@@ -14705,6 +14722,7 @@ msgstr ""
#. js-lingui-id: ecVcAx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "View Previous AI Chats"
msgstr "以前のAIチャットを見る"
@@ -14740,7 +14758,7 @@ msgid "View workspace activity logs"
msgstr ""
#. js-lingui-id: 1I6UoR
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr ""
@@ -15034,6 +15052,7 @@ msgstr ""
#. js-lingui-id: 2jzcC5
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
msgid "Workflow duplicated successfully"
msgstr ""
@@ -15097,7 +15116,7 @@ msgstr "ワークフロー"
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownVisibilityContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
msgid "Workspace"
msgstr "ワークスペース"
+121 -102
View File
@@ -946,23 +946,23 @@ msgid "Add Item"
msgstr "항목 추가"
#. js-lingui-id: cI2ZVO
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
msgid "Add item to folder"
msgstr ""
#. js-lingui-id: gaZXkv
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItemsFolder.tsx
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Add menu item"
msgstr ""
#. js-lingui-id: JbORSt
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Add menu item after"
msgstr ""
#. js-lingui-id: DKlI/M
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Add menu item before"
msgstr ""
@@ -1423,7 +1423,7 @@ msgid "All Objects"
msgstr "모든 개체"
#. js-lingui-id: RoFE84
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
msgid "All objects are already in the sidebar"
msgstr ""
@@ -1438,7 +1438,7 @@ msgid "All set!"
msgstr "준비 완료!"
#. js-lingui-id: CHvT6e
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
@@ -1539,7 +1539,7 @@ msgid "alphabetical"
msgstr ""
#. js-lingui-id: eO7HSp
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectMenuItem.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectMenuItem.tsx
msgid "Already in navbar"
msgstr ""
@@ -1897,21 +1897,25 @@ msgstr ""
#. js-lingui-id: OJOR8q
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Are you sure you want to destroy these records? They won't be recoverable anymore."
msgstr "이 기록들을 파괴하시겠습니까? 더 이상 복구할 수 없습니다."
#. js-lingui-id: UK5TO6
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
msgid "Are you sure you want to destroy this record? It cannot be recovered anymore."
msgstr "이 기록을 파괴하시겠습니까? 더 이상 복구할 수 없습니다."
#. js-lingui-id: mcHVC1
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
msgid "Are you sure you want to restore these records?"
msgstr "이 기록들을 복원하시겠습니까?"
#. js-lingui-id: lmgkf0
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
msgid "Are you sure you want to restore this record?"
msgstr "이 기록을 복원하시겠습니까?"
@@ -1952,6 +1956,7 @@ msgstr "오름차순"
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Ask AI"
msgstr "AI에게 질문하기"
@@ -2559,13 +2564,11 @@ msgstr "스캔이 불가능합니까?"
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Cancel"
msgstr "취소"
#. js-lingui-id: HYLdMN
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Cancel Edition"
msgstr "판 취소"
@@ -2966,7 +2969,7 @@ msgid "Collapse folder"
msgstr "폴더 접기"
#. js-lingui-id: jZlrte
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
msgid "Color"
msgstr ""
@@ -3896,10 +3899,9 @@ msgid "Customization"
msgstr "사용자 지정"
#. js-lingui-id: srRMnJ
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditObjectViewBase.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
msgid "Customize"
msgstr ""
@@ -3970,6 +3972,7 @@ msgstr "다크"
#. js-lingui-id: ogQzcZ
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Dashboard duplicated successfully"
msgstr "대시보드가 성공적으로 복제되었습니다"
@@ -3983,7 +3986,7 @@ msgstr "대시보드"
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "데이터"
@@ -4305,7 +4308,7 @@ msgstr "삭제"
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: 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/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
@@ -4392,7 +4395,7 @@ msgid "Delete field"
msgstr "필드 삭제"
#. js-lingui-id: 97QUV6
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Delete Folder"
msgstr "폴더 삭제"
@@ -4593,6 +4596,7 @@ msgstr "{objectLabelPlural} 파기"
#. js-lingui-id: kG5yO6
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Destroy Records"
msgstr "기록 파기"
@@ -4932,9 +4936,9 @@ msgid "Edit Fields"
msgstr "필드 수정"
#. js-lingui-id: uPHscS
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Edit folder"
msgstr ""
@@ -4955,9 +4959,9 @@ msgid "Edit Layout"
msgstr ""
#. js-lingui-id: /PoNoq
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Edit link"
msgstr ""
@@ -6120,11 +6124,13 @@ msgstr ""
#. js-lingui-id: NUmmdc
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Failed to duplicate dashboard"
msgstr "대시보드 복제에 실패했습니다"
#. js-lingui-id: WYXxQF
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
msgid "Failed to duplicate workflow"
msgstr ""
@@ -6188,9 +6194,9 @@ msgstr "사진 제거 실패"
msgid "Failed to retry jobs. Please try again later."
msgstr "작업 재시도 실패. 나중에 다시 시도하세요."
#. js-lingui-id: fuRtgB
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Failed to save navigation layout"
#. js-lingui-id: farFvy
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
msgid "Failed to save layout customization"
msgstr ""
#. js-lingui-id: y3HIOa
@@ -6308,7 +6314,7 @@ msgid "Fast Model"
msgstr ""
#. js-lingui-id: X9kySA
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItemFolders.tsx
#: src/modules/navigation-menu-item/display/sections/favorites/components/FavoritesSection.tsx
msgid "Favorites"
msgstr "즐겨찾기"
@@ -6580,8 +6586,8 @@ msgid "Flow"
msgstr "흐름"
#. js-lingui-id: kNqMMd
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Folder"
msgstr ""
@@ -6591,8 +6597,8 @@ msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Folders"
msgstr "폴더"
@@ -8022,7 +8028,7 @@ msgid "Layout"
msgstr "레이아웃"
#. js-lingui-id: W4nIBb
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
#: src/modules/layout-customization/components/LayoutCustomizationBar.tsx
msgid "Layout customization"
msgstr ""
@@ -8137,8 +8143,8 @@ msgid "Line Chart"
msgstr "선형 차트"
#. js-lingui-id: yzF66j
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Link"
msgstr ""
@@ -8154,12 +8160,12 @@ msgid "Link copied to clipboard"
msgstr "링크가 클립보드에 복사되었습니다"
#. js-lingui-id: vH3ZQY
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Link label"
msgstr ""
@@ -8798,7 +8804,7 @@ msgid "Most installed version"
msgstr ""
#. js-lingui-id: 3Ib6FN
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move down"
msgstr ""
@@ -8822,12 +8828,12 @@ msgid "Move to a folder"
msgstr ""
#. js-lingui-id: JCPOml
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move to folder"
msgstr ""
#. js-lingui-id: QyioBP
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move up"
msgstr ""
@@ -9073,9 +9079,9 @@ msgid "New Field"
msgstr "새 필드"
#. js-lingui-id: 96G6Re
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "New folder"
msgstr ""
@@ -9115,11 +9121,11 @@ msgid "New record"
msgstr "새 레코드"
#. js-lingui-id: x6Ckh1
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/hooks/useOpenAddItemToFolderPage.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useNavigationMenuItemEditOrganizeActions.ts
#: src/modules/navigation-menu-item/edit/hooks/useOpenAddItemToFolderPage.ts
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
msgid "New sidebar item"
msgstr ""
@@ -9306,7 +9312,7 @@ msgid "No currency"
msgstr "통화 없음"
#. js-lingui-id: DKVJFE
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "No custom views available"
msgstr ""
@@ -9418,12 +9424,12 @@ msgid "No Files"
msgstr "파일 없음"
#. js-lingui-id: pYblOw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folder"
msgstr "폴더 없음"
#. js-lingui-id: 6XMhqL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folders available"
msgstr ""
@@ -9510,7 +9516,7 @@ msgid "No object found"
msgstr ""
#. js-lingui-id: YFHO2u
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "No objects with views found"
msgstr ""
@@ -9587,14 +9593,14 @@ msgid "No Results"
msgstr "결과 없음"
#. js-lingui-id: AxPAXW
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/side-panel/components/SidePanelList.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No results found"
msgstr "결과를 찾을 수 없습니다"
@@ -9619,12 +9625,12 @@ msgid "No Select field"
msgstr "선택 필드 없음"
#. js-lingui-id: RQ6tfU
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
msgid "No system objects available"
msgstr ""
#. js-lingui-id: Yf4rVG
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
msgid "No system objects with views found"
msgstr ""
@@ -9832,9 +9838,9 @@ msgstr "개체"
#: 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/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Object"
msgstr "개체"
@@ -9894,9 +9900,9 @@ msgstr ""
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "Objects"
msgstr "개체"
@@ -10076,7 +10082,7 @@ msgid "Open side panel"
msgstr ""
#. js-lingui-id: OV5wZZ
#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx
#: src/modules/navigation-menu-item/display/sections/components/NavigationDrawerOpenedSection.tsx
msgid "Opened"
msgstr "열림"
@@ -10148,7 +10154,7 @@ msgid "Organization plan"
msgstr ""
#. js-lingui-id: nV6twc
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Organize"
msgstr ""
@@ -10158,9 +10164,9 @@ msgstr ""
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: 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
msgid "Other"
msgstr "기타"
@@ -10234,7 +10240,7 @@ msgid "Overview"
msgstr "개요"
#. js-lingui-id: LtI9AS
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOwnerSection.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOwnerSection.tsx
msgid "Owner"
msgstr ""
@@ -10427,6 +10433,8 @@ msgstr "레코드 영구 삭제"
#. js-lingui-id: 35dBYb
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
msgid "Permanently Destroy Record"
msgstr "기록을 영구적으로 파기합니다"
@@ -10437,6 +10445,7 @@ msgstr "레코드 영구 삭제"
#. js-lingui-id: YyP8vD
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Permanently Destroy Records"
msgstr "기록을 영구적으로 파기합니다"
@@ -10958,7 +10967,7 @@ msgstr "기록"
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Record"
msgstr "기록"
@@ -11134,14 +11143,16 @@ msgstr "원격"
msgid "Remove"
msgstr "제거"
#. js-lingui-id: 0Urj9q
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "Remove {navigationMenuItemCount} navigation menu item?"
#. js-lingui-id: XABoh4
#. placeholder {0}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Remove {0} navigation menu items?"
msgstr ""
#. js-lingui-id: Ef5jwi
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "Remove {navigationMenuItemCount} navigation menu items?"
#. js-lingui-id: p/lN7X
#. placeholder {1}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Remove {1} navigation menu item?"
msgstr ""
#. js-lingui-id: 1O32oy
@@ -11171,7 +11182,7 @@ msgid "Remove from favorites"
msgstr "즐겨찾기에서 제거"
#. js-lingui-id: 9VZ6f0
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Remove from sidebar"
msgstr ""
@@ -11218,7 +11229,7 @@ msgstr "변수 제거"
#. js-lingui-id: 2wxgft
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/activities/files/components/AttachmentDropdown.tsx
msgid "Rename"
msgstr "이름 바꾸기"
@@ -11359,6 +11370,8 @@ msgstr "레코드 복원"
#. js-lingui-id: NzMNOA
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
msgid "Restore Record"
msgstr "레코드 복원"
@@ -11370,6 +11383,8 @@ msgstr "레코드 복원"
#. js-lingui-id: Xqj0Cb
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
msgid "Restore Records"
msgstr "기록 복원"
@@ -11385,7 +11400,7 @@ msgstr "결과"
#. js-lingui-id: kx0s+n
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Results"
msgstr "결과"
@@ -11583,7 +11598,6 @@ msgstr "토요일"
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
#: src/modules/settings/components/SaveAndCancelButtons/SaveButton.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Save"
msgstr "저장"
@@ -11598,11 +11612,6 @@ msgstr "새 보기로 저장"
msgid "Save Dashboard"
msgstr "대시보드 저장"
#. js-lingui-id: BZVCCj
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
msgid "Save Page Layout"
msgstr ""
#. js-lingui-id: veLq3R
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Scaffold a new app, then use the CLI to develop, publish, and distribute"
@@ -11647,6 +11656,8 @@ msgstr ""
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Search"
@@ -11685,7 +11696,7 @@ msgid "Search a field..."
msgstr "필드 검색..."
#. js-lingui-id: ITQFzL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Search a folder..."
msgstr ""
@@ -11706,8 +11717,8 @@ msgid "Search a skill..."
msgstr ""
#. js-lingui-id: hVJ1MP
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
msgid "Search a system object..."
msgstr ""
@@ -11722,7 +11733,7 @@ msgid "Search a type"
msgstr "유형 검색"
#. js-lingui-id: +MhOVB
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Search a view..."
msgstr ""
@@ -11759,8 +11770,8 @@ msgstr "개체 검색"
#. js-lingui-id: BoNHR0
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "Search an object..."
msgstr ""
@@ -11784,7 +11795,7 @@ msgid "Search colors"
msgstr "색상 검색"
#. js-lingui-id: AR3FV/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
msgid "Search colors..."
msgstr ""
@@ -11853,7 +11864,7 @@ msgid "Search records"
msgstr "레코드 검색"
#. js-lingui-id: rRklUH
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Search records..."
msgstr ""
@@ -12079,7 +12090,7 @@ msgid "Select a field to display in this widget"
msgstr "이 위젯에 표시할 필드를 선택하세요"
#. js-lingui-id: dtAvBz
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
msgid "Select a navigation item to edit"
msgstr ""
@@ -12641,6 +12652,11 @@ msgstr "일부"
msgid "Some folders"
msgstr "일부 폴더"
#. js-lingui-id: hqUWge
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
msgid "Some layout changes could not be saved"
msgstr ""
#. js-lingui-id: nwtY4N
#: src/pages/auth/Authorize.tsx
msgid "Something went wrong"
@@ -13099,10 +13115,10 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -13481,13 +13497,14 @@ msgstr "이 작업은 취소할 수 없습니다. 이렇게 하면 이 워크스
msgid "This action cannot be undone. This will permanently reset your two factor authentication method. <0/> Please type in your email to confirm."
msgstr "이 작업은 취소할 수 없습니다. 이 작업은 이중 인증 방법을 영구적으로 초기화합니다. <0/> 확인하려면 이메일을 입력하세요."
#. js-lingui-id: lAHIY2
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "This action will delete this folder and all {navigationMenuItemCount} navigation menu items inside. Do you want to continue?"
#. js-lingui-id: XxxrMw
#. placeholder {2}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "This action will delete this folder and all {2} navigation menu items inside. Do you want to continue?"
msgstr ""
#. js-lingui-id: gSO0+U
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
msgstr ""
@@ -14014,7 +14031,7 @@ msgid "Type anything..."
msgstr "아무거나 입력하세요..."
#. js-lingui-id: UhqKcC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Type to search records"
msgstr ""
@@ -14603,10 +14620,10 @@ msgid "view"
msgstr "보기"
#. js-lingui-id: jpctdh
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "View"
msgstr "보기"
@@ -14705,6 +14722,7 @@ msgstr ""
#. js-lingui-id: ecVcAx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "View Previous AI Chats"
msgstr "이전 AI 채팅 보기"
@@ -14740,7 +14758,7 @@ msgid "View workspace activity logs"
msgstr ""
#. js-lingui-id: 1I6UoR
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr ""
@@ -15034,6 +15052,7 @@ msgstr ""
#. js-lingui-id: 2jzcC5
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
msgid "Workflow duplicated successfully"
msgstr ""
@@ -15097,7 +15116,7 @@ msgstr "Workflows"
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownVisibilityContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
msgid "Workspace"
msgstr "워크스페이스"
+121 -102
View File
@@ -946,23 +946,23 @@ msgid "Add Item"
msgstr "Voeg item toe"
#. js-lingui-id: cI2ZVO
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
msgid "Add item to folder"
msgstr ""
#. js-lingui-id: gaZXkv
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItemsFolder.tsx
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Add menu item"
msgstr ""
#. js-lingui-id: JbORSt
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Add menu item after"
msgstr ""
#. js-lingui-id: DKlI/M
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Add menu item before"
msgstr ""
@@ -1423,7 +1423,7 @@ msgid "All Objects"
msgstr "Alle objecten"
#. js-lingui-id: RoFE84
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
msgid "All objects are already in the sidebar"
msgstr ""
@@ -1438,7 +1438,7 @@ msgid "All set!"
msgstr "Alles klaar!"
#. js-lingui-id: CHvT6e
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
@@ -1539,7 +1539,7 @@ msgid "alphabetical"
msgstr ""
#. js-lingui-id: eO7HSp
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectMenuItem.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectMenuItem.tsx
msgid "Already in navbar"
msgstr ""
@@ -1897,21 +1897,25 @@ msgstr ""
#. js-lingui-id: OJOR8q
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Are you sure you want to destroy these records? They won't be recoverable anymore."
msgstr "Weet je zeker dat je deze records wilt vernietigen? Ze zijn hierna niet meer te herstellen."
#. js-lingui-id: UK5TO6
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
msgid "Are you sure you want to destroy this record? It cannot be recovered anymore."
msgstr "Weet je zeker dat je dit record wilt vernietigen? Het kan niet meer worden hersteld."
#. js-lingui-id: mcHVC1
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
msgid "Are you sure you want to restore these records?"
msgstr "Weet je zeker dat je deze records wilt herstellen?"
#. js-lingui-id: lmgkf0
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
msgid "Are you sure you want to restore this record?"
msgstr "Weet je zeker dat je dit record wilt herstellen?"
@@ -1952,6 +1956,7 @@ msgstr "Oplopend"
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Ask AI"
msgstr "Vraag AI"
@@ -2559,13 +2564,11 @@ msgstr "Kan je niet scannen? Kopieer de"
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Cancel"
msgstr "Annuleren"
#. js-lingui-id: HYLdMN
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Cancel Edition"
msgstr "Annuleer Bewerken"
@@ -2966,7 +2969,7 @@ msgid "Collapse folder"
msgstr "Map inklappen"
#. js-lingui-id: jZlrte
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
msgid "Color"
msgstr ""
@@ -3896,10 +3899,9 @@ msgid "Customization"
msgstr "Aanpassen"
#. js-lingui-id: srRMnJ
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditObjectViewBase.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
msgid "Customize"
msgstr ""
@@ -3970,6 +3972,7 @@ msgstr "Donker"
#. js-lingui-id: ogQzcZ
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Dashboard duplicated successfully"
msgstr "Dashboard succesvol gedupliceerd"
@@ -3983,7 +3986,7 @@ msgstr "Dashboards"
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Data"
@@ -4305,7 +4308,7 @@ msgstr "verwijderen"
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: 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/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
@@ -4392,7 +4395,7 @@ msgid "Delete field"
msgstr "Veld verwijderen"
#. js-lingui-id: 97QUV6
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Delete Folder"
msgstr "Map verwijderen"
@@ -4593,6 +4596,7 @@ msgstr "Vernietig {objectLabelPlural}"
#. js-lingui-id: kG5yO6
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Destroy Records"
msgstr "Vernietig Records"
@@ -4932,9 +4936,9 @@ msgid "Edit Fields"
msgstr "Velden bewerken"
#. js-lingui-id: uPHscS
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Edit folder"
msgstr ""
@@ -4955,9 +4959,9 @@ msgid "Edit Layout"
msgstr ""
#. js-lingui-id: /PoNoq
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Edit link"
msgstr ""
@@ -6120,11 +6124,13 @@ msgstr ""
#. js-lingui-id: NUmmdc
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Failed to duplicate dashboard"
msgstr "Het dupliceren van het dashboard is mislukt"
#. js-lingui-id: WYXxQF
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
msgid "Failed to duplicate workflow"
msgstr ""
@@ -6188,9 +6194,9 @@ msgstr "Het verwijderen van de afbeelding is mislukt"
msgid "Failed to retry jobs. Please try again later."
msgstr "Fout bij het opnieuw proberen van taken. Probeer het later opnieuw."
#. js-lingui-id: fuRtgB
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Failed to save navigation layout"
#. js-lingui-id: farFvy
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
msgid "Failed to save layout customization"
msgstr ""
#. js-lingui-id: y3HIOa
@@ -6308,7 +6314,7 @@ msgid "Fast Model"
msgstr ""
#. js-lingui-id: X9kySA
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItemFolders.tsx
#: src/modules/navigation-menu-item/display/sections/favorites/components/FavoritesSection.tsx
msgid "Favorites"
msgstr "Favorieten"
@@ -6580,8 +6586,8 @@ msgid "Flow"
msgstr "Stroom"
#. js-lingui-id: kNqMMd
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Folder"
msgstr ""
@@ -6591,8 +6597,8 @@ msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Folders"
msgstr "Mappen"
@@ -8022,7 +8028,7 @@ msgid "Layout"
msgstr "Lay-out"
#. js-lingui-id: W4nIBb
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
#: src/modules/layout-customization/components/LayoutCustomizationBar.tsx
msgid "Layout customization"
msgstr ""
@@ -8137,8 +8143,8 @@ msgid "Line Chart"
msgstr "Lijngrafiek"
#. js-lingui-id: yzF66j
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Link"
msgstr ""
@@ -8154,12 +8160,12 @@ msgid "Link copied to clipboard"
msgstr "Link gekopieerd naar klembord"
#. js-lingui-id: vH3ZQY
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Link label"
msgstr ""
@@ -8798,7 +8804,7 @@ msgid "Most installed version"
msgstr ""
#. js-lingui-id: 3Ib6FN
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move down"
msgstr ""
@@ -8822,12 +8828,12 @@ msgid "Move to a folder"
msgstr ""
#. js-lingui-id: JCPOml
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move to folder"
msgstr ""
#. js-lingui-id: QyioBP
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move up"
msgstr ""
@@ -9073,9 +9079,9 @@ msgid "New Field"
msgstr "Nieuw veld"
#. js-lingui-id: 96G6Re
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "New folder"
msgstr ""
@@ -9115,11 +9121,11 @@ msgid "New record"
msgstr "Nieuw record"
#. js-lingui-id: x6Ckh1
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/hooks/useOpenAddItemToFolderPage.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useNavigationMenuItemEditOrganizeActions.ts
#: src/modules/navigation-menu-item/edit/hooks/useOpenAddItemToFolderPage.ts
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
msgid "New sidebar item"
msgstr ""
@@ -9306,7 +9312,7 @@ msgid "No currency"
msgstr "Geen valuta"
#. js-lingui-id: DKVJFE
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "No custom views available"
msgstr ""
@@ -9418,12 +9424,12 @@ msgid "No Files"
msgstr "Geen bestanden"
#. js-lingui-id: pYblOw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folder"
msgstr "Geen map"
#. js-lingui-id: 6XMhqL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folders available"
msgstr ""
@@ -9510,7 +9516,7 @@ msgid "No object found"
msgstr ""
#. js-lingui-id: YFHO2u
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "No objects with views found"
msgstr ""
@@ -9587,14 +9593,14 @@ msgid "No Results"
msgstr "Geen resultaten"
#. js-lingui-id: AxPAXW
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/side-panel/components/SidePanelList.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No results found"
msgstr "Geen resultaten gevonden"
@@ -9619,12 +9625,12 @@ msgid "No Select field"
msgstr "Geen selecteer veld"
#. js-lingui-id: RQ6tfU
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
msgid "No system objects available"
msgstr ""
#. js-lingui-id: Yf4rVG
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
msgid "No system objects with views found"
msgstr ""
@@ -9832,9 +9838,9 @@ msgstr "object"
#: 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/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Object"
msgstr "Object"
@@ -9894,9 +9900,9 @@ msgstr ""
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "Objects"
msgstr "Objecten"
@@ -10076,7 +10082,7 @@ msgid "Open side panel"
msgstr ""
#. js-lingui-id: OV5wZZ
#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx
#: src/modules/navigation-menu-item/display/sections/components/NavigationDrawerOpenedSection.tsx
msgid "Opened"
msgstr "Geopend"
@@ -10148,7 +10154,7 @@ msgid "Organization plan"
msgstr ""
#. js-lingui-id: nV6twc
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Organize"
msgstr ""
@@ -10158,9 +10164,9 @@ msgstr ""
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: 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
msgid "Other"
msgstr "Overige"
@@ -10234,7 +10240,7 @@ msgid "Overview"
msgstr "Overzicht"
#. js-lingui-id: LtI9AS
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOwnerSection.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOwnerSection.tsx
msgid "Owner"
msgstr ""
@@ -10427,6 +10433,8 @@ msgstr "Record definitief vernietigen"
#. js-lingui-id: 35dBYb
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
msgid "Permanently Destroy Record"
msgstr "Vernietig Record Permanent"
@@ -10437,6 +10445,7 @@ msgstr "Records definitief vernietigen"
#. js-lingui-id: YyP8vD
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Permanently Destroy Records"
msgstr "Vernietig Records Permanent"
@@ -10958,7 +10967,7 @@ msgstr "record"
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Record"
msgstr "Record"
@@ -11134,14 +11143,16 @@ msgstr "Extern"
msgid "Remove"
msgstr "Verwijderen"
#. js-lingui-id: 0Urj9q
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "Remove {navigationMenuItemCount} navigation menu item?"
#. js-lingui-id: XABoh4
#. placeholder {0}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Remove {0} navigation menu items?"
msgstr ""
#. js-lingui-id: Ef5jwi
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "Remove {navigationMenuItemCount} navigation menu items?"
#. js-lingui-id: p/lN7X
#. placeholder {1}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Remove {1} navigation menu item?"
msgstr ""
#. js-lingui-id: 1O32oy
@@ -11171,7 +11182,7 @@ msgid "Remove from favorites"
msgstr "Verwijderen uit favorieten"
#. js-lingui-id: 9VZ6f0
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Remove from sidebar"
msgstr ""
@@ -11218,7 +11229,7 @@ msgstr "Variabele verwijderen"
#. js-lingui-id: 2wxgft
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/activities/files/components/AttachmentDropdown.tsx
msgid "Rename"
msgstr "Naam wijzigen"
@@ -11359,6 +11370,8 @@ msgstr "Record herstellen"
#. js-lingui-id: NzMNOA
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
msgid "Restore Record"
msgstr "Record Herstellen"
@@ -11370,6 +11383,8 @@ msgstr "Records herstellen"
#. js-lingui-id: Xqj0Cb
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
msgid "Restore Records"
msgstr "Records Herstellen"
@@ -11385,7 +11400,7 @@ msgstr "Resultaat"
#. js-lingui-id: kx0s+n
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Results"
msgstr "Resultaten"
@@ -11583,7 +11598,6 @@ msgstr "Zaterdag"
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
#: src/modules/settings/components/SaveAndCancelButtons/SaveButton.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Save"
msgstr "Opslaan"
@@ -11598,11 +11612,6 @@ msgstr "Opslaan als nieuwe weergave"
msgid "Save Dashboard"
msgstr "Dashboard opslaan"
#. js-lingui-id: BZVCCj
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
msgid "Save Page Layout"
msgstr ""
#. js-lingui-id: veLq3R
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Scaffold a new app, then use the CLI to develop, publish, and distribute"
@@ -11647,6 +11656,8 @@ msgstr ""
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Search"
@@ -11685,7 +11696,7 @@ msgid "Search a field..."
msgstr "Zoek een veld..."
#. js-lingui-id: ITQFzL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Search a folder..."
msgstr ""
@@ -11706,8 +11717,8 @@ msgid "Search a skill..."
msgstr ""
#. js-lingui-id: hVJ1MP
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
msgid "Search a system object..."
msgstr ""
@@ -11722,7 +11733,7 @@ msgid "Search a type"
msgstr "Zoek een type"
#. js-lingui-id: +MhOVB
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Search a view..."
msgstr ""
@@ -11759,8 +11770,8 @@ msgstr "Zoek een object"
#. js-lingui-id: BoNHR0
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "Search an object..."
msgstr ""
@@ -11784,7 +11795,7 @@ msgid "Search colors"
msgstr "Zoek kleuren"
#. js-lingui-id: AR3FV/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
msgid "Search colors..."
msgstr ""
@@ -11853,7 +11864,7 @@ msgid "Search records"
msgstr "Records zoeken"
#. js-lingui-id: rRklUH
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Search records..."
msgstr ""
@@ -12079,7 +12090,7 @@ msgid "Select a field to display in this widget"
msgstr "Selecteer een veld om in deze widget weer te geven"
#. js-lingui-id: dtAvBz
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
msgid "Select a navigation item to edit"
msgstr ""
@@ -12641,6 +12652,11 @@ msgstr "Enkele"
msgid "Some folders"
msgstr "Sommige mappen"
#. js-lingui-id: hqUWge
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
msgid "Some layout changes could not be saved"
msgstr ""
#. js-lingui-id: nwtY4N
#: src/pages/auth/Authorize.tsx
msgid "Something went wrong"
@@ -13099,10 +13115,10 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -13483,13 +13499,14 @@ msgstr "Deze actie kan niet ongedaan worden gemaakt. Dit zal permanent uw lidmaa
msgid "This action cannot be undone. This will permanently reset your two factor authentication method. <0/> Please type in your email to confirm."
msgstr "Deze actie kan niet ongedaan worden gemaakt. Hiermee wordt je methode voor tweefactorauthenticatie permanent opnieuw ingesteld. <0/> Typ je e-mailadres ter bevestiging."
#. js-lingui-id: lAHIY2
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "This action will delete this folder and all {navigationMenuItemCount} navigation menu items inside. Do you want to continue?"
#. js-lingui-id: XxxrMw
#. placeholder {2}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "This action will delete this folder and all {2} navigation menu items inside. Do you want to continue?"
msgstr ""
#. js-lingui-id: gSO0+U
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
msgstr ""
@@ -14016,7 +14033,7 @@ msgid "Type anything..."
msgstr "Typ iets..."
#. js-lingui-id: UhqKcC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Type to search records"
msgstr ""
@@ -14605,10 +14622,10 @@ msgid "view"
msgstr "weergave"
#. js-lingui-id: jpctdh
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "View"
msgstr "Weergave"
@@ -14707,6 +14724,7 @@ msgstr ""
#. js-lingui-id: ecVcAx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "View Previous AI Chats"
msgstr "Bekijk Vorige AI-chats"
@@ -14742,7 +14760,7 @@ msgid "View workspace activity logs"
msgstr ""
#. js-lingui-id: 1I6UoR
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr ""
@@ -15036,6 +15054,7 @@ msgstr ""
#. js-lingui-id: 2jzcC5
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
msgid "Workflow duplicated successfully"
msgstr ""
@@ -15099,7 +15118,7 @@ msgstr "Workstrooms"
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownVisibilityContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
msgid "Workspace"
msgstr "Werkruimte"
+121 -102
View File
@@ -946,23 +946,23 @@ msgid "Add Item"
msgstr "Legg til element"
#. js-lingui-id: cI2ZVO
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
msgid "Add item to folder"
msgstr ""
#. js-lingui-id: gaZXkv
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItemsFolder.tsx
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Add menu item"
msgstr ""
#. js-lingui-id: JbORSt
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Add menu item after"
msgstr ""
#. js-lingui-id: DKlI/M
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Add menu item before"
msgstr ""
@@ -1423,7 +1423,7 @@ msgid "All Objects"
msgstr "Alle objekter"
#. js-lingui-id: RoFE84
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
msgid "All objects are already in the sidebar"
msgstr ""
@@ -1438,7 +1438,7 @@ msgid "All set!"
msgstr "Alt klart!"
#. js-lingui-id: CHvT6e
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
@@ -1539,7 +1539,7 @@ msgid "alphabetical"
msgstr ""
#. js-lingui-id: eO7HSp
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectMenuItem.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectMenuItem.tsx
msgid "Already in navbar"
msgstr ""
@@ -1897,21 +1897,25 @@ msgstr ""
#. js-lingui-id: OJOR8q
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Are you sure you want to destroy these records? They won't be recoverable anymore."
msgstr "Er du sikker på at du vil ødelegge disse postene? De kan ikke gjenopprettes."
#. js-lingui-id: UK5TO6
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
msgid "Are you sure you want to destroy this record? It cannot be recovered anymore."
msgstr "Er du sikker på at du vil ødelegge denne posten? Den kan ikke gjenopprettes."
#. js-lingui-id: mcHVC1
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
msgid "Are you sure you want to restore these records?"
msgstr "Er du sikker på at du vil gjenopprette disse postene?"
#. js-lingui-id: lmgkf0
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
msgid "Are you sure you want to restore this record?"
msgstr "Er du sikker på at du vil gjenopprette denne posten?"
@@ -1952,6 +1956,7 @@ msgstr "Stigende"
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Ask AI"
msgstr "Spør AI"
@@ -2559,13 +2564,11 @@ msgstr "Kan ikke skanne? Kopier "
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Cancel"
msgstr "Avbryt"
#. js-lingui-id: HYLdMN
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Cancel Edition"
msgstr "Avbryt redigering"
@@ -2966,7 +2969,7 @@ msgid "Collapse folder"
msgstr "Fold sammen mappe"
#. js-lingui-id: jZlrte
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
msgid "Color"
msgstr ""
@@ -3896,10 +3899,9 @@ msgid "Customization"
msgstr "Tilpasning"
#. js-lingui-id: srRMnJ
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditObjectViewBase.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
msgid "Customize"
msgstr ""
@@ -3970,6 +3972,7 @@ msgstr "Mørk"
#. js-lingui-id: ogQzcZ
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Dashboard duplicated successfully"
msgstr "Dashbordet ble duplisert"
@@ -3983,7 +3986,7 @@ msgstr ""
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Data"
@@ -4305,7 +4308,7 @@ msgstr "slett"
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: 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/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
@@ -4392,7 +4395,7 @@ msgid "Delete field"
msgstr "Slett felt"
#. js-lingui-id: 97QUV6
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Delete Folder"
msgstr "Slett mappe"
@@ -4593,6 +4596,7 @@ msgstr "Ødelegg {objectLabelPlural}"
#. js-lingui-id: kG5yO6
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Destroy Records"
msgstr "Ødelegg poster"
@@ -4932,9 +4936,9 @@ msgid "Edit Fields"
msgstr "Rediger felt"
#. js-lingui-id: uPHscS
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Edit folder"
msgstr ""
@@ -4955,9 +4959,9 @@ msgid "Edit Layout"
msgstr ""
#. js-lingui-id: /PoNoq
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Edit link"
msgstr ""
@@ -6120,11 +6124,13 @@ msgstr ""
#. js-lingui-id: NUmmdc
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Failed to duplicate dashboard"
msgstr "Kunne ikke duplisere dashbordet"
#. js-lingui-id: WYXxQF
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
msgid "Failed to duplicate workflow"
msgstr ""
@@ -6188,9 +6194,9 @@ msgstr "Kunne ikke fjerne bilde"
msgid "Failed to retry jobs. Please try again later."
msgstr "Mislyktes å prøve jobber på nytt. Vennligst prøv igjen senere."
#. js-lingui-id: fuRtgB
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Failed to save navigation layout"
#. js-lingui-id: farFvy
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
msgid "Failed to save layout customization"
msgstr ""
#. js-lingui-id: y3HIOa
@@ -6308,7 +6314,7 @@ msgid "Fast Model"
msgstr ""
#. js-lingui-id: X9kySA
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItemFolders.tsx
#: src/modules/navigation-menu-item/display/sections/favorites/components/FavoritesSection.tsx
msgid "Favorites"
msgstr "Favoritter"
@@ -6580,8 +6586,8 @@ msgid "Flow"
msgstr "Flyt"
#. js-lingui-id: kNqMMd
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Folder"
msgstr ""
@@ -6591,8 +6597,8 @@ msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Folders"
msgstr "Mapper"
@@ -8022,7 +8028,7 @@ msgid "Layout"
msgstr "Oppsett"
#. js-lingui-id: W4nIBb
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
#: src/modules/layout-customization/components/LayoutCustomizationBar.tsx
msgid "Layout customization"
msgstr ""
@@ -8137,8 +8143,8 @@ msgid "Line Chart"
msgstr "Linjediagram"
#. js-lingui-id: yzF66j
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Link"
msgstr ""
@@ -8154,12 +8160,12 @@ msgid "Link copied to clipboard"
msgstr "Lenke kopiert til utklippstavlen"
#. js-lingui-id: vH3ZQY
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Link label"
msgstr ""
@@ -8798,7 +8804,7 @@ msgid "Most installed version"
msgstr ""
#. js-lingui-id: 3Ib6FN
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move down"
msgstr ""
@@ -8822,12 +8828,12 @@ msgid "Move to a folder"
msgstr ""
#. js-lingui-id: JCPOml
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move to folder"
msgstr ""
#. js-lingui-id: QyioBP
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move up"
msgstr ""
@@ -9073,9 +9079,9 @@ msgid "New Field"
msgstr "Nytt felt"
#. js-lingui-id: 96G6Re
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "New folder"
msgstr ""
@@ -9115,11 +9121,11 @@ msgid "New record"
msgstr "Ny post"
#. js-lingui-id: x6Ckh1
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/hooks/useOpenAddItemToFolderPage.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useNavigationMenuItemEditOrganizeActions.ts
#: src/modules/navigation-menu-item/edit/hooks/useOpenAddItemToFolderPage.ts
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
msgid "New sidebar item"
msgstr ""
@@ -9306,7 +9312,7 @@ msgid "No currency"
msgstr "Ingen valuta"
#. js-lingui-id: DKVJFE
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "No custom views available"
msgstr ""
@@ -9418,12 +9424,12 @@ msgid "No Files"
msgstr "Ingen filer"
#. js-lingui-id: pYblOw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folder"
msgstr "Ingen mappe"
#. js-lingui-id: 6XMhqL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folders available"
msgstr ""
@@ -9510,7 +9516,7 @@ msgid "No object found"
msgstr ""
#. js-lingui-id: YFHO2u
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "No objects with views found"
msgstr ""
@@ -9587,14 +9593,14 @@ msgid "No Results"
msgstr "Ingen resultater"
#. js-lingui-id: AxPAXW
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/side-panel/components/SidePanelList.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No results found"
msgstr "Ingen resultater funnet"
@@ -9619,12 +9625,12 @@ msgid "No Select field"
msgstr "Ingen valgt felt"
#. js-lingui-id: RQ6tfU
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
msgid "No system objects available"
msgstr ""
#. js-lingui-id: Yf4rVG
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
msgid "No system objects with views found"
msgstr ""
@@ -9832,9 +9838,9 @@ msgstr "objekt"
#: 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/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Object"
msgstr "Objekt"
@@ -9894,9 +9900,9 @@ msgstr ""
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "Objects"
msgstr "Objekter"
@@ -10076,7 +10082,7 @@ msgid "Open side panel"
msgstr ""
#. js-lingui-id: OV5wZZ
#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx
#: src/modules/navigation-menu-item/display/sections/components/NavigationDrawerOpenedSection.tsx
msgid "Opened"
msgstr "Åpnet"
@@ -10148,7 +10154,7 @@ msgid "Organization plan"
msgstr ""
#. js-lingui-id: nV6twc
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Organize"
msgstr ""
@@ -10158,9 +10164,9 @@ msgstr ""
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: 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
msgid "Other"
msgstr "Annen"
@@ -10234,7 +10240,7 @@ msgid "Overview"
msgstr "Oversikt"
#. js-lingui-id: LtI9AS
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOwnerSection.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOwnerSection.tsx
msgid "Owner"
msgstr ""
@@ -10427,6 +10433,8 @@ msgstr "Permanent ødelegg post"
#. js-lingui-id: 35dBYb
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
msgid "Permanently Destroy Record"
msgstr "Permanent ødelegg post"
@@ -10437,6 +10445,7 @@ msgstr "Permanent ødelegg poster"
#. js-lingui-id: YyP8vD
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Permanently Destroy Records"
msgstr "Permanent ødelegge poster"
@@ -10958,7 +10967,7 @@ msgstr "oppføring"
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Record"
msgstr "Oppføring"
@@ -11134,14 +11143,16 @@ msgstr "Fjern"
msgid "Remove"
msgstr "Fjern"
#. js-lingui-id: 0Urj9q
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "Remove {navigationMenuItemCount} navigation menu item?"
#. js-lingui-id: XABoh4
#. placeholder {0}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Remove {0} navigation menu items?"
msgstr ""
#. js-lingui-id: Ef5jwi
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "Remove {navigationMenuItemCount} navigation menu items?"
#. js-lingui-id: p/lN7X
#. placeholder {1}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Remove {1} navigation menu item?"
msgstr ""
#. js-lingui-id: 1O32oy
@@ -11171,7 +11182,7 @@ msgid "Remove from favorites"
msgstr "Fjern fra favoritter"
#. js-lingui-id: 9VZ6f0
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Remove from sidebar"
msgstr ""
@@ -11218,7 +11229,7 @@ msgstr "Fjern variabel"
#. js-lingui-id: 2wxgft
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/activities/files/components/AttachmentDropdown.tsx
msgid "Rename"
msgstr "Gi nytt navn"
@@ -11359,6 +11370,8 @@ msgstr "Gjenopprett oppføring"
#. js-lingui-id: NzMNOA
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
msgid "Restore Record"
msgstr "Gjenopprett post"
@@ -11370,6 +11383,8 @@ msgstr "Gjenopprett oppføringer"
#. js-lingui-id: Xqj0Cb
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
msgid "Restore Records"
msgstr "Gjenopprett poster"
@@ -11385,7 +11400,7 @@ msgstr "Resultat"
#. js-lingui-id: kx0s+n
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Results"
msgstr "Resultater"
@@ -11583,7 +11598,6 @@ msgstr "Lørdag"
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
#: src/modules/settings/components/SaveAndCancelButtons/SaveButton.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Save"
msgstr "Lagre"
@@ -11598,11 +11612,6 @@ msgstr "Lagre som ny visning"
msgid "Save Dashboard"
msgstr "Lagre dashbord"
#. js-lingui-id: BZVCCj
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
msgid "Save Page Layout"
msgstr ""
#. js-lingui-id: veLq3R
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Scaffold a new app, then use the CLI to develop, publish, and distribute"
@@ -11647,6 +11656,8 @@ msgstr ""
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Search"
@@ -11685,7 +11696,7 @@ msgid "Search a field..."
msgstr "Søk i et felt..."
#. js-lingui-id: ITQFzL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Search a folder..."
msgstr ""
@@ -11706,8 +11717,8 @@ msgid "Search a skill..."
msgstr ""
#. js-lingui-id: hVJ1MP
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
msgid "Search a system object..."
msgstr ""
@@ -11722,7 +11733,7 @@ msgid "Search a type"
msgstr "Søk etter en type"
#. js-lingui-id: +MhOVB
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Search a view..."
msgstr ""
@@ -11759,8 +11770,8 @@ msgstr "Søk etter et objekt"
#. js-lingui-id: BoNHR0
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "Search an object..."
msgstr ""
@@ -11784,7 +11795,7 @@ msgid "Search colors"
msgstr "Søk farger"
#. js-lingui-id: AR3FV/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
msgid "Search colors..."
msgstr ""
@@ -11853,7 +11864,7 @@ msgid "Search records"
msgstr "Søk poster"
#. js-lingui-id: rRklUH
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Search records..."
msgstr ""
@@ -12079,7 +12090,7 @@ msgid "Select a field to display in this widget"
msgstr "Velg et felt som skal vises i denne widgeten"
#. js-lingui-id: dtAvBz
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
msgid "Select a navigation item to edit"
msgstr ""
@@ -12641,6 +12652,11 @@ msgstr "Noen"
msgid "Some folders"
msgstr "Noen mapper"
#. js-lingui-id: hqUWge
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
msgid "Some layout changes could not be saved"
msgstr ""
#. js-lingui-id: nwtY4N
#: src/pages/auth/Authorize.tsx
msgid "Something went wrong"
@@ -13099,10 +13115,10 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -13481,13 +13497,14 @@ msgstr "Denne handlingen kan ikke angres. Dette vil permanent fjerne medlemskape
msgid "This action cannot be undone. This will permanently reset your two factor authentication method. <0/> Please type in your email to confirm."
msgstr "Denne handlingen kan ikke angres. Dette vil permanent tilbakestille tofaktorautentiseringsmetoden din. <0/> Skriv inn e-posten din for å bekrefte."
#. js-lingui-id: lAHIY2
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "This action will delete this folder and all {navigationMenuItemCount} navigation menu items inside. Do you want to continue?"
#. js-lingui-id: XxxrMw
#. placeholder {2}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "This action will delete this folder and all {2} navigation menu items inside. Do you want to continue?"
msgstr ""
#. js-lingui-id: gSO0+U
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
msgstr ""
@@ -14014,7 +14031,7 @@ msgid "Type anything..."
msgstr "Skriv hva som helst..."
#. js-lingui-id: UhqKcC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Type to search records"
msgstr ""
@@ -14603,10 +14620,10 @@ msgid "view"
msgstr "vis"
#. js-lingui-id: jpctdh
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "View"
msgstr "Vis"
@@ -14705,6 +14722,7 @@ msgstr ""
#. js-lingui-id: ecVcAx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "View Previous AI Chats"
msgstr "Vis tidligere AI-chatter"
@@ -14740,7 +14758,7 @@ msgid "View workspace activity logs"
msgstr ""
#. js-lingui-id: 1I6UoR
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr ""
@@ -15034,6 +15052,7 @@ msgstr ""
#. js-lingui-id: 2jzcC5
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
msgid "Workflow duplicated successfully"
msgstr ""
@@ -15097,7 +15116,7 @@ msgstr "Arbeidsflyter"
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownVisibilityContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
msgid "Workspace"
msgstr "Arbeidsområde"
+121 -102
View File
@@ -946,23 +946,23 @@ msgid "Add Item"
msgstr "Dodaj element"
#. js-lingui-id: cI2ZVO
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
msgid "Add item to folder"
msgstr ""
#. js-lingui-id: gaZXkv
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItemsFolder.tsx
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Add menu item"
msgstr ""
#. js-lingui-id: JbORSt
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Add menu item after"
msgstr ""
#. js-lingui-id: DKlI/M
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Add menu item before"
msgstr ""
@@ -1423,7 +1423,7 @@ msgid "All Objects"
msgstr "Wszystkie obiekty"
#. js-lingui-id: RoFE84
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
msgid "All objects are already in the sidebar"
msgstr ""
@@ -1438,7 +1438,7 @@ msgid "All set!"
msgstr "Wszystko gotowe!"
#. js-lingui-id: CHvT6e
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
@@ -1539,7 +1539,7 @@ msgid "alphabetical"
msgstr ""
#. js-lingui-id: eO7HSp
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectMenuItem.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectMenuItem.tsx
msgid "Already in navbar"
msgstr ""
@@ -1897,21 +1897,25 @@ msgstr ""
#. js-lingui-id: OJOR8q
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Are you sure you want to destroy these records? They won't be recoverable anymore."
msgstr "Czy na pewno chcesz zniszczyć te rekordy? Nie będą już odzyskiwalne."
#. js-lingui-id: UK5TO6
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
msgid "Are you sure you want to destroy this record? It cannot be recovered anymore."
msgstr "Czy na pewno chcesz zniszczyć ten rekord? Nie będzie można go już odzyskać."
#. js-lingui-id: mcHVC1
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
msgid "Are you sure you want to restore these records?"
msgstr "Czy na pewno chcesz przywrócić te rekordy?"
#. js-lingui-id: lmgkf0
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
msgid "Are you sure you want to restore this record?"
msgstr "Czy na pewno chcesz przywrócić ten rekord?"
@@ -1952,6 +1956,7 @@ msgstr "Rosnąco"
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Ask AI"
msgstr "Zapytaj AI"
@@ -2559,13 +2564,11 @@ msgstr "Nie można zeskanować? Skopiuj"
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Cancel"
msgstr "Anuluj"
#. js-lingui-id: HYLdMN
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Cancel Edition"
msgstr "Anuluj edycję"
@@ -2966,7 +2969,7 @@ msgid "Collapse folder"
msgstr "Zwiń folder"
#. js-lingui-id: jZlrte
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
msgid "Color"
msgstr ""
@@ -3896,10 +3899,9 @@ msgid "Customization"
msgstr "Dostosowywanie"
#. js-lingui-id: srRMnJ
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditObjectViewBase.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
msgid "Customize"
msgstr ""
@@ -3970,6 +3972,7 @@ msgstr "Ciemne"
#. js-lingui-id: ogQzcZ
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Dashboard duplicated successfully"
msgstr "Panel został zduplikowany pomyślnie"
@@ -3983,7 +3986,7 @@ msgstr "Pulpity nawigacyjne"
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Dane"
@@ -4305,7 +4308,7 @@ msgstr "usuń"
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: 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/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
@@ -4392,7 +4395,7 @@ msgid "Delete field"
msgstr "Usuń pole"
#. js-lingui-id: 97QUV6
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Delete Folder"
msgstr "Usuń folder"
@@ -4593,6 +4596,7 @@ msgstr "Zniszcz {objectLabelPlural}"
#. js-lingui-id: kG5yO6
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Destroy Records"
msgstr "Zniszcz rekordy"
@@ -4932,9 +4936,9 @@ msgid "Edit Fields"
msgstr "Edytuj pola"
#. js-lingui-id: uPHscS
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Edit folder"
msgstr ""
@@ -4955,9 +4959,9 @@ msgid "Edit Layout"
msgstr ""
#. js-lingui-id: /PoNoq
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Edit link"
msgstr ""
@@ -6120,11 +6124,13 @@ msgstr ""
#. js-lingui-id: NUmmdc
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Failed to duplicate dashboard"
msgstr "Nie udało się zduplikować panelu"
#. js-lingui-id: WYXxQF
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
msgid "Failed to duplicate workflow"
msgstr ""
@@ -6188,9 +6194,9 @@ msgstr "Nie udało się usunąć zdjęcia"
msgid "Failed to retry jobs. Please try again later."
msgstr "Nie udało się ponowić zadań. Proszę spróbować ponownie później."
#. js-lingui-id: fuRtgB
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Failed to save navigation layout"
#. js-lingui-id: farFvy
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
msgid "Failed to save layout customization"
msgstr ""
#. js-lingui-id: y3HIOa
@@ -6308,7 +6314,7 @@ msgid "Fast Model"
msgstr ""
#. js-lingui-id: X9kySA
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItemFolders.tsx
#: src/modules/navigation-menu-item/display/sections/favorites/components/FavoritesSection.tsx
msgid "Favorites"
msgstr "Ulubione"
@@ -6580,8 +6586,8 @@ msgid "Flow"
msgstr "Przepływ"
#. js-lingui-id: kNqMMd
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Folder"
msgstr ""
@@ -6591,8 +6597,8 @@ msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Folders"
msgstr "Foldery"
@@ -8022,7 +8028,7 @@ msgid "Layout"
msgstr "Układ"
#. js-lingui-id: W4nIBb
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
#: src/modules/layout-customization/components/LayoutCustomizationBar.tsx
msgid "Layout customization"
msgstr ""
@@ -8137,8 +8143,8 @@ msgid "Line Chart"
msgstr "Wykres liniowy"
#. js-lingui-id: yzF66j
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Link"
msgstr ""
@@ -8154,12 +8160,12 @@ msgid "Link copied to clipboard"
msgstr "Link został skopiowany do schowka"
#. js-lingui-id: vH3ZQY
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Link label"
msgstr ""
@@ -8798,7 +8804,7 @@ msgid "Most installed version"
msgstr ""
#. js-lingui-id: 3Ib6FN
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move down"
msgstr ""
@@ -8822,12 +8828,12 @@ msgid "Move to a folder"
msgstr ""
#. js-lingui-id: JCPOml
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move to folder"
msgstr ""
#. js-lingui-id: QyioBP
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move up"
msgstr ""
@@ -9073,9 +9079,9 @@ msgid "New Field"
msgstr "Nowe pole"
#. js-lingui-id: 96G6Re
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "New folder"
msgstr ""
@@ -9115,11 +9121,11 @@ msgid "New record"
msgstr "Nowy rekord"
#. js-lingui-id: x6Ckh1
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/hooks/useOpenAddItemToFolderPage.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useNavigationMenuItemEditOrganizeActions.ts
#: src/modules/navigation-menu-item/edit/hooks/useOpenAddItemToFolderPage.ts
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
msgid "New sidebar item"
msgstr ""
@@ -9306,7 +9312,7 @@ msgid "No currency"
msgstr "Brak waluty"
#. js-lingui-id: DKVJFE
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "No custom views available"
msgstr ""
@@ -9418,12 +9424,12 @@ msgid "No Files"
msgstr "Brak plików"
#. js-lingui-id: pYblOw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folder"
msgstr "Brak folderu"
#. js-lingui-id: 6XMhqL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folders available"
msgstr ""
@@ -9510,7 +9516,7 @@ msgid "No object found"
msgstr ""
#. js-lingui-id: YFHO2u
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "No objects with views found"
msgstr ""
@@ -9587,14 +9593,14 @@ msgid "No Results"
msgstr "Brak wyników"
#. js-lingui-id: AxPAXW
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/side-panel/components/SidePanelList.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No results found"
msgstr "Nie znaleziono wyników"
@@ -9619,12 +9625,12 @@ msgid "No Select field"
msgstr "Brak pola wyboru"
#. js-lingui-id: RQ6tfU
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
msgid "No system objects available"
msgstr ""
#. js-lingui-id: Yf4rVG
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
msgid "No system objects with views found"
msgstr ""
@@ -9832,9 +9838,9 @@ msgstr "obiekt"
#: 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/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Object"
msgstr "Obiekt"
@@ -9894,9 +9900,9 @@ msgstr ""
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "Objects"
msgstr "Obiekty"
@@ -10076,7 +10082,7 @@ msgid "Open side panel"
msgstr ""
#. js-lingui-id: OV5wZZ
#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx
#: src/modules/navigation-menu-item/display/sections/components/NavigationDrawerOpenedSection.tsx
msgid "Opened"
msgstr "Otwarty"
@@ -10148,7 +10154,7 @@ msgid "Organization plan"
msgstr ""
#. js-lingui-id: nV6twc
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Organize"
msgstr ""
@@ -10158,9 +10164,9 @@ msgstr ""
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: 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
msgid "Other"
msgstr "Inne"
@@ -10234,7 +10240,7 @@ msgid "Overview"
msgstr "Przegląd"
#. js-lingui-id: LtI9AS
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOwnerSection.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOwnerSection.tsx
msgid "Owner"
msgstr ""
@@ -10427,6 +10433,8 @@ msgstr "Trwale zniszcz rekord"
#. js-lingui-id: 35dBYb
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
msgid "Permanently Destroy Record"
msgstr "Trwale zniszcz rekord"
@@ -10437,6 +10445,7 @@ msgstr "Trwale zniszcz rekordy"
#. js-lingui-id: YyP8vD
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Permanently Destroy Records"
msgstr "Trwale zniszcz rekordy"
@@ -10958,7 +10967,7 @@ msgstr "rekord"
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Record"
msgstr "Rekord"
@@ -11134,14 +11143,16 @@ msgstr "Zdalny"
msgid "Remove"
msgstr "Usuń"
#. js-lingui-id: 0Urj9q
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "Remove {navigationMenuItemCount} navigation menu item?"
#. js-lingui-id: XABoh4
#. placeholder {0}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Remove {0} navigation menu items?"
msgstr ""
#. js-lingui-id: Ef5jwi
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "Remove {navigationMenuItemCount} navigation menu items?"
#. js-lingui-id: p/lN7X
#. placeholder {1}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Remove {1} navigation menu item?"
msgstr ""
#. js-lingui-id: 1O32oy
@@ -11171,7 +11182,7 @@ msgid "Remove from favorites"
msgstr "Usuń z ulubionych"
#. js-lingui-id: 9VZ6f0
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Remove from sidebar"
msgstr ""
@@ -11218,7 +11229,7 @@ msgstr "Usuń zmienną"
#. js-lingui-id: 2wxgft
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/activities/files/components/AttachmentDropdown.tsx
msgid "Rename"
msgstr "Zmień nazwę"
@@ -11359,6 +11370,8 @@ msgstr "Przywróć rekord"
#. js-lingui-id: NzMNOA
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
msgid "Restore Record"
msgstr "Przywróć rekord"
@@ -11370,6 +11383,8 @@ msgstr "Przywróć wpisy"
#. js-lingui-id: Xqj0Cb
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
msgid "Restore Records"
msgstr "Przywróć rekordy"
@@ -11385,7 +11400,7 @@ msgstr "Wynik"
#. js-lingui-id: kx0s+n
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Results"
msgstr "Wyniki"
@@ -11583,7 +11598,6 @@ msgstr "Sobota"
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
#: src/modules/settings/components/SaveAndCancelButtons/SaveButton.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Save"
msgstr "Zapisz"
@@ -11598,11 +11612,6 @@ msgstr "Zapisz jako nowy widok"
msgid "Save Dashboard"
msgstr "Zapisz Dashboard"
#. js-lingui-id: BZVCCj
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
msgid "Save Page Layout"
msgstr ""
#. js-lingui-id: veLq3R
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Scaffold a new app, then use the CLI to develop, publish, and distribute"
@@ -11647,6 +11656,8 @@ msgstr ""
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Search"
@@ -11685,7 +11696,7 @@ msgid "Search a field..."
msgstr "Wyszukaj pole..."
#. js-lingui-id: ITQFzL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Search a folder..."
msgstr ""
@@ -11706,8 +11717,8 @@ msgid "Search a skill..."
msgstr ""
#. js-lingui-id: hVJ1MP
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
msgid "Search a system object..."
msgstr ""
@@ -11722,7 +11733,7 @@ msgid "Search a type"
msgstr "Wyszukaj typ"
#. js-lingui-id: +MhOVB
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Search a view..."
msgstr ""
@@ -11759,8 +11770,8 @@ msgstr "Szukaj obiektu"
#. js-lingui-id: BoNHR0
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "Search an object..."
msgstr ""
@@ -11784,7 +11795,7 @@ msgid "Search colors"
msgstr "Szukaj kolorów"
#. js-lingui-id: AR3FV/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
msgid "Search colors..."
msgstr ""
@@ -11853,7 +11864,7 @@ msgid "Search records"
msgstr "Przeszukaj rekordy"
#. js-lingui-id: rRklUH
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Search records..."
msgstr ""
@@ -12079,7 +12090,7 @@ msgid "Select a field to display in this widget"
msgstr "Wybierz pole do wyświetlenia w tym widżecie"
#. js-lingui-id: dtAvBz
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
msgid "Select a navigation item to edit"
msgstr ""
@@ -12641,6 +12652,11 @@ msgstr "Niektóre"
msgid "Some folders"
msgstr "Niektóre foldery"
#. js-lingui-id: hqUWge
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
msgid "Some layout changes could not be saved"
msgstr ""
#. js-lingui-id: nwtY4N
#: src/pages/auth/Authorize.tsx
msgid "Something went wrong"
@@ -13099,10 +13115,10 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -13481,13 +13497,14 @@ msgstr "Ta czynność nie może zostać cofnięta. Spowoduje to trwałe usunięc
msgid "This action cannot be undone. This will permanently reset your two factor authentication method. <0/> Please type in your email to confirm."
msgstr "Tej czynności nie można cofnąć. Spowoduje to trwałe zresetowanie metody uwierzytelniania dwuskładnikowego. <0/> Wpisz swój e-mail, aby potwierdzić."
#. js-lingui-id: lAHIY2
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "This action will delete this folder and all {navigationMenuItemCount} navigation menu items inside. Do you want to continue?"
#. js-lingui-id: XxxrMw
#. placeholder {2}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "This action will delete this folder and all {2} navigation menu items inside. Do you want to continue?"
msgstr ""
#. js-lingui-id: gSO0+U
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
msgstr ""
@@ -14014,7 +14031,7 @@ msgid "Type anything..."
msgstr "Wpisz cokolwiek..."
#. js-lingui-id: UhqKcC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Type to search records"
msgstr ""
@@ -14603,10 +14620,10 @@ msgid "view"
msgstr "widok"
#. js-lingui-id: jpctdh
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "View"
msgstr "Widok"
@@ -14705,6 +14722,7 @@ msgstr ""
#. js-lingui-id: ecVcAx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "View Previous AI Chats"
msgstr "Pokaż poprzednie czaty AI"
@@ -14740,7 +14758,7 @@ msgid "View workspace activity logs"
msgstr ""
#. js-lingui-id: 1I6UoR
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr ""
@@ -15034,6 +15052,7 @@ msgstr ""
#. js-lingui-id: 2jzcC5
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
msgid "Workflow duplicated successfully"
msgstr ""
@@ -15097,7 +15116,7 @@ msgstr "Przepływy pracy"
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownVisibilityContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
msgid "Workspace"
msgstr "Miejsce pracy"
+121 -102
View File
@@ -941,23 +941,23 @@ msgid "Add Item"
msgstr ""
#. js-lingui-id: cI2ZVO
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
msgid "Add item to folder"
msgstr ""
#. js-lingui-id: gaZXkv
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItemsFolder.tsx
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Add menu item"
msgstr ""
#. js-lingui-id: JbORSt
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Add menu item after"
msgstr ""
#. js-lingui-id: DKlI/M
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Add menu item before"
msgstr ""
@@ -1418,7 +1418,7 @@ msgid "All Objects"
msgstr ""
#. js-lingui-id: RoFE84
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
msgid "All objects are already in the sidebar"
msgstr ""
@@ -1433,7 +1433,7 @@ msgid "All set!"
msgstr ""
#. js-lingui-id: CHvT6e
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
@@ -1534,7 +1534,7 @@ msgid "alphabetical"
msgstr ""
#. js-lingui-id: eO7HSp
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectMenuItem.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectMenuItem.tsx
msgid "Already in navbar"
msgstr ""
@@ -1892,21 +1892,25 @@ msgstr ""
#. js-lingui-id: OJOR8q
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Are you sure you want to destroy these records? They won't be recoverable anymore."
msgstr ""
#. js-lingui-id: UK5TO6
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
msgid "Are you sure you want to destroy this record? It cannot be recovered anymore."
msgstr ""
#. js-lingui-id: mcHVC1
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
msgid "Are you sure you want to restore these records?"
msgstr ""
#. js-lingui-id: lmgkf0
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
msgid "Are you sure you want to restore this record?"
msgstr ""
@@ -1947,6 +1951,7 @@ msgstr ""
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Ask AI"
msgstr ""
@@ -2554,13 +2559,11 @@ msgstr ""
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Cancel"
msgstr ""
#. js-lingui-id: HYLdMN
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Cancel Edition"
msgstr ""
@@ -2961,7 +2964,7 @@ msgid "Collapse folder"
msgstr ""
#. js-lingui-id: jZlrte
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
msgid "Color"
msgstr ""
@@ -3891,10 +3894,9 @@ msgid "Customization"
msgstr ""
#. js-lingui-id: srRMnJ
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditObjectViewBase.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
msgid "Customize"
msgstr ""
@@ -3965,6 +3967,7 @@ msgstr ""
#. js-lingui-id: ogQzcZ
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Dashboard duplicated successfully"
msgstr ""
@@ -3978,7 +3981,7 @@ msgstr ""
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr ""
@@ -4300,7 +4303,7 @@ msgstr ""
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: 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/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
@@ -4387,7 +4390,7 @@ msgid "Delete field"
msgstr ""
#. js-lingui-id: 97QUV6
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Delete Folder"
msgstr ""
@@ -4588,6 +4591,7 @@ msgstr ""
#. js-lingui-id: kG5yO6
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Destroy Records"
msgstr ""
@@ -4927,9 +4931,9 @@ msgid "Edit Fields"
msgstr ""
#. js-lingui-id: uPHscS
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Edit folder"
msgstr ""
@@ -4950,9 +4954,9 @@ msgid "Edit Layout"
msgstr ""
#. js-lingui-id: /PoNoq
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Edit link"
msgstr ""
@@ -6115,11 +6119,13 @@ msgstr ""
#. js-lingui-id: NUmmdc
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Failed to duplicate dashboard"
msgstr ""
#. js-lingui-id: WYXxQF
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
msgid "Failed to duplicate workflow"
msgstr ""
@@ -6183,9 +6189,9 @@ msgstr ""
msgid "Failed to retry jobs. Please try again later."
msgstr ""
#. js-lingui-id: fuRtgB
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Failed to save navigation layout"
#. js-lingui-id: farFvy
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
msgid "Failed to save layout customization"
msgstr ""
#. js-lingui-id: y3HIOa
@@ -6303,7 +6309,7 @@ msgid "Fast Model"
msgstr ""
#. js-lingui-id: X9kySA
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItemFolders.tsx
#: src/modules/navigation-menu-item/display/sections/favorites/components/FavoritesSection.tsx
msgid "Favorites"
msgstr ""
@@ -6575,8 +6581,8 @@ msgid "Flow"
msgstr ""
#. js-lingui-id: kNqMMd
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Folder"
msgstr ""
@@ -6586,8 +6592,8 @@ msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Folders"
msgstr ""
@@ -8017,7 +8023,7 @@ msgid "Layout"
msgstr ""
#. js-lingui-id: W4nIBb
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
#: src/modules/layout-customization/components/LayoutCustomizationBar.tsx
msgid "Layout customization"
msgstr ""
@@ -8132,8 +8138,8 @@ msgid "Line Chart"
msgstr ""
#. js-lingui-id: yzF66j
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Link"
msgstr ""
@@ -8149,12 +8155,12 @@ msgid "Link copied to clipboard"
msgstr ""
#. js-lingui-id: vH3ZQY
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Link label"
msgstr ""
@@ -8793,7 +8799,7 @@ msgid "Most installed version"
msgstr ""
#. js-lingui-id: 3Ib6FN
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move down"
msgstr ""
@@ -8817,12 +8823,12 @@ msgid "Move to a folder"
msgstr ""
#. js-lingui-id: JCPOml
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move to folder"
msgstr ""
#. js-lingui-id: QyioBP
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move up"
msgstr ""
@@ -9068,9 +9074,9 @@ msgid "New Field"
msgstr ""
#. js-lingui-id: 96G6Re
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "New folder"
msgstr ""
@@ -9110,11 +9116,11 @@ msgid "New record"
msgstr ""
#. js-lingui-id: x6Ckh1
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/hooks/useOpenAddItemToFolderPage.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useNavigationMenuItemEditOrganizeActions.ts
#: src/modules/navigation-menu-item/edit/hooks/useOpenAddItemToFolderPage.ts
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
msgid "New sidebar item"
msgstr ""
@@ -9301,7 +9307,7 @@ msgid "No currency"
msgstr ""
#. js-lingui-id: DKVJFE
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "No custom views available"
msgstr ""
@@ -9413,12 +9419,12 @@ msgid "No Files"
msgstr ""
#. js-lingui-id: pYblOw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folder"
msgstr ""
#. js-lingui-id: 6XMhqL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folders available"
msgstr ""
@@ -9505,7 +9511,7 @@ msgid "No object found"
msgstr ""
#. js-lingui-id: YFHO2u
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "No objects with views found"
msgstr ""
@@ -9582,14 +9588,14 @@ msgid "No Results"
msgstr ""
#. js-lingui-id: AxPAXW
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/side-panel/components/SidePanelList.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No results found"
msgstr ""
@@ -9614,12 +9620,12 @@ msgid "No Select field"
msgstr ""
#. js-lingui-id: RQ6tfU
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
msgid "No system objects available"
msgstr ""
#. js-lingui-id: Yf4rVG
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
msgid "No system objects with views found"
msgstr ""
@@ -9827,9 +9833,9 @@ msgstr ""
#: 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/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Object"
msgstr ""
@@ -9889,9 +9895,9 @@ msgstr ""
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "Objects"
msgstr ""
@@ -10071,7 +10077,7 @@ msgid "Open side panel"
msgstr ""
#. js-lingui-id: OV5wZZ
#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx
#: src/modules/navigation-menu-item/display/sections/components/NavigationDrawerOpenedSection.tsx
msgid "Opened"
msgstr ""
@@ -10143,7 +10149,7 @@ msgid "Organization plan"
msgstr ""
#. js-lingui-id: nV6twc
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Organize"
msgstr ""
@@ -10153,9 +10159,9 @@ msgstr ""
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: 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
msgid "Other"
msgstr ""
@@ -10229,7 +10235,7 @@ msgid "Overview"
msgstr ""
#. js-lingui-id: LtI9AS
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOwnerSection.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOwnerSection.tsx
msgid "Owner"
msgstr ""
@@ -10422,6 +10428,8 @@ msgstr ""
#. js-lingui-id: 35dBYb
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
msgid "Permanently Destroy Record"
msgstr ""
@@ -10432,6 +10440,7 @@ msgstr ""
#. js-lingui-id: YyP8vD
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Permanently Destroy Records"
msgstr ""
@@ -10953,7 +10962,7 @@ msgstr ""
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Record"
msgstr ""
@@ -11129,14 +11138,16 @@ msgstr ""
msgid "Remove"
msgstr ""
#. js-lingui-id: 0Urj9q
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "Remove {navigationMenuItemCount} navigation menu item?"
#. js-lingui-id: XABoh4
#. placeholder {0}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Remove {0} navigation menu items?"
msgstr ""
#. js-lingui-id: Ef5jwi
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "Remove {navigationMenuItemCount} navigation menu items?"
#. js-lingui-id: p/lN7X
#. placeholder {1}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Remove {1} navigation menu item?"
msgstr ""
#. js-lingui-id: 1O32oy
@@ -11166,7 +11177,7 @@ msgid "Remove from favorites"
msgstr ""
#. js-lingui-id: 9VZ6f0
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Remove from sidebar"
msgstr ""
@@ -11213,7 +11224,7 @@ msgstr ""
#. js-lingui-id: 2wxgft
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/activities/files/components/AttachmentDropdown.tsx
msgid "Rename"
msgstr ""
@@ -11354,6 +11365,8 @@ msgstr ""
#. js-lingui-id: NzMNOA
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
msgid "Restore Record"
msgstr ""
@@ -11365,6 +11378,8 @@ msgstr ""
#. js-lingui-id: Xqj0Cb
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
msgid "Restore Records"
msgstr ""
@@ -11380,7 +11395,7 @@ msgstr ""
#. js-lingui-id: kx0s+n
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Results"
msgstr ""
@@ -11578,7 +11593,6 @@ msgstr ""
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
#: src/modules/settings/components/SaveAndCancelButtons/SaveButton.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Save"
msgstr ""
@@ -11593,11 +11607,6 @@ msgstr ""
msgid "Save Dashboard"
msgstr ""
#. js-lingui-id: BZVCCj
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
msgid "Save Page Layout"
msgstr ""
#. js-lingui-id: veLq3R
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Scaffold a new app, then use the CLI to develop, publish, and distribute"
@@ -11642,6 +11651,8 @@ msgstr ""
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Search"
@@ -11680,7 +11691,7 @@ msgid "Search a field..."
msgstr ""
#. js-lingui-id: ITQFzL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Search a folder..."
msgstr ""
@@ -11701,8 +11712,8 @@ msgid "Search a skill..."
msgstr ""
#. js-lingui-id: hVJ1MP
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
msgid "Search a system object..."
msgstr ""
@@ -11717,7 +11728,7 @@ msgid "Search a type"
msgstr ""
#. js-lingui-id: +MhOVB
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Search a view..."
msgstr ""
@@ -11754,8 +11765,8 @@ msgstr ""
#. js-lingui-id: BoNHR0
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "Search an object..."
msgstr ""
@@ -11779,7 +11790,7 @@ msgid "Search colors"
msgstr ""
#. js-lingui-id: AR3FV/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
msgid "Search colors..."
msgstr ""
@@ -11848,7 +11859,7 @@ msgid "Search records"
msgstr ""
#. js-lingui-id: rRklUH
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Search records..."
msgstr ""
@@ -12074,7 +12085,7 @@ msgid "Select a field to display in this widget"
msgstr ""
#. js-lingui-id: dtAvBz
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
msgid "Select a navigation item to edit"
msgstr ""
@@ -12636,6 +12647,11 @@ msgstr ""
msgid "Some folders"
msgstr ""
#. js-lingui-id: hqUWge
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
msgid "Some layout changes could not be saved"
msgstr ""
#. js-lingui-id: nwtY4N
#: src/pages/auth/Authorize.tsx
msgid "Something went wrong"
@@ -13094,10 +13110,10 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -13476,13 +13492,14 @@ msgstr ""
msgid "This action cannot be undone. This will permanently reset your two factor authentication method. <0/> Please type in your email to confirm."
msgstr ""
#. js-lingui-id: lAHIY2
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "This action will delete this folder and all {navigationMenuItemCount} navigation menu items inside. Do you want to continue?"
#. js-lingui-id: XxxrMw
#. placeholder {2}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "This action will delete this folder and all {2} navigation menu items inside. Do you want to continue?"
msgstr ""
#. js-lingui-id: gSO0+U
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
msgstr ""
@@ -14009,7 +14026,7 @@ msgid "Type anything..."
msgstr ""
#. js-lingui-id: UhqKcC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Type to search records"
msgstr ""
@@ -14598,10 +14615,10 @@ msgid "view"
msgstr ""
#. js-lingui-id: jpctdh
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "View"
msgstr ""
@@ -14700,6 +14717,7 @@ msgstr ""
#. js-lingui-id: ecVcAx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "View Previous AI Chats"
msgstr ""
@@ -14735,7 +14753,7 @@ msgid "View workspace activity logs"
msgstr ""
#. js-lingui-id: 1I6UoR
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr ""
@@ -15027,6 +15045,7 @@ msgstr ""
#. js-lingui-id: 2jzcC5
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
msgid "Workflow duplicated successfully"
msgstr ""
@@ -15090,7 +15109,7 @@ msgstr ""
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownVisibilityContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
msgid "Workspace"
msgstr ""
+121 -102
View File
@@ -946,23 +946,23 @@ msgid "Add Item"
msgstr "Adicionar item"
#. js-lingui-id: cI2ZVO
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
msgid "Add item to folder"
msgstr ""
#. js-lingui-id: gaZXkv
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItemsFolder.tsx
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Add menu item"
msgstr ""
#. js-lingui-id: JbORSt
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Add menu item after"
msgstr ""
#. js-lingui-id: DKlI/M
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Add menu item before"
msgstr ""
@@ -1423,7 +1423,7 @@ msgid "All Objects"
msgstr "Todos os Objetos"
#. js-lingui-id: RoFE84
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
msgid "All objects are already in the sidebar"
msgstr ""
@@ -1438,7 +1438,7 @@ msgid "All set!"
msgstr "Tudo pronto!"
#. js-lingui-id: CHvT6e
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
@@ -1539,7 +1539,7 @@ msgid "alphabetical"
msgstr ""
#. js-lingui-id: eO7HSp
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectMenuItem.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectMenuItem.tsx
msgid "Already in navbar"
msgstr ""
@@ -1897,21 +1897,25 @@ msgstr ""
#. js-lingui-id: OJOR8q
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Are you sure you want to destroy these records? They won't be recoverable anymore."
msgstr "Tem certeza de que deseja destruir esses registros? Eles não serão mais recuperáveis."
#. js-lingui-id: UK5TO6
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
msgid "Are you sure you want to destroy this record? It cannot be recovered anymore."
msgstr "Tem certeza de que deseja destruir este registro? Ele não poderá ser recuperado mais."
#. js-lingui-id: mcHVC1
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
msgid "Are you sure you want to restore these records?"
msgstr "Tem certeza de que deseja restaurar esses registros?"
#. js-lingui-id: lmgkf0
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
msgid "Are you sure you want to restore this record?"
msgstr "Tem certeza de que deseja restaurar este registro?"
@@ -1952,6 +1956,7 @@ msgstr "Ascendente"
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Ask AI"
msgstr "Perguntar ao AI"
@@ -2559,13 +2564,11 @@ msgstr "Não consegue escanear? Copie o"
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Cancel"
msgstr "Cancelar"
#. js-lingui-id: HYLdMN
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Cancel Edition"
msgstr "Cancelar Edição"
@@ -2966,7 +2969,7 @@ msgid "Collapse folder"
msgstr "Recolher pasta"
#. js-lingui-id: jZlrte
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
msgid "Color"
msgstr ""
@@ -3896,10 +3899,9 @@ msgid "Customization"
msgstr "Personalização"
#. js-lingui-id: srRMnJ
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditObjectViewBase.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
msgid "Customize"
msgstr ""
@@ -3970,6 +3972,7 @@ msgstr "Escuro"
#. js-lingui-id: ogQzcZ
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Dashboard duplicated successfully"
msgstr "Painel duplicado com sucesso"
@@ -3983,7 +3986,7 @@ msgstr "Painéis"
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Data"
@@ -4305,7 +4308,7 @@ msgstr "excluir"
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: 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/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
@@ -4392,7 +4395,7 @@ msgid "Delete field"
msgstr "Excluir campo"
#. js-lingui-id: 97QUV6
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Delete Folder"
msgstr "Excluir pasta"
@@ -4593,6 +4596,7 @@ msgstr "Destruir {objectLabelPlural}"
#. js-lingui-id: kG5yO6
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Destroy Records"
msgstr "Destruir Registros"
@@ -4932,9 +4936,9 @@ msgid "Edit Fields"
msgstr "Editar Campos"
#. js-lingui-id: uPHscS
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Edit folder"
msgstr ""
@@ -4955,9 +4959,9 @@ msgid "Edit Layout"
msgstr ""
#. js-lingui-id: /PoNoq
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Edit link"
msgstr ""
@@ -6120,11 +6124,13 @@ msgstr ""
#. js-lingui-id: NUmmdc
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Failed to duplicate dashboard"
msgstr "Falha ao duplicar o painel"
#. js-lingui-id: WYXxQF
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
msgid "Failed to duplicate workflow"
msgstr ""
@@ -6188,9 +6194,9 @@ msgstr "Falha ao remover imagem"
msgid "Failed to retry jobs. Please try again later."
msgstr "Falha ao repetir trabalhos. Por favor, tente novamente mais tarde."
#. js-lingui-id: fuRtgB
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Failed to save navigation layout"
#. js-lingui-id: farFvy
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
msgid "Failed to save layout customization"
msgstr ""
#. js-lingui-id: y3HIOa
@@ -6308,7 +6314,7 @@ msgid "Fast Model"
msgstr ""
#. js-lingui-id: X9kySA
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItemFolders.tsx
#: src/modules/navigation-menu-item/display/sections/favorites/components/FavoritesSection.tsx
msgid "Favorites"
msgstr "Favoritos"
@@ -6580,8 +6586,8 @@ msgid "Flow"
msgstr "Fluxo"
#. js-lingui-id: kNqMMd
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Folder"
msgstr ""
@@ -6591,8 +6597,8 @@ msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Folders"
msgstr "Pastas"
@@ -8022,7 +8028,7 @@ msgid "Layout"
msgstr "Disposição"
#. js-lingui-id: W4nIBb
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
#: src/modules/layout-customization/components/LayoutCustomizationBar.tsx
msgid "Layout customization"
msgstr ""
@@ -8137,8 +8143,8 @@ msgid "Line Chart"
msgstr "Gráfico de Linhas"
#. js-lingui-id: yzF66j
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Link"
msgstr ""
@@ -8154,12 +8160,12 @@ msgid "Link copied to clipboard"
msgstr "Link copiado para a área de transferência"
#. js-lingui-id: vH3ZQY
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Link label"
msgstr ""
@@ -8798,7 +8804,7 @@ msgid "Most installed version"
msgstr ""
#. js-lingui-id: 3Ib6FN
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move down"
msgstr ""
@@ -8822,12 +8828,12 @@ msgid "Move to a folder"
msgstr ""
#. js-lingui-id: JCPOml
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move to folder"
msgstr ""
#. js-lingui-id: QyioBP
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move up"
msgstr ""
@@ -9073,9 +9079,9 @@ msgid "New Field"
msgstr "Novo campo"
#. js-lingui-id: 96G6Re
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "New folder"
msgstr ""
@@ -9115,11 +9121,11 @@ msgid "New record"
msgstr "Novo registro"
#. js-lingui-id: x6Ckh1
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/hooks/useOpenAddItemToFolderPage.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useNavigationMenuItemEditOrganizeActions.ts
#: src/modules/navigation-menu-item/edit/hooks/useOpenAddItemToFolderPage.ts
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
msgid "New sidebar item"
msgstr ""
@@ -9306,7 +9312,7 @@ msgid "No currency"
msgstr "Nenhuma moeda"
#. js-lingui-id: DKVJFE
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "No custom views available"
msgstr ""
@@ -9418,12 +9424,12 @@ msgid "No Files"
msgstr "Nenhum arquivo"
#. js-lingui-id: pYblOw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folder"
msgstr "Nenhuma pasta"
#. js-lingui-id: 6XMhqL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folders available"
msgstr ""
@@ -9510,7 +9516,7 @@ msgid "No object found"
msgstr ""
#. js-lingui-id: YFHO2u
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "No objects with views found"
msgstr ""
@@ -9587,14 +9593,14 @@ msgid "No Results"
msgstr "Nenhum resultado"
#. js-lingui-id: AxPAXW
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/side-panel/components/SidePanelList.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No results found"
msgstr "Nenhum resultado encontrado"
@@ -9619,12 +9625,12 @@ msgid "No Select field"
msgstr "Sem campo de seleção"
#. js-lingui-id: RQ6tfU
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
msgid "No system objects available"
msgstr ""
#. js-lingui-id: Yf4rVG
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
msgid "No system objects with views found"
msgstr ""
@@ -9832,9 +9838,9 @@ msgstr "objeto"
#: 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/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Object"
msgstr "Objeto"
@@ -9894,9 +9900,9 @@ msgstr ""
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "Objects"
msgstr "Objetos"
@@ -10076,7 +10082,7 @@ msgid "Open side panel"
msgstr ""
#. js-lingui-id: OV5wZZ
#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx
#: src/modules/navigation-menu-item/display/sections/components/NavigationDrawerOpenedSection.tsx
msgid "Opened"
msgstr "Aberto"
@@ -10148,7 +10154,7 @@ msgid "Organization plan"
msgstr ""
#. js-lingui-id: nV6twc
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Organize"
msgstr ""
@@ -10158,9 +10164,9 @@ msgstr ""
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: 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
msgid "Other"
msgstr "Outros"
@@ -10234,7 +10240,7 @@ msgid "Overview"
msgstr "Visão geral"
#. js-lingui-id: LtI9AS
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOwnerSection.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOwnerSection.tsx
msgid "Owner"
msgstr ""
@@ -10427,6 +10433,8 @@ msgstr "Destruir permanentemente o registro"
#. js-lingui-id: 35dBYb
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
msgid "Permanently Destroy Record"
msgstr "Destruir Registro Permanentemente"
@@ -10437,6 +10445,7 @@ msgstr "Destruir registros permanentemente"
#. js-lingui-id: YyP8vD
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Permanently Destroy Records"
msgstr "Destruir Registros Permanentemente"
@@ -10958,7 +10967,7 @@ msgstr "registro"
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Record"
msgstr "Gravação"
@@ -11134,14 +11143,16 @@ msgstr "Remoto"
msgid "Remove"
msgstr "Remover"
#. js-lingui-id: 0Urj9q
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "Remove {navigationMenuItemCount} navigation menu item?"
#. js-lingui-id: XABoh4
#. placeholder {0}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Remove {0} navigation menu items?"
msgstr ""
#. js-lingui-id: Ef5jwi
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "Remove {navigationMenuItemCount} navigation menu items?"
#. js-lingui-id: p/lN7X
#. placeholder {1}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Remove {1} navigation menu item?"
msgstr ""
#. js-lingui-id: 1O32oy
@@ -11171,7 +11182,7 @@ msgid "Remove from favorites"
msgstr "Remover dos favoritos"
#. js-lingui-id: 9VZ6f0
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Remove from sidebar"
msgstr ""
@@ -11218,7 +11229,7 @@ msgstr "Remover variável"
#. js-lingui-id: 2wxgft
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/activities/files/components/AttachmentDropdown.tsx
msgid "Rename"
msgstr "Renomear"
@@ -11359,6 +11370,8 @@ msgstr "Restaurar registro"
#. js-lingui-id: NzMNOA
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
msgid "Restore Record"
msgstr "Restaurar Registro"
@@ -11370,6 +11383,8 @@ msgstr "Restaurar registros"
#. js-lingui-id: Xqj0Cb
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
msgid "Restore Records"
msgstr "Restaurar Registros"
@@ -11385,7 +11400,7 @@ msgstr "Resultado"
#. js-lingui-id: kx0s+n
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Results"
msgstr "Resultados"
@@ -11583,7 +11598,6 @@ msgstr "Sábado"
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
#: src/modules/settings/components/SaveAndCancelButtons/SaveButton.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Save"
msgstr "Salvar"
@@ -11598,11 +11612,6 @@ msgstr "Salvar como nova visualização"
msgid "Save Dashboard"
msgstr "Salvar Painel"
#. js-lingui-id: BZVCCj
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
msgid "Save Page Layout"
msgstr ""
#. js-lingui-id: veLq3R
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Scaffold a new app, then use the CLI to develop, publish, and distribute"
@@ -11647,6 +11656,8 @@ msgstr ""
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Search"
@@ -11685,7 +11696,7 @@ msgid "Search a field..."
msgstr "Pesquisar um campo..."
#. js-lingui-id: ITQFzL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Search a folder..."
msgstr ""
@@ -11706,8 +11717,8 @@ msgid "Search a skill..."
msgstr ""
#. js-lingui-id: hVJ1MP
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
msgid "Search a system object..."
msgstr ""
@@ -11722,7 +11733,7 @@ msgid "Search a type"
msgstr "Pesquisar um tipo"
#. js-lingui-id: +MhOVB
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Search a view..."
msgstr ""
@@ -11759,8 +11770,8 @@ msgstr "Pesquisar um objeto"
#. js-lingui-id: BoNHR0
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "Search an object..."
msgstr ""
@@ -11784,7 +11795,7 @@ msgid "Search colors"
msgstr "Pesquisar cores"
#. js-lingui-id: AR3FV/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
msgid "Search colors..."
msgstr ""
@@ -11853,7 +11864,7 @@ msgid "Search records"
msgstr "Pesquisar registros"
#. js-lingui-id: rRklUH
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Search records..."
msgstr ""
@@ -12079,7 +12090,7 @@ msgid "Select a field to display in this widget"
msgstr "Selecione um campo para exibir neste widget"
#. js-lingui-id: dtAvBz
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
msgid "Select a navigation item to edit"
msgstr ""
@@ -12641,6 +12652,11 @@ msgstr "Alguns"
msgid "Some folders"
msgstr "Algumas pastas"
#. js-lingui-id: hqUWge
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
msgid "Some layout changes could not be saved"
msgstr ""
#. js-lingui-id: nwtY4N
#: src/pages/auth/Authorize.tsx
msgid "Something went wrong"
@@ -13099,10 +13115,10 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -13481,13 +13497,14 @@ msgstr "Essa ação não pode ser desfeita. Isso removerá permanentemente sua p
msgid "This action cannot be undone. This will permanently reset your two factor authentication method. <0/> Please type in your email to confirm."
msgstr "Essa ação não pode ser desfeita. Isso redefinirá permanentemente seu método de autenticação de dois fatores. <0/> Digite seu e-mail para confirmar."
#. js-lingui-id: lAHIY2
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "This action will delete this folder and all {navigationMenuItemCount} navigation menu items inside. Do you want to continue?"
#. js-lingui-id: XxxrMw
#. placeholder {2}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "This action will delete this folder and all {2} navigation menu items inside. Do you want to continue?"
msgstr ""
#. js-lingui-id: gSO0+U
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
msgstr ""
@@ -14014,7 +14031,7 @@ msgid "Type anything..."
msgstr "Digite qualquer coisa..."
#. js-lingui-id: UhqKcC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Type to search records"
msgstr ""
@@ -14603,10 +14620,10 @@ msgid "view"
msgstr "visualização"
#. js-lingui-id: jpctdh
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "View"
msgstr "Visualização"
@@ -14705,6 +14722,7 @@ msgstr ""
#. js-lingui-id: ecVcAx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "View Previous AI Chats"
msgstr "Ver Conversas Anteriores da IA"
@@ -14740,7 +14758,7 @@ msgid "View workspace activity logs"
msgstr ""
#. js-lingui-id: 1I6UoR
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr ""
@@ -15034,6 +15052,7 @@ msgstr ""
#. js-lingui-id: 2jzcC5
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
msgid "Workflow duplicated successfully"
msgstr ""
@@ -15097,7 +15116,7 @@ msgstr "Workflows"
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownVisibilityContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
msgid "Workspace"
msgstr "Workspace"
+121 -102
View File
@@ -946,23 +946,23 @@ msgid "Add Item"
msgstr "Adicionar item"
#. js-lingui-id: cI2ZVO
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
msgid "Add item to folder"
msgstr ""
#. js-lingui-id: gaZXkv
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItemsFolder.tsx
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Add menu item"
msgstr ""
#. js-lingui-id: JbORSt
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Add menu item after"
msgstr ""
#. js-lingui-id: DKlI/M
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Add menu item before"
msgstr ""
@@ -1423,7 +1423,7 @@ msgid "All Objects"
msgstr "Todos os Objetos"
#. js-lingui-id: RoFE84
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
msgid "All objects are already in the sidebar"
msgstr ""
@@ -1438,7 +1438,7 @@ msgid "All set!"
msgstr "Tudo pronto!"
#. js-lingui-id: CHvT6e
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
@@ -1539,7 +1539,7 @@ msgid "alphabetical"
msgstr ""
#. js-lingui-id: eO7HSp
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectMenuItem.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectMenuItem.tsx
msgid "Already in navbar"
msgstr ""
@@ -1897,21 +1897,25 @@ msgstr ""
#. js-lingui-id: OJOR8q
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Are you sure you want to destroy these records? They won't be recoverable anymore."
msgstr "Tem certeza de que deseja destruir esses registros? Eles não serão mais recuperáveis."
#. js-lingui-id: UK5TO6
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
msgid "Are you sure you want to destroy this record? It cannot be recovered anymore."
msgstr "Tem certeza de que deseja destruir este registro? Ele não poderá ser recuperado."
#. js-lingui-id: mcHVC1
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
msgid "Are you sure you want to restore these records?"
msgstr "Tem certeza de que deseja restaurar esses registros?"
#. js-lingui-id: lmgkf0
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
msgid "Are you sure you want to restore this record?"
msgstr "Tem certeza de que deseja restaurar este registro?"
@@ -1952,6 +1956,7 @@ msgstr "Ascendente"
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Ask AI"
msgstr "Pergunte à IA"
@@ -2559,13 +2564,11 @@ msgstr "Não consegue escanear? Copie o"
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Cancel"
msgstr "Cancelar"
#. js-lingui-id: HYLdMN
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Cancel Edition"
msgstr "Cancelar Edição"
@@ -2966,7 +2969,7 @@ msgid "Collapse folder"
msgstr "Recolher pasta"
#. js-lingui-id: jZlrte
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
msgid "Color"
msgstr ""
@@ -3896,10 +3899,9 @@ msgid "Customization"
msgstr "Personalização"
#. js-lingui-id: srRMnJ
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditObjectViewBase.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
msgid "Customize"
msgstr ""
@@ -3970,6 +3972,7 @@ msgstr "Escuro"
#. js-lingui-id: ogQzcZ
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Dashboard duplicated successfully"
msgstr "Painel duplicado com sucesso"
@@ -3983,7 +3986,7 @@ msgstr "Painéis"
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Data"
@@ -4305,7 +4308,7 @@ msgstr "eliminar"
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: 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/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
@@ -4392,7 +4395,7 @@ msgid "Delete field"
msgstr "Excluir campo"
#. js-lingui-id: 97QUV6
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Delete Folder"
msgstr "Eliminar Pasta"
@@ -4593,6 +4596,7 @@ msgstr "Destruir {objectLabelPlural}"
#. js-lingui-id: kG5yO6
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Destroy Records"
msgstr "Destruir Registros"
@@ -4932,9 +4936,9 @@ msgid "Edit Fields"
msgstr "Editar Campos"
#. js-lingui-id: uPHscS
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Edit folder"
msgstr ""
@@ -4955,9 +4959,9 @@ msgid "Edit Layout"
msgstr ""
#. js-lingui-id: /PoNoq
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Edit link"
msgstr ""
@@ -6120,11 +6124,13 @@ msgstr ""
#. js-lingui-id: NUmmdc
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Failed to duplicate dashboard"
msgstr "Falha ao duplicar o painel"
#. js-lingui-id: WYXxQF
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
msgid "Failed to duplicate workflow"
msgstr ""
@@ -6188,9 +6194,9 @@ msgstr "Falha ao remover a imagem"
msgid "Failed to retry jobs. Please try again later."
msgstr "Falha ao reiniciar trabalhos. Por favor, tente novamente mais tarde."
#. js-lingui-id: fuRtgB
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Failed to save navigation layout"
#. js-lingui-id: farFvy
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
msgid "Failed to save layout customization"
msgstr ""
#. js-lingui-id: y3HIOa
@@ -6308,7 +6314,7 @@ msgid "Fast Model"
msgstr ""
#. js-lingui-id: X9kySA
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItemFolders.tsx
#: src/modules/navigation-menu-item/display/sections/favorites/components/FavoritesSection.tsx
msgid "Favorites"
msgstr "Favoritos"
@@ -6580,8 +6586,8 @@ msgid "Flow"
msgstr "Fluxo"
#. js-lingui-id: kNqMMd
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Folder"
msgstr ""
@@ -6591,8 +6597,8 @@ msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Folders"
msgstr "Pastas"
@@ -8022,7 +8028,7 @@ msgid "Layout"
msgstr "Layout"
#. js-lingui-id: W4nIBb
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
#: src/modules/layout-customization/components/LayoutCustomizationBar.tsx
msgid "Layout customization"
msgstr ""
@@ -8137,8 +8143,8 @@ msgid "Line Chart"
msgstr "Gráfico de linha"
#. js-lingui-id: yzF66j
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Link"
msgstr ""
@@ -8154,12 +8160,12 @@ msgid "Link copied to clipboard"
msgstr "Link copiado para a área de transferência"
#. js-lingui-id: vH3ZQY
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Link label"
msgstr ""
@@ -8798,7 +8804,7 @@ msgid "Most installed version"
msgstr ""
#. js-lingui-id: 3Ib6FN
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move down"
msgstr ""
@@ -8822,12 +8828,12 @@ msgid "Move to a folder"
msgstr ""
#. js-lingui-id: JCPOml
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move to folder"
msgstr ""
#. js-lingui-id: QyioBP
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move up"
msgstr ""
@@ -9073,9 +9079,9 @@ msgid "New Field"
msgstr "Novo Campo"
#. js-lingui-id: 96G6Re
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "New folder"
msgstr ""
@@ -9115,11 +9121,11 @@ msgid "New record"
msgstr "Novo registo"
#. js-lingui-id: x6Ckh1
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/hooks/useOpenAddItemToFolderPage.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useNavigationMenuItemEditOrganizeActions.ts
#: src/modules/navigation-menu-item/edit/hooks/useOpenAddItemToFolderPage.ts
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
msgid "New sidebar item"
msgstr ""
@@ -9306,7 +9312,7 @@ msgid "No currency"
msgstr "Sem moeda"
#. js-lingui-id: DKVJFE
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "No custom views available"
msgstr ""
@@ -9418,12 +9424,12 @@ msgid "No Files"
msgstr "Nenhum arquivo"
#. js-lingui-id: pYblOw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folder"
msgstr "Nenhuma pasta"
#. js-lingui-id: 6XMhqL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folders available"
msgstr ""
@@ -9510,7 +9516,7 @@ msgid "No object found"
msgstr ""
#. js-lingui-id: YFHO2u
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "No objects with views found"
msgstr ""
@@ -9587,14 +9593,14 @@ msgid "No Results"
msgstr "Sem Resultados"
#. js-lingui-id: AxPAXW
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/side-panel/components/SidePanelList.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No results found"
msgstr "Nenhum resultado encontrado"
@@ -9619,12 +9625,12 @@ msgid "No Select field"
msgstr "Sem campo de seleção"
#. js-lingui-id: RQ6tfU
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
msgid "No system objects available"
msgstr ""
#. js-lingui-id: Yf4rVG
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
msgid "No system objects with views found"
msgstr ""
@@ -9832,9 +9838,9 @@ msgstr "objeto"
#: 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/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Object"
msgstr "Objeto"
@@ -9894,9 +9900,9 @@ msgstr ""
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "Objects"
msgstr "Objetos"
@@ -10076,7 +10082,7 @@ msgid "Open side panel"
msgstr ""
#. js-lingui-id: OV5wZZ
#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx
#: src/modules/navigation-menu-item/display/sections/components/NavigationDrawerOpenedSection.tsx
msgid "Opened"
msgstr "Aberto"
@@ -10148,7 +10154,7 @@ msgid "Organization plan"
msgstr ""
#. js-lingui-id: nV6twc
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Organize"
msgstr ""
@@ -10158,9 +10164,9 @@ msgstr ""
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: 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
msgid "Other"
msgstr "Outros"
@@ -10234,7 +10240,7 @@ msgid "Overview"
msgstr "Visão Geral"
#. js-lingui-id: LtI9AS
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOwnerSection.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOwnerSection.tsx
msgid "Owner"
msgstr ""
@@ -10427,6 +10433,8 @@ msgstr "Destruir permanentemente o registo"
#. js-lingui-id: 35dBYb
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
msgid "Permanently Destroy Record"
msgstr "Destruir registro permanentemente"
@@ -10437,6 +10445,7 @@ msgstr "Destruir permanentemente os registos"
#. js-lingui-id: YyP8vD
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Permanently Destroy Records"
msgstr "Destruir Registros Permanentemente"
@@ -10958,7 +10967,7 @@ msgstr "registro"
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Record"
msgstr "Registro"
@@ -11134,14 +11143,16 @@ msgstr "Remoto"
msgid "Remove"
msgstr "Remover"
#. js-lingui-id: 0Urj9q
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "Remove {navigationMenuItemCount} navigation menu item?"
#. js-lingui-id: XABoh4
#. placeholder {0}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Remove {0} navigation menu items?"
msgstr ""
#. js-lingui-id: Ef5jwi
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "Remove {navigationMenuItemCount} navigation menu items?"
#. js-lingui-id: p/lN7X
#. placeholder {1}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Remove {1} navigation menu item?"
msgstr ""
#. js-lingui-id: 1O32oy
@@ -11171,7 +11182,7 @@ msgid "Remove from favorites"
msgstr "Remover dos favoritos"
#. js-lingui-id: 9VZ6f0
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Remove from sidebar"
msgstr ""
@@ -11218,7 +11229,7 @@ msgstr "Remover variável"
#. js-lingui-id: 2wxgft
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/activities/files/components/AttachmentDropdown.tsx
msgid "Rename"
msgstr "Renomear"
@@ -11359,6 +11370,8 @@ msgstr "Restaurar registo"
#. js-lingui-id: NzMNOA
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
msgid "Restore Record"
msgstr "Restaurar registro"
@@ -11370,6 +11383,8 @@ msgstr "Restaurar registos"
#. js-lingui-id: Xqj0Cb
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
msgid "Restore Records"
msgstr "Restaurar registros"
@@ -11385,7 +11400,7 @@ msgstr "Resultado"
#. js-lingui-id: kx0s+n
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Results"
msgstr "Resultados"
@@ -11583,7 +11598,6 @@ msgstr "Sábado"
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
#: src/modules/settings/components/SaveAndCancelButtons/SaveButton.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Save"
msgstr "Salvar"
@@ -11598,11 +11612,6 @@ msgstr "Salvar como nova vista"
msgid "Save Dashboard"
msgstr "Salvar Painel"
#. js-lingui-id: BZVCCj
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
msgid "Save Page Layout"
msgstr ""
#. js-lingui-id: veLq3R
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Scaffold a new app, then use the CLI to develop, publish, and distribute"
@@ -11647,6 +11656,8 @@ msgstr ""
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Search"
@@ -11685,7 +11696,7 @@ msgid "Search a field..."
msgstr "Pesquisar um campo..."
#. js-lingui-id: ITQFzL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Search a folder..."
msgstr ""
@@ -11706,8 +11717,8 @@ msgid "Search a skill..."
msgstr ""
#. js-lingui-id: hVJ1MP
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
msgid "Search a system object..."
msgstr ""
@@ -11722,7 +11733,7 @@ msgid "Search a type"
msgstr "Pesquisar um tipo"
#. js-lingui-id: +MhOVB
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Search a view..."
msgstr ""
@@ -11759,8 +11770,8 @@ msgstr "Pesquisar um objeto"
#. js-lingui-id: BoNHR0
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "Search an object..."
msgstr ""
@@ -11784,7 +11795,7 @@ msgid "Search colors"
msgstr "Pesquisar cores"
#. js-lingui-id: AR3FV/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
msgid "Search colors..."
msgstr ""
@@ -11853,7 +11864,7 @@ msgid "Search records"
msgstr "Pesquisar registos"
#. js-lingui-id: rRklUH
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Search records..."
msgstr ""
@@ -12079,7 +12090,7 @@ msgid "Select a field to display in this widget"
msgstr "Selecione um campo para apresentar neste widget"
#. js-lingui-id: dtAvBz
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
msgid "Select a navigation item to edit"
msgstr ""
@@ -12641,6 +12652,11 @@ msgstr "Alguns"
msgid "Some folders"
msgstr "Algumas pastas"
#. js-lingui-id: hqUWge
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
msgid "Some layout changes could not be saved"
msgstr ""
#. js-lingui-id: nwtY4N
#: src/pages/auth/Authorize.tsx
msgid "Something went wrong"
@@ -13099,10 +13115,10 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -13481,13 +13497,14 @@ msgstr "Esta ação não pode ser desfeita. Isto removerá permanentemente sua a
msgid "This action cannot be undone. This will permanently reset your two factor authentication method. <0/> Please type in your email to confirm."
msgstr "Esta ação não pode ser desfeita. Isto redefinirá permanentemente o seu método de autenticação de dois fatores. <0/> Por favor, introduza o seu e-mail para confirmar."
#. js-lingui-id: lAHIY2
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "This action will delete this folder and all {navigationMenuItemCount} navigation menu items inside. Do you want to continue?"
#. js-lingui-id: XxxrMw
#. placeholder {2}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "This action will delete this folder and all {2} navigation menu items inside. Do you want to continue?"
msgstr ""
#. js-lingui-id: gSO0+U
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
msgstr ""
@@ -14014,7 +14031,7 @@ msgid "Type anything..."
msgstr "Digite qualquer coisa..."
#. js-lingui-id: UhqKcC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Type to search records"
msgstr ""
@@ -14603,10 +14620,10 @@ msgid "view"
msgstr "vista"
#. js-lingui-id: jpctdh
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "View"
msgstr "Vista"
@@ -14705,6 +14722,7 @@ msgstr ""
#. js-lingui-id: ecVcAx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "View Previous AI Chats"
msgstr "Ver Conversas de IA Anteriores"
@@ -14740,7 +14758,7 @@ msgid "View workspace activity logs"
msgstr ""
#. js-lingui-id: 1I6UoR
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr ""
@@ -15034,6 +15052,7 @@ msgstr ""
#. js-lingui-id: 2jzcC5
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
msgid "Workflow duplicated successfully"
msgstr ""
@@ -15097,7 +15116,7 @@ msgstr "Workflows"
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownVisibilityContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
msgid "Workspace"
msgstr "Espaço de trabalho"
+121 -102
View File
@@ -946,23 +946,23 @@ msgid "Add Item"
msgstr "Adaugă element"
#. js-lingui-id: cI2ZVO
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
msgid "Add item to folder"
msgstr ""
#. js-lingui-id: gaZXkv
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItemsFolder.tsx
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Add menu item"
msgstr ""
#. js-lingui-id: JbORSt
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Add menu item after"
msgstr ""
#. js-lingui-id: DKlI/M
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Add menu item before"
msgstr ""
@@ -1423,7 +1423,7 @@ msgid "All Objects"
msgstr "Toate obiectele"
#. js-lingui-id: RoFE84
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
msgid "All objects are already in the sidebar"
msgstr ""
@@ -1438,7 +1438,7 @@ msgid "All set!"
msgstr "Gata!"
#. js-lingui-id: CHvT6e
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
@@ -1539,7 +1539,7 @@ msgid "alphabetical"
msgstr ""
#. js-lingui-id: eO7HSp
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectMenuItem.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectMenuItem.tsx
msgid "Already in navbar"
msgstr ""
@@ -1897,21 +1897,25 @@ msgstr ""
#. js-lingui-id: OJOR8q
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Are you sure you want to destroy these records? They won't be recoverable anymore."
msgstr "Sunteți sigur că doriți să distrugeți aceste înregistrări? Ele nu vor mai fi recuperabile."
#. js-lingui-id: UK5TO6
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
msgid "Are you sure you want to destroy this record? It cannot be recovered anymore."
msgstr "Sunteți sigur că doriți să distrugeți această înregistrare? Nu mai poate fi recuperată."
#. js-lingui-id: mcHVC1
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
msgid "Are you sure you want to restore these records?"
msgstr "Sunteți sigur că doriți să restaurați aceste înregistrări?"
#. js-lingui-id: lmgkf0
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
msgid "Are you sure you want to restore this record?"
msgstr "Sunteți sigur că doriți să restaurați această înregistrare?"
@@ -1952,6 +1956,7 @@ msgstr "Ascendent"
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Ask AI"
msgstr "Întreabă AI"
@@ -2559,13 +2564,11 @@ msgstr "Nu poți scana? Copiază"
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Cancel"
msgstr "Anulare"
#. js-lingui-id: HYLdMN
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Cancel Edition"
msgstr "Anulează ediția"
@@ -2966,7 +2969,7 @@ msgid "Collapse folder"
msgstr "Restrânge folderul"
#. js-lingui-id: jZlrte
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
msgid "Color"
msgstr ""
@@ -3896,10 +3899,9 @@ msgid "Customization"
msgstr "Personalizare"
#. js-lingui-id: srRMnJ
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditObjectViewBase.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
msgid "Customize"
msgstr ""
@@ -3970,6 +3972,7 @@ msgstr "Întunecat"
#. js-lingui-id: ogQzcZ
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Dashboard duplicated successfully"
msgstr "Tabloul de bord a fost duplicat cu succes"
@@ -3983,7 +3986,7 @@ msgstr "Tablouri de Bord"
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Date"
@@ -4305,7 +4308,7 @@ msgstr "șterge"
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: 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/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
@@ -4392,7 +4395,7 @@ msgid "Delete field"
msgstr "Șterge câmpul"
#. js-lingui-id: 97QUV6
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Delete Folder"
msgstr "Șterge folderul"
@@ -4593,6 +4596,7 @@ msgstr "Distruge {objectLabelPlural}"
#. js-lingui-id: kG5yO6
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Destroy Records"
msgstr "Distruge înregistrările"
@@ -4932,9 +4936,9 @@ msgid "Edit Fields"
msgstr "Editați câmpurile"
#. js-lingui-id: uPHscS
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Edit folder"
msgstr ""
@@ -4955,9 +4959,9 @@ msgid "Edit Layout"
msgstr ""
#. js-lingui-id: /PoNoq
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Edit link"
msgstr ""
@@ -6120,11 +6124,13 @@ msgstr ""
#. js-lingui-id: NUmmdc
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Failed to duplicate dashboard"
msgstr "Duplicarea tabloului de bord a eșuat"
#. js-lingui-id: WYXxQF
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
msgid "Failed to duplicate workflow"
msgstr ""
@@ -6188,9 +6194,9 @@ msgstr "Nu s-a reușit eliminarea imaginii"
msgid "Failed to retry jobs. Please try again later."
msgstr "Eșuat la reîncercarea locurilor de muncă. Încercați din nou mai târziu."
#. js-lingui-id: fuRtgB
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Failed to save navigation layout"
#. js-lingui-id: farFvy
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
msgid "Failed to save layout customization"
msgstr ""
#. js-lingui-id: y3HIOa
@@ -6308,7 +6314,7 @@ msgid "Fast Model"
msgstr ""
#. js-lingui-id: X9kySA
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItemFolders.tsx
#: src/modules/navigation-menu-item/display/sections/favorites/components/FavoritesSection.tsx
msgid "Favorites"
msgstr "Favorite"
@@ -6580,8 +6586,8 @@ msgid "Flow"
msgstr "Flux"
#. js-lingui-id: kNqMMd
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Folder"
msgstr ""
@@ -6591,8 +6597,8 @@ msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Folders"
msgstr "Foldere"
@@ -8022,7 +8028,7 @@ msgid "Layout"
msgstr "Aspect"
#. js-lingui-id: W4nIBb
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
#: src/modules/layout-customization/components/LayoutCustomizationBar.tsx
msgid "Layout customization"
msgstr ""
@@ -8137,8 +8143,8 @@ msgid "Line Chart"
msgstr "Grafic liniar"
#. js-lingui-id: yzF66j
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Link"
msgstr ""
@@ -8154,12 +8160,12 @@ msgid "Link copied to clipboard"
msgstr "Link-ul a fost copiat în clipboard"
#. js-lingui-id: vH3ZQY
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Link label"
msgstr ""
@@ -8798,7 +8804,7 @@ msgid "Most installed version"
msgstr ""
#. js-lingui-id: 3Ib6FN
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move down"
msgstr ""
@@ -8822,12 +8828,12 @@ msgid "Move to a folder"
msgstr ""
#. js-lingui-id: JCPOml
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move to folder"
msgstr ""
#. js-lingui-id: QyioBP
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move up"
msgstr ""
@@ -9073,9 +9079,9 @@ msgid "New Field"
msgstr "Câmp nou"
#. js-lingui-id: 96G6Re
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "New folder"
msgstr ""
@@ -9115,11 +9121,11 @@ msgid "New record"
msgstr "Înregistrare nouă"
#. js-lingui-id: x6Ckh1
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/hooks/useOpenAddItemToFolderPage.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useNavigationMenuItemEditOrganizeActions.ts
#: src/modules/navigation-menu-item/edit/hooks/useOpenAddItemToFolderPage.ts
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
msgid "New sidebar item"
msgstr ""
@@ -9306,7 +9312,7 @@ msgid "No currency"
msgstr "Fără monedă"
#. js-lingui-id: DKVJFE
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "No custom views available"
msgstr ""
@@ -9418,12 +9424,12 @@ msgid "No Files"
msgstr "Niciun Fișier"
#. js-lingui-id: pYblOw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folder"
msgstr "Niciun folder"
#. js-lingui-id: 6XMhqL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folders available"
msgstr ""
@@ -9510,7 +9516,7 @@ msgid "No object found"
msgstr ""
#. js-lingui-id: YFHO2u
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "No objects with views found"
msgstr ""
@@ -9587,14 +9593,14 @@ msgid "No Results"
msgstr "Niciun rezultat"
#. js-lingui-id: AxPAXW
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/side-panel/components/SidePanelList.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No results found"
msgstr "Nu s-au găsit rezultate"
@@ -9619,12 +9625,12 @@ msgid "No Select field"
msgstr "Fără câmp selectabil"
#. js-lingui-id: RQ6tfU
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
msgid "No system objects available"
msgstr ""
#. js-lingui-id: Yf4rVG
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
msgid "No system objects with views found"
msgstr ""
@@ -9832,9 +9838,9 @@ msgstr "obiect"
#: 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/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Object"
msgstr "Obiect"
@@ -9894,9 +9900,9 @@ msgstr ""
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "Objects"
msgstr "Obiecte"
@@ -10076,7 +10082,7 @@ msgid "Open side panel"
msgstr ""
#. js-lingui-id: OV5wZZ
#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx
#: src/modules/navigation-menu-item/display/sections/components/NavigationDrawerOpenedSection.tsx
msgid "Opened"
msgstr "Deschis"
@@ -10148,7 +10154,7 @@ msgid "Organization plan"
msgstr ""
#. js-lingui-id: nV6twc
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Organize"
msgstr ""
@@ -10158,9 +10164,9 @@ msgstr ""
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: 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
msgid "Other"
msgstr "Altul"
@@ -10234,7 +10240,7 @@ msgid "Overview"
msgstr "Prezentare generală"
#. js-lingui-id: LtI9AS
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOwnerSection.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOwnerSection.tsx
msgid "Owner"
msgstr ""
@@ -10427,6 +10433,8 @@ msgstr "Distrugere definitivă a înregistrării"
#. js-lingui-id: 35dBYb
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
msgid "Permanently Destroy Record"
msgstr "Distruge definitiv Înregistrarea"
@@ -10437,6 +10445,7 @@ msgstr "Distrugere definitivă a înregistrărilor"
#. js-lingui-id: YyP8vD
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Permanently Destroy Records"
msgstr "Distrugere permanentă a înregistrărilor"
@@ -10958,7 +10967,7 @@ msgstr "înregistrare"
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Record"
msgstr "Înregistrare"
@@ -11134,14 +11143,16 @@ msgstr "La Distanță"
msgid "Remove"
msgstr "Elimină"
#. js-lingui-id: 0Urj9q
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "Remove {navigationMenuItemCount} navigation menu item?"
#. js-lingui-id: XABoh4
#. placeholder {0}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Remove {0} navigation menu items?"
msgstr ""
#. js-lingui-id: Ef5jwi
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "Remove {navigationMenuItemCount} navigation menu items?"
#. js-lingui-id: p/lN7X
#. placeholder {1}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Remove {1} navigation menu item?"
msgstr ""
#. js-lingui-id: 1O32oy
@@ -11171,7 +11182,7 @@ msgid "Remove from favorites"
msgstr "Elimină din favorite"
#. js-lingui-id: 9VZ6f0
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Remove from sidebar"
msgstr ""
@@ -11218,7 +11229,7 @@ msgstr "Elimină variabila"
#. js-lingui-id: 2wxgft
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/activities/files/components/AttachmentDropdown.tsx
msgid "Rename"
msgstr "Redenumește"
@@ -11359,6 +11370,8 @@ msgstr "Restaurează înregistrarea"
#. js-lingui-id: NzMNOA
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
msgid "Restore Record"
msgstr "Restaurează înregistrarea"
@@ -11370,6 +11383,8 @@ msgstr "Restaurează înregistrările"
#. js-lingui-id: Xqj0Cb
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
msgid "Restore Records"
msgstr "Restaurează înregistrările"
@@ -11385,7 +11400,7 @@ msgstr "Rezultat"
#. js-lingui-id: kx0s+n
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Results"
msgstr "Rezultate"
@@ -11583,7 +11598,6 @@ msgstr "Sâmbătă"
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
#: src/modules/settings/components/SaveAndCancelButtons/SaveButton.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Save"
msgstr "Salvează"
@@ -11598,11 +11612,6 @@ msgstr "Salvează ca nouă vizualizare"
msgid "Save Dashboard"
msgstr "Salvează tabloul de bord"
#. js-lingui-id: BZVCCj
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
msgid "Save Page Layout"
msgstr ""
#. js-lingui-id: veLq3R
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Scaffold a new app, then use the CLI to develop, publish, and distribute"
@@ -11647,6 +11656,8 @@ msgstr ""
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Search"
@@ -11685,7 +11696,7 @@ msgid "Search a field..."
msgstr "Caută un câmp..."
#. js-lingui-id: ITQFzL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Search a folder..."
msgstr ""
@@ -11706,8 +11717,8 @@ msgid "Search a skill..."
msgstr ""
#. js-lingui-id: hVJ1MP
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
msgid "Search a system object..."
msgstr ""
@@ -11722,7 +11733,7 @@ msgid "Search a type"
msgstr "Căutați un tip"
#. js-lingui-id: +MhOVB
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Search a view..."
msgstr ""
@@ -11759,8 +11770,8 @@ msgstr "Caută un obiect"
#. js-lingui-id: BoNHR0
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "Search an object..."
msgstr ""
@@ -11784,7 +11795,7 @@ msgid "Search colors"
msgstr "Caută culori"
#. js-lingui-id: AR3FV/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
msgid "Search colors..."
msgstr ""
@@ -11853,7 +11864,7 @@ msgid "Search records"
msgstr "Caută înregistrări"
#. js-lingui-id: rRklUH
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Search records..."
msgstr ""
@@ -12079,7 +12090,7 @@ msgid "Select a field to display in this widget"
msgstr "Selectați un câmp pentru afișare în acest widget"
#. js-lingui-id: dtAvBz
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
msgid "Select a navigation item to edit"
msgstr ""
@@ -12641,6 +12652,11 @@ msgstr "Câteva"
msgid "Some folders"
msgstr "Unele foldere"
#. js-lingui-id: hqUWge
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
msgid "Some layout changes could not be saved"
msgstr ""
#. js-lingui-id: nwtY4N
#: src/pages/auth/Authorize.tsx
msgid "Something went wrong"
@@ -13099,10 +13115,10 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -13481,13 +13497,14 @@ msgstr "Această acțiune nu poate fi anulată. Acest lucru va elimina permanent
msgid "This action cannot be undone. This will permanently reset your two factor authentication method. <0/> Please type in your email to confirm."
msgstr "Această acțiune nu poate fi anulată. Aceasta va reseta permanent metoda dvs. de autentificare în doi pași. <0/> Vă rugăm să introduceți e-mailul pentru confirmare."
#. js-lingui-id: lAHIY2
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "This action will delete this folder and all {navigationMenuItemCount} navigation menu items inside. Do you want to continue?"
#. js-lingui-id: XxxrMw
#. placeholder {2}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "This action will delete this folder and all {2} navigation menu items inside. Do you want to continue?"
msgstr ""
#. js-lingui-id: gSO0+U
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
msgstr ""
@@ -14014,7 +14031,7 @@ msgid "Type anything..."
msgstr "Tastează orice..."
#. js-lingui-id: UhqKcC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Type to search records"
msgstr ""
@@ -14603,10 +14620,10 @@ msgid "view"
msgstr "vizualizare"
#. js-lingui-id: jpctdh
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "View"
msgstr "Vizualizare"
@@ -14705,6 +14722,7 @@ msgstr ""
#. js-lingui-id: ecVcAx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "View Previous AI Chats"
msgstr "Vizualizează Chat-urile AI Anterioare"
@@ -14740,7 +14758,7 @@ msgid "View workspace activity logs"
msgstr ""
#. js-lingui-id: 1I6UoR
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr ""
@@ -15034,6 +15052,7 @@ msgstr ""
#. js-lingui-id: 2jzcC5
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
msgid "Workflow duplicated successfully"
msgstr ""
@@ -15097,7 +15116,7 @@ msgstr "Fluxuri de lucru"
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownVisibilityContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
msgid "Workspace"
msgstr "Spațiu de lucru"
Binary file not shown.
+121 -102
View File
@@ -946,23 +946,23 @@ msgid "Add Item"
msgstr "Додај ставку"
#. js-lingui-id: cI2ZVO
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
msgid "Add item to folder"
msgstr ""
#. js-lingui-id: gaZXkv
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItemsFolder.tsx
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Add menu item"
msgstr ""
#. js-lingui-id: JbORSt
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Add menu item after"
msgstr ""
#. js-lingui-id: DKlI/M
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Add menu item before"
msgstr ""
@@ -1423,7 +1423,7 @@ msgid "All Objects"
msgstr "Сви објекти"
#. js-lingui-id: RoFE84
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
msgid "All objects are already in the sidebar"
msgstr ""
@@ -1438,7 +1438,7 @@ msgid "All set!"
msgstr "Све је спремно!"
#. js-lingui-id: CHvT6e
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
@@ -1539,7 +1539,7 @@ msgid "alphabetical"
msgstr ""
#. js-lingui-id: eO7HSp
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectMenuItem.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectMenuItem.tsx
msgid "Already in navbar"
msgstr ""
@@ -1897,21 +1897,25 @@ msgstr ""
#. js-lingui-id: OJOR8q
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Are you sure you want to destroy these records? They won't be recoverable anymore."
msgstr "Да ли сте сигурни да желите уништити ове записе? Они више неће бити доступни."
#. js-lingui-id: UK5TO6
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
msgid "Are you sure you want to destroy this record? It cannot be recovered anymore."
msgstr "Да ли сте сигурни да желите уништити овај запис? Неповратно је."
#. js-lingui-id: mcHVC1
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
msgid "Are you sure you want to restore these records?"
msgstr "Да ли сте сигурни да желите враћати ове записе?"
#. js-lingui-id: lmgkf0
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
msgid "Are you sure you want to restore this record?"
msgstr "Да ли сте сигурни да желите вратити овај запис?"
@@ -1952,6 +1956,7 @@ msgstr "Растуће"
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Ask AI"
msgstr "Питајте AI"
@@ -2559,13 +2564,11 @@ msgstr "Не можете да скенирате? Копирајте"
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Cancel"
msgstr "Откажи"
#. js-lingui-id: HYLdMN
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Cancel Edition"
msgstr "Откажи издање"
@@ -2966,7 +2969,7 @@ msgid "Collapse folder"
msgstr "Скупи фасциклу"
#. js-lingui-id: jZlrte
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
msgid "Color"
msgstr ""
@@ -3896,10 +3899,9 @@ msgid "Customization"
msgstr "Прилагођавање"
#. js-lingui-id: srRMnJ
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditObjectViewBase.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
msgid "Customize"
msgstr ""
@@ -3970,6 +3972,7 @@ msgstr "Тамни"
#. js-lingui-id: ogQzcZ
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Dashboard duplicated successfully"
msgstr "Контролна табла је успешно дуплирана"
@@ -3983,7 +3986,7 @@ msgstr "Контролне табле"
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Подаци"
@@ -4305,7 +4308,7 @@ msgstr "обриши"
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: 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/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
@@ -4392,7 +4395,7 @@ msgid "Delete field"
msgstr "Обриши поље"
#. js-lingui-id: 97QUV6
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Delete Folder"
msgstr "Обриши фасциклу"
@@ -4593,6 +4596,7 @@ msgstr "Уништи {objectLabelPlural}"
#. js-lingui-id: kG5yO6
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Destroy Records"
msgstr "Уништи записе"
@@ -4932,9 +4936,9 @@ msgid "Edit Fields"
msgstr "Измените поља"
#. js-lingui-id: uPHscS
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Edit folder"
msgstr ""
@@ -4955,9 +4959,9 @@ msgid "Edit Layout"
msgstr ""
#. js-lingui-id: /PoNoq
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Edit link"
msgstr ""
@@ -6120,11 +6124,13 @@ msgstr ""
#. js-lingui-id: NUmmdc
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Failed to duplicate dashboard"
msgstr "Није успело дуплирање контролне табле"
#. js-lingui-id: WYXxQF
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
msgid "Failed to duplicate workflow"
msgstr ""
@@ -6188,9 +6194,9 @@ msgstr "Није успело уклањање слике"
msgid "Failed to retry jobs. Please try again later."
msgstr "Није успело понављање послова. Покушајте поново касније."
#. js-lingui-id: fuRtgB
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Failed to save navigation layout"
#. js-lingui-id: farFvy
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
msgid "Failed to save layout customization"
msgstr ""
#. js-lingui-id: y3HIOa
@@ -6308,7 +6314,7 @@ msgid "Fast Model"
msgstr ""
#. js-lingui-id: X9kySA
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItemFolders.tsx
#: src/modules/navigation-menu-item/display/sections/favorites/components/FavoritesSection.tsx
msgid "Favorites"
msgstr "Фаворити"
@@ -6580,8 +6586,8 @@ msgid "Flow"
msgstr "Ток"
#. js-lingui-id: kNqMMd
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Folder"
msgstr ""
@@ -6591,8 +6597,8 @@ msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Folders"
msgstr "Фасцикле"
@@ -8022,7 +8028,7 @@ msgid "Layout"
msgstr "Изглед"
#. js-lingui-id: W4nIBb
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
#: src/modules/layout-customization/components/LayoutCustomizationBar.tsx
msgid "Layout customization"
msgstr ""
@@ -8137,8 +8143,8 @@ msgid "Line Chart"
msgstr "Дијаграм линија"
#. js-lingui-id: yzF66j
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Link"
msgstr ""
@@ -8154,12 +8160,12 @@ msgid "Link copied to clipboard"
msgstr "Веза копирана у клипборд"
#. js-lingui-id: vH3ZQY
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Link label"
msgstr ""
@@ -8798,7 +8804,7 @@ msgid "Most installed version"
msgstr ""
#. js-lingui-id: 3Ib6FN
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move down"
msgstr ""
@@ -8822,12 +8828,12 @@ msgid "Move to a folder"
msgstr ""
#. js-lingui-id: JCPOml
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move to folder"
msgstr ""
#. js-lingui-id: QyioBP
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move up"
msgstr ""
@@ -9073,9 +9079,9 @@ msgid "New Field"
msgstr "Ново поље"
#. js-lingui-id: 96G6Re
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "New folder"
msgstr ""
@@ -9115,11 +9121,11 @@ msgid "New record"
msgstr "Нови запис"
#. js-lingui-id: x6Ckh1
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/hooks/useOpenAddItemToFolderPage.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useNavigationMenuItemEditOrganizeActions.ts
#: src/modules/navigation-menu-item/edit/hooks/useOpenAddItemToFolderPage.ts
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
msgid "New sidebar item"
msgstr ""
@@ -9306,7 +9312,7 @@ msgid "No currency"
msgstr "Нема валуте"
#. js-lingui-id: DKVJFE
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "No custom views available"
msgstr ""
@@ -9418,12 +9424,12 @@ msgid "No Files"
msgstr "Нема фајлова"
#. js-lingui-id: pYblOw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folder"
msgstr "Нема фасцикле"
#. js-lingui-id: 6XMhqL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folders available"
msgstr ""
@@ -9510,7 +9516,7 @@ msgid "No object found"
msgstr ""
#. js-lingui-id: YFHO2u
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "No objects with views found"
msgstr ""
@@ -9587,14 +9593,14 @@ msgid "No Results"
msgstr "Нема резултата"
#. js-lingui-id: AxPAXW
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/side-panel/components/SidePanelList.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No results found"
msgstr "Нема резултата"
@@ -9619,12 +9625,12 @@ msgid "No Select field"
msgstr "Нема Изабери поља"
#. js-lingui-id: RQ6tfU
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
msgid "No system objects available"
msgstr ""
#. js-lingui-id: Yf4rVG
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
msgid "No system objects with views found"
msgstr ""
@@ -9832,9 +9838,9 @@ msgstr "објекат"
#: 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/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Object"
msgstr "Објекат"
@@ -9894,9 +9900,9 @@ msgstr ""
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "Objects"
msgstr "Објекти"
@@ -10076,7 +10082,7 @@ msgid "Open side panel"
msgstr ""
#. js-lingui-id: OV5wZZ
#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx
#: src/modules/navigation-menu-item/display/sections/components/NavigationDrawerOpenedSection.tsx
msgid "Opened"
msgstr "Отворено"
@@ -10148,7 +10154,7 @@ msgid "Organization plan"
msgstr ""
#. js-lingui-id: nV6twc
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Organize"
msgstr ""
@@ -10158,9 +10164,9 @@ msgstr ""
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: 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
msgid "Other"
msgstr "Остало"
@@ -10234,7 +10240,7 @@ msgid "Overview"
msgstr "Преглед"
#. js-lingui-id: LtI9AS
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOwnerSection.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOwnerSection.tsx
msgid "Owner"
msgstr ""
@@ -10427,6 +10433,8 @@ msgstr "Трајно уништите запис"
#. js-lingui-id: 35dBYb
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
msgid "Permanently Destroy Record"
msgstr "Трајно уништите запис"
@@ -10437,6 +10445,7 @@ msgstr "Трајно уништите записе"
#. js-lingui-id: YyP8vD
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Permanently Destroy Records"
msgstr "Трајно уништите записе"
@@ -10958,7 +10967,7 @@ msgstr "запис"
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Record"
msgstr "Запис"
@@ -11134,14 +11143,16 @@ msgstr "Далеко"
msgid "Remove"
msgstr "Уклони"
#. js-lingui-id: 0Urj9q
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "Remove {navigationMenuItemCount} navigation menu item?"
#. js-lingui-id: XABoh4
#. placeholder {0}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Remove {0} navigation menu items?"
msgstr ""
#. js-lingui-id: Ef5jwi
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "Remove {navigationMenuItemCount} navigation menu items?"
#. js-lingui-id: p/lN7X
#. placeholder {1}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Remove {1} navigation menu item?"
msgstr ""
#. js-lingui-id: 1O32oy
@@ -11171,7 +11182,7 @@ msgid "Remove from favorites"
msgstr "Уклоните из фаворита"
#. js-lingui-id: 9VZ6f0
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Remove from sidebar"
msgstr ""
@@ -11218,7 +11229,7 @@ msgstr "Уклони променљиву"
#. js-lingui-id: 2wxgft
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/activities/files/components/AttachmentDropdown.tsx
msgid "Rename"
msgstr "Преименуј"
@@ -11359,6 +11370,8 @@ msgstr "Врати запис"
#. js-lingui-id: NzMNOA
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
msgid "Restore Record"
msgstr "Врати запис"
@@ -11370,6 +11383,8 @@ msgstr "Врати записе"
#. js-lingui-id: Xqj0Cb
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
msgid "Restore Records"
msgstr "Врати записе"
@@ -11385,7 +11400,7 @@ msgstr "Резултат"
#. js-lingui-id: kx0s+n
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Results"
msgstr "Резултати"
@@ -11583,7 +11598,6 @@ msgstr "Субота"
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
#: src/modules/settings/components/SaveAndCancelButtons/SaveButton.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Save"
msgstr "Сачувај"
@@ -11598,11 +11612,6 @@ msgstr "Сачувај као ново приказ"
msgid "Save Dashboard"
msgstr "Сачувај контролну таблу"
#. js-lingui-id: BZVCCj
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
msgid "Save Page Layout"
msgstr ""
#. js-lingui-id: veLq3R
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Scaffold a new app, then use the CLI to develop, publish, and distribute"
@@ -11647,6 +11656,8 @@ msgstr ""
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Search"
@@ -11685,7 +11696,7 @@ msgid "Search a field..."
msgstr "Претражите поље..."
#. js-lingui-id: ITQFzL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Search a folder..."
msgstr ""
@@ -11706,8 +11717,8 @@ msgid "Search a skill..."
msgstr ""
#. js-lingui-id: hVJ1MP
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
msgid "Search a system object..."
msgstr ""
@@ -11722,7 +11733,7 @@ msgid "Search a type"
msgstr "Претражите тип"
#. js-lingui-id: +MhOVB
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Search a view..."
msgstr ""
@@ -11759,8 +11770,8 @@ msgstr "Претражите објекат"
#. js-lingui-id: BoNHR0
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "Search an object..."
msgstr ""
@@ -11784,7 +11795,7 @@ msgid "Search colors"
msgstr "Претрага боја"
#. js-lingui-id: AR3FV/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
msgid "Search colors..."
msgstr ""
@@ -11853,7 +11864,7 @@ msgid "Search records"
msgstr "Тражите записе"
#. js-lingui-id: rRklUH
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Search records..."
msgstr ""
@@ -12079,7 +12090,7 @@ msgid "Select a field to display in this widget"
msgstr "Изаберите поље за приказ у овом виџету"
#. js-lingui-id: dtAvBz
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
msgid "Select a navigation item to edit"
msgstr ""
@@ -12641,6 +12652,11 @@ msgstr "Неки"
msgid "Some folders"
msgstr "Неке фасцикле"
#. js-lingui-id: hqUWge
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
msgid "Some layout changes could not be saved"
msgstr ""
#. js-lingui-id: nwtY4N
#: src/pages/auth/Authorize.tsx
msgid "Something went wrong"
@@ -13099,10 +13115,10 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -13481,13 +13497,14 @@ msgstr "Ова акција се не може опозвати. Ово ће т
msgid "This action cannot be undone. This will permanently reset your two factor authentication method. <0/> Please type in your email to confirm."
msgstr "Ова радња се не може опозвати. Ово ће трајно ресетовати ваш метод двофакторске аутентификације. <0/> Молимо унесите свој имејл да потврдите."
#. js-lingui-id: lAHIY2
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "This action will delete this folder and all {navigationMenuItemCount} navigation menu items inside. Do you want to continue?"
#. js-lingui-id: XxxrMw
#. placeholder {2}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "This action will delete this folder and all {2} navigation menu items inside. Do you want to continue?"
msgstr ""
#. js-lingui-id: gSO0+U
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
msgstr ""
@@ -14014,7 +14031,7 @@ msgid "Type anything..."
msgstr "Укуцајте било шта..."
#. js-lingui-id: UhqKcC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Type to search records"
msgstr ""
@@ -14603,10 +14620,10 @@ msgid "view"
msgstr "преглед"
#. js-lingui-id: jpctdh
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "View"
msgstr "Преглед"
@@ -14705,6 +14722,7 @@ msgstr ""
#. js-lingui-id: ecVcAx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "View Previous AI Chats"
msgstr "Прегледај претходне разговоре са вештачком интелигенцијом"
@@ -14740,7 +14758,7 @@ msgid "View workspace activity logs"
msgstr ""
#. js-lingui-id: 1I6UoR
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr ""
@@ -15034,6 +15052,7 @@ msgstr ""
#. js-lingui-id: 2jzcC5
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
msgid "Workflow duplicated successfully"
msgstr ""
@@ -15097,7 +15116,7 @@ msgstr "Токови Рада"
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownVisibilityContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
msgid "Workspace"
msgstr "Радни простор"
+121 -102
View File
@@ -946,23 +946,23 @@ msgid "Add Item"
msgstr "Lägg till objekt"
#. js-lingui-id: cI2ZVO
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
msgid "Add item to folder"
msgstr ""
#. js-lingui-id: gaZXkv
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItemsFolder.tsx
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Add menu item"
msgstr ""
#. js-lingui-id: JbORSt
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Add menu item after"
msgstr ""
#. js-lingui-id: DKlI/M
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Add menu item before"
msgstr ""
@@ -1423,7 +1423,7 @@ msgid "All Objects"
msgstr "Alla objekt"
#. js-lingui-id: RoFE84
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
msgid "All objects are already in the sidebar"
msgstr ""
@@ -1438,7 +1438,7 @@ msgid "All set!"
msgstr "Klart!"
#. js-lingui-id: CHvT6e
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
@@ -1539,7 +1539,7 @@ msgid "alphabetical"
msgstr ""
#. js-lingui-id: eO7HSp
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectMenuItem.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectMenuItem.tsx
msgid "Already in navbar"
msgstr ""
@@ -1897,21 +1897,25 @@ msgstr ""
#. js-lingui-id: OJOR8q
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Are you sure you want to destroy these records? They won't be recoverable anymore."
msgstr "Är du säker på att du vill förstöra dessa poster? De kommer inte att gå att återställa längre."
#. js-lingui-id: UK5TO6
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
msgid "Are you sure you want to destroy this record? It cannot be recovered anymore."
msgstr "Är du säker på att du vill förstöra denna post? Den kan inte återställas längre."
#. js-lingui-id: mcHVC1
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
msgid "Are you sure you want to restore these records?"
msgstr "Är du säker på att du vill återställa dessa poster?"
#. js-lingui-id: lmgkf0
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
msgid "Are you sure you want to restore this record?"
msgstr "Är du säker på att du vill återställa denna post?"
@@ -1952,6 +1956,7 @@ msgstr "Stigande"
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Ask AI"
msgstr "Fråga AI"
@@ -2559,13 +2564,11 @@ msgstr "Kan inte skanna? Kopiera "
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Cancel"
msgstr "Avbryt"
#. js-lingui-id: HYLdMN
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Cancel Edition"
msgstr "Avbryt utgåva"
@@ -2966,7 +2969,7 @@ msgid "Collapse folder"
msgstr "Fäll ihop mapp"
#. js-lingui-id: jZlrte
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
msgid "Color"
msgstr ""
@@ -3896,10 +3899,9 @@ msgid "Customization"
msgstr "Anpassning"
#. js-lingui-id: srRMnJ
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditObjectViewBase.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
msgid "Customize"
msgstr ""
@@ -3970,6 +3972,7 @@ msgstr "Mörkt"
#. js-lingui-id: ogQzcZ
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Dashboard duplicated successfully"
msgstr "Instrumentpanelen duplicerades framgångsrikt"
@@ -3983,7 +3986,7 @@ msgstr "Instrumentpaneler"
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Data"
@@ -4305,7 +4308,7 @@ msgstr "ta bort"
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: 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/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
@@ -4392,7 +4395,7 @@ msgid "Delete field"
msgstr "Ta bort fält"
#. js-lingui-id: 97QUV6
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Delete Folder"
msgstr "Ta bort mapp"
@@ -4593,6 +4596,7 @@ msgstr "Förstör {objectLabelPlural}"
#. js-lingui-id: kG5yO6
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Destroy Records"
msgstr "Förstöra poster"
@@ -4932,9 +4936,9 @@ msgid "Edit Fields"
msgstr "Redigera fält"
#. js-lingui-id: uPHscS
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Edit folder"
msgstr ""
@@ -4955,9 +4959,9 @@ msgid "Edit Layout"
msgstr ""
#. js-lingui-id: /PoNoq
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Edit link"
msgstr ""
@@ -6120,11 +6124,13 @@ msgstr ""
#. js-lingui-id: NUmmdc
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Failed to duplicate dashboard"
msgstr "Det gick inte att duplicera instrumentpanelen"
#. js-lingui-id: WYXxQF
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
msgid "Failed to duplicate workflow"
msgstr ""
@@ -6188,9 +6194,9 @@ msgstr "Misslyckades med att ta bort bild"
msgid "Failed to retry jobs. Please try again later."
msgstr "Det gick inte att återsöka jobben. Försök igen senare."
#. js-lingui-id: fuRtgB
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Failed to save navigation layout"
#. js-lingui-id: farFvy
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
msgid "Failed to save layout customization"
msgstr ""
#. js-lingui-id: y3HIOa
@@ -6308,7 +6314,7 @@ msgid "Fast Model"
msgstr ""
#. js-lingui-id: X9kySA
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItemFolders.tsx
#: src/modules/navigation-menu-item/display/sections/favorites/components/FavoritesSection.tsx
msgid "Favorites"
msgstr "Favoriter"
@@ -6580,8 +6586,8 @@ msgid "Flow"
msgstr "Flöde"
#. js-lingui-id: kNqMMd
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Folder"
msgstr ""
@@ -6591,8 +6597,8 @@ msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Folders"
msgstr "Mappar"
@@ -8022,7 +8028,7 @@ msgid "Layout"
msgstr "Layout"
#. js-lingui-id: W4nIBb
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
#: src/modules/layout-customization/components/LayoutCustomizationBar.tsx
msgid "Layout customization"
msgstr ""
@@ -8137,8 +8143,8 @@ msgid "Line Chart"
msgstr "Linjediagram"
#. js-lingui-id: yzF66j
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Link"
msgstr ""
@@ -8154,12 +8160,12 @@ msgid "Link copied to clipboard"
msgstr "Länk kopierad till urklipp"
#. js-lingui-id: vH3ZQY
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Link label"
msgstr ""
@@ -8800,7 +8806,7 @@ msgid "Most installed version"
msgstr ""
#. js-lingui-id: 3Ib6FN
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move down"
msgstr ""
@@ -8824,12 +8830,12 @@ msgid "Move to a folder"
msgstr ""
#. js-lingui-id: JCPOml
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move to folder"
msgstr ""
#. js-lingui-id: QyioBP
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move up"
msgstr ""
@@ -9075,9 +9081,9 @@ msgid "New Field"
msgstr "Nytt fält"
#. js-lingui-id: 96G6Re
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "New folder"
msgstr ""
@@ -9117,11 +9123,11 @@ msgid "New record"
msgstr "Ny post"
#. js-lingui-id: x6Ckh1
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/hooks/useOpenAddItemToFolderPage.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useNavigationMenuItemEditOrganizeActions.ts
#: src/modules/navigation-menu-item/edit/hooks/useOpenAddItemToFolderPage.ts
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
msgid "New sidebar item"
msgstr ""
@@ -9308,7 +9314,7 @@ msgid "No currency"
msgstr "Ingen valuta"
#. js-lingui-id: DKVJFE
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "No custom views available"
msgstr ""
@@ -9420,12 +9426,12 @@ msgid "No Files"
msgstr "Inga filer"
#. js-lingui-id: pYblOw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folder"
msgstr "Ingen mapp"
#. js-lingui-id: 6XMhqL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folders available"
msgstr ""
@@ -9512,7 +9518,7 @@ msgid "No object found"
msgstr ""
#. js-lingui-id: YFHO2u
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "No objects with views found"
msgstr ""
@@ -9589,14 +9595,14 @@ msgid "No Results"
msgstr "Inga resultat"
#. js-lingui-id: AxPAXW
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/side-panel/components/SidePanelList.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No results found"
msgstr "Inga resultat hittades"
@@ -9621,12 +9627,12 @@ msgid "No Select field"
msgstr "Inget valfält"
#. js-lingui-id: RQ6tfU
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
msgid "No system objects available"
msgstr ""
#. js-lingui-id: Yf4rVG
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
msgid "No system objects with views found"
msgstr ""
@@ -9834,9 +9840,9 @@ msgstr "objekt"
#: 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/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Object"
msgstr "Objekt"
@@ -9896,9 +9902,9 @@ msgstr ""
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "Objects"
msgstr "Objekt"
@@ -10078,7 +10084,7 @@ msgid "Open side panel"
msgstr ""
#. js-lingui-id: OV5wZZ
#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx
#: src/modules/navigation-menu-item/display/sections/components/NavigationDrawerOpenedSection.tsx
msgid "Opened"
msgstr "Öppnad"
@@ -10150,7 +10156,7 @@ msgid "Organization plan"
msgstr ""
#. js-lingui-id: nV6twc
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Organize"
msgstr ""
@@ -10160,9 +10166,9 @@ msgstr ""
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: 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
msgid "Other"
msgstr "Annat"
@@ -10236,7 +10242,7 @@ msgid "Overview"
msgstr "Översikt"
#. js-lingui-id: LtI9AS
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOwnerSection.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOwnerSection.tsx
msgid "Owner"
msgstr ""
@@ -10429,6 +10435,8 @@ msgstr "Förstöra posten permanent"
#. js-lingui-id: 35dBYb
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
msgid "Permanently Destroy Record"
msgstr "Förstör permanent post"
@@ -10439,6 +10447,7 @@ msgstr "Förstöra posterna permanent"
#. js-lingui-id: YyP8vD
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Permanently Destroy Records"
msgstr "Förstör permanent poster"
@@ -10960,7 +10969,7 @@ msgstr "post"
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Record"
msgstr "Post"
@@ -11136,14 +11145,16 @@ msgstr "Fjärr"
msgid "Remove"
msgstr "Ta bort"
#. js-lingui-id: 0Urj9q
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "Remove {navigationMenuItemCount} navigation menu item?"
#. js-lingui-id: XABoh4
#. placeholder {0}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Remove {0} navigation menu items?"
msgstr ""
#. js-lingui-id: Ef5jwi
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "Remove {navigationMenuItemCount} navigation menu items?"
#. js-lingui-id: p/lN7X
#. placeholder {1}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Remove {1} navigation menu item?"
msgstr ""
#. js-lingui-id: 1O32oy
@@ -11173,7 +11184,7 @@ msgid "Remove from favorites"
msgstr "Ta bort från favoriter"
#. js-lingui-id: 9VZ6f0
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Remove from sidebar"
msgstr ""
@@ -11220,7 +11231,7 @@ msgstr "Ta bort variabel"
#. js-lingui-id: 2wxgft
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/activities/files/components/AttachmentDropdown.tsx
msgid "Rename"
msgstr "Byt namn"
@@ -11361,6 +11372,8 @@ msgstr "Återställ post"
#. js-lingui-id: NzMNOA
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
msgid "Restore Record"
msgstr "Återställ post"
@@ -11372,6 +11385,8 @@ msgstr "Återställ poster"
#. js-lingui-id: Xqj0Cb
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
msgid "Restore Records"
msgstr "Återställ poster"
@@ -11387,7 +11402,7 @@ msgstr "Resultat"
#. js-lingui-id: kx0s+n
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Results"
msgstr "Resultat"
@@ -11587,7 +11602,6 @@ msgstr ""
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
#: src/modules/settings/components/SaveAndCancelButtons/SaveButton.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Save"
msgstr "Spara"
@@ -11602,11 +11616,6 @@ msgstr "Spara som ny vy"
msgid "Save Dashboard"
msgstr "Spara instrumentpanel"
#. js-lingui-id: BZVCCj
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
msgid "Save Page Layout"
msgstr ""
#. js-lingui-id: veLq3R
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Scaffold a new app, then use the CLI to develop, publish, and distribute"
@@ -11651,6 +11660,8 @@ msgstr ""
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Search"
@@ -11689,7 +11700,7 @@ msgid "Search a field..."
msgstr "Sök ett fält..."
#. js-lingui-id: ITQFzL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Search a folder..."
msgstr ""
@@ -11710,8 +11721,8 @@ msgid "Search a skill..."
msgstr ""
#. js-lingui-id: hVJ1MP
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
msgid "Search a system object..."
msgstr ""
@@ -11726,7 +11737,7 @@ msgid "Search a type"
msgstr "Sök en typ"
#. js-lingui-id: +MhOVB
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Search a view..."
msgstr ""
@@ -11763,8 +11774,8 @@ msgstr "Sök efter ett objekt"
#. js-lingui-id: BoNHR0
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "Search an object..."
msgstr ""
@@ -11788,7 +11799,7 @@ msgid "Search colors"
msgstr "Sök färger"
#. js-lingui-id: AR3FV/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
msgid "Search colors..."
msgstr ""
@@ -11857,7 +11868,7 @@ msgid "Search records"
msgstr "Sök poster"
#. js-lingui-id: rRklUH
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Search records..."
msgstr ""
@@ -12083,7 +12094,7 @@ msgid "Select a field to display in this widget"
msgstr "Välj ett fält som ska visas i den här widgeten"
#. js-lingui-id: dtAvBz
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
msgid "Select a navigation item to edit"
msgstr ""
@@ -12645,6 +12656,11 @@ msgstr "Vissa"
msgid "Some folders"
msgstr "Vissa mappar"
#. js-lingui-id: hqUWge
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
msgid "Some layout changes could not be saved"
msgstr ""
#. js-lingui-id: nwtY4N
#: src/pages/auth/Authorize.tsx
msgid "Something went wrong"
@@ -13105,10 +13121,10 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -13495,13 +13511,14 @@ msgstr "Denna åtgärd kan inte ångras. Detta kommer att permanent ta bort ditt
msgid "This action cannot be undone. This will permanently reset your two factor authentication method. <0/> Please type in your email to confirm."
msgstr "Denna åtgärd kan inte ångras. Detta kommer permanent att återställa din tvåfaktorsautentiseringsmetod. <0/> Vänligen skriv in din e-post för att bekräfta."
#. js-lingui-id: lAHIY2
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "This action will delete this folder and all {navigationMenuItemCount} navigation menu items inside. Do you want to continue?"
#. js-lingui-id: XxxrMw
#. placeholder {2}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "This action will delete this folder and all {2} navigation menu items inside. Do you want to continue?"
msgstr ""
#. js-lingui-id: gSO0+U
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
msgstr ""
@@ -14028,7 +14045,7 @@ msgid "Type anything..."
msgstr "Skriv något..."
#. js-lingui-id: UhqKcC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Type to search records"
msgstr ""
@@ -14617,10 +14634,10 @@ msgid "view"
msgstr "vy"
#. js-lingui-id: jpctdh
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "View"
msgstr "Vy"
@@ -14719,6 +14736,7 @@ msgstr ""
#. js-lingui-id: ecVcAx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "View Previous AI Chats"
msgstr "Visa tidigare AI-konversationer"
@@ -14754,7 +14772,7 @@ msgid "View workspace activity logs"
msgstr ""
#. js-lingui-id: 1I6UoR
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr ""
@@ -15048,6 +15066,7 @@ msgstr ""
#. js-lingui-id: 2jzcC5
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
msgid "Workflow duplicated successfully"
msgstr ""
@@ -15111,7 +15130,7 @@ msgstr "Arbetsflöden"
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownVisibilityContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
msgid "Workspace"
msgstr "Arbetsyta"
+121 -102
View File
@@ -946,23 +946,23 @@ msgid "Add Item"
msgstr "Öğe ekle"
#. js-lingui-id: cI2ZVO
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
msgid "Add item to folder"
msgstr ""
#. js-lingui-id: gaZXkv
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItemsFolder.tsx
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Add menu item"
msgstr ""
#. js-lingui-id: JbORSt
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Add menu item after"
msgstr ""
#. js-lingui-id: DKlI/M
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Add menu item before"
msgstr ""
@@ -1423,7 +1423,7 @@ msgid "All Objects"
msgstr "Tüm Nesneler"
#. js-lingui-id: RoFE84
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
msgid "All objects are already in the sidebar"
msgstr ""
@@ -1438,7 +1438,7 @@ msgid "All set!"
msgstr "Her şey hazır!"
#. js-lingui-id: CHvT6e
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
@@ -1539,7 +1539,7 @@ msgid "alphabetical"
msgstr ""
#. js-lingui-id: eO7HSp
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectMenuItem.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectMenuItem.tsx
msgid "Already in navbar"
msgstr ""
@@ -1897,21 +1897,25 @@ msgstr ""
#. js-lingui-id: OJOR8q
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Are you sure you want to destroy these records? They won't be recoverable anymore."
msgstr "Bu kayıtları yok etmek istediğinizden emin misiniz? Artık kurtarılamayacaklar."
#. js-lingui-id: UK5TO6
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
msgid "Are you sure you want to destroy this record? It cannot be recovered anymore."
msgstr "Bu kaydı yok etmek istediğinizden emin misiniz? Artık kurtarılamayacak."
#. js-lingui-id: mcHVC1
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
msgid "Are you sure you want to restore these records?"
msgstr "Bu kayıtları geri yüklemek istediğinizden emin misiniz?"
#. js-lingui-id: lmgkf0
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
msgid "Are you sure you want to restore this record?"
msgstr "Bu kaydı geri yüklemek istediğinizden emin misiniz?"
@@ -1952,6 +1956,7 @@ msgstr "Artan"
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Ask AI"
msgstr "AI Sor"
@@ -2559,13 +2564,11 @@ msgstr "Tarayamaz mısınız? Kopyalayın."
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Cancel"
msgstr "İptal"
#. js-lingui-id: HYLdMN
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Cancel Edition"
msgstr "Sürümü İptal Et"
@@ -2966,7 +2969,7 @@ msgid "Collapse folder"
msgstr "Klasörü daralt"
#. js-lingui-id: jZlrte
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
msgid "Color"
msgstr ""
@@ -3896,10 +3899,9 @@ msgid "Customization"
msgstr "Özelleştirme"
#. js-lingui-id: srRMnJ
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditObjectViewBase.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
msgid "Customize"
msgstr ""
@@ -3970,6 +3972,7 @@ msgstr "Karanlık"
#. js-lingui-id: ogQzcZ
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Dashboard duplicated successfully"
msgstr "Gösterge paneli başarıyla çoğaltıldı"
@@ -3983,7 +3986,7 @@ msgstr "Gösterge Panelleri"
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Veri"
@@ -4305,7 +4308,7 @@ msgstr "sil"
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: 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/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
@@ -4392,7 +4395,7 @@ msgid "Delete field"
msgstr "Alanı sil"
#. js-lingui-id: 97QUV6
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Delete Folder"
msgstr "Klasörü Sil"
@@ -4593,6 +4596,7 @@ msgstr "{objectLabelPlural} Yok Et"
#. js-lingui-id: kG5yO6
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Destroy Records"
msgstr "Kayıtları Yok Et"
@@ -4932,9 +4936,9 @@ msgid "Edit Fields"
msgstr "Alanları Düzenle"
#. js-lingui-id: uPHscS
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Edit folder"
msgstr ""
@@ -4955,9 +4959,9 @@ msgid "Edit Layout"
msgstr ""
#. js-lingui-id: /PoNoq
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Edit link"
msgstr ""
@@ -6120,11 +6124,13 @@ msgstr ""
#. js-lingui-id: NUmmdc
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Failed to duplicate dashboard"
msgstr "Gösterge paneli çoğaltılamadı"
#. js-lingui-id: WYXxQF
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
msgid "Failed to duplicate workflow"
msgstr ""
@@ -6188,9 +6194,9 @@ msgstr "Resim kaldırılamadı"
msgid "Failed to retry jobs. Please try again later."
msgstr "İşleri yeniden deneme başarısız oldu. Lütfen daha sonra tekrar deneyiniz."
#. js-lingui-id: fuRtgB
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Failed to save navigation layout"
#. js-lingui-id: farFvy
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
msgid "Failed to save layout customization"
msgstr ""
#. js-lingui-id: y3HIOa
@@ -6308,7 +6314,7 @@ msgid "Fast Model"
msgstr ""
#. js-lingui-id: X9kySA
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItemFolders.tsx
#: src/modules/navigation-menu-item/display/sections/favorites/components/FavoritesSection.tsx
msgid "Favorites"
msgstr "Favoriler"
@@ -6580,8 +6586,8 @@ msgid "Flow"
msgstr "Akış"
#. js-lingui-id: kNqMMd
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Folder"
msgstr ""
@@ -6591,8 +6597,8 @@ msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Folders"
msgstr "Klasörler"
@@ -8022,7 +8028,7 @@ msgid "Layout"
msgstr "Düzen"
#. js-lingui-id: W4nIBb
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
#: src/modules/layout-customization/components/LayoutCustomizationBar.tsx
msgid "Layout customization"
msgstr ""
@@ -8137,8 +8143,8 @@ msgid "Line Chart"
msgstr "Çizgi Grafiği"
#. js-lingui-id: yzF66j
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Link"
msgstr ""
@@ -8154,12 +8160,12 @@ msgid "Link copied to clipboard"
msgstr "Link panoya kopyalandı"
#. js-lingui-id: vH3ZQY
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Link label"
msgstr ""
@@ -8798,7 +8804,7 @@ msgid "Most installed version"
msgstr ""
#. js-lingui-id: 3Ib6FN
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move down"
msgstr ""
@@ -8822,12 +8828,12 @@ msgid "Move to a folder"
msgstr ""
#. js-lingui-id: JCPOml
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move to folder"
msgstr ""
#. js-lingui-id: QyioBP
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move up"
msgstr ""
@@ -9073,9 +9079,9 @@ msgid "New Field"
msgstr "Yeni Alan"
#. js-lingui-id: 96G6Re
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "New folder"
msgstr ""
@@ -9115,11 +9121,11 @@ msgid "New record"
msgstr "Yeni kayıt"
#. js-lingui-id: x6Ckh1
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/hooks/useOpenAddItemToFolderPage.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useNavigationMenuItemEditOrganizeActions.ts
#: src/modules/navigation-menu-item/edit/hooks/useOpenAddItemToFolderPage.ts
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
msgid "New sidebar item"
msgstr ""
@@ -9306,7 +9312,7 @@ msgid "No currency"
msgstr "Para birimi yok"
#. js-lingui-id: DKVJFE
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "No custom views available"
msgstr ""
@@ -9418,12 +9424,12 @@ msgid "No Files"
msgstr "Dosya Yok"
#. js-lingui-id: pYblOw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folder"
msgstr "Klasör yok"
#. js-lingui-id: 6XMhqL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folders available"
msgstr ""
@@ -9510,7 +9516,7 @@ msgid "No object found"
msgstr ""
#. js-lingui-id: YFHO2u
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "No objects with views found"
msgstr ""
@@ -9587,14 +9593,14 @@ msgid "No Results"
msgstr "Sonuç Yok"
#. js-lingui-id: AxPAXW
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/side-panel/components/SidePanelList.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No results found"
msgstr "Sonuç bulunamadı"
@@ -9619,12 +9625,12 @@ msgid "No Select field"
msgstr "Seçim alanı yok"
#. js-lingui-id: RQ6tfU
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
msgid "No system objects available"
msgstr ""
#. js-lingui-id: Yf4rVG
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
msgid "No system objects with views found"
msgstr ""
@@ -9832,9 +9838,9 @@ msgstr "nesne"
#: 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/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Object"
msgstr "Nesne"
@@ -9894,9 +9900,9 @@ msgstr ""
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "Objects"
msgstr "Nesneler"
@@ -10076,7 +10082,7 @@ msgid "Open side panel"
msgstr ""
#. js-lingui-id: OV5wZZ
#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx
#: src/modules/navigation-menu-item/display/sections/components/NavigationDrawerOpenedSection.tsx
msgid "Opened"
msgstr "Açık"
@@ -10148,7 +10154,7 @@ msgid "Organization plan"
msgstr ""
#. js-lingui-id: nV6twc
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Organize"
msgstr ""
@@ -10158,9 +10164,9 @@ msgstr ""
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: 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
msgid "Other"
msgstr "Diğer"
@@ -10234,7 +10240,7 @@ msgid "Overview"
msgstr "Genel Bakış"
#. js-lingui-id: LtI9AS
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOwnerSection.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOwnerSection.tsx
msgid "Owner"
msgstr ""
@@ -10427,6 +10433,8 @@ msgstr "Kaydı kalıcı olarak yok et"
#. js-lingui-id: 35dBYb
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
msgid "Permanently Destroy Record"
msgstr "Kaydı Kalıcı Olarak Yok Et"
@@ -10437,6 +10445,7 @@ msgstr "Kayıtları kalıcı olarak yok et"
#. js-lingui-id: YyP8vD
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Permanently Destroy Records"
msgstr "Kayıtları Kalıcı Olarak Yok Et"
@@ -10958,7 +10967,7 @@ msgstr "kayıt"
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Record"
msgstr "Kayıt"
@@ -11134,14 +11143,16 @@ msgstr "Uzaktan"
msgid "Remove"
msgstr "Kaldır"
#. js-lingui-id: 0Urj9q
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "Remove {navigationMenuItemCount} navigation menu item?"
#. js-lingui-id: XABoh4
#. placeholder {0}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Remove {0} navigation menu items?"
msgstr ""
#. js-lingui-id: Ef5jwi
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "Remove {navigationMenuItemCount} navigation menu items?"
#. js-lingui-id: p/lN7X
#. placeholder {1}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Remove {1} navigation menu item?"
msgstr ""
#. js-lingui-id: 1O32oy
@@ -11171,7 +11182,7 @@ msgid "Remove from favorites"
msgstr "Favorilerden çıkar"
#. js-lingui-id: 9VZ6f0
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Remove from sidebar"
msgstr ""
@@ -11218,7 +11229,7 @@ msgstr "Değişkeni kaldır"
#. js-lingui-id: 2wxgft
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/activities/files/components/AttachmentDropdown.tsx
msgid "Rename"
msgstr "Yeniden adlandır"
@@ -11359,6 +11370,8 @@ msgstr "Kaydı Geri Yükle"
#. js-lingui-id: NzMNOA
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
msgid "Restore Record"
msgstr "Kaydı Geri Yükle"
@@ -11370,6 +11383,8 @@ msgstr "Kayıtları Geri Yükle"
#. js-lingui-id: Xqj0Cb
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
msgid "Restore Records"
msgstr "Kayıtları Geri Yükle"
@@ -11385,7 +11400,7 @@ msgstr "Sonuç"
#. js-lingui-id: kx0s+n
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Results"
msgstr "Sonuçlar"
@@ -11583,7 +11598,6 @@ msgstr "Cumartesi"
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
#: src/modules/settings/components/SaveAndCancelButtons/SaveButton.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Save"
msgstr "Kaydet"
@@ -11598,11 +11612,6 @@ msgstr "Yeni görünüm olarak kaydet"
msgid "Save Dashboard"
msgstr "Gösterge Panelini Kaydet"
#. js-lingui-id: BZVCCj
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
msgid "Save Page Layout"
msgstr ""
#. js-lingui-id: veLq3R
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Scaffold a new app, then use the CLI to develop, publish, and distribute"
@@ -11647,6 +11656,8 @@ msgstr ""
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Search"
@@ -11685,7 +11696,7 @@ msgid "Search a field..."
msgstr "Bir alan ara..."
#. js-lingui-id: ITQFzL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Search a folder..."
msgstr ""
@@ -11706,8 +11717,8 @@ msgid "Search a skill..."
msgstr ""
#. js-lingui-id: hVJ1MP
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
msgid "Search a system object..."
msgstr ""
@@ -11722,7 +11733,7 @@ msgid "Search a type"
msgstr "Bir tür arayın"
#. js-lingui-id: +MhOVB
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Search a view..."
msgstr ""
@@ -11759,8 +11770,8 @@ msgstr "Bir nesne ara"
#. js-lingui-id: BoNHR0
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "Search an object..."
msgstr ""
@@ -11784,7 +11795,7 @@ msgid "Search colors"
msgstr "Renkleri ara"
#. js-lingui-id: AR3FV/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
msgid "Search colors..."
msgstr ""
@@ -11853,7 +11864,7 @@ msgid "Search records"
msgstr "Kayıtları ara"
#. js-lingui-id: rRklUH
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Search records..."
msgstr ""
@@ -12079,7 +12090,7 @@ msgid "Select a field to display in this widget"
msgstr "Bu widget'ta görüntülenecek bir alan seçin"
#. js-lingui-id: dtAvBz
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
msgid "Select a navigation item to edit"
msgstr ""
@@ -12641,6 +12652,11 @@ msgstr "Bazı"
msgid "Some folders"
msgstr "Bazı klasörler"
#. js-lingui-id: hqUWge
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
msgid "Some layout changes could not be saved"
msgstr ""
#. js-lingui-id: nwtY4N
#: src/pages/auth/Authorize.tsx
msgid "Something went wrong"
@@ -13099,10 +13115,10 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -13481,13 +13497,14 @@ msgstr "Bu işlem geri alınamaz. Bu, üyeliğinizi bu çalışma alanından kal
msgid "This action cannot be undone. This will permanently reset your two factor authentication method. <0/> Please type in your email to confirm."
msgstr "Bu işlem geri alınamaz. Bu, iki faktörlü kimlik doğrulama yöntemini kalıcı olarak sıfırlayacaktır. <0/> Onaylamak için lütfen e-postanızı yazın."
#. js-lingui-id: lAHIY2
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "This action will delete this folder and all {navigationMenuItemCount} navigation menu items inside. Do you want to continue?"
#. js-lingui-id: XxxrMw
#. placeholder {2}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "This action will delete this folder and all {2} navigation menu items inside. Do you want to continue?"
msgstr ""
#. js-lingui-id: gSO0+U
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
msgstr ""
@@ -14014,7 +14031,7 @@ msgid "Type anything..."
msgstr "Bir şeyler yazın..."
#. js-lingui-id: UhqKcC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Type to search records"
msgstr ""
@@ -14603,10 +14620,10 @@ msgid "view"
msgstr "görünüm"
#. js-lingui-id: jpctdh
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "View"
msgstr "Görünüm"
@@ -14705,6 +14722,7 @@ msgstr ""
#. js-lingui-id: ecVcAx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "View Previous AI Chats"
msgstr "Önceki AI Sohbetlerini Görüntüle"
@@ -14740,7 +14758,7 @@ msgid "View workspace activity logs"
msgstr ""
#. js-lingui-id: 1I6UoR
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr ""
@@ -15034,6 +15052,7 @@ msgstr ""
#. js-lingui-id: 2jzcC5
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
msgid "Workflow duplicated successfully"
msgstr ""
@@ -15097,7 +15116,7 @@ msgstr "İş Akışları"
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownVisibilityContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
msgid "Workspace"
msgstr "İş Alanı"
+121 -102
View File
@@ -946,23 +946,23 @@ msgid "Add Item"
msgstr "Додати елемент"
#. js-lingui-id: cI2ZVO
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
msgid "Add item to folder"
msgstr ""
#. js-lingui-id: gaZXkv
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItemsFolder.tsx
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Add menu item"
msgstr ""
#. js-lingui-id: JbORSt
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Add menu item after"
msgstr ""
#. js-lingui-id: DKlI/M
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Add menu item before"
msgstr ""
@@ -1423,7 +1423,7 @@ msgid "All Objects"
msgstr "Всі об'єкти"
#. js-lingui-id: RoFE84
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
msgid "All objects are already in the sidebar"
msgstr ""
@@ -1438,7 +1438,7 @@ msgid "All set!"
msgstr "Готово!"
#. js-lingui-id: CHvT6e
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
@@ -1539,7 +1539,7 @@ msgid "alphabetical"
msgstr ""
#. js-lingui-id: eO7HSp
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectMenuItem.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectMenuItem.tsx
msgid "Already in navbar"
msgstr ""
@@ -1897,21 +1897,25 @@ msgstr ""
#. js-lingui-id: OJOR8q
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Are you sure you want to destroy these records? They won't be recoverable anymore."
msgstr "Ви впевнені, що хочете знищити ці записи? Їх не можна буде відновити."
#. js-lingui-id: UK5TO6
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
msgid "Are you sure you want to destroy this record? It cannot be recovered anymore."
msgstr "Ви впевнені, що хочете знищити цей запис? Його не можна буде відновити."
#. js-lingui-id: mcHVC1
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
msgid "Are you sure you want to restore these records?"
msgstr "Ви впевнені, що хочете відновити ці записи?"
#. js-lingui-id: lmgkf0
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
msgid "Are you sure you want to restore this record?"
msgstr "Ви впевнені, що хочете відновити цей запис?"
@@ -1952,6 +1956,7 @@ msgstr "За зростанням"
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Ask AI"
msgstr "Запитати AI"
@@ -2559,13 +2564,11 @@ msgstr "Не можете сканувати? Скопіюйте"
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Cancel"
msgstr "Скасувати"
#. js-lingui-id: HYLdMN
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Cancel Edition"
msgstr "Скасувати редакцію"
@@ -2966,7 +2969,7 @@ msgid "Collapse folder"
msgstr "Згорнути папку"
#. js-lingui-id: jZlrte
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
msgid "Color"
msgstr ""
@@ -3896,10 +3899,9 @@ msgid "Customization"
msgstr "Налаштування"
#. js-lingui-id: srRMnJ
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditObjectViewBase.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
msgid "Customize"
msgstr ""
@@ -3970,6 +3972,7 @@ msgstr "Темна"
#. js-lingui-id: ogQzcZ
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Dashboard duplicated successfully"
msgstr "Інформаційну панель успішно продубльовано"
@@ -3983,7 +3986,7 @@ msgstr "Інформаційні панелі"
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Дані"
@@ -4305,7 +4308,7 @@ msgstr "видалити"
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: 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/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
@@ -4392,7 +4395,7 @@ msgid "Delete field"
msgstr "Видалити поле"
#. js-lingui-id: 97QUV6
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Delete Folder"
msgstr "Видалити папку"
@@ -4593,6 +4596,7 @@ msgstr "Знищити {objectLabelPlural}"
#. js-lingui-id: kG5yO6
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Destroy Records"
msgstr "Знищити записи"
@@ -4932,9 +4936,9 @@ msgid "Edit Fields"
msgstr "Редагувати поля"
#. js-lingui-id: uPHscS
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Edit folder"
msgstr ""
@@ -4955,9 +4959,9 @@ msgid "Edit Layout"
msgstr ""
#. js-lingui-id: /PoNoq
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Edit link"
msgstr ""
@@ -6120,11 +6124,13 @@ msgstr ""
#. js-lingui-id: NUmmdc
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Failed to duplicate dashboard"
msgstr "Не вдалося продублювати інформаційну панель"
#. js-lingui-id: WYXxQF
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
msgid "Failed to duplicate workflow"
msgstr ""
@@ -6188,9 +6194,9 @@ msgstr "Не вдалося видалити зображення"
msgid "Failed to retry jobs. Please try again later."
msgstr "Не вдалося повторити завдання. Будь ласка, спробуйте пізніше."
#. js-lingui-id: fuRtgB
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Failed to save navigation layout"
#. js-lingui-id: farFvy
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
msgid "Failed to save layout customization"
msgstr ""
#. js-lingui-id: y3HIOa
@@ -6308,7 +6314,7 @@ msgid "Fast Model"
msgstr ""
#. js-lingui-id: X9kySA
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItemFolders.tsx
#: src/modules/navigation-menu-item/display/sections/favorites/components/FavoritesSection.tsx
msgid "Favorites"
msgstr "Обрані"
@@ -6580,8 +6586,8 @@ msgid "Flow"
msgstr "Потік"
#. js-lingui-id: kNqMMd
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Folder"
msgstr ""
@@ -6591,8 +6597,8 @@ msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Folders"
msgstr "Папки"
@@ -8022,7 +8028,7 @@ msgid "Layout"
msgstr "Макет"
#. js-lingui-id: W4nIBb
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
#: src/modules/layout-customization/components/LayoutCustomizationBar.tsx
msgid "Layout customization"
msgstr ""
@@ -8137,8 +8143,8 @@ msgid "Line Chart"
msgstr "Лінійна діаграма"
#. js-lingui-id: yzF66j
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Link"
msgstr ""
@@ -8154,12 +8160,12 @@ msgid "Link copied to clipboard"
msgstr "Посилання скопійовано в буфер обміну"
#. js-lingui-id: vH3ZQY
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Link label"
msgstr ""
@@ -8798,7 +8804,7 @@ msgid "Most installed version"
msgstr ""
#. js-lingui-id: 3Ib6FN
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move down"
msgstr ""
@@ -8822,12 +8828,12 @@ msgid "Move to a folder"
msgstr ""
#. js-lingui-id: JCPOml
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move to folder"
msgstr ""
#. js-lingui-id: QyioBP
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move up"
msgstr ""
@@ -9073,9 +9079,9 @@ msgid "New Field"
msgstr "Нове поле"
#. js-lingui-id: 96G6Re
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "New folder"
msgstr ""
@@ -9115,11 +9121,11 @@ msgid "New record"
msgstr "Новий запис"
#. js-lingui-id: x6Ckh1
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/hooks/useOpenAddItemToFolderPage.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useNavigationMenuItemEditOrganizeActions.ts
#: src/modules/navigation-menu-item/edit/hooks/useOpenAddItemToFolderPage.ts
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
msgid "New sidebar item"
msgstr ""
@@ -9306,7 +9312,7 @@ msgid "No currency"
msgstr "Без валюти"
#. js-lingui-id: DKVJFE
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "No custom views available"
msgstr ""
@@ -9418,12 +9424,12 @@ msgid "No Files"
msgstr "Нема файлів"
#. js-lingui-id: pYblOw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folder"
msgstr "Немає папки"
#. js-lingui-id: 6XMhqL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folders available"
msgstr ""
@@ -9510,7 +9516,7 @@ msgid "No object found"
msgstr ""
#. js-lingui-id: YFHO2u
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "No objects with views found"
msgstr ""
@@ -9587,14 +9593,14 @@ msgid "No Results"
msgstr "Немає результатів"
#. js-lingui-id: AxPAXW
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/side-panel/components/SidePanelList.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No results found"
msgstr "Результатів не знайдено"
@@ -9619,12 +9625,12 @@ msgid "No Select field"
msgstr "Немає поля вибору"
#. js-lingui-id: RQ6tfU
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
msgid "No system objects available"
msgstr ""
#. js-lingui-id: Yf4rVG
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
msgid "No system objects with views found"
msgstr ""
@@ -9832,9 +9838,9 @@ msgstr "об'єкт"
#: 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/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Object"
msgstr "Об'єкт"
@@ -9894,9 +9900,9 @@ msgstr ""
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "Objects"
msgstr "Об'єкти"
@@ -10076,7 +10082,7 @@ msgid "Open side panel"
msgstr ""
#. js-lingui-id: OV5wZZ
#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx
#: src/modules/navigation-menu-item/display/sections/components/NavigationDrawerOpenedSection.tsx
msgid "Opened"
msgstr "Відкрився"
@@ -10148,7 +10154,7 @@ msgid "Organization plan"
msgstr ""
#. js-lingui-id: nV6twc
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Organize"
msgstr ""
@@ -10158,9 +10164,9 @@ msgstr ""
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: 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
msgid "Other"
msgstr "Інший"
@@ -10234,7 +10240,7 @@ msgid "Overview"
msgstr "Огляд"
#. js-lingui-id: LtI9AS
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOwnerSection.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOwnerSection.tsx
msgid "Owner"
msgstr ""
@@ -10427,6 +10433,8 @@ msgstr "Назавжди знищити запис"
#. js-lingui-id: 35dBYb
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
msgid "Permanently Destroy Record"
msgstr "Назавжди знищити записи"
@@ -10437,6 +10445,7 @@ msgstr "Назавжди знищити записи"
#. js-lingui-id: YyP8vD
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Permanently Destroy Records"
msgstr "Назавжди знищити записи"
@@ -10958,7 +10967,7 @@ msgstr "запис"
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Record"
msgstr "Запис"
@@ -11134,14 +11143,16 @@ msgstr "Віддалений"
msgid "Remove"
msgstr "Видалити"
#. js-lingui-id: 0Urj9q
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "Remove {navigationMenuItemCount} navigation menu item?"
#. js-lingui-id: XABoh4
#. placeholder {0}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Remove {0} navigation menu items?"
msgstr ""
#. js-lingui-id: Ef5jwi
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "Remove {navigationMenuItemCount} navigation menu items?"
#. js-lingui-id: p/lN7X
#. placeholder {1}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Remove {1} navigation menu item?"
msgstr ""
#. js-lingui-id: 1O32oy
@@ -11171,7 +11182,7 @@ msgid "Remove from favorites"
msgstr "Вилучити з обраного"
#. js-lingui-id: 9VZ6f0
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Remove from sidebar"
msgstr ""
@@ -11218,7 +11229,7 @@ msgstr "Вилучити змінну"
#. js-lingui-id: 2wxgft
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/activities/files/components/AttachmentDropdown.tsx
msgid "Rename"
msgstr "Перейменувати"
@@ -11359,6 +11370,8 @@ msgstr "Відновити запис"
#. js-lingui-id: NzMNOA
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
msgid "Restore Record"
msgstr "Відновити запис"
@@ -11370,6 +11383,8 @@ msgstr "Відновити записи"
#. js-lingui-id: Xqj0Cb
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
msgid "Restore Records"
msgstr "Відновити записи"
@@ -11385,7 +11400,7 @@ msgstr "Результат"
#. js-lingui-id: kx0s+n
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Results"
msgstr "Результати"
@@ -11583,7 +11598,6 @@ msgstr "Субота"
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
#: src/modules/settings/components/SaveAndCancelButtons/SaveButton.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Save"
msgstr "Зберегти"
@@ -11598,11 +11612,6 @@ msgstr "Зберегти як новий перегляд"
msgid "Save Dashboard"
msgstr "Зберегти інформаційну панель"
#. js-lingui-id: BZVCCj
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
msgid "Save Page Layout"
msgstr ""
#. js-lingui-id: veLq3R
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Scaffold a new app, then use the CLI to develop, publish, and distribute"
@@ -11647,6 +11656,8 @@ msgstr ""
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Search"
@@ -11685,7 +11696,7 @@ msgid "Search a field..."
msgstr "Пошук поля..."
#. js-lingui-id: ITQFzL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Search a folder..."
msgstr ""
@@ -11706,8 +11717,8 @@ msgid "Search a skill..."
msgstr ""
#. js-lingui-id: hVJ1MP
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
msgid "Search a system object..."
msgstr ""
@@ -11722,7 +11733,7 @@ msgid "Search a type"
msgstr "Пошук типу"
#. js-lingui-id: +MhOVB
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Search a view..."
msgstr ""
@@ -11759,8 +11770,8 @@ msgstr "Пошук об’єкта"
#. js-lingui-id: BoNHR0
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "Search an object..."
msgstr ""
@@ -11784,7 +11795,7 @@ msgid "Search colors"
msgstr "Пошук кольорів"
#. js-lingui-id: AR3FV/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
msgid "Search colors..."
msgstr ""
@@ -11853,7 +11864,7 @@ msgid "Search records"
msgstr "Пошук записів"
#. js-lingui-id: rRklUH
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Search records..."
msgstr ""
@@ -12079,7 +12090,7 @@ msgid "Select a field to display in this widget"
msgstr "Виберіть поле для відображення в цьому віджеті"
#. js-lingui-id: dtAvBz
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
msgid "Select a navigation item to edit"
msgstr ""
@@ -12641,6 +12652,11 @@ msgstr "Деякі"
msgid "Some folders"
msgstr "Деякі папки"
#. js-lingui-id: hqUWge
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
msgid "Some layout changes could not be saved"
msgstr ""
#. js-lingui-id: nwtY4N
#: src/pages/auth/Authorize.tsx
msgid "Something went wrong"
@@ -13099,10 +13115,10 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -13483,13 +13499,14 @@ msgstr "Цю дію не можна відмінити. Це назавжди в
msgid "This action cannot be undone. This will permanently reset your two factor authentication method. <0/> Please type in your email to confirm."
msgstr "Цю дію не можна скасувати. Це назавжди скине ваш метод двофакторної автентифікації. <0/> Будь ласка, введіть свою електронну адресу для підтвердження."
#. js-lingui-id: lAHIY2
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "This action will delete this folder and all {navigationMenuItemCount} navigation menu items inside. Do you want to continue?"
#. js-lingui-id: XxxrMw
#. placeholder {2}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "This action will delete this folder and all {2} navigation menu items inside. Do you want to continue?"
msgstr ""
#. js-lingui-id: gSO0+U
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
msgstr ""
@@ -14016,7 +14033,7 @@ msgid "Type anything..."
msgstr "Наберіть щось..."
#. js-lingui-id: UhqKcC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Type to search records"
msgstr ""
@@ -14605,10 +14622,10 @@ msgid "view"
msgstr "перегляд"
#. js-lingui-id: jpctdh
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "View"
msgstr "Перегляд"
@@ -14707,6 +14724,7 @@ msgstr ""
#. js-lingui-id: ecVcAx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "View Previous AI Chats"
msgstr "Переглянути попередні чати з ШІ"
@@ -14742,7 +14760,7 @@ msgid "View workspace activity logs"
msgstr ""
#. js-lingui-id: 1I6UoR
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr ""
@@ -15036,6 +15054,7 @@ msgstr ""
#. js-lingui-id: 2jzcC5
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
msgid "Workflow duplicated successfully"
msgstr ""
@@ -15099,7 +15118,7 @@ msgstr "Робочі процеси"
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownVisibilityContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
msgid "Workspace"
msgstr "Працевлаштування"
+121 -102
View File
@@ -946,23 +946,23 @@ msgid "Add Item"
msgstr "Thêm mục"
#. js-lingui-id: cI2ZVO
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
msgid "Add item to folder"
msgstr ""
#. js-lingui-id: gaZXkv
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItemsFolder.tsx
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Add menu item"
msgstr ""
#. js-lingui-id: JbORSt
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Add menu item after"
msgstr ""
#. js-lingui-id: DKlI/M
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Add menu item before"
msgstr ""
@@ -1423,7 +1423,7 @@ msgid "All Objects"
msgstr "Tất cả đối tượng"
#. js-lingui-id: RoFE84
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
msgid "All objects are already in the sidebar"
msgstr ""
@@ -1438,7 +1438,7 @@ msgid "All set!"
msgstr "Mọi thứ đã sẵn sàng!"
#. js-lingui-id: CHvT6e
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
@@ -1539,7 +1539,7 @@ msgid "alphabetical"
msgstr ""
#. js-lingui-id: eO7HSp
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectMenuItem.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectMenuItem.tsx
msgid "Already in navbar"
msgstr ""
@@ -1897,21 +1897,25 @@ msgstr ""
#. js-lingui-id: OJOR8q
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Are you sure you want to destroy these records? They won't be recoverable anymore."
msgstr "Bạn có chắc chắn muốn hủy bỏ các bản ghi này không? Chúng sẽ không thể khôi phục được nữa."
#. js-lingui-id: UK5TO6
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
msgid "Are you sure you want to destroy this record? It cannot be recovered anymore."
msgstr "Bạn có chắc chắn muốn hủy bỏ bản ghi này không? Nó sẽ không thể khôi phục được nữa."
#. js-lingui-id: mcHVC1
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
msgid "Are you sure you want to restore these records?"
msgstr "Bạn có chắc chắn muốn khôi phục các bản ghi này không?"
#. js-lingui-id: lmgkf0
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
msgid "Are you sure you want to restore this record?"
msgstr "Bạn có chắc chắn muốn khôi phục bản ghi này không?"
@@ -1952,6 +1956,7 @@ msgstr "Tăng dần"
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Ask AI"
msgstr "Yêu cầu AI"
@@ -2559,13 +2564,11 @@ msgstr "Không thể quét? Sao chép"
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Cancel"
msgstr "Hủy bỏ"
#. js-lingui-id: HYLdMN
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Cancel Edition"
msgstr "Hủy chỉnh sửa"
@@ -2966,7 +2969,7 @@ msgid "Collapse folder"
msgstr "Thu gọn thư mục"
#. js-lingui-id: jZlrte
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
msgid "Color"
msgstr ""
@@ -3896,10 +3899,9 @@ msgid "Customization"
msgstr "Tùy chỉnh"
#. js-lingui-id: srRMnJ
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditObjectViewBase.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
msgid "Customize"
msgstr ""
@@ -3970,6 +3972,7 @@ msgstr "Giao diện tối"
#. js-lingui-id: ogQzcZ
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Dashboard duplicated successfully"
msgstr "Nhân bản thành công bảng điều khiển"
@@ -3983,7 +3986,7 @@ msgstr "Bảng điều khiển"
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Dữ liệu"
@@ -4305,7 +4308,7 @@ msgstr "xóa"
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: 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/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
@@ -4392,7 +4395,7 @@ msgid "Delete field"
msgstr "Xóa trường"
#. js-lingui-id: 97QUV6
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Delete Folder"
msgstr "Xóa thư mục"
@@ -4593,6 +4596,7 @@ msgstr "Hủy {objectLabelPlural}"
#. js-lingui-id: kG5yO6
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Destroy Records"
msgstr "Hủy bản ghi"
@@ -4932,9 +4936,9 @@ msgid "Edit Fields"
msgstr "Chỉnh sửa trường"
#. js-lingui-id: uPHscS
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Edit folder"
msgstr ""
@@ -4955,9 +4959,9 @@ msgid "Edit Layout"
msgstr ""
#. js-lingui-id: /PoNoq
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Edit link"
msgstr ""
@@ -6120,11 +6124,13 @@ msgstr ""
#. js-lingui-id: NUmmdc
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Failed to duplicate dashboard"
msgstr "Không thể nhân bản bảng điều khiển"
#. js-lingui-id: WYXxQF
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
msgid "Failed to duplicate workflow"
msgstr ""
@@ -6188,9 +6194,9 @@ msgstr "Không thể xóa ảnh"
msgid "Failed to retry jobs. Please try again later."
msgstr "Không thể thử lại các công việc. Vui lòng thử lại sau."
#. js-lingui-id: fuRtgB
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Failed to save navigation layout"
#. js-lingui-id: farFvy
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
msgid "Failed to save layout customization"
msgstr ""
#. js-lingui-id: y3HIOa
@@ -6308,7 +6314,7 @@ msgid "Fast Model"
msgstr ""
#. js-lingui-id: X9kySA
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItemFolders.tsx
#: src/modules/navigation-menu-item/display/sections/favorites/components/FavoritesSection.tsx
msgid "Favorites"
msgstr "\"Ưa thích\""
@@ -6580,8 +6586,8 @@ msgid "Flow"
msgstr "Dòng chảy"
#. js-lingui-id: kNqMMd
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Folder"
msgstr ""
@@ -6591,8 +6597,8 @@ msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Folders"
msgstr "Thư mục"
@@ -8022,7 +8028,7 @@ msgid "Layout"
msgstr "Bố cục"
#. js-lingui-id: W4nIBb
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
#: src/modules/layout-customization/components/LayoutCustomizationBar.tsx
msgid "Layout customization"
msgstr ""
@@ -8137,8 +8143,8 @@ msgid "Line Chart"
msgstr "Biểu đồ đường"
#. js-lingui-id: yzF66j
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Link"
msgstr ""
@@ -8154,12 +8160,12 @@ msgid "Link copied to clipboard"
msgstr "Đã sao chép đường dẫn vào bảng tạm"
#. js-lingui-id: vH3ZQY
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Link label"
msgstr ""
@@ -8798,7 +8804,7 @@ msgid "Most installed version"
msgstr ""
#. js-lingui-id: 3Ib6FN
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move down"
msgstr ""
@@ -8822,12 +8828,12 @@ msgid "Move to a folder"
msgstr ""
#. js-lingui-id: JCPOml
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move to folder"
msgstr ""
#. js-lingui-id: QyioBP
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move up"
msgstr ""
@@ -9073,9 +9079,9 @@ msgid "New Field"
msgstr "Trường mới"
#. js-lingui-id: 96G6Re
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "New folder"
msgstr ""
@@ -9115,11 +9121,11 @@ msgid "New record"
msgstr "Bản ghi mới"
#. js-lingui-id: x6Ckh1
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/hooks/useOpenAddItemToFolderPage.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useNavigationMenuItemEditOrganizeActions.ts
#: src/modules/navigation-menu-item/edit/hooks/useOpenAddItemToFolderPage.ts
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
msgid "New sidebar item"
msgstr ""
@@ -9306,7 +9312,7 @@ msgid "No currency"
msgstr "Không có tiền tệ"
#. js-lingui-id: DKVJFE
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "No custom views available"
msgstr ""
@@ -9418,12 +9424,12 @@ msgid "No Files"
msgstr "Không có tệp"
#. js-lingui-id: pYblOw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folder"
msgstr "Không có thư mục"
#. js-lingui-id: 6XMhqL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folders available"
msgstr ""
@@ -9510,7 +9516,7 @@ msgid "No object found"
msgstr ""
#. js-lingui-id: YFHO2u
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "No objects with views found"
msgstr ""
@@ -9587,14 +9593,14 @@ msgid "No Results"
msgstr "Không có kết quả"
#. js-lingui-id: AxPAXW
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/side-panel/components/SidePanelList.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No results found"
msgstr "Không tìm thấy kết quả"
@@ -9619,12 +9625,12 @@ msgid "No Select field"
msgstr "Không có trường chọn"
#. js-lingui-id: RQ6tfU
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
msgid "No system objects available"
msgstr ""
#. js-lingui-id: Yf4rVG
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
msgid "No system objects with views found"
msgstr ""
@@ -9832,9 +9838,9 @@ msgstr "đối tượng"
#: 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/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Object"
msgstr "Đối tượng"
@@ -9894,9 +9900,9 @@ msgstr ""
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "Objects"
msgstr "Các đối tượng"
@@ -10076,7 +10082,7 @@ msgid "Open side panel"
msgstr ""
#. js-lingui-id: OV5wZZ
#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx
#: src/modules/navigation-menu-item/display/sections/components/NavigationDrawerOpenedSection.tsx
msgid "Opened"
msgstr "Đã mở"
@@ -10148,7 +10154,7 @@ msgid "Organization plan"
msgstr ""
#. js-lingui-id: nV6twc
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Organize"
msgstr ""
@@ -10158,9 +10164,9 @@ msgstr ""
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: 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
msgid "Other"
msgstr "Khác"
@@ -10234,7 +10240,7 @@ msgid "Overview"
msgstr "Tổng quan"
#. js-lingui-id: LtI9AS
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOwnerSection.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOwnerSection.tsx
msgid "Owner"
msgstr ""
@@ -10427,6 +10433,8 @@ msgstr "Hủy bỏ vĩnh viễn bản ghi"
#. js-lingui-id: 35dBYb
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
msgid "Permanently Destroy Record"
msgstr "Hủy bản ghi vĩnh viễn"
@@ -10437,6 +10445,7 @@ msgstr "Hủy bỏ vĩnh viễn các bản ghi"
#. js-lingui-id: YyP8vD
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Permanently Destroy Records"
msgstr "Hủy bỏ vĩnh viễn các bản ghi"
@@ -10958,7 +10967,7 @@ msgstr "bản ghi"
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Record"
msgstr "Ghi lại"
@@ -11134,14 +11143,16 @@ msgstr "Từ xa"
msgid "Remove"
msgstr "Loại bỏ"
#. js-lingui-id: 0Urj9q
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "Remove {navigationMenuItemCount} navigation menu item?"
#. js-lingui-id: XABoh4
#. placeholder {0}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Remove {0} navigation menu items?"
msgstr ""
#. js-lingui-id: Ef5jwi
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "Remove {navigationMenuItemCount} navigation menu items?"
#. js-lingui-id: p/lN7X
#. placeholder {1}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Remove {1} navigation menu item?"
msgstr ""
#. js-lingui-id: 1O32oy
@@ -11171,7 +11182,7 @@ msgid "Remove from favorites"
msgstr "Loại bỏ khỏi mục yêu thích"
#. js-lingui-id: 9VZ6f0
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Remove from sidebar"
msgstr ""
@@ -11218,7 +11229,7 @@ msgstr "Xóa biến"
#. js-lingui-id: 2wxgft
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/activities/files/components/AttachmentDropdown.tsx
msgid "Rename"
msgstr "Đổi tên"
@@ -11359,6 +11370,8 @@ msgstr "Khôi phục bản ghi"
#. js-lingui-id: NzMNOA
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
msgid "Restore Record"
msgstr "Khôi phục bản ghi"
@@ -11370,6 +11383,8 @@ msgstr "Khôi phục bản ghi"
#. js-lingui-id: Xqj0Cb
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
msgid "Restore Records"
msgstr "Khôi phục bản ghi"
@@ -11385,7 +11400,7 @@ msgstr "Kết quả"
#. js-lingui-id: kx0s+n
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Results"
msgstr "Kết quả"
@@ -11583,7 +11598,6 @@ msgstr "Thứ Bảy"
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
#: src/modules/settings/components/SaveAndCancelButtons/SaveButton.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Save"
msgstr "Lưu"
@@ -11598,11 +11612,6 @@ msgstr "Lưu dưới dạng chế độ xem mới"
msgid "Save Dashboard"
msgstr "Lưu bảng điều khiển"
#. js-lingui-id: BZVCCj
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
msgid "Save Page Layout"
msgstr ""
#. js-lingui-id: veLq3R
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Scaffold a new app, then use the CLI to develop, publish, and distribute"
@@ -11647,6 +11656,8 @@ msgstr ""
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Search"
@@ -11685,7 +11696,7 @@ msgid "Search a field..."
msgstr "Tìm một trường..."
#. js-lingui-id: ITQFzL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Search a folder..."
msgstr ""
@@ -11706,8 +11717,8 @@ msgid "Search a skill..."
msgstr ""
#. js-lingui-id: hVJ1MP
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
msgid "Search a system object..."
msgstr ""
@@ -11722,7 +11733,7 @@ msgid "Search a type"
msgstr "Tìm kiếm một loại"
#. js-lingui-id: +MhOVB
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Search a view..."
msgstr ""
@@ -11759,8 +11770,8 @@ msgstr "Tìm kiếm một đối tượng"
#. js-lingui-id: BoNHR0
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "Search an object..."
msgstr ""
@@ -11784,7 +11795,7 @@ msgid "Search colors"
msgstr "Tìm kiếm màu sắc"
#. js-lingui-id: AR3FV/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
msgid "Search colors..."
msgstr ""
@@ -11853,7 +11864,7 @@ msgid "Search records"
msgstr "Tìm kiếm hồ sơ"
#. js-lingui-id: rRklUH
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Search records..."
msgstr ""
@@ -12079,7 +12090,7 @@ msgid "Select a field to display in this widget"
msgstr "Chọn một trường để hiển thị trong tiện ích này"
#. js-lingui-id: dtAvBz
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
msgid "Select a navigation item to edit"
msgstr ""
@@ -12641,6 +12652,11 @@ msgstr "Một số"
msgid "Some folders"
msgstr "Một số thư mục"
#. js-lingui-id: hqUWge
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
msgid "Some layout changes could not be saved"
msgstr ""
#. js-lingui-id: nwtY4N
#: src/pages/auth/Authorize.tsx
msgid "Something went wrong"
@@ -13099,10 +13115,10 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -13481,13 +13497,14 @@ msgstr "Hành động này không thể được hoàn tác. Điều này sẽ x
msgid "This action cannot be undone. This will permanently reset your two factor authentication method. <0/> Please type in your email to confirm."
msgstr "Hành động này không thể hoàn tác. Điều này sẽ đặt lại vĩnh viễn phương thức xác thực hai yếu tố của bạn. <0/> Vui lòng nhập email của bạn để xác nhận."
#. js-lingui-id: lAHIY2
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "This action will delete this folder and all {navigationMenuItemCount} navigation menu items inside. Do you want to continue?"
#. js-lingui-id: XxxrMw
#. placeholder {2}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "This action will delete this folder and all {2} navigation menu items inside. Do you want to continue?"
msgstr ""
#. js-lingui-id: gSO0+U
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
msgstr ""
@@ -14014,7 +14031,7 @@ msgid "Type anything..."
msgstr "Gõ bất cứ thứ gì..."
#. js-lingui-id: UhqKcC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Type to search records"
msgstr ""
@@ -14603,10 +14620,10 @@ msgid "view"
msgstr "xem"
#. js-lingui-id: jpctdh
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "View"
msgstr "Xem"
@@ -14705,6 +14722,7 @@ msgstr ""
#. js-lingui-id: ecVcAx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "View Previous AI Chats"
msgstr "Xem các cuộc trò chuyện AI trước đây"
@@ -14740,7 +14758,7 @@ msgid "View workspace activity logs"
msgstr ""
#. js-lingui-id: 1I6UoR
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr ""
@@ -15034,6 +15052,7 @@ msgstr ""
#. js-lingui-id: 2jzcC5
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
msgid "Workflow duplicated successfully"
msgstr ""
@@ -15097,7 +15116,7 @@ msgstr "Quy Trình Làm Việc"
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownVisibilityContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
msgid "Workspace"
msgstr "Workspace"
+121 -102
View File
@@ -946,23 +946,23 @@ msgid "Add Item"
msgstr "添加项目"
#. js-lingui-id: cI2ZVO
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
msgid "Add item to folder"
msgstr ""
#. js-lingui-id: gaZXkv
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItemsFolder.tsx
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Add menu item"
msgstr ""
#. js-lingui-id: JbORSt
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Add menu item after"
msgstr ""
#. js-lingui-id: DKlI/M
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Add menu item before"
msgstr ""
@@ -1423,7 +1423,7 @@ msgid "All Objects"
msgstr "所有对象"
#. js-lingui-id: RoFE84
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
msgid "All objects are already in the sidebar"
msgstr ""
@@ -1438,7 +1438,7 @@ msgid "All set!"
msgstr "一切就绪!"
#. js-lingui-id: CHvT6e
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
@@ -1539,7 +1539,7 @@ msgid "alphabetical"
msgstr ""
#. js-lingui-id: eO7HSp
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectMenuItem.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectMenuItem.tsx
msgid "Already in navbar"
msgstr ""
@@ -1897,21 +1897,25 @@ msgstr ""
#. js-lingui-id: OJOR8q
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Are you sure you want to destroy these records? They won't be recoverable anymore."
msgstr "您确定要销毁这些记录吗?它们将无法恢复。"
#. js-lingui-id: UK5TO6
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
msgid "Are you sure you want to destroy this record? It cannot be recovered anymore."
msgstr "您确定要销毁此记录吗?它将无法恢复。"
#. js-lingui-id: mcHVC1
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
msgid "Are you sure you want to restore these records?"
msgstr "您确定要恢复这些记录吗?"
#. js-lingui-id: lmgkf0
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
msgid "Are you sure you want to restore this record?"
msgstr "您确定要恢复此记录吗?"
@@ -1952,6 +1956,7 @@ msgstr "升序"
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Ask AI"
msgstr "询问 AI"
@@ -2559,13 +2564,11 @@ msgstr "无法扫描?复制"
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Cancel"
msgstr "取消"
#. js-lingui-id: HYLdMN
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Cancel Edition"
msgstr "取消版本"
@@ -2966,7 +2969,7 @@ msgid "Collapse folder"
msgstr "折叠文件夹"
#. js-lingui-id: jZlrte
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
msgid "Color"
msgstr ""
@@ -3896,10 +3899,9 @@ msgid "Customization"
msgstr "自定义"
#. js-lingui-id: srRMnJ
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditObjectViewBase.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
msgid "Customize"
msgstr ""
@@ -3970,6 +3972,7 @@ msgstr "深色"
#. js-lingui-id: ogQzcZ
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Dashboard duplicated successfully"
msgstr "仪表板复制成功"
@@ -3983,7 +3986,7 @@ msgstr "仪表板"
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "数据"
@@ -4305,7 +4308,7 @@ msgstr "删除"
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: 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/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
@@ -4392,7 +4395,7 @@ msgid "Delete field"
msgstr "删除字段"
#. js-lingui-id: 97QUV6
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Delete Folder"
msgstr "删除文件夹"
@@ -4593,6 +4596,7 @@ msgstr "销毁 {objectLabelPlural}"
#. js-lingui-id: kG5yO6
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Destroy Records"
msgstr "销毁记录"
@@ -4932,9 +4936,9 @@ msgid "Edit Fields"
msgstr "编辑字段"
#. js-lingui-id: uPHscS
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Edit folder"
msgstr ""
@@ -4955,9 +4959,9 @@ msgid "Edit Layout"
msgstr ""
#. js-lingui-id: /PoNoq
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Edit link"
msgstr ""
@@ -6120,11 +6124,13 @@ msgstr ""
#. js-lingui-id: NUmmdc
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Failed to duplicate dashboard"
msgstr "复制仪表板失败"
#. js-lingui-id: WYXxQF
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
msgid "Failed to duplicate workflow"
msgstr ""
@@ -6188,9 +6194,9 @@ msgstr "移除图片失败"
msgid "Failed to retry jobs. Please try again later."
msgstr "重试任务失败。请稍后再试。"
#. js-lingui-id: fuRtgB
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Failed to save navigation layout"
#. js-lingui-id: farFvy
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
msgid "Failed to save layout customization"
msgstr ""
#. js-lingui-id: y3HIOa
@@ -6308,7 +6314,7 @@ msgid "Fast Model"
msgstr ""
#. js-lingui-id: X9kySA
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItemFolders.tsx
#: src/modules/navigation-menu-item/display/sections/favorites/components/FavoritesSection.tsx
msgid "Favorites"
msgstr "收藏夹"
@@ -6580,8 +6586,8 @@ msgid "Flow"
msgstr "流程"
#. js-lingui-id: kNqMMd
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Folder"
msgstr ""
@@ -6591,8 +6597,8 @@ msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Folders"
msgstr "文件夹"
@@ -8022,7 +8028,7 @@ msgid "Layout"
msgstr "布局"
#. js-lingui-id: W4nIBb
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
#: src/modules/layout-customization/components/LayoutCustomizationBar.tsx
msgid "Layout customization"
msgstr ""
@@ -8137,8 +8143,8 @@ msgid "Line Chart"
msgstr "折线图"
#. js-lingui-id: yzF66j
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Link"
msgstr ""
@@ -8154,12 +8160,12 @@ msgid "Link copied to clipboard"
msgstr "链接已复制到剪贴板"
#. js-lingui-id: vH3ZQY
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Link label"
msgstr ""
@@ -8798,7 +8804,7 @@ msgid "Most installed version"
msgstr ""
#. js-lingui-id: 3Ib6FN
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move down"
msgstr ""
@@ -8822,12 +8828,12 @@ msgid "Move to a folder"
msgstr ""
#. js-lingui-id: JCPOml
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move to folder"
msgstr ""
#. js-lingui-id: QyioBP
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move up"
msgstr ""
@@ -9073,9 +9079,9 @@ msgid "New Field"
msgstr "新字段"
#. js-lingui-id: 96G6Re
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "New folder"
msgstr ""
@@ -9115,11 +9121,11 @@ msgid "New record"
msgstr "新记录"
#. js-lingui-id: x6Ckh1
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/hooks/useOpenAddItemToFolderPage.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useNavigationMenuItemEditOrganizeActions.ts
#: src/modules/navigation-menu-item/edit/hooks/useOpenAddItemToFolderPage.ts
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
msgid "New sidebar item"
msgstr ""
@@ -9306,7 +9312,7 @@ msgid "No currency"
msgstr "无货币"
#. js-lingui-id: DKVJFE
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "No custom views available"
msgstr ""
@@ -9418,12 +9424,12 @@ msgid "No Files"
msgstr "无文件"
#. js-lingui-id: pYblOw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folder"
msgstr "无文件夹"
#. js-lingui-id: 6XMhqL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folders available"
msgstr ""
@@ -9510,7 +9516,7 @@ msgid "No object found"
msgstr ""
#. js-lingui-id: YFHO2u
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "No objects with views found"
msgstr ""
@@ -9587,14 +9593,14 @@ msgid "No Results"
msgstr "无结果"
#. js-lingui-id: AxPAXW
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/side-panel/components/SidePanelList.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No results found"
msgstr "未找到结果"
@@ -9619,12 +9625,12 @@ msgid "No Select field"
msgstr "无选择字段"
#. js-lingui-id: RQ6tfU
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
msgid "No system objects available"
msgstr ""
#. js-lingui-id: Yf4rVG
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
msgid "No system objects with views found"
msgstr ""
@@ -9832,9 +9838,9 @@ msgstr "对象"
#: 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/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Object"
msgstr "对象"
@@ -9894,9 +9900,9 @@ msgstr ""
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "Objects"
msgstr "对象"
@@ -10076,7 +10082,7 @@ msgid "Open side panel"
msgstr ""
#. js-lingui-id: OV5wZZ
#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx
#: src/modules/navigation-menu-item/display/sections/components/NavigationDrawerOpenedSection.tsx
msgid "Opened"
msgstr "已打开"
@@ -10148,7 +10154,7 @@ msgid "Organization plan"
msgstr ""
#. js-lingui-id: nV6twc
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Organize"
msgstr ""
@@ -10158,9 +10164,9 @@ msgstr ""
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: 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
msgid "Other"
msgstr "其他"
@@ -10234,7 +10240,7 @@ msgid "Overview"
msgstr "概览"
#. js-lingui-id: LtI9AS
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOwnerSection.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOwnerSection.tsx
msgid "Owner"
msgstr ""
@@ -10427,6 +10433,8 @@ msgstr "永久销毁记录"
#. js-lingui-id: 35dBYb
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
msgid "Permanently Destroy Record"
msgstr "永久销毁记录"
@@ -10437,6 +10445,7 @@ msgstr "永久销毁记录"
#. js-lingui-id: YyP8vD
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Permanently Destroy Records"
msgstr "永久销毁记录"
@@ -10958,7 +10967,7 @@ msgstr "记录"
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Record"
msgstr "记录"
@@ -11134,14 +11143,16 @@ msgstr "远程"
msgid "Remove"
msgstr "移除"
#. js-lingui-id: 0Urj9q
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "Remove {navigationMenuItemCount} navigation menu item?"
#. js-lingui-id: XABoh4
#. placeholder {0}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Remove {0} navigation menu items?"
msgstr ""
#. js-lingui-id: Ef5jwi
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "Remove {navigationMenuItemCount} navigation menu items?"
#. js-lingui-id: p/lN7X
#. placeholder {1}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Remove {1} navigation menu item?"
msgstr ""
#. js-lingui-id: 1O32oy
@@ -11171,7 +11182,7 @@ msgid "Remove from favorites"
msgstr "从收藏中移除"
#. js-lingui-id: 9VZ6f0
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Remove from sidebar"
msgstr ""
@@ -11218,7 +11229,7 @@ msgstr "移除变量"
#. js-lingui-id: 2wxgft
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/activities/files/components/AttachmentDropdown.tsx
msgid "Rename"
msgstr "重命名"
@@ -11359,6 +11370,8 @@ msgstr "恢复记录"
#. js-lingui-id: NzMNOA
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
msgid "Restore Record"
msgstr "恢复记录"
@@ -11370,6 +11383,8 @@ msgstr "恢复记录"
#. js-lingui-id: Xqj0Cb
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
msgid "Restore Records"
msgstr "恢复记录"
@@ -11385,7 +11400,7 @@ msgstr "结果"
#. js-lingui-id: kx0s+n
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Results"
msgstr "结果"
@@ -11583,7 +11598,6 @@ msgstr "星期六"
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
#: src/modules/settings/components/SaveAndCancelButtons/SaveButton.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Save"
msgstr "保存"
@@ -11598,11 +11612,6 @@ msgstr "另存为新视图"
msgid "Save Dashboard"
msgstr "保存仪表板"
#. js-lingui-id: BZVCCj
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
msgid "Save Page Layout"
msgstr ""
#. js-lingui-id: veLq3R
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Scaffold a new app, then use the CLI to develop, publish, and distribute"
@@ -11647,6 +11656,8 @@ msgstr ""
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Search"
@@ -11685,7 +11696,7 @@ msgid "Search a field..."
msgstr "搜索字段..."
#. js-lingui-id: ITQFzL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Search a folder..."
msgstr ""
@@ -11706,8 +11717,8 @@ msgid "Search a skill..."
msgstr ""
#. js-lingui-id: hVJ1MP
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
msgid "Search a system object..."
msgstr ""
@@ -11722,7 +11733,7 @@ msgid "Search a type"
msgstr "搜索类型"
#. js-lingui-id: +MhOVB
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Search a view..."
msgstr ""
@@ -11759,8 +11770,8 @@ msgstr "搜索对象"
#. js-lingui-id: BoNHR0
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "Search an object..."
msgstr ""
@@ -11784,7 +11795,7 @@ msgid "Search colors"
msgstr "搜索颜色"
#. js-lingui-id: AR3FV/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
msgid "Search colors..."
msgstr ""
@@ -11853,7 +11864,7 @@ msgid "Search records"
msgstr "搜索记录"
#. js-lingui-id: rRklUH
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Search records..."
msgstr ""
@@ -12079,7 +12090,7 @@ msgid "Select a field to display in this widget"
msgstr "选择要在此小部件中显示的字段"
#. js-lingui-id: dtAvBz
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
msgid "Select a navigation item to edit"
msgstr ""
@@ -12641,6 +12652,11 @@ msgstr "一些"
msgid "Some folders"
msgstr "某些文件夹"
#. js-lingui-id: hqUWge
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
msgid "Some layout changes could not be saved"
msgstr ""
#. js-lingui-id: nwtY4N
#: src/pages/auth/Authorize.tsx
msgid "Something went wrong"
@@ -13099,10 +13115,10 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -13481,13 +13497,14 @@ msgstr "此操作无法撤销。这将永久从此工作区中删除您的成员
msgid "This action cannot be undone. This will permanently reset your two factor authentication method. <0/> Please type in your email to confirm."
msgstr "此操作无法撤销。这将永久重置您的双重身份验证方法。<0/> 请输入您的电子邮件以确认。"
#. js-lingui-id: lAHIY2
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "This action will delete this folder and all {navigationMenuItemCount} navigation menu items inside. Do you want to continue?"
#. js-lingui-id: XxxrMw
#. placeholder {2}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "This action will delete this folder and all {2} navigation menu items inside. Do you want to continue?"
msgstr ""
#. js-lingui-id: gSO0+U
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
msgstr ""
@@ -14014,7 +14031,7 @@ msgid "Type anything..."
msgstr "输入任何内容..."
#. js-lingui-id: UhqKcC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Type to search records"
msgstr ""
@@ -14603,10 +14620,10 @@ msgid "view"
msgstr "视图"
#. js-lingui-id: jpctdh
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "View"
msgstr "视图"
@@ -14705,6 +14722,7 @@ msgstr ""
#. js-lingui-id: ecVcAx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "View Previous AI Chats"
msgstr "查看历史人工智能对话"
@@ -14740,7 +14758,7 @@ msgid "View workspace activity logs"
msgstr ""
#. js-lingui-id: 1I6UoR
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr ""
@@ -15034,6 +15052,7 @@ msgstr ""
#. js-lingui-id: 2jzcC5
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
msgid "Workflow duplicated successfully"
msgstr ""
@@ -15097,7 +15116,7 @@ msgstr "工作流"
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownVisibilityContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
msgid "Workspace"
msgstr "工作区"
+121 -102
View File
@@ -946,23 +946,23 @@ msgid "Add Item"
msgstr "新增項目"
#. js-lingui-id: cI2ZVO
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
msgid "Add item to folder"
msgstr ""
#. js-lingui-id: gaZXkv
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItemsFolder.tsx
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Add menu item"
msgstr ""
#. js-lingui-id: JbORSt
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Add menu item after"
msgstr ""
#. js-lingui-id: DKlI/M
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Add menu item before"
msgstr ""
@@ -1423,7 +1423,7 @@ msgid "All Objects"
msgstr "所有對象"
#. js-lingui-id: RoFE84
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
msgid "All objects are already in the sidebar"
msgstr ""
@@ -1438,7 +1438,7 @@ msgid "All set!"
msgstr "一切就緒!"
#. js-lingui-id: CHvT6e
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
@@ -1539,7 +1539,7 @@ msgid "alphabetical"
msgstr ""
#. js-lingui-id: eO7HSp
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectMenuItem.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectMenuItem.tsx
msgid "Already in navbar"
msgstr ""
@@ -1897,21 +1897,25 @@ msgstr ""
#. js-lingui-id: OJOR8q
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Are you sure you want to destroy these records? They won't be recoverable anymore."
msgstr "您確定要刪除這些記錄嗎?它們將不可恢復。"
#. js-lingui-id: UK5TO6
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
msgid "Are you sure you want to destroy this record? It cannot be recovered anymore."
msgstr "您確定要銷毀此記錄嗎?它將無法恢復。"
#. js-lingui-id: mcHVC1
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
msgid "Are you sure you want to restore these records?"
msgstr "您確定要恢復這些記錄嗎?"
#. js-lingui-id: lmgkf0
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
msgid "Are you sure you want to restore this record?"
msgstr "您確定要恢復此記錄嗎?"
@@ -1952,6 +1956,7 @@ msgstr "升序"
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Ask AI"
msgstr "詢問 AI"
@@ -2559,13 +2564,11 @@ msgstr "無法掃描? 複製"
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Cancel"
msgstr "取消"
#. js-lingui-id: HYLdMN
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Cancel Edition"
msgstr "取消編輯"
@@ -2966,7 +2969,7 @@ msgid "Collapse folder"
msgstr "收合資料夾"
#. js-lingui-id: jZlrte
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
msgid "Color"
msgstr ""
@@ -3896,10 +3899,9 @@ msgid "Customization"
msgstr "自定義"
#. js-lingui-id: srRMnJ
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditObjectViewBase.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
msgid "Customize"
msgstr ""
@@ -3970,6 +3972,7 @@ msgstr "深色模式"
#. js-lingui-id: ogQzcZ
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Dashboard duplicated successfully"
msgstr "儀表板複製成功"
@@ -3983,7 +3986,7 @@ msgstr "儀表板"
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "數據"
@@ -4305,7 +4308,7 @@ msgstr "刪除"
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: 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/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
@@ -4392,7 +4395,7 @@ msgid "Delete field"
msgstr "刪除欄位"
#. js-lingui-id: 97QUV6
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Delete Folder"
msgstr "刪除資料夾"
@@ -4593,6 +4596,7 @@ msgstr "銷毀 {objectLabelPlural}"
#. js-lingui-id: kG5yO6
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Destroy Records"
msgstr "銷毀記錄"
@@ -4932,9 +4936,9 @@ msgid "Edit Fields"
msgstr "編輯字段"
#. js-lingui-id: uPHscS
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Edit folder"
msgstr ""
@@ -4955,9 +4959,9 @@ msgid "Edit Layout"
msgstr ""
#. js-lingui-id: /PoNoq
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Edit link"
msgstr ""
@@ -6120,11 +6124,13 @@ msgstr ""
#. js-lingui-id: NUmmdc
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Failed to duplicate dashboard"
msgstr "複製儀表板失敗"
#. js-lingui-id: WYXxQF
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
msgid "Failed to duplicate workflow"
msgstr ""
@@ -6188,9 +6194,9 @@ msgstr "移除圖片失敗"
msgid "Failed to retry jobs. Please try again later."
msgstr "無法重試工作。請稍後重試。"
#. js-lingui-id: fuRtgB
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Failed to save navigation layout"
#. js-lingui-id: farFvy
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
msgid "Failed to save layout customization"
msgstr ""
#. js-lingui-id: y3HIOa
@@ -6308,7 +6314,7 @@ msgid "Fast Model"
msgstr ""
#. js-lingui-id: X9kySA
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItemFolders.tsx
#: src/modules/navigation-menu-item/display/sections/favorites/components/FavoritesSection.tsx
msgid "Favorites"
msgstr "收藏夾"
@@ -6580,8 +6586,8 @@ msgid "Flow"
msgstr "流程"
#. js-lingui-id: kNqMMd
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Folder"
msgstr ""
@@ -6591,8 +6597,8 @@ msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Folders"
msgstr "資料夾"
@@ -8022,7 +8028,7 @@ msgid "Layout"
msgstr "版面設計"
#. js-lingui-id: W4nIBb
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
#: src/modules/layout-customization/components/LayoutCustomizationBar.tsx
msgid "Layout customization"
msgstr ""
@@ -8137,8 +8143,8 @@ msgid "Line Chart"
msgstr "折線圖"
#. js-lingui-id: yzF66j
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Link"
msgstr ""
@@ -8154,12 +8160,12 @@ msgid "Link copied to clipboard"
msgstr "鏈接已複製到剪貼板"
#. js-lingui-id: vH3ZQY
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
msgid "Link label"
msgstr ""
@@ -8798,7 +8804,7 @@ msgid "Most installed version"
msgstr ""
#. js-lingui-id: 3Ib6FN
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move down"
msgstr ""
@@ -8822,12 +8828,12 @@ msgid "Move to a folder"
msgstr ""
#. js-lingui-id: JCPOml
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move to folder"
msgstr ""
#. js-lingui-id: QyioBP
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Move up"
msgstr ""
@@ -9073,9 +9079,9 @@ msgid "New Field"
msgstr "新字段"
#. js-lingui-id: 96G6Re
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "New folder"
msgstr ""
@@ -9115,11 +9121,11 @@ msgid "New record"
msgstr "新記錄"
#. js-lingui-id: x6Ckh1
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/hooks/useOpenAddItemToFolderPage.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useNavigationMenuItemEditOrganizeActions.ts
#: src/modules/navigation-menu-item/edit/hooks/useOpenAddItemToFolderPage.ts
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
msgid "New sidebar item"
msgstr ""
@@ -9306,7 +9312,7 @@ msgid "No currency"
msgstr "無貨幣"
#. js-lingui-id: DKVJFE
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "No custom views available"
msgstr ""
@@ -9418,12 +9424,12 @@ msgid "No Files"
msgstr "無檔案"
#. js-lingui-id: pYblOw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folder"
msgstr "沒有資料夾"
#. js-lingui-id: 6XMhqL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folders available"
msgstr ""
@@ -9510,7 +9516,7 @@ msgid "No object found"
msgstr ""
#. js-lingui-id: YFHO2u
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "No objects with views found"
msgstr ""
@@ -9587,14 +9593,14 @@ msgid "No Results"
msgstr "沒有結果"
#. js-lingui-id: AxPAXW
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/side-panel/components/SidePanelList.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No results found"
msgstr "找不到結果"
@@ -9619,12 +9625,12 @@ msgid "No Select field"
msgstr "無選擇字段"
#. js-lingui-id: RQ6tfU
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
msgid "No system objects available"
msgstr ""
#. js-lingui-id: Yf4rVG
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
msgid "No system objects with views found"
msgstr ""
@@ -9832,9 +9838,9 @@ msgstr "對象"
#: 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/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Object"
msgstr "對象"
@@ -9894,9 +9900,9 @@ msgstr ""
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "Objects"
msgstr "對象"
@@ -10076,7 +10082,7 @@ msgid "Open side panel"
msgstr ""
#. js-lingui-id: OV5wZZ
#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx
#: src/modules/navigation-menu-item/display/sections/components/NavigationDrawerOpenedSection.tsx
msgid "Opened"
msgstr "已開啟"
@@ -10148,7 +10154,7 @@ msgid "Organization plan"
msgstr ""
#. js-lingui-id: nV6twc
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Organize"
msgstr ""
@@ -10158,9 +10164,9 @@ msgstr ""
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: 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
msgid "Other"
msgstr "其他"
@@ -10234,7 +10240,7 @@ msgid "Overview"
msgstr "概覽"
#. js-lingui-id: LtI9AS
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOwnerSection.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOwnerSection.tsx
msgid "Owner"
msgstr ""
@@ -10427,6 +10433,8 @@ msgstr "永久銷毀記錄"
#. js-lingui-id: 35dBYb
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
msgid "Permanently Destroy Record"
msgstr "永久銷毀記錄"
@@ -10437,6 +10445,7 @@ msgstr "永久銷毀記錄"
#. js-lingui-id: YyP8vD
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
msgid "Permanently Destroy Records"
msgstr "永久銷毀記錄"
@@ -10958,7 +10967,7 @@ msgstr "紀錄"
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Record"
msgstr "紀錄"
@@ -11134,14 +11143,16 @@ msgstr "遠程"
msgid "Remove"
msgstr "移除"
#. js-lingui-id: 0Urj9q
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "Remove {navigationMenuItemCount} navigation menu item?"
#. js-lingui-id: XABoh4
#. placeholder {0}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Remove {0} navigation menu items?"
msgstr ""
#. js-lingui-id: Ef5jwi
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "Remove {navigationMenuItemCount} navigation menu items?"
#. js-lingui-id: p/lN7X
#. placeholder {1}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "Remove {1} navigation menu item?"
msgstr ""
#. js-lingui-id: 1O32oy
@@ -11171,7 +11182,7 @@ msgid "Remove from favorites"
msgstr "從收藏中移除"
#. js-lingui-id: 9VZ6f0
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
msgid "Remove from sidebar"
msgstr ""
@@ -11218,7 +11229,7 @@ msgstr "移除變數"
#. js-lingui-id: 2wxgft
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
#: src/modules/activities/files/components/AttachmentDropdown.tsx
msgid "Rename"
msgstr "重新命名"
@@ -11359,6 +11370,8 @@ msgstr "還原記錄"
#. js-lingui-id: NzMNOA
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
msgid "Restore Record"
msgstr "還原記錄"
@@ -11370,6 +11383,8 @@ msgstr "恢復記錄"
#. js-lingui-id: Xqj0Cb
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
msgid "Restore Records"
msgstr "還原記錄"
@@ -11385,7 +11400,7 @@ msgstr "結果"
#. js-lingui-id: kx0s+n
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Results"
msgstr "結果"
@@ -11583,7 +11598,6 @@ msgstr "星期六"
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
#: src/modules/settings/components/SaveAndCancelButtons/SaveButton.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Save"
msgstr "保存"
@@ -11598,11 +11612,6 @@ msgstr "另存為新視圖"
msgid "Save Dashboard"
msgstr "保存儀表板"
#. js-lingui-id: BZVCCj
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
msgid "Save Page Layout"
msgstr ""
#. js-lingui-id: veLq3R
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Scaffold a new app, then use the CLI to develop, publish, and distribute"
@@ -11647,6 +11656,8 @@ msgstr ""
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Search"
@@ -11685,7 +11696,7 @@ msgid "Search a field..."
msgstr "搜索字段..."
#. js-lingui-id: ITQFzL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Search a folder..."
msgstr ""
@@ -11706,8 +11717,8 @@ msgid "Search a skill..."
msgstr ""
#. js-lingui-id: hVJ1MP
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
msgid "Search a system object..."
msgstr ""
@@ -11722,7 +11733,7 @@ msgid "Search a type"
msgstr "搜索類型"
#. js-lingui-id: +MhOVB
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Search a view..."
msgstr ""
@@ -11759,8 +11770,8 @@ msgstr "搜索對象"
#. js-lingui-id: BoNHR0
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "Search an object..."
msgstr ""
@@ -11784,7 +11795,7 @@ msgid "Search colors"
msgstr "搜索顏色"
#. js-lingui-id: AR3FV/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
msgid "Search colors..."
msgstr ""
@@ -11853,7 +11864,7 @@ msgid "Search records"
msgstr "搜索記錄"
#. js-lingui-id: rRklUH
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Search records..."
msgstr ""
@@ -12079,7 +12090,7 @@ msgid "Select a field to display in this widget"
msgstr "選取要在此小工具中顯示的欄位"
#. js-lingui-id: dtAvBz
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
msgid "Select a navigation item to edit"
msgstr ""
@@ -12641,6 +12652,11 @@ msgstr "一些"
msgid "Some folders"
msgstr "某些資料夾"
#. js-lingui-id: hqUWge
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
msgid "Some layout changes could not be saved"
msgstr ""
#. js-lingui-id: nwtY4N
#: src/pages/auth/Authorize.tsx
msgid "Something went wrong"
@@ -13099,10 +13115,10 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -13481,13 +13497,14 @@ msgstr "此操作無法撤銷。這將永久將您從此工作區中移除。"
msgid "This action cannot be undone. This will permanently reset your two factor authentication method. <0/> Please type in your email to confirm."
msgstr "此操作無法復原。這將永久重設您的雙重驗證方法。<0/>請輸入您的電子郵件以確認。"
#. js-lingui-id: lAHIY2
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
msgid "This action will delete this folder and all {navigationMenuItemCount} navigation menu items inside. Do you want to continue?"
#. js-lingui-id: XxxrMw
#. placeholder {2}: favoritesEdit.navigationMenuItemCount
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "This action will delete this folder and all {2} navigation menu items inside. Do you want to continue?"
msgstr ""
#. js-lingui-id: gSO0+U
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
msgstr ""
@@ -14014,7 +14031,7 @@ msgid "Type anything..."
msgstr "輸入任何內容..."
#. js-lingui-id: UhqKcC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Type to search records"
msgstr ""
@@ -14603,10 +14620,10 @@ msgid "view"
msgstr "視圖"
#. js-lingui-id: jpctdh
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "View"
msgstr "視圖"
@@ -14705,6 +14722,7 @@ msgstr ""
#. js-lingui-id: ecVcAx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "View Previous AI Chats"
msgstr "查看上一次的 AI 聊天"
@@ -14740,7 +14758,7 @@ msgid "View workspace activity logs"
msgstr ""
#. js-lingui-id: 1I6UoR
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr ""
@@ -15034,6 +15052,7 @@ msgstr ""
#. js-lingui-id: 2jzcC5
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
msgid "Workflow duplicated successfully"
msgstr ""
@@ -15097,7 +15116,7 @@ msgstr "Workflow"
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownVisibilityContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
msgid "Workspace"
msgstr "工作區"
@@ -3,7 +3,7 @@ import { type NoteTarget } from '@/activities/types/NoteTarget';
import { type Task } from '@/activities/types/Task';
import { type TaskTarget } from '@/activities/types/TaskTarget';
import { getActivityTargetObjectRecords } from '@/activities/utils/getActivityTargetObjectRecords';
import { objectMetadataItemsState } from '@/object-metadata/states/objectMetadataItemsState';
import { objectMetadataItemsSelector } from '@/object-metadata/states/objectMetadataItemsSelector';
import { recordStoreFamilyState } from '@/object-record/record-store/states/recordStoreFamilyState';
import { useAtomFamilyStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomFamilyStateValue';
import { useAtomStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomStateValue';
@@ -14,7 +14,7 @@ export const useActivityTargetObjectRecords = (
activityRecordId?: string,
activityTargets?: Nullable<NoteTarget[] | TaskTarget[]>,
) => {
const objectMetadataItems = useAtomStateValue(objectMetadataItemsState);
const objectMetadataItems = useAtomStateValue(objectMetadataItemsSelector);
const activity = useAtomFamilyStateValue(
recordStoreFamilyState,
@@ -8,7 +8,7 @@ import { type ActivityTargetableObject } from '@/activities/types/ActivityTarget
import { type NoteTarget } from '@/activities/types/NoteTarget';
import { type TaskTarget } from '@/activities/types/TaskTarget';
import { getActivityTargetsFilter } from '@/activities/utils/getActivityTargetsFilter';
import { objectMetadataItemsState } from '@/object-metadata/states/objectMetadataItemsState';
import { objectMetadataItemsSelector } from '@/object-metadata/states/objectMetadataItemsSelector';
import { type ObjectMetadataItem } from '@/object-metadata/types/ObjectMetadataItem';
import { useFindManyRecords } from '@/object-record/hooks/useFindManyRecords';
import { useAtomStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomStateValue';
@@ -35,7 +35,7 @@ export const useActivityTargetsForTargetableObjects = ({
limit: number;
}) => {
const objectMetadataItems = useAtomStateValue<ObjectMetadataItem[]>(
objectMetadataItemsState,
objectMetadataItemsSelector,
);
const isNoteTargetMigrated = useIsFeatureEnabled(
FeatureFlagKey.IS_NOTE_TARGET_MIGRATED,
@@ -1,5 +1,5 @@
import { type ActivityTargetWithTargetRecord } from '@/activities/types/ActivityTargetObject';
import { objectMetadataItemsState } from '@/object-metadata/states/objectMetadataItemsState';
import { objectMetadataItemsSelector } from '@/object-metadata/states/objectMetadataItemsSelector';
import { CoreObjectNameSingular } from 'twenty-shared/types';
import { useMultipleRecordPickerOpen } from '@/object-record/record-picker/multiple-record-picker/hooks/useMultipleRecordPickerOpen';
import { useMultipleRecordPickerPerformSearch } from '@/object-record/record-picker/multiple-record-picker/hooks/useMultipleRecordPickerPerformSearch';
@@ -31,7 +31,7 @@ export const useOpenActivityTargetCellEditMode = () => {
activityTargetObjectRecords,
}: OpenActivityTargetCellEditModeProps) => {
const objectMetadataItems = store
.get(objectMetadataItemsState.atom)
.get(objectMetadataItemsSelector.atom)
.filter(
(objectMetadataItem) =>
objectMetadataItem.isSearchable &&
@@ -3,7 +3,7 @@ import { type NoteTarget } from '@/activities/types/NoteTarget';
import { type TaskTarget } from '@/activities/types/TaskTarget';
import { getActivityTargetFieldNameForObject } from '@/activities/utils/getActivityTargetFieldNameForObject';
import { getJoinObjectNameSingular } from '@/activities/utils/getJoinObjectNameSingular';
import { objectMetadataItemsState } from '@/object-metadata/states/objectMetadataItemsState';
import { objectMetadataItemsSelector } from '@/object-metadata/states/objectMetadataItemsSelector';
import { CoreObjectNameSingular } from 'twenty-shared/types';
import { useCreateOneRecord } from '@/object-record/hooks/useCreateOneRecord';
import { useDeleteOneRecord } from '@/object-record/hooks/useDeleteOneRecord';
@@ -81,7 +81,7 @@ export const useUpdateActivityTargetFromCell = ({
? 'task'
: 'note';
const objectMetadataItems = store.get(objectMetadataItemsState.atom);
const objectMetadataItems = store.get(objectMetadataItemsSelector.atom);
const pickedObjectMetadataItem = objectMetadataItems.find(
(objectMetadataItem) =>
@@ -1,10 +1,10 @@
import { objectMetadataItemsState } from '@/object-metadata/states/objectMetadataItemsState';
import { objectMetadataItemsSelector } from '@/object-metadata/states/objectMetadataItemsSelector';
import { type ObjectMetadataItem } from '@/object-metadata/types/ObjectMetadataItem';
import { useAtomStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomStateValue';
export const useLinkedObjectObjectMetadataItem = (id: string | null) => {
const objectMetadataItems: ObjectMetadataItem[] = useAtomStateValue(
objectMetadataItemsState,
objectMetadataItemsSelector,
);
if (id === null) {
@@ -10,7 +10,7 @@ import { contextStoreCurrentViewTypeComponentState } from '@/context-store/state
import { contextStoreFiltersComponentState } from '@/context-store/states/contextStoreFiltersComponentState';
import { contextStoreTargetedRecordsRuleComponentState } from '@/context-store/states/contextStoreTargetedRecordsRuleComponentState';
import { ContextStoreViewType } from '@/context-store/types/ContextStoreViewType';
import { objectMetadataItemsState } from '@/object-metadata/states/objectMetadataItemsState';
import { objectMetadataItemsSelector } from '@/object-metadata/states/objectMetadataItemsSelector';
import { recordStoreFamilySelector } from '@/object-record/record-store/states/selectors/recordStoreFamilySelector';
import { getTabListInstanceIdFromPageLayoutId } from '@/page-layout/utils/getTabListInstanceIdFromPageLayoutId';
import { activeTabIdComponentState } from '@/ui/layout/tab-list/states/activeTabIdComponentState';
@@ -35,7 +35,7 @@ export const useGetBrowsingContext = () => {
}),
);
const objectMetadataItems = store.get(objectMetadataItemsState.atom);
const objectMetadataItems = store.get(objectMetadataItemsSelector.atom);
const objectMetadataItem = objectMetadataItems.find(
(item) => item.id === objectMetadataItemId,
@@ -1,12 +1,10 @@
import { AgentChatProvider } from '@/ai/components/AgentChatProvider';
import { CommandMenuConfirmationModalManager } from '@/command-menu-item/confirmation-modal/components/CommandMenuConfirmationModalManager';
import { ApolloProvider } from '@/apollo/components/ApolloProvider';
import { CommandMenuConfirmationModalManager } from '@/command-menu-item/confirmation-modal/components/CommandMenuConfirmationModalManager';
import { MinimalMetadataGater } from '@/metadata-store/components/MinimalMetadataGater';
import { IsMinimalMetadataReadyEffect } from '@/metadata-store/effect-components/IsMinimalMetadataReadyEffect';
import { GotoHotkeysEffectsProvider } from '@/app/effect-components/GotoHotkeysEffectsProvider';
import { MinimalMetadataLoadEffect } from '@/metadata-store/effect-components/MinimalMetadataLoadEffect';
import { UserMetadataProviderInitialEffect } from '@/metadata-store/effect-components/UserMetadataProviderInitialEffect';
import { PageChangeEffect } from '@/app/effect-components/PageChangeEffect';
import { AuthProvider } from '@/auth/components/AuthProvider';
import { CaptchaProvider } from '@/captcha/components/CaptchaProvider';
@@ -17,10 +15,13 @@ import { ClientConfigProviderEffect } from '@/client-config/components/ClientCon
import { MainContextStoreProvider } from '@/context-store/components/MainContextStoreProvider';
import { ErrorMessageEffect } from '@/error-handler/components/ErrorMessageEffect';
import { PromiseRejectionEffect } from '@/error-handler/components/PromiseRejectionEffect';
import { HeadlessFrontComponentMountRoot } from '@/front-components/components/HeadlessFrontComponentMountRoot';
import { MinimalMetadataLoadEffect } from '@/metadata-store/effect-components/MinimalMetadataLoadEffect';
import { UserMetadataProviderInitialEffect } from '@/metadata-store/effect-components/UserMetadataProviderInitialEffect';
import { ApolloCoreProvider } from '@/object-metadata/components/ApolloCoreProvider';
import { PreComputedChipGeneratorsProvider } from '@/object-metadata/components/PreComputedChipGeneratorsProvider';
import { HeadlessEngineCommandMountRoot } from '@/command-menu-item/engine-command/components/HeadlessEngineCommandMountRoot';
import { HeadlessFrontComponentMountRoot } from '@/front-components/components/HeadlessFrontComponentMountRoot';
import { SSEProvider } from '@/sse-db-event/components/SSEProvider';
import { SupportChatEffect } from '@/support/components/SupportChatEffect';
import { DialogManager } from '@/ui/feedback/dialog-manager/components/DialogManager';
@@ -74,6 +75,7 @@ export const AppRouterProviders = () => {
<GlobalFilePreviewModal />
<CommandMenuConfirmationModalManager />
<HeadlessFrontComponentMountRoot />
<HeadlessEngineCommandMountRoot />
</StrictMode>
</DialogManager>
</DialogComponentInstanceContext.Provider>
@@ -0,0 +1,93 @@
import { useExecuteTasksOnAnyLocationChange } from '@/app/hooks/useExecuteTasksOnAnyLocationChange';
import { currentPageLayoutIdState } from '@/page-layout/states/currentPageLayoutIdState';
import { isDashboardInEditModeComponentState } from '@/page-layout/states/isDashboardInEditModeComponentState';
import { isLayoutCustomizationModeEnabledState } from '@/layout-customization/states/isLayoutCustomizationModeEnabledState';
import { act, renderHook } from '@testing-library/react';
import { createStore, Provider as JotaiProvider } from 'jotai';
import { type ReactNode } from 'react';
const mockCloseAnyOpenDropdown = jest.fn();
jest.mock('@/ui/layout/dropdown/hooks/useCloseAnyOpenDropdown', () => ({
useCloseAnyOpenDropdown: () => ({
closeAnyOpenDropdown: mockCloseAnyOpenDropdown,
}),
}));
const PAGE_LAYOUT_ID = 'test-page-layout-id';
const getWrapper =
(store = createStore()) =>
({ children }: { children: ReactNode }) => (
<JotaiProvider store={store}>{children}</JotaiProvider>
);
describe('useExecuteTasksOnAnyLocationChange', () => {
beforeEach(() => {
jest.clearAllMocks();
});
it('should reset page layout edit state when layout customization is inactive', () => {
const store = createStore();
const wrapper = getWrapper(store);
store.set(currentPageLayoutIdState.atom, PAGE_LAYOUT_ID);
store.set(
isDashboardInEditModeComponentState.atomFamily({
instanceId: PAGE_LAYOUT_ID,
}),
true,
);
store.set(isLayoutCustomizationModeEnabledState.atom, false);
const { result } = renderHook(() => useExecuteTasksOnAnyLocationChange(), {
wrapper,
});
act(() => {
result.current.executeTasksOnAnyLocationChange();
});
expect(mockCloseAnyOpenDropdown).toHaveBeenCalledTimes(1);
expect(store.get(currentPageLayoutIdState.atom)).toBeNull();
expect(
store.get(
isDashboardInEditModeComponentState.atomFamily({
instanceId: PAGE_LAYOUT_ID,
}),
),
).toBe(false);
});
it('should not reset page layout edit state when layout customization is active', () => {
const store = createStore();
const wrapper = getWrapper(store);
store.set(currentPageLayoutIdState.atom, PAGE_LAYOUT_ID);
store.set(
isDashboardInEditModeComponentState.atomFamily({
instanceId: PAGE_LAYOUT_ID,
}),
true,
);
store.set(isLayoutCustomizationModeEnabledState.atom, true);
const { result } = renderHook(() => useExecuteTasksOnAnyLocationChange(), {
wrapper,
});
act(() => {
result.current.executeTasksOnAnyLocationChange();
});
expect(mockCloseAnyOpenDropdown).toHaveBeenCalledTimes(1);
expect(store.get(currentPageLayoutIdState.atom)).toBe(PAGE_LAYOUT_ID);
expect(
store.get(
isDashboardInEditModeComponentState.atomFamily({
instanceId: PAGE_LAYOUT_ID,
}),
),
).toBe(true);
});
});
@@ -1,3 +1,4 @@
import { isLayoutCustomizationModeEnabledState } from '@/layout-customization/states/isLayoutCustomizationModeEnabledState';
import { MAIN_CONTEXT_STORE_INSTANCE_ID } from '@/context-store/constants/MainContextStoreInstanceId';
import { contextStoreIsPageInEditModeComponentState } from '@/context-store/states/contextStoreIsPageInEditModeComponentState';
import { currentPageLayoutIdState } from '@/page-layout/states/currentPageLayoutIdState';
@@ -8,7 +9,7 @@ import { fieldsWidgetGroupsPersistedComponentState } from '@/page-layout/states/
import { fieldsWidgetUngroupedFieldsDraftComponentState } from '@/page-layout/states/fieldsWidgetUngroupedFieldsDraftComponentState';
import { fieldsWidgetUngroupedFieldsPersistedComponentState } from '@/page-layout/states/fieldsWidgetUngroupedFieldsPersistedComponentState';
import { hasInitializedFieldsWidgetGroupsDraftComponentState } from '@/page-layout/states/hasInitializedFieldsWidgetGroupsDraftComponentState';
import { isPageLayoutInEditModeComponentState } from '@/page-layout/states/isPageLayoutInEditModeComponentState';
import { isDashboardInEditModeComponentState } from '@/page-layout/states/isDashboardInEditModeComponentState';
import { pageLayoutCurrentLayoutsComponentState } from '@/page-layout/states/pageLayoutCurrentLayoutsComponentState';
import { pageLayoutDraftComponentState } from '@/page-layout/states/pageLayoutDraftComponentState';
import { pageLayoutIsInitializedComponentState } from '@/page-layout/states/pageLayoutIsInitializedComponentState';
@@ -57,7 +58,7 @@ export const useExecuteTasksOnAnyLocationChange = () => {
}
store.set(
isPageLayoutInEditModeComponentState.atomFamily({
isDashboardInEditModeComponentState.atomFamily({
instanceId: pageLayoutId,
}),
false,
@@ -137,7 +138,14 @@ export const useExecuteTasksOnAnyLocationChange = () => {
*/
const executeTasksOnAnyLocationChange = () => {
closeAnyOpenDropdown();
resetPageLayoutEditMode();
const isLayoutCustomizationModeEnabled = store.get(
isLayoutCustomizationModeEnabledState.atom,
);
if (!isLayoutCustomizationModeEnabled) {
resetPageLayoutEditMode();
}
};
return { executeTasksOnAnyLocationChange };
@@ -1,5 +1,5 @@
import { MentionRecordChip } from '@/mention/components/MentionRecordChip';
import { objectMetadataItemsState } from '@/object-metadata/states/objectMetadataItemsState';
import { objectMetadataItemsSelector } from '@/object-metadata/states/objectMetadataItemsSelector';
import { RecordChip } from '@/object-record/components/RecordChip';
import { useFindOneRecord } from '@/object-record/hooks/useFindOneRecord';
import { createReactInlineContentSpec } from '@blocknote/react';
@@ -32,7 +32,7 @@ const LegacyMentionRenderer = ({
recordId: string;
objectMetadataId: string;
}) => {
const objectMetadataItems = useAtomStateValue(objectMetadataItemsState);
const objectMetadataItems = useAtomStateValue(objectMetadataItemsSelector);
const objectMetadataItem = objectMetadataItems.find(
(item) => item.id === objectMetadataId,
@@ -1,5 +1,5 @@
import { COMMAND_MENU_CONFIRMATION_MODAL_RESULT_BROWSER_EVENT_NAME } from '@/command-menu-item/confirmation-modal/constants/CommandMenuItemConfirmationModalResultBrowserEventName';
import { COMMAND_MENU_CONFIRMATION_MODAL_INSTANCE_ID } from '@/command-menu-item/confirmation-modal/constants/CommandMenuItemConfirmationModalId';
import { COMMAND_MENU_CONFIRMATION_MODAL_RESULT_BROWSER_EVENT_NAME } from '@/command-menu-item/confirmation-modal/constants/CommandMenuItemConfirmationModalResultBrowserEventName';
import { commandMenuItemConfirmationModalConfigState } from '@/command-menu-item/confirmation-modal/states/commandMenuItemConfirmationModalState';
import {
type CommandMenuConfirmationModalResult,
@@ -10,6 +10,7 @@ import { isModalOpenedComponentState } from '@/ui/layout/modal/states/isModalOpe
import { useAtomComponentStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomComponentStateValue';
import { useAtomStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomStateValue';
import { useSetAtomState } from '@/ui/utilities/state/jotai/hooks/useSetAtomState';
import { isDefined } from 'twenty-shared/utils';
export const CommandMenuConfirmationModalManager = () => {
const commandMenuItemConfirmationModalConfig = useAtomStateValue(
@@ -23,12 +24,12 @@ export const CommandMenuConfirmationModalManager = () => {
commandMenuItemConfirmationModalConfigState,
);
const callerId = commandMenuItemConfirmationModalConfig?.frontComponentId;
const caller = commandMenuItemConfirmationModalConfig?.caller;
const emitConfirmationResult = (
confirmationResult: CommandMenuConfirmationModalResult,
) => {
if (!callerId) {
if (!isDefined(caller)) {
return;
}
@@ -37,7 +38,7 @@ export const CommandMenuConfirmationModalManager = () => {
COMMAND_MENU_CONFIRMATION_MODAL_RESULT_BROWSER_EVENT_NAME,
{
detail: {
frontComponentId: callerId,
caller,
confirmationResult,
},
},
@@ -33,7 +33,7 @@ export const useCommandMenuConfirmationModal = () => {
isCommandMenuItemConfirmationModalOpened
) {
throw new Error(
'Command menu item confirmation modal is already active for another front component',
'Command menu item confirmation modal is already active for another caller',
);
}
@@ -1,10 +1,11 @@
import { type ReactNode } from 'react';
import { type ConfirmationModalCaller } from 'twenty-shared/types';
import { createAtomState } from '@/ui/utilities/state/jotai/utils/createAtomState';
import { type ButtonAccent } from 'twenty-ui/input';
export type CommandMenuItemConfirmationModalConfig = {
frontComponentId: string;
caller: ConfirmationModalCaller;
title: string;
subtitle: ReactNode;
confirmButtonText?: string;
@@ -1,6 +1,8 @@
import { type ConfirmationModalCaller } from 'twenty-shared/types';
export type CommandMenuConfirmationModalResult = 'confirm' | 'cancel';
export type CommandMenuConfirmationModalResultBrowserEventDetail = {
frontComponentId: string;
caller: ConfirmationModalCaller;
confirmationResult: CommandMenuConfirmationModalResult;
};
@@ -24,9 +24,7 @@ import { CancelDashboardSingleRecordCommand } from '@/command-menu-item/record/s
import { DuplicateDashboardSingleRecordCommand } from '@/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand';
import { EditDashboardSingleRecordCommand } from '@/command-menu-item/record/single-record/dashboard/components/EditDashboardSingleRecordCommand';
import { SaveDashboardSingleRecordCommand } from '@/command-menu-item/record/single-record/dashboard/components/SaveDashboardSingleRecordCommand';
import { CancelRecordPageLayoutSingleRecordCommand } from '@/command-menu-item/record/single-record/record-page-layout/components/CancelRecordPageLayoutSingleRecordCommand';
import { EditRecordPageLayoutSingleRecordCommand } from '@/command-menu-item/record/single-record/record-page-layout/components/EditRecordPageLayoutSingleRecordCommand';
import { SaveRecordPageLayoutSingleRecordCommand } from '@/command-menu-item/record/single-record/record-page-layout/components/SaveRecordPageLayoutSingleRecordCommand';
import { SeeVersionWorkflowRunSingleRecordCommand } from '@/command-menu-item/record/single-record/workflow-runs/components/SeeVersionWorkflowRunSingleRecordCommand';
import { SeeWorkflowWorkflowRunSingleRecordCommand } from '@/command-menu-item/record/single-record/workflow-runs/components/SeeWorkflowWorkflowRunSingleRecordCommand';
import { StopWorkflowRunSingleRecordCommand } from '@/command-menu-item/record/single-record/workflow-runs/components/StopWorkflowRunSingleRecordCommand';
@@ -96,9 +94,6 @@ export const ENGINE_COMPONENT_KEY_COMPONENT_MAP: Record<
[EngineComponentKey.USE_AS_DRAFT_WORKFLOW_VERSION]: (
<UseAsDraftWorkflowVersionSingleRecordCommand />
),
[EngineComponentKey.SAVE_RECORD_PAGE_LAYOUT]: (
<SaveRecordPageLayoutSingleRecordCommand />
),
[EngineComponentKey.SAVE_DASHBOARD_LAYOUT]: (
<SaveDashboardSingleRecordCommand />
),
@@ -136,9 +131,6 @@ export const ENGINE_COMPONENT_KEY_COMPONENT_MAP: Record<
[EngineComponentKey.EDIT_RECORD_PAGE_LAYOUT]: (
<EditRecordPageLayoutSingleRecordCommand />
),
[EngineComponentKey.CANCEL_RECORD_PAGE_LAYOUT]: (
<CancelRecordPageLayoutSingleRecordCommand />
),
[EngineComponentKey.EDIT_DASHBOARD_LAYOUT]: (
<EditDashboardSingleRecordCommand />
),

Some files were not shown because too many files have changed in this diff Show More