Compare commits

..
Author SHA1 Message Date
Sonarly Claude Code 03db2b1837 fix: handle network errors as temporary in Microsoft calendar import
https://sonarly.com/issue/19081?type=bug

Transient network failures (TCP-level "fetch failed") when calling Microsoft Graph API during calendar event import are misclassified as UNKNOWN errors, causing the calendar channel to be permanently marked as failed instead of being retried.

Fix: The root cause is that `parseMicrosoftCalendarError` only switches on HTTP `statusCode`. When Node.js undici throws `TypeError: fetch failed` (a TCP-level network failure), there is no `statusCode` — the error falls to `default` and is classified as UNKNOWN. This triggers `handleUnknownException`, which permanently marks the calendar channel as FAILED_UNKNOWN and flushes all pending events — an unrecoverable state for a transient network blip.

Changes made:

1. **parse-microsoft-calendar-error.util.ts** (primary fix):
   - Added `isNetworkError()` helper that detects TypeError instances (undici fetch failures) and errors with `cause.code` matching known network error codes (ECONNRESET, ENOTFOUND, ETIMEDOUT, ECONNABORTED, ECONNREFUSED, EHOSTUNREACH, ERR_NETWORK, UND_ERR_CONNECT_TIMEOUT, UND_ERR_SOCKET).
   - Network errors are now classified as TEMPORARY_ERROR → retry with backoff instead of permanent failure.
   - Added safety-net guard: errors with no `statusCode` that aren't detected as network errors also get TEMPORARY_ERROR (fail-safe toward retry).
   - Reclassified HTTP 500/502/503/504 from UNKNOWN to TEMPORARY_ERROR, matching the messaging-side pattern.

2. **parse-microsoft-messages-import.util.ts** (proactive fix):
   - Added the same `isNetworkError()` guard before HTTP status code checks, preventing the identical bug from manifesting in Microsoft message import.
2026-03-27 17:07:26 +00:00
9498a60f74 i18n - translations (#19048)
Created by Github action

---------

Co-authored-by: github-actions <github-actions@twenty.com>
2026-03-27 17:39:22 +01:00
Charles BochetandGitHub 191a277ddf fix: invalidate rolesPermissions cache + add Docker Hub auth to CI (#19044)
## Summary

### Cache invalidation fix
- After migrating object/field permissions to syncable entities (#18609,
#18751, #18567), changes to `flatObjectPermissionMaps`,
`flatFieldPermissionMaps`, or `flatPermissionFlagMaps` no longer
triggered `rolesPermissions` cache invalidation
- This caused stale permission data to be served, leading to flaky
`permissions-on-relations` integration tests and potentially incorrect
permission enforcement in production after object permission upserts
- Adds the three permission-related flat map keys to the condition that
triggers `rolesPermissions` cache recomputation in
`WorkspaceMigrationRunnerService.getLegacyCacheInvalidationPromises`
- Clears memoizer after recomputation to prevent concurrent
`getOrRecompute` calls from caching stale data

### Docker Hub rate limit fix
- CI service containers (postgres, redis, clickhouse) and `docker
run`/`docker build` steps were pulling from Docker Hub
**unauthenticated**, hitting the 100-pull-per-6-hour rate limit on
shared GitHub-hosted runner IPs
- Adds `credentials` blocks to all service container definitions and
`docker/login-action` steps before `docker run`/`docker compose`
commands
- Uses `vars.DOCKERHUB_USERNAME` + `secrets.DOCKERHUB_PASSWORD`
(matching the existing twenty-infra convention)
- Affected workflows: ci-server, ci-merge-queue, ci-breaking-changes,
ci-zapier, ci-sdk, ci-create-app-e2e, ci-website,
ci-test-docker-compose, preview-env-keepalive, spawn-twenty-docker-image
action
2026-03-27 17:32:53 +01:00
7f1814805d Fix backfill record page layout command (#19043)
Co-authored-by: Charles Bochet <charlesBochet@users.noreply.github.com>
2026-03-27 16:56:30 +01:00
34b81adce8 i18n - translations (#19046)
Created by Github action

---------

Co-authored-by: github-actions <github-actions@twenty.com>
2026-03-27 16:38:08 +01:00
Félix MalfaitandGitHub cd2e08b912 Enforce workspace count limit for multi-workspace setups (#19036)
## Summary
- Limits workspace creation to 5 workspaces per server when no valid
enterprise key is configured
- Enterprise key validity is checked first (synchronous, in-memory
cached) to avoid unnecessary DB queries on enterprise deployments
- Adds 4 unit tests covering: limit enforcement, enterprise key bypass,
below-limit creation, and performance (no enterprise check when
workspace count is zero)

## Test plan
- [x] All 11 unit tests pass (8 existing + 3 new behavioral + 1
performance assertion)
- [ ] Manual: verify workspace creation blocked at limit=5 without
enterprise key
- [ ] Manual: verify workspace creation allowed beyond limit with valid
enterprise key
- [ ] Manual: verify first workspace (bootstrap) creation is unaffected


Made with [Cursor](https://cursor.com)
2026-03-27 16:31:27 +01:00
Charles BochetandGitHub fb21f3ccf5 fix: resolve availabilityObjectMetadataUniversalIdentifier in backfill command (#19041)
## Summary

- Fixes workflow manual trigger command menu items losing their
`availabilityObjectMetadataId` during the 1-20 backfill upgrade command
- The migration runner's `transpileUniversalActionToFlatAction` resolves
`availabilityObjectMetadataId` **from**
`availabilityObjectMetadataUniversalIdentifier`, overwriting the
original value. The backfill was hardcoding the universal identifier to
`null`, causing all `RECORD_SELECTION` items to end up with `NULL`
`availabilityObjectMetadataId` after persistence.
- Now properly resolves `availabilityObjectMetadataUniversalIdentifier`
from `flatObjectMetadataMaps.universalIdentifierById` so the runner can
correctly derive the FK during INSERT.
2026-03-27 16:01:31 +01:00
Paul RastoinandGitHub 281bb6d783 Guard yarn database:migrate:prod (#19008)
## Motivations
A lot of self hosters hands up using the `yarn database:migrated:prod`
either manually or through AI assisted debug while they try to upgrade
an instance while their workspace is still blocked in a previous one
Leading to their whole database permanent corruption

## What happened
Replaced the direct call the the typeorm cli to a command calling it
programmatically, adding a layer of security in case a workspace seems
to be blocked in a previous version than the one just before the one
being installed ( e.g 1.0 when you try to upgrade from 1.1 to 1.2 )

For our cloud we still need a way to bypass this security explaining the
-f flag

## Remark
Centralized this logic and refactored creating new services
`WorkspaceVersionService` and `CoreEngineVersionService` that will
become useful for the upcoming upgrade refactor

Related to https://github.com/twentyhq/twenty-infra/pull/529
2026-03-27 14:39:18 +00:00
c96c034908 i18n - translations (#19040)
Created by Github action

---------

Co-authored-by: github-actions <github-actions@twenty.com>
2026-03-27 14:53:33 +01:00
Abdul RahmanGitHubCopilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com>Charles Bochet
5efe69f8d3 Migrate field permission to syncable entity (#18751)
Co-authored-by: Copilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com>
Co-authored-by: Charles Bochet <charles@twenty.com>
2026-03-27 14:47:27 +01:00
c2b058a6a7 fix: use workspace-generated id for core dual-write in message folder save (#19038)
Co-authored-by: Charles Bochet <charlesBochet@users.noreply.github.com>
2026-03-27 13:53:30 +01:00
Abdullah.andGitHub 22c9693ce5 First PR to bring in the new twenty website. (#19035)
This PR contains Menu, Hero, TrustedBy, Problem, ThreeCards and Footer
sections of the new website.

Most components in there match the Figma designs, except for two things.
- Zoom levels on 3D illustrations from Endless Tools.
- Menu needs to have the same color as Hero - it's not happening at the
moment since Menu is in the layout, not nested inside pages or Hero.

Images are placeholders (same as Figma).
2026-03-27 13:48:03 +01:00
50ea560e57 Seed company workflow for email upserts (#18909)
@thomtrp

---------

Co-authored-by: Charles Bochet <charles@twenty.com>
2026-03-27 13:47:07 +01:00
EtienneandGitHub 56056b885d refacto - remove hello-pangea/dnd from navigation-menu-item module (#19033)
Removed all @hello-pangea/dnd imports from the navigation-menu-item/
module by replacing the type bridge layer with a native
NavigationMenuItemDropResult type. The dnd-kit events were already
powering all DnD — hello-pangea was only used as a type contract and one
dead <Droppable> component.
3 files deleted (dead <Droppable> wrapper, DROP_RESULT_OPTIONS shim,
toDropResult bridge), 4 files edited (handler signatures simplified,
bridge removed from orchestrator, utility type narrowed), 1 type
created. Zero behavioral changes, typecheck and tests pass.
2026-03-27 11:23:25 +00:00
Paul RastoinandGitHub db9da3194f Refactor client auto heal (#19032) 2026-03-27 09:23:26 +00:00
BugIsGodandGitHub 68f5e70ade fix: sign file URLs in timeline and file loss on click outside (#19001)
Fixes: #18943
## Problem

  Two bugs related to the Files field:

1. **File loss on click outside**: When `MultiItemFieldInput` was not in
edit mode (input hidden), clicking outside would still call
`validateInputAndComputeUpdatedItems()` with an empty `inputValue` and
`itemToEditIndex = 0`, causing the first file to be silently deleted.
<img width="624" height="332" alt="image"
src="https://github.com/user-attachments/assets/657aff2c-e497-4685-b8b7-fa22aba772f8"
/>


2. **Unsigned file URLs in timeline activity**: FileId, FileName stored
in `timelineActivity.properties.diff` (before/after values) were not
being signed (timeActivity.properties is stored as json in database),
making them inaccessible from the
frontend.

<img width="1092" height="103" alt="image"
src="https://github.com/user-attachments/assets/23d83ea3-4eb9-41ef-a99c-c4515d1cfb35"
/>


 ## Reproduction


https://github.com/user-attachments/assets/e75b842b-5cbb-46e8-a923-ac9df62deb98

## Changes
- `MultiItemFieldInput.tsx`: Wrap the validate + onChange logic in `if
(isInputDisplayed)` so it only runs when the input is actually open.
- `timeline-activity-query-result-getter.handler.ts`: New handler that
iterates over `properties.diff` fields and signs any file arrays found
in `before`/`after` values (call same method:
`fileUrlService.signFileByIdUrl` as table field view
`FilesFieldQueryResultGetterHandler`.
- `common-result-getters.service.ts`: Register the new handler for
`timelineActivity`.


## After 


https://github.com/user-attachments/assets/368c7be1-3101-43a2-ac93-fe1b0d8a7a37
2026-03-27 08:28:30 +00:00
Félix MalfaitandGitHub 08077476f3 fix: remove remaining direct cookie writes that make tokenPair a session cookie on renewal (#19031)
## Summary

- Removes two remaining direct `cookieStorage.setItem('tokenPair', ...)`
calls that were overwriting the Jotai-managed cookie (180-day expiry)
with a session cookie (no expiry) during **token renewal**
- Followup to #18795 which fixed the same issue in `handleSetAuthTokens`
but missed the renewal code paths

## Root cause

Two token renewal paths still had direct cookie writes without
`expires`:

1. **`apollo.factory.ts`** — `attemptTokenRenewal()` fires on every
`UNAUTHENTICATED` GraphQL error after a successful token refresh
2. **`useAgentChat.ts`** — `retryFetchWithRenewedToken()` fires on 401
from the AI chat endpoint

Both called `cookieStorage.setItem('tokenPair', JSON.stringify(tokens))`
without an `expires` attribute, creating a session cookie that overwrote
the Jotai-managed one. This is why the bug was **intermittent after
#18795**: it only appeared after a token renewal, not on fresh login.

The `onTokenPairChange` / `setTokenPair` calls already write through
Jotai's `atomWithStorage` → `createJotaiCookieStorage`, which always
sets `expires: 180 days`.

## Test plan

- Log in to the app
- Wait for a token renewal to occur (or force one by letting the access
token expire)
- Inspect the `tokenPair` cookie in DevTools → Application → Cookies
- Verify the cookie retains an expiration date ~180 days from now (not
"Session")
- Close and reopen the browser — confirm you remain logged in


Made with [Cursor](https://cursor.com)
2026-03-27 08:21:26 +00:00
6f0ac88e20 fix: batch viewGroup mutations sequentially to prevent race conditions (#19027)
## Bug Description

When reordering stages in the Kanban board, the frontend fires all
viewGroup update mutations concurrently via Promise.all, causing race
conditions in the workspace migration runner's cache invalidation,
database contention, and a thundering herd effect that stalls the
server.

## Changes

Changed `usePerformViewGroupAPIPersist` to execute viewGroup update
mutations sequentially instead of concurrently. The `Promise.all`
pattern fired all N mutations simultaneously, each triggering a full
workspace migration runner pipeline (transaction + cache invalidation).
The sequential `for...of` loop ensures each mutation completes
(including its cache invalidation) before the next begins, eliminating
the race condition.

## Related Issue

Fixes #18865

## Testing

This fix addresses the root cause identified in the Sonarly analysis on
the issue. The concurrent mutation pattern was causing:
- PostgreSQL row-level lock contention on viewGroup rows
- Cache thundering herd from repeated invalidation/recomputation cycles
- Server stalls requiring container restarts

The sequential approach ensures proper ordering and prevents these race
conditions.

---------

Co-authored-by: Rayan <rayan@example.com>
Co-authored-by: Charles Bochet <charles@twenty.com>
2026-03-27 08:13:51 +00:00
Charles BochetandGitHub 17424320e3 fix: gate command-menu-items query behind feature flag (#19029)
## Summary
- Gate the `FindManyCommandMenuItems` GraphQL query behind the
`IS_COMMAND_MENU_ITEM_ENABLED` feature flag on the frontend, preventing
an uncaught error when the flag is not enabled for a workspace
- Remove `IS_CONNECTED_ACCOUNT_MIGRATED` from the default feature flags
list
2026-03-27 08:11:26 +01:00
6360fb3bce chore: sync AI model catalog from models.dev (#19028)
Automated daily sync of `ai-providers.json` from
[models.dev](https://models.dev).

This PR updates pricing, context windows, and model availability based
on the latest data.
New models meeting inclusion criteria (tool calling, pricing data,
context limits) are added automatically.
Deprecated models are detected based on cost-efficiency within the same
model family.

**Please review before merging** — verify no critical models were
incorrectly deprecated.

Co-authored-by: FelixMalfait <6399865+FelixMalfait@users.noreply.github.com>
2026-03-27 07:22:18 +01:00
Baptiste DevessierandGitHub da1b1f1cbc Combine and clean upgrade commands for record page layouts (#19004)
- Remove the label identifier field for all standard objects as it's a
first-class citizen that is displayed specifically in the app; it
doesn't make a lot of sense to display it in the Fields widgets
- Disable logic that made the label identifier required and in first
position
- Add all fields for all standard objects in record page layout view
fields
- Do not include position and ts vector fields in custom objects

> [!IMPORTANT]
> The command will create Field widgets for all relations. It is
consistent to the way the frontend dynamically generates them as of
today. We will have to decide which relations we pin as individual Field
widgets before the release. (This will likely land in this command or in
another one.)
2026-03-26 17:50:29 +01:00
nitinandGitHub 31718d163c [Dashboards] fix rich text widget AGAIN (#19017) 2026-03-26 17:50:10 +01:00
Abdul RahmanandGitHub f47608de07 Clear navbar edit selection when closing the side panel (#18940)
In navbar edit mode, selecting an item for edit stored
selectedNavigationMenuItemIdInEditModeState (and related
pending-insertion state). Closing the side panel did not reset those
atoms, so the nav item stayed visually selected. Reset both when the
panel closes so the highlight matches the closed panel; reopening in
edit mode then starts from the generic “new item” entry unless the user
picks an item again.
2026-03-26 17:49:50 +01:00
Thomas des FrancsandGitHub 695518a15e Fix not shared chip height + hard coded border radius (#19020)
## Summary
- align the forbidden field "Not shared" chip with small chip dimensions
in the object table
- use the shared small border radius token instead of a hardcoded value
- add `overflow: hidden` and `user-select: none` to match chip behavior
more closely

## Testing
- Not run (not requested)
2026-03-26 17:48:20 +01:00
Thomas TrompetteandGitHub 34ab72c460 Fix: Cannot create two workflow agent nodes because these have the same name (#19015)
Currently, when trying to create a second step agent, we get the error
agent already exists because the name is using workflow id. Using step
id instead.
2026-03-26 16:00:15 +00:00
9eba54134d i18n - translations (#19019)
Created by Github action

---------

Co-authored-by: github-actions <github-actions@twenty.com>
2026-03-26 16:50:18 +01:00
34832815e6 fix: update settings page for mobile viewport (#18991)
## Description

- This PR fixes
https://github.com/twentyhq/core-team-issues/issues/2313#issuecomment-4116380772
- Fixes Admin Panel Apps table, Data model table and Roles table
- made data model table scrollable for mobile viewport keeping name
column fixed.


## Visual Appearance

## Before

- Roles Table

<img width="636" height="1039" alt="Screenshot 2026-03-26 at 1 28 30 PM"
src="https://github.com/user-attachments/assets/fa7532bd-aeb0-4c8f-a40e-08cc976cd2c2"
/>



- Admin Apps table

<img width="610" height="998" alt="Screenshot 2026-03-26 at 1 28 12 PM"
src="https://github.com/user-attachments/assets/8712473c-350f-46f8-9e68-9cb0a5fa9d80"
/>





- Data Model table



https://github.com/user-attachments/assets/c48075c5-56dd-4b76-acd4-76330d6dab94






## After

- Roles Table

<img width="761" height="1045" alt="Screenshot 2026-03-26 at 1 23 19 PM"
src="https://github.com/user-attachments/assets/17099956-816a-4d41-b987-563f6931a995"
/>

- Admin Apps table

<img width="794" height="1044" alt="Screenshot 2026-03-26 at 1 23 34 PM"
src="https://github.com/user-attachments/assets/0463a087-2363-4192-9adb-7d27076f303a"
/>


- Data model Table


https://github.com/user-attachments/assets/fd44e353-cc7c-44cf-bda0-d2f3cd531f2e

---------

Co-authored-by: Charles Bochet <charles@twenty.com>
Co-authored-by: Charles Bochet <charlesBochet@users.noreply.github.com>
2026-03-26 16:47:40 +01:00
Félix MalfaitandGitHub 7a341c6475 feat: support authType on AI providers for IAM role authentication (#19016)
## Summary
- Adds an `authType` field (`'api_key' | 'access_key' | 'iam_role'`) to
AI provider config
- Providers like Amazon Bedrock that authenticate via IAM role (instance
profile) can now be registered without explicit API keys or access keys
- Backend: `isProviderConfigured()` checks `apiKey || accessKeyId ||
authType`
- Frontend admin panel: shows green "Configured" badge and "IAM role"
description for providers with `authType: "iam_role"`
- Provider detail page shows "IAM role (instance profile)" in the
credentials row

## Companion PR
- twentyhq/twenty-infra#528 — patches `authType: "iam_role"` into
dev/staging Bedrock catalogs

## Changed files
- **Backend**: new `AiProviderAuthType` type, `isProviderConfigured`
util, updated registry + resolver
- **Frontend**: new `AiProviderAuthType` type, updated provider list
card + detail page

## Test plan
- [ ] Deploy with a Bedrock catalog that includes `"authType":
"iam_role"` — verify Bedrock shows "Configured" in admin AI panel
- [ ] Verify OpenAI/Anthropic with `apiKey` still show "Configured"
- [ ] Verify a provider with no credentials and no `authType` still
shows "No credentials"

Made with [Cursor](https://cursor.com)
2026-03-26 16:43:09 +01:00
1c297e5ace i18n - translations (#19018)
Created by Github action

---------

Co-authored-by: github-actions <github-actions@twenty.com>
2026-03-26 16:41:17 +01:00
MarieandGitHub c3a3cf9c67 [Apps SDK] Add error message if relationType is missing (#19006)
Before
<img width="2138" height="1434" alt="image"
src="https://github.com/user-attachments/assets/23aa04ae-9994-4ff9-bac8-9f245e6ca05f"
/>


After
<img width="1029" height="610" alt="image"
src="https://github.com/user-attachments/assets/7af48bc0-678d-4451-8cfb-a5e4028f2c2d"
/>
2026-03-26 15:25:12 +00:00
Lucas BordeauandGitHub 8ef99671e2 Fix board drag and drop issues (#19005)
This PR solves multiple problems : 
- An infinite loop that was happening on board with initial and fetch
more queries
- Warning messages that get triggered when we drag and drop multiple
times in a row
- An attempt to fix an existing error in Sentry, that couldn't be
reproduced for now.
2026-03-26 15:06:20 +00:00
Lucas BordeauandGitHub e63a23ea00 Fix create new with filters (#18969)
Fixes https://github.com/twentyhq/twenty/issues/18949

## Problem
- Creating a record from filters with DATE_TIME fields produced empty
objects instead of dates — `isPlainObject` from `twenty-shared` treats
`Date` instances as plain objects, so `mergeCompositeValues` spread them
into `{}`
- `buildRecordInputFromFilter` applied composite merge logic to all
field types indiscriminately, including primitives, dates, and strings
- DATE_TIME "is before" filters produced exact boundary values instead
of subtracting a minute

## Fix
- Composite and non-composite fields are now handled in separate
branches — `buildRecordInputFromFilter` uses `isCompositeFieldType` to
decide whether to merge or assign directly
- `mergeCompositeValues` extracted to its own file with a properly typed
signature (`Record<string, unknown>`) — no more runtime type guessing
- DATE_TIME fields with `IS_BEFORE` operand subtract one minute using
`subMinutes` from `date-fns`
- 13 unit tests for `mergeCompositeValues` covering all composite field
types (currency, address, full name, links, emails, phones) and
successive sub-field accumulation
2026-03-26 15:05:35 +00:00
39b9ae6a76 i18n - translations (#19014)
Created by Github action

---------

Co-authored-by: github-actions <github-actions@twenty.com>
2026-03-26 16:11:40 +01:00
afeef8e04a feat: add command menu item to layout customization (#18764)
figma
https://www.figma.com/design/xt8O9mFeLl46C5InWwoMrN/Twenty?node-id=93630-365000&t=QesAkY3JOyI9D3UU-0


https://github.com/user-attachments/assets/cf3b354d-0b08-41ae-91ae-386054b5cb2e



https://github.com/user-attachments/assets/73bfd676-f823-44c9-a70d-107c20523664

---------

Co-authored-by: Charles Bochet <charles@twenty.com>
2026-03-26 16:04:03 +01:00
Paul RastoinandGitHub c7f6036a47 [SDK] twenty-ui/display selective re-export to avoid bloating icons (#19010)
<img width="1946" height="792" alt="image"
src="https://github.com/user-attachments/assets/d0abf62b-85d4-4f5f-b6dc-f2cc1c691f7e"
/>

Avoid re-exporting twenty-ui icons bundle that are massive ~4MB
As discussed with @charlesBochet the problem should rather be treated at
twenty-ui level at some point, that's quite a quick workaround in order
to avoid overloading the twenty-sdk build size

When time comes, where twenty-ui is mature enough to get published we
will work on its bundle size
2026-03-26 14:53:11 +00:00
EtienneandGitHub ec5ab2b84a Fix format result (#18975)
For a field that is not a relation and not a composite, there is no
legitimate reason to recurse into a plain object value.

The only cases where recursion makes sense are:
- Relations, the value is a nested entity record (handled at line 149)
- Composite fields - the value is being reassembled from flat columns
(handled at line 176+)

For everything else, a plain object value is just data


#### Perf testing

Compare findManyCompanies with a jsonField having same 20-level nested
value (cf quote)
- with fix
Average ≈ 75.77 ms - min 52.43 ms - max 114.99 ms.

- without
Average: ≈ 376.62 ms - Min: 194.19 ms - Max: 1183.65 ms (39 requests)

```
{
  "document": {
    "id": "doc-nested-20",
    "title": "20-level nested sample",
    "tags": ["sample", "nested", "json", "fixture", "demo"],
    "counts": [100, 200, 300, 400, 500],
    "extras": {
      "a": true,
      "b": false,
      "c": null,
      "d": 3.14159,
      "e": "unicode-测试-αβγ"
    }
  },
  "users": [
    { "id": 1, "name": "Alice", "roles": ["admin", "editor"] },
    { "id": 2, "name": "Bob", "roles": ["viewer"] },
    { "id": 3, "name": "Carol", "roles": ["editor", "viewer"] }
  ],
  "matrix": [[1, 2, 3], [4, 5, 6], [7, 8, 9]],
  "settings": {
    "theme": "dark",
    "notifications": { "email": true, "push": false, "sms": false },
    "locale": "en-US"
  },
  "deep": {
    "level01": {
      "level02": {
        "level03": {
          "level04": {
            "level05": {
              "level06": {
                "level07": {
                  "level08": {
                    "level09": {
                      "level10": {
                        "level11": {
                          "level12": {
                            "level13": {
                              "level14": {
                                "level15": {
                                  "level16": {
                                    "level17": {
                                      "level18": {
                                        "level19": {
                                          "level20": {
                                            "leaf": true,
                                            "summary": "deepest object in this branch",
                                            "indices": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
                                            "meta": {
                                              "maxDepth": 20,
                                              "note": "Count deep.level01..level20 as 20 nested objects"
                                            }
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  },
  "footer": {
    "checksum": "example-only-not-real",
    "generated": "2025-03-25"
  }
}
```
2026-03-26 14:40:36 +00:00
nitinandGitHub b171a23216 [AI] replace custom styles with MenuItem and SidePanelGroup in AI agent persmissions tab (#19003)
closes
https://discord.com/channels/1130383047699738754/1486666682553598032
2026-03-26 14:33:07 +00:00
f771b13a20 i18n - translations (#19011)
Created by Github action

---------

Co-authored-by: github-actions <github-actions@twenty.com>
2026-03-26 15:35:49 +01:00
nitinandGitHub 92635b960b [AI] Navigation panel scroll refactor + Non chat placeholder (#18999)
<img width="374" height="1319" alt="CleanShot 2026-03-26 at 16 19 34"
src="https://github.com/user-attachments/assets/bebc7f67-3e9d-47c2-8e13-b57dab83d923"
/>

<img width="438" height="1320" alt="CleanShot 2026-03-26 at 16 19 20"
src="https://github.com/user-attachments/assets/e48ae2d2-066e-402f-a04b-aba7bae776bb"
/>


https://github.com/user-attachments/assets/64a8ad9b-0030-414c-a67d-3817ac3dd6b0
2026-03-26 14:20:48 +00:00
Thomas TrompetteandGitHub 2e015ee68d Add missing row lvl permission check on Kanban view (#19002)
The Kanban view builds a query in two layers:
- Inner query — selects actual records from the table (has all the
permission context)
- Outer query — wraps the inner query's raw SQL string to do
grouping/pagination
The problem: the inner query's SQL is copied out as a plain string
before RLS predicates are added to it. RLS predicates are normally added
lazily when you execute the query, but here the execution happens on the
outer query — which doesn't know about the entity or its RLS rules.

So RLS predicates are never applied anywhere.

The fix: explicitly apply RLS predicates to the inner query before its
SQL is extracted.

Additonnaly, fixed a temporal issue in Datetime pickers.
2026-03-26 14:20:05 +00:00
neo773andGitHub 82611de9b6 connected accounts follow up (#18998)
- Fixed group emails actions
- Fixed delta updates for folder manager
- Updated crons
2026-03-26 13:14:49 +00:00
36c7c99e34 fix: hide objects with no addable views in sidebar view picker (#18993)
Co-authored-by: Charles Bochet <charles@twenty.com>
2026-03-26 13:13:49 +00:00
Paul RastoinandGitHub 160a80cbcb Bump prelease version sdk, sdk-client, create-twenty-app (#19000) 2026-03-26 13:20:08 +01:00
664 changed files with 24885 additions and 9723 deletions
+15 -2
View File
@@ -36,6 +36,9 @@ jobs:
services:
postgres:
image: twentycrm/twenty-postgres-spilo
credentials:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
env:
PGUSER_SUPERUSER: postgres
PGPASSWORD_SUPERUSER: postgres
@@ -50,10 +53,16 @@ jobs:
--health-retries 5
redis:
image: redis
credentials:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
ports:
- 6379:6379
clickhouse:
image: clickhouse/clickhouse-server:25.8.8
credentials:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
env:
CLICKHOUSE_PASSWORD: clickhousePassword
CLICKHOUSE_URL: "http://default:clickhousePassword@localhost:8123/twenty"
@@ -143,7 +152,6 @@ jobs:
set_env_var "CLICKHOUSE_PASSWORD" "clickhousePassword"
npx nx run twenty-server:database:init:prod
npx nx run twenty-server:database:migrate:prod
- name: Seed current branch database with test data
run: |
@@ -296,7 +304,6 @@ jobs:
set_env_var "CLICKHOUSE_PASSWORD" "clickhousePassword"
npx nx run twenty-server:database:init:prod
npx nx run twenty-server:database:migrate:prod
- name: Seed main branch database with test data
run: |
@@ -395,6 +402,12 @@ jobs:
# Clean up temp directory
rm -rf /tmp/current-branch-files
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
- name: Install OpenAPI Diff Tool
run: |
# Using the Java-based OpenAPITools/openapi-diff via Docker
+6
View File
@@ -37,6 +37,9 @@ jobs:
services:
postgres:
image: twentycrm/twenty-postgres-spilo
credentials:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
env:
PGUSER_SUPERUSER: postgres
PGPASSWORD_SUPERUSER: postgres
@@ -51,6 +54,9 @@ jobs:
--health-retries 5
redis:
image: redis
credentials:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
ports:
- 6379:6379
env:
+6
View File
@@ -26,6 +26,9 @@ jobs:
services:
postgres:
image: twentycrm/twenty-postgres-spilo
credentials:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
env:
PGUSER_SUPERUSER: postgres
PGPASSWORD_SUPERUSER: postgres
@@ -40,6 +43,9 @@ jobs:
--health-retries 5
redis:
image: redis
credentials:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
ports:
- 6379:6379
steps:
+6
View File
@@ -57,6 +57,9 @@ jobs:
services:
postgres:
image: twentycrm/twenty-postgres-spilo
credentials:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
env:
PGUSER_SUPERUSER: postgres
PGPASSWORD_SUPERUSER: postgres
@@ -71,6 +74,9 @@ jobs:
--health-retries 5
redis:
image: redis
credentials:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
ports:
- 6379:6379
env:
+15 -1
View File
@@ -84,6 +84,9 @@ jobs:
services:
postgres:
image: twentycrm/twenty-postgres-spilo
credentials:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
env:
PGUSER_SUPERUSER: postgres
PGPASSWORD_SUPERUSER: postgres
@@ -98,6 +101,9 @@ jobs:
--health-retries 5
redis:
image: redis
credentials:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
ports:
- 6379:6379
steps:
@@ -122,7 +128,6 @@ jobs:
PGPASSWORD=postgres psql -h localhost -p 5432 -U postgres -d postgres -c 'CREATE DATABASE "default";'
PGPASSWORD=postgres psql -h localhost -p 5432 -U postgres -d postgres -c 'CREATE DATABASE "test";'
npx nx run twenty-server:database:init:prod
npx nx run twenty-server:database:migrate:prod
- name: Worker / Run
run: |
timeout 30s npx nx run twenty-server:worker || exit_code=$?
@@ -227,6 +232,9 @@ jobs:
services:
postgres:
image: twentycrm/twenty-postgres-spilo
credentials:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
env:
PGUSER_SUPERUSER: postgres
PGPASSWORD_SUPERUSER: postgres
@@ -241,10 +249,16 @@ jobs:
--health-retries 5
redis:
image: redis
credentials:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
ports:
- 6379:6379
clickhouse:
image: clickhouse/clickhouse-server:25.8.8
credentials:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
env:
CLICKHOUSE_PASSWORD: clickhousePassword
CLICKHOUSE_URL: "http://default:clickhousePassword@localhost:8123/twenty"
@@ -27,6 +27,11 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
- name: Run compose
run: |
echo "Patching docker-compose.yml..."
@@ -97,6 +102,11 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
- name: Create frontend placeholder
run: |
mkdir -p packages/twenty-front/build
+3
View File
@@ -27,6 +27,9 @@ jobs:
services:
postgres:
image: twentycrm/twenty-postgres-spilo
credentials:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
env:
PGUSER_SUPERUSER: postgres
PGPASSWORD_SUPERUSER: postgres
+6
View File
@@ -30,6 +30,9 @@ jobs:
services:
postgres:
image: twentycrm/twenty-postgres-spilo
credentials:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
env:
PGUSER_SUPERUSER: postgres
PGPASSWORD_SUPERUSER: postgres
@@ -44,6 +47,9 @@ jobs:
--health-retries 5
redis:
image: redis
credentials:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
ports:
- 6379:6379
steps:
@@ -17,6 +17,12 @@ jobs:
with:
ref: ${{ github.event.client_payload.pr_head_sha }}
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
- name: Run compose setup
run: |
echo "Patching docker-compose.yml..."
+1
View File
@@ -203,6 +203,7 @@
"packages/twenty-utils",
"packages/twenty-zapier",
"packages/twenty-website",
"packages/twenty-website-new",
"packages/twenty-docs",
"packages/twenty-e2e-testing",
"packages/twenty-shared",
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "create-twenty-app",
"version": "0.8.0-canary.3",
"version": "0.8.0-canary.5",
"description": "Command-line interface to create Twenty application",
"main": "dist/cli.cjs",
"bin": "dist/cli.cjs",
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "twenty-client-sdk",
"version": "0.8.0-canary.3",
"version": "0.8.0-canary.5",
"sideEffects": false,
"license": "AGPL-3.0",
"scripts": {
@@ -343,6 +343,7 @@ type Field {
defaultValue: JSON
options: JSON
settings: JSON
objectMetadataId: UUID!
isLabelSyncedWithName: Boolean
morphId: UUID
createdAt: DateTime!
@@ -540,6 +541,7 @@ input FieldFilter {
isActive: BooleanFieldComparison
isSystem: BooleanFieldComparison
isUIReadOnly: BooleanFieldComparison
objectMetadataId: UUIDFilterComparison
}
input IndexFilter {
@@ -2273,6 +2275,11 @@ type FieldConnection {
edges: [FieldEdge!]!
}
type LogicFunctionLogs {
"""Execution Logs"""
logs: String!
}
type DeleteTwoFactorAuthenticationMethod {
"""Boolean that confirms query was dispatched"""
success: Boolean!
@@ -2593,11 +2600,6 @@ type UsageAnalytics {
userDailyUsage: UsageUserDaily
}
type LogicFunctionLogs {
"""Execution Logs"""
logs: String!
}
type FrontComponent {
id: UUID!
name: String!
@@ -3090,6 +3092,7 @@ enum AllMetadataName {
navigationMenuItem
permissionFlag
objectPermission
fieldPermission
frontComponent
webhook
}
@@ -3501,6 +3504,7 @@ type Mutation {
createViewGroup(input: CreateViewGroupInput!): ViewGroup!
createManyViewGroups(inputs: [CreateViewGroupInput!]!): [ViewGroup!]!
updateViewGroup(input: UpdateViewGroupInput!): ViewGroup!
updateManyViewGroups(inputs: [UpdateViewGroupInput!]!): [ViewGroup!]!
deleteViewGroup(input: DeleteViewGroupInput!): ViewGroup!
destroyViewGroup(input: DestroyViewGroupInput!): ViewGroup!
updateMessageFolder(input: UpdateMessageFolderInput!): MessageFolder!
@@ -4272,8 +4276,8 @@ input CreateFieldInput {
defaultValue: JSON
options: JSON
settings: JSON
isLabelSyncedWithName: Boolean
objectMetadataId: UUID!
isLabelSyncedWithName: Boolean
isRemoteCreation: Boolean
relationCreationPayload: JSON
morphRelationsCreationPayload: [JSON!]
@@ -4301,6 +4305,7 @@ input UpdateFieldInput {
defaultValue: JSON
options: JSON
settings: JSON
objectMetadataId: UUID
isLabelSyncedWithName: Boolean
morphRelationsUpdatePayload: [JSON!]
}
@@ -296,6 +296,7 @@ export interface Field {
defaultValue?: Scalars['JSON']
options?: Scalars['JSON']
settings?: Scalars['JSON']
objectMetadataId: Scalars['UUID']
isLabelSyncedWithName?: Scalars['Boolean']
morphId?: Scalars['UUID']
createdAt: Scalars['DateTime']
@@ -1937,6 +1938,12 @@ export interface FieldConnection {
__typename: 'FieldConnection'
}
export interface LogicFunctionLogs {
/** Execution Logs */
logs: Scalars['String']
__typename: 'LogicFunctionLogs'
}
export interface DeleteTwoFactorAuthenticationMethod {
/** Boolean that confirms query was dispatched */
success: Scalars['Boolean']
@@ -2298,12 +2305,6 @@ export interface UsageAnalytics {
__typename: 'UsageAnalytics'
}
export interface LogicFunctionLogs {
/** Execution Logs */
logs: Scalars['String']
__typename: 'LogicFunctionLogs'
}
export interface FrontComponent {
id: Scalars['UUID']
name: Scalars['String']
@@ -2676,7 +2677,7 @@ export interface CollectionHash {
__typename: 'CollectionHash'
}
export type AllMetadataName = 'fieldMetadata' | 'objectMetadata' | 'view' | 'viewField' | 'viewFieldGroup' | 'viewGroup' | 'viewSort' | 'rowLevelPermissionPredicate' | 'rowLevelPermissionPredicateGroup' | 'viewFilterGroup' | 'index' | 'logicFunction' | 'viewFilter' | 'role' | 'roleTarget' | 'agent' | 'skill' | 'pageLayout' | 'pageLayoutWidget' | 'pageLayoutTab' | 'commandMenuItem' | 'navigationMenuItem' | 'permissionFlag' | 'objectPermission' | 'frontComponent' | 'webhook'
export type AllMetadataName = 'fieldMetadata' | 'objectMetadata' | 'view' | 'viewField' | 'viewFieldGroup' | 'viewGroup' | 'viewSort' | 'rowLevelPermissionPredicate' | 'rowLevelPermissionPredicateGroup' | 'viewFilterGroup' | 'index' | 'logicFunction' | 'viewFilter' | 'role' | 'roleTarget' | 'agent' | 'skill' | 'pageLayout' | 'pageLayoutWidget' | 'pageLayoutTab' | 'commandMenuItem' | 'navigationMenuItem' | 'permissionFlag' | 'objectPermission' | 'fieldPermission' | 'frontComponent' | 'webhook'
export interface MinimalObjectMetadata {
id: Scalars['UUID']
@@ -2954,6 +2955,7 @@ export interface Mutation {
createViewGroup: ViewGroup
createManyViewGroups: ViewGroup[]
updateViewGroup: ViewGroup
updateManyViewGroups: ViewGroup[]
deleteViewGroup: ViewGroup
destroyViewGroup: ViewGroup
updateMessageFolder: MessageFolder
@@ -3360,6 +3362,7 @@ export interface FieldGenqlSelection{
defaultValue?: boolean | number
options?: boolean | number
settings?: boolean | number
objectMetadataId?: boolean | number
isLabelSyncedWithName?: boolean | number
morphId?: boolean | number
createdAt?: boolean | number
@@ -3476,7 +3479,7 @@ export interface ObjectGenqlSelection{
__scalar?: boolean | number
}
export interface FieldFilter {and?: (FieldFilter[] | null),or?: (FieldFilter[] | null),id?: (UUIDFilterComparison | null),isCustom?: (BooleanFieldComparison | null),isActive?: (BooleanFieldComparison | null),isSystem?: (BooleanFieldComparison | null),isUIReadOnly?: (BooleanFieldComparison | null)}
export interface FieldFilter {and?: (FieldFilter[] | null),or?: (FieldFilter[] | null),id?: (UUIDFilterComparison | null),isCustom?: (BooleanFieldComparison | null),isActive?: (BooleanFieldComparison | null),isSystem?: (BooleanFieldComparison | null),isUIReadOnly?: (BooleanFieldComparison | null),objectMetadataId?: (UUIDFilterComparison | null)}
export interface IndexFilter {and?: (IndexFilter[] | null),or?: (IndexFilter[] | null),id?: (UUIDFilterComparison | null),isCustom?: (BooleanFieldComparison | null)}
@@ -5096,6 +5099,13 @@ export interface FieldConnectionGenqlSelection{
__scalar?: boolean | number
}
export interface LogicFunctionLogsGenqlSelection{
/** Execution Logs */
logs?: boolean | number
__typename?: boolean | number
__scalar?: boolean | number
}
export interface DeleteTwoFactorAuthenticationMethodGenqlSelection{
/** Boolean that confirms query was dispatched */
success?: boolean | number
@@ -5501,13 +5511,6 @@ export interface UsageAnalyticsGenqlSelection{
__scalar?: boolean | number
}
export interface LogicFunctionLogsGenqlSelection{
/** Execution Logs */
logs?: boolean | number
__typename?: boolean | number
__scalar?: boolean | number
}
export interface FrontComponentGenqlSelection{
id?: boolean | number
name?: boolean | number
@@ -6207,6 +6210,7 @@ export interface MutationGenqlSelection{
createViewGroup?: (ViewGroupGenqlSelection & { __args: {input: CreateViewGroupInput} })
createManyViewGroups?: (ViewGroupGenqlSelection & { __args: {inputs: CreateViewGroupInput[]} })
updateViewGroup?: (ViewGroupGenqlSelection & { __args: {input: UpdateViewGroupInput} })
updateManyViewGroups?: (ViewGroupGenqlSelection & { __args: {inputs: UpdateViewGroupInput[]} })
deleteViewGroup?: (ViewGroupGenqlSelection & { __args: {input: DeleteViewGroupInput} })
destroyViewGroup?: (ViewGroupGenqlSelection & { __args: {input: DestroyViewGroupInput} })
updateMessageFolder?: (MessageFolderGenqlSelection & { __args: {input: UpdateMessageFolderInput} })
@@ -6527,7 +6531,7 @@ export interface CreateOneFieldMetadataInput {
/** The record to create */
field: CreateFieldInput}
export interface CreateFieldInput {type: FieldMetadataType,name: Scalars['String'],label: Scalars['String'],description?: (Scalars['String'] | null),icon?: (Scalars['String'] | null),isCustom?: (Scalars['Boolean'] | null),isActive?: (Scalars['Boolean'] | null),isSystem?: (Scalars['Boolean'] | null),isUIReadOnly?: (Scalars['Boolean'] | null),isNullable?: (Scalars['Boolean'] | null),isUnique?: (Scalars['Boolean'] | null),defaultValue?: (Scalars['JSON'] | null),options?: (Scalars['JSON'] | null),settings?: (Scalars['JSON'] | null),isLabelSyncedWithName?: (Scalars['Boolean'] | null),objectMetadataId: Scalars['UUID'],isRemoteCreation?: (Scalars['Boolean'] | null),relationCreationPayload?: (Scalars['JSON'] | null),morphRelationsCreationPayload?: (Scalars['JSON'][] | null)}
export interface CreateFieldInput {type: FieldMetadataType,name: Scalars['String'],label: Scalars['String'],description?: (Scalars['String'] | null),icon?: (Scalars['String'] | null),isCustom?: (Scalars['Boolean'] | null),isActive?: (Scalars['Boolean'] | null),isSystem?: (Scalars['Boolean'] | null),isUIReadOnly?: (Scalars['Boolean'] | null),isNullable?: (Scalars['Boolean'] | null),isUnique?: (Scalars['Boolean'] | null),defaultValue?: (Scalars['JSON'] | null),options?: (Scalars['JSON'] | null),settings?: (Scalars['JSON'] | null),objectMetadataId: Scalars['UUID'],isLabelSyncedWithName?: (Scalars['Boolean'] | null),isRemoteCreation?: (Scalars['Boolean'] | null),relationCreationPayload?: (Scalars['JSON'] | null),morphRelationsCreationPayload?: (Scalars['JSON'][] | null)}
export interface UpdateOneFieldMetadataInput {
/** The id of the record to update */
@@ -6535,7 +6539,7 @@ id: Scalars['UUID'],
/** The record to update */
update: UpdateFieldInput}
export interface UpdateFieldInput {universalIdentifier?: (Scalars['String'] | null),name?: (Scalars['String'] | null),label?: (Scalars['String'] | null),description?: (Scalars['String'] | null),icon?: (Scalars['String'] | null),isActive?: (Scalars['Boolean'] | null),isSystem?: (Scalars['Boolean'] | null),isUIReadOnly?: (Scalars['Boolean'] | null),isNullable?: (Scalars['Boolean'] | null),isUnique?: (Scalars['Boolean'] | null),defaultValue?: (Scalars['JSON'] | null),options?: (Scalars['JSON'] | null),settings?: (Scalars['JSON'] | null),isLabelSyncedWithName?: (Scalars['Boolean'] | null),morphRelationsUpdatePayload?: (Scalars['JSON'][] | null)}
export interface UpdateFieldInput {universalIdentifier?: (Scalars['String'] | null),name?: (Scalars['String'] | null),label?: (Scalars['String'] | null),description?: (Scalars['String'] | null),icon?: (Scalars['String'] | null),isActive?: (Scalars['Boolean'] | null),isSystem?: (Scalars['Boolean'] | null),isUIReadOnly?: (Scalars['Boolean'] | null),isNullable?: (Scalars['Boolean'] | null),isUnique?: (Scalars['Boolean'] | null),defaultValue?: (Scalars['JSON'] | null),options?: (Scalars['JSON'] | null),settings?: (Scalars['JSON'] | null),objectMetadataId?: (Scalars['UUID'] | null),isLabelSyncedWithName?: (Scalars['Boolean'] | null),morphRelationsUpdatePayload?: (Scalars['JSON'][] | null)}
export interface DeleteOneFieldInput {
/** The id of the field to delete. */
@@ -8047,6 +8051,14 @@ export interface LogicFunctionLogsInput {applicationId?: (Scalars['UUID'] | null
const LogicFunctionLogs_possibleTypes: string[] = ['LogicFunctionLogs']
export const isLogicFunctionLogs = (obj?: { __typename?: any } | null): obj is LogicFunctionLogs => {
if (!obj?.__typename) throw new Error('__typename is missing in "isLogicFunctionLogs"')
return LogicFunctionLogs_possibleTypes.includes(obj.__typename)
}
const DeleteTwoFactorAuthenticationMethod_possibleTypes: string[] = ['DeleteTwoFactorAuthenticationMethod']
export const isDeleteTwoFactorAuthenticationMethod = (obj?: { __typename?: any } | null): obj is DeleteTwoFactorAuthenticationMethod => {
if (!obj?.__typename) throw new Error('__typename is missing in "isDeleteTwoFactorAuthenticationMethod"')
@@ -8431,14 +8443,6 @@ export interface LogicFunctionLogsInput {applicationId?: (Scalars['UUID'] | null
const LogicFunctionLogs_possibleTypes: string[] = ['LogicFunctionLogs']
export const isLogicFunctionLogs = (obj?: { __typename?: any } | null): obj is LogicFunctionLogs => {
if (!obj?.__typename) throw new Error('__typename is missing in "isLogicFunctionLogs"')
return LogicFunctionLogs_possibleTypes.includes(obj.__typename)
}
const FrontComponent_possibleTypes: string[] = ['FrontComponent']
export const isFrontComponent = (obj?: { __typename?: any } | null): obj is FrontComponent => {
if (!obj?.__typename) throw new Error('__typename is missing in "isFrontComponent"')
@@ -9425,6 +9429,7 @@ export const enumAllMetadataName = {
navigationMenuItem: 'navigationMenuItem' as const,
permissionFlag: 'permissionFlag' as const,
objectPermission: 'objectPermission' as const,
fieldPermission: 'fieldPermission' as const,
frontComponent: 'frontComponent' as const,
webhook: 'webhook' as const
}
@@ -63,8 +63,8 @@ export default {
210,
227,
244,
282,
283,
284,
299,
300,
325,
@@ -777,6 +777,9 @@ export default {
"settings": [
15
],
"objectMetadataId": [
3
],
"isLabelSyncedWithName": [
6
],
@@ -1164,6 +1167,9 @@ export default {
"isUIReadOnly": [
43
],
"objectMetadataId": [
42
],
"__typename": [
1
]
@@ -4458,6 +4464,14 @@ export default {
1
]
},
"LogicFunctionLogs": {
"logs": [
1
],
"__typename": [
1
]
},
"DeleteTwoFactorAuthenticationMethod": {
"success": [
6
@@ -4503,10 +4517,10 @@ export default {
},
"AuthTokenPair": {
"accessOrWorkspaceAgnosticToken": [
250
251
],
"refreshToken": [
250
251
],
"__typename": [
1
@@ -4514,7 +4528,7 @@ export default {
},
"AvailableWorkspacesAndAccessTokens": {
"tokens": [
251
252
],
"availableWorkspaces": [
224
@@ -4566,10 +4580,10 @@ export default {
},
"SignUp": {
"loginToken": [
250
251
],
"workspace": [
256
257
],
"__typename": [
1
@@ -4577,7 +4591,7 @@ export default {
},
"TransientToken": {
"transientToken": [
250
251
],
"__typename": [
1
@@ -4599,7 +4613,7 @@ export default {
},
"VerifyEmailAndGetLoginToken": {
"loginToken": [
250
251
],
"workspaceUrls": [
157
@@ -4618,7 +4632,7 @@ export default {
},
"AuthTokens": {
"tokens": [
251
252
],
"__typename": [
1
@@ -4626,7 +4640,7 @@ export default {
},
"LoginToken": {
"loginToken": [
250
251
],
"__typename": [
1
@@ -4656,10 +4670,10 @@ export default {
},
"Impersonate": {
"loginToken": [
250
251
],
"workspace": [
256
257
],
"__typename": [
1
@@ -4689,10 +4703,10 @@ export default {
},
"ApplicationTokenPair": {
"applicationAccessToken": [
250
251
],
"applicationRefreshToken": [
250
251
],
"__typename": [
1
@@ -4764,7 +4778,7 @@ export default {
1
],
"fields": [
271
272
],
"__typename": [
1
@@ -4861,10 +4875,10 @@ export default {
6
],
"objectPermissions": [
275
276
],
"fieldPermissions": [
276
277
],
"permissionFlags": [
1
@@ -4914,19 +4928,19 @@ export default {
1
],
"objects": [
272
],
"fields": [
271
],
"logicFunctions": [
273
],
"frontComponents": [
"fields": [
272
],
"logicFunctions": [
274
],
"frontComponents": [
275
],
"defaultRole": [
277
278
],
"sourcePackage": [
1
@@ -4986,13 +5000,13 @@ export default {
1
],
"driver": [
282
],
"status": [
283
],
"status": [
284
],
"verificationRecords": [
280
281
],
"verifiedAt": [
4
@@ -5039,7 +5053,7 @@ export default {
1
],
"location": [
285
286
],
"__typename": [
1
@@ -5067,13 +5081,13 @@ export default {
},
"ImapSmtpCaldavConnectionParameters": {
"IMAP": [
287
288
],
"SMTP": [
287
288
],
"CALDAV": [
287
288
],
"__typename": [
1
@@ -5093,7 +5107,7 @@ export default {
3
],
"connectionParameters": [
288
289
],
"__typename": [
1
@@ -5157,7 +5171,7 @@ export default {
1
],
"dailyUsage": [
293
294
],
"__typename": [
1
@@ -5165,13 +5179,13 @@ export default {
},
"UsageAnalytics": {
"usageByUser": [
292
293
],
"usageByOperationType": [
292
293
],
"timeSeries": [
293
294
],
"periodStart": [
4
@@ -5180,15 +5194,7 @@ export default {
4
],
"userDailyUsage": [
294
],
"__typename": [
1
]
},
"LogicFunctionLogs": {
"logs": [
1
295
],
"__typename": [
1
@@ -5235,7 +5241,7 @@ export default {
6
],
"applicationTokenPair": [
269
270
],
"__typename": [
1
@@ -6656,7 +6662,7 @@ export default {
}
],
"checkUserExists": [
264,
265,
{
"email": [
1,
@@ -6668,7 +6674,7 @@ export default {
}
],
"checkWorkspaceInviteHashIsValid": [
265,
266,
{
"inviteHash": [
1,
@@ -6686,7 +6692,7 @@ export default {
}
],
"validatePasswordResetToken": [
259,
260,
{
"passwordResetToken": [
1,
@@ -6769,7 +6775,7 @@ export default {
220
],
"getConnectedImapSmtpCaldavAccount": [
289,
290,
{
"id": [
3,
@@ -6778,7 +6784,7 @@ export default {
}
],
"getAutoCompleteAddress": [
284,
285,
{
"address": [
1,
@@ -6797,7 +6803,7 @@ export default {
}
],
"getAddressDetails": [
286,
287,
{
"placeId": [
1,
@@ -6889,19 +6895,19 @@ export default {
}
],
"getPostgresCredentials": [
291
292
],
"findManyPublicDomains": [
279
280
],
"getEmailingDomains": [
281
282
],
"findManyMarketplaceApps": [
278
279
],
"findOneMarketplaceApp": [
278,
279,
{
"universalIdentifier": [
1,
@@ -6924,7 +6930,7 @@ export default {
}
],
"getUsageAnalytics": [
295,
296,
{
"input": [
365
@@ -8130,6 +8136,15 @@ export default {
]
}
],
"updateManyViewGroups": [
56,
{
"inputs": [
450,
"[UpdateViewGroupInput!]!"
]
}
],
"deleteViewGroup": [
56,
{
@@ -8300,7 +8315,7 @@ export default {
}
],
"getAuthorizationUrlForSSO": [
254,
255,
{
"input": [
466,
@@ -8309,7 +8324,7 @@ export default {
}
],
"getLoginTokenFromCredentials": [
263,
264,
{
"email": [
1,
@@ -8335,7 +8350,7 @@ export default {
}
],
"signIn": [
252,
253,
{
"email": [
1,
@@ -8357,7 +8372,7 @@ export default {
}
],
"verifyEmailAndGetLoginToken": [
260,
261,
{
"emailVerificationToken": [
1,
@@ -8377,7 +8392,7 @@ export default {
}
],
"verifyEmailAndGetWorkspaceAgnosticToken": [
252,
253,
{
"emailVerificationToken": [
1,
@@ -8393,7 +8408,7 @@ export default {
}
],
"getAuthTokensFromOTP": [
262,
263,
{
"otp": [
1,
@@ -8413,7 +8428,7 @@ export default {
}
],
"signUp": [
252,
253,
{
"email": [
1,
@@ -8435,7 +8450,7 @@ export default {
}
],
"signUpInWorkspace": [
257,
258,
{
"email": [
1,
@@ -8466,13 +8481,13 @@ export default {
}
],
"signUpInNewWorkspace": [
257
],
"generateTransientToken": [
258
],
"generateTransientToken": [
259
],
"getAuthTokensFromLoginToken": [
262,
263,
{
"loginToken": [
1,
@@ -8485,7 +8500,7 @@ export default {
}
],
"authorizeApp": [
249,
250,
{
"clientId": [
1,
@@ -8507,7 +8522,7 @@ export default {
}
],
"renewToken": [
262,
263,
{
"appToken": [
1,
@@ -8516,7 +8531,7 @@ export default {
}
],
"generateApiKeyToken": [
261,
262,
{
"apiKeyId": [
3,
@@ -8529,7 +8544,7 @@ export default {
}
],
"emailPasswordResetLink": [
253,
254,
{
"email": [
1,
@@ -8541,7 +8556,7 @@ export default {
}
],
"updatePasswordViaResetToken": [
255,
256,
{
"passwordResetToken": [
1,
@@ -8642,7 +8657,7 @@ export default {
}
],
"initiateOTPProvisioning": [
247,
248,
{
"loginToken": [
1,
@@ -8655,10 +8670,10 @@ export default {
}
],
"initiateOTPProvisioningForAuthenticatedUser": [
247
248
],
"deleteTwoFactorAuthenticationMethod": [
246,
247,
{
"twoFactorAuthenticationMethodId": [
3,
@@ -8667,7 +8682,7 @@ export default {
}
],
"verifyTwoFactorAuthenticationMethodForAuthenticatedUser": [
248,
249,
{
"otp": [
1,
@@ -8773,7 +8788,7 @@ export default {
}
],
"impersonate": [
266,
267,
{
"userId": [
3,
@@ -8795,7 +8810,7 @@ export default {
}
],
"saveImapSmtpCaldavAccount": [
290,
291,
{
"accountOwnerId": [
3,
@@ -8998,13 +9013,13 @@ export default {
}
],
"enablePostgresProxy": [
291
292
],
"disablePostgresProxy": [
291
292
],
"createPublicDomain": [
279,
280,
{
"domain": [
1,
@@ -9031,14 +9046,14 @@ export default {
}
],
"createEmailingDomain": [
281,
282,
{
"domain": [
1,
"String!"
],
"driver": [
282,
283,
"EmailingDomainDriver!"
]
}
@@ -9053,7 +9068,7 @@ export default {
}
],
"verifyEmailingDomain": [
281,
282,
{
"id": [
1,
@@ -9130,7 +9145,7 @@ export default {
}
],
"createDevelopmentApplication": [
267,
268,
{
"universalIdentifier": [
1,
@@ -9143,7 +9158,7 @@ export default {
}
],
"generateApplicationToken": [
269,
270,
{
"applicationId": [
3,
@@ -9152,7 +9167,7 @@ export default {
}
],
"syncApplication": [
268,
269,
{
"manifest": [
15,
@@ -9161,7 +9176,7 @@ export default {
}
],
"uploadApplicationFile": [
270,
271,
{
"file": [
372,
@@ -9195,7 +9210,7 @@ export default {
}
],
"renewApplicationToken": [
269,
270,
{
"applicationRefreshToken": [
1,
@@ -10745,12 +10760,12 @@ export default {
"settings": [
15
],
"isLabelSyncedWithName": [
6
],
"objectMetadataId": [
3
],
"isLabelSyncedWithName": [
6
],
"isRemoteCreation": [
6
],
@@ -10815,6 +10830,9 @@ export default {
"settings": [
15
],
"objectMetadataId": [
3
],
"isLabelSyncedWithName": [
6
],
@@ -11455,7 +11473,7 @@ export default {
}
],
"logicFunctionLogs": [
296,
246,
{
"input": [
490,
@@ -32,11 +32,11 @@ has_schema=$(PGPASSWORD=twenty psql -h localhost -U twenty -d default -tAc \
if [ "$has_schema" = "f" ]; then
echo "Database appears to be empty, running initial setup..."
NODE_OPTIONS="--max-old-space-size=1500" node ./dist/scripts/setup-db.js
NODE_OPTIONS="--max-old-space-size=1500" node ./dist/database/scripts/setup-db.js
fi
# Always run migrations (idempotent — skips already-applied ones)
yarn database:migrate:prod
yarn database:migrate:prod --force
yarn command:prod cache:flush
yarn command:prod upgrade
-6
View File
@@ -38,12 +38,6 @@ RUN npx nx run twenty-server:lingui:extract && \
RUN npx nx run twenty-server:build
# Bundle setup-db script into a standalone JS file so the final image
# doesn't need tsx or the TypeScript source tree at runtime.
RUN npx esbuild packages/twenty-server/scripts/setup-db.ts \
--bundle --platform=node --outfile=packages/twenty-server/dist/scripts/setup-db.js \
--external:typeorm --external:dotenv --external:pg
# Clean server build output (type declarations and compiled tests are not needed at runtime;
# source maps are kept because twenty-infra extracts them from the image for Sentry uploads)
RUN find /app/packages/twenty-server/dist -name '*.d.ts' -delete \
+1 -2
View File
@@ -13,8 +13,7 @@ setup_and_migrate_db() {
has_schema=$(psql -tAc "SELECT EXISTS (SELECT 1 FROM information_schema.schemata WHERE schema_name = 'core')" ${PG_DATABASE_URL})
if [ "$has_schema" = "f" ]; then
echo "Database appears to be empty, running migrations."
NODE_OPTIONS="--max-old-space-size=1500" node ./dist/scripts/setup-db.js
yarn database:migrate:prod
yarn database:init:prod
fi
yarn command:prod cache:flush
+1 -1
View File
@@ -61,7 +61,7 @@ const jestConfig = {
extensionsToTreatAsEsm: ['.ts', '.tsx'],
coverageThreshold: {
global: {
statements: 48.5,
statements: 48.4,
lines: 47.0,
functions: 39.5,
},
File diff suppressed because one or more lines are too long
@@ -3028,6 +3028,7 @@ msgstr "Sluit banier"
#. js-lingui-id: saip/v
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Close side panel"
msgstr "Maak sypaneel toe"
@@ -3402,6 +3403,7 @@ msgstr "Inhoud"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
msgstr "Konteks"
@@ -3893,6 +3895,7 @@ msgstr "Besig om jou werksruimte te skep"
#. js-lingui-id: HAzhV7
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Credentials"
msgstr "Geloofsbriewe"
@@ -5180,6 +5183,13 @@ msgstr "Wysig {objectLabelPlural}"
msgid "Edit Account"
msgstr "Wysig Rekening"
#. js-lingui-id: t1EOLt
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
msgid "Edit actions"
msgstr ""
#. js-lingui-id: GpnfNN
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Edit Dashboard"
@@ -6676,6 +6686,11 @@ msgstr "Veldnaam"
msgid "Field on destination"
msgstr "Veld op bestemming"
#. js-lingui-id: P8JCfj
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "field permission"
msgstr ""
#. js-lingui-id: RnX5oc
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "fields"
@@ -7400,6 +7415,11 @@ msgstr "Versteek groep {groupValue}"
msgid "Hide hidden groups"
msgstr "Versteek versteekte groepe"
#. js-lingui-id: 2ouyMV
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Hide label"
msgstr ""
#. js-lingui-id: i0qMbr
#: src/modules/page-layout/constants/StandardPageLayoutTabTitleTranslations.ts
#: src/modules/navigation/components/MainNavigationDrawerTabsRow.tsx
@@ -7508,6 +7528,16 @@ msgstr "IAM-geloofsbriewe"
msgid "IAM credentials configured"
msgstr "IAM-geloofsbriewe gekonfigureer"
#. js-lingui-id: LlQirF
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
msgid "IAM role"
msgstr ""
#. js-lingui-id: VjDLrJ
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "IAM role (instance profile)"
msgstr ""
#. js-lingui-id: wwu18a
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Icon"
@@ -9197,6 +9227,7 @@ msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "More"
msgstr "Meer"
@@ -9720,6 +9751,11 @@ msgstr "Geen inhoud"
msgid "No calling code"
msgstr "Geen roepkode"
#. js-lingui-id: d14J3J
#: src/modules/ai/components/NavigationDrawerAIChatContent.tsx
msgid "No chat"
msgstr ""
#. js-lingui-id: wgUPZ1
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "No comment"
@@ -10018,6 +10054,12 @@ msgstr "Geen toestemmings is ingestel vir individuele voorwerpe nie."
msgid "No record is required to trigger this workflow"
msgstr "Geen rekord is nodig om hierdie werkvloei te aktiveer nie"
#. js-lingui-id: aqUuQE
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
@@ -10548,6 +10590,7 @@ msgstr "Maak Outlook oop"
#. js-lingui-id: bY2Xkv
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Open side panel"
msgstr "Maak sypaneel oop"
@@ -10645,6 +10688,8 @@ msgstr "Rangskik"
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Other"
msgstr "Ander"
@@ -11019,6 +11064,12 @@ msgstr ""
msgid "Pink"
msgstr "Pienk"
#. js-lingui-id: kNiQp6
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Pinned"
msgstr ""
#. js-lingui-id: hx1ePY
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsText.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsNumber.tsx
@@ -11565,6 +11616,12 @@ msgstr "Rekordvlak"
msgid "Records"
msgstr "Rekords"
#. js-lingui-id: J+Qyf2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "Records selected"
msgstr ""
#. js-lingui-id: wRTiSD
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Red"
@@ -11857,6 +11914,11 @@ msgstr "Stel terug"
msgid "Reset 2FA"
msgstr "Herstel 2FA"
#. js-lingui-id: YdI8A2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Reset label to default"
msgstr ""
#. js-lingui-id: 1IWc1n
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
msgid "Reset to"
@@ -11864,6 +11926,7 @@ msgstr "Herstel na"
#. js-lingui-id: L+rMC9
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
msgid "Reset to default"
msgstr "Herstel na Verstek"
@@ -3028,6 +3028,7 @@ msgstr "إغلاق اللافتة"
#. js-lingui-id: saip/v
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Close side panel"
msgstr "إغلاق اللوحة الجانبية"
@@ -3402,6 +3403,7 @@ msgstr "المحتوى"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
msgstr "السياق"
@@ -3893,6 +3895,7 @@ msgstr "إنشاء مساحة العمل الخاصة بك"
#. js-lingui-id: HAzhV7
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Credentials"
msgstr "بيانات الاعتماد"
@@ -5180,6 +5183,13 @@ msgstr "تحرير {objectLabelPlural}"
msgid "Edit Account"
msgstr "تحرير الحساب"
#. js-lingui-id: t1EOLt
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
msgid "Edit actions"
msgstr ""
#. js-lingui-id: GpnfNN
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Edit Dashboard"
@@ -6676,6 +6686,11 @@ msgstr "اسم الحقل"
msgid "Field on destination"
msgstr "حقل في الوجهة"
#. js-lingui-id: P8JCfj
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "field permission"
msgstr ""
#. js-lingui-id: RnX5oc
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "fields"
@@ -7400,6 +7415,11 @@ msgstr "إخفاء المجموعة {groupValue}"
msgid "Hide hidden groups"
msgstr "إخفاء المجموعات المخفية"
#. js-lingui-id: 2ouyMV
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Hide label"
msgstr ""
#. js-lingui-id: i0qMbr
#: src/modules/page-layout/constants/StandardPageLayoutTabTitleTranslations.ts
#: src/modules/navigation/components/MainNavigationDrawerTabsRow.tsx
@@ -7508,6 +7528,16 @@ msgstr "بيانات اعتماد IAM"
msgid "IAM credentials configured"
msgstr "تم تكوين بيانات اعتماد IAM"
#. js-lingui-id: LlQirF
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
msgid "IAM role"
msgstr ""
#. js-lingui-id: VjDLrJ
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "IAM role (instance profile)"
msgstr ""
#. js-lingui-id: wwu18a
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Icon"
@@ -9197,6 +9227,7 @@ msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "More"
msgstr "المزيد"
@@ -9720,6 +9751,11 @@ msgstr "لا يوجد متن"
msgid "No calling code"
msgstr "بدون رمز الاتصال"
#. js-lingui-id: d14J3J
#: src/modules/ai/components/NavigationDrawerAIChatContent.tsx
msgid "No chat"
msgstr ""
#. js-lingui-id: wgUPZ1
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "No comment"
@@ -10018,6 +10054,12 @@ msgstr "لم يتم تعيين أي أذونات للعناصر الفردية."
msgid "No record is required to trigger this workflow"
msgstr "لا يتطلب سجل لتفعيل سير العمل هذا"
#. js-lingui-id: aqUuQE
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
@@ -10548,6 +10590,7 @@ msgstr "فتح Outlook"
#. js-lingui-id: bY2Xkv
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Open side panel"
msgstr "فتح اللوحة الجانبية"
@@ -10645,6 +10688,8 @@ msgstr "تنظيم"
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Other"
msgstr "أخرى"
@@ -11019,6 +11064,12 @@ msgstr "الرسم البياني الدائري"
msgid "Pink"
msgstr "وردي"
#. js-lingui-id: kNiQp6
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Pinned"
msgstr ""
#. js-lingui-id: hx1ePY
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsText.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsNumber.tsx
@@ -11565,6 +11616,12 @@ msgstr "مستوى السجل"
msgid "Records"
msgstr "السجلات"
#. js-lingui-id: J+Qyf2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "Records selected"
msgstr ""
#. js-lingui-id: wRTiSD
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Red"
@@ -11857,6 +11914,11 @@ msgstr "إعادة تعيين"
msgid "Reset 2FA"
msgstr "إعادة تعيين المصادقة الثنائية"
#. js-lingui-id: YdI8A2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Reset label to default"
msgstr ""
#. js-lingui-id: 1IWc1n
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
msgid "Reset to"
@@ -11864,6 +11926,7 @@ msgstr "\\\\"
#. js-lingui-id: L+rMC9
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
msgid "Reset to default"
msgstr "إعادة التعيين إلى الافتراضي"
@@ -3028,6 +3028,7 @@ msgstr "Tanca el bàner"
#. js-lingui-id: saip/v
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Close side panel"
msgstr "Tanca el panell lateral"
@@ -3402,6 +3403,7 @@ msgstr "Contingut"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
msgstr "Context"
@@ -3893,6 +3895,7 @@ msgstr "Creant el teu espai de treball"
#. js-lingui-id: HAzhV7
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Credentials"
msgstr "Credencials"
@@ -5180,6 +5183,13 @@ msgstr "Editar {objectLabelPlural}"
msgid "Edit Account"
msgstr "Edita el compte"
#. js-lingui-id: t1EOLt
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
msgid "Edit actions"
msgstr ""
#. js-lingui-id: GpnfNN
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Edit Dashboard"
@@ -6676,6 +6686,11 @@ msgstr "Nom del camp"
msgid "Field on destination"
msgstr "Camp a la destinació"
#. js-lingui-id: P8JCfj
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "field permission"
msgstr ""
#. js-lingui-id: RnX5oc
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "fields"
@@ -7400,6 +7415,11 @@ msgstr "Amaga el grup {groupValue}"
msgid "Hide hidden groups"
msgstr "Amaga grups ocults"
#. js-lingui-id: 2ouyMV
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Hide label"
msgstr ""
#. js-lingui-id: i0qMbr
#: src/modules/page-layout/constants/StandardPageLayoutTabTitleTranslations.ts
#: src/modules/navigation/components/MainNavigationDrawerTabsRow.tsx
@@ -7508,6 +7528,16 @@ msgstr "Credencials d'IAM"
msgid "IAM credentials configured"
msgstr "Credencials d'IAM configurades"
#. js-lingui-id: LlQirF
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
msgid "IAM role"
msgstr ""
#. js-lingui-id: VjDLrJ
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "IAM role (instance profile)"
msgstr ""
#. js-lingui-id: wwu18a
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Icon"
@@ -9197,6 +9227,7 @@ msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "More"
msgstr "Més"
@@ -9720,6 +9751,11 @@ msgstr "Sense cos"
msgid "No calling code"
msgstr "Sense prefix de trucada"
#. js-lingui-id: d14J3J
#: src/modules/ai/components/NavigationDrawerAIChatContent.tsx
msgid "No chat"
msgstr ""
#. js-lingui-id: wgUPZ1
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "No comment"
@@ -10018,6 +10054,12 @@ msgstr "No s'han establert permisos per a objectes individuals."
msgid "No record is required to trigger this workflow"
msgstr "No es requereix cap registre per activar aquest flux de treball"
#. js-lingui-id: aqUuQE
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
@@ -10548,6 +10590,7 @@ msgstr "Obrir en Outlook"
#. js-lingui-id: bY2Xkv
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Open side panel"
msgstr "Obre el panell lateral"
@@ -10645,6 +10688,8 @@ msgstr "Organitza"
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Other"
msgstr "Altres"
@@ -11019,6 +11064,12 @@ msgstr "Gràfic circular"
msgid "Pink"
msgstr "Rosa"
#. js-lingui-id: kNiQp6
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Pinned"
msgstr ""
#. js-lingui-id: hx1ePY
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsText.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsNumber.tsx
@@ -11565,6 +11616,12 @@ msgstr "Nivell de registre"
msgid "Records"
msgstr "Registres"
#. js-lingui-id: J+Qyf2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "Records selected"
msgstr ""
#. js-lingui-id: wRTiSD
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Red"
@@ -11857,6 +11914,11 @@ msgstr "Restableix"
msgid "Reset 2FA"
msgstr "Reinicia 2FA"
#. js-lingui-id: YdI8A2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Reset label to default"
msgstr ""
#. js-lingui-id: 1IWc1n
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
msgid "Reset to"
@@ -11864,6 +11926,7 @@ msgstr "Reinicia a"
#. js-lingui-id: L+rMC9
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
msgid "Reset to default"
msgstr "Restableix a predeterminat"
@@ -3028,6 +3028,7 @@ msgstr "Zavřít banner"
#. js-lingui-id: saip/v
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Close side panel"
msgstr "Zavřít postranní panel"
@@ -3402,6 +3403,7 @@ msgstr "Obsah"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
msgstr "Kontext"
@@ -3893,6 +3895,7 @@ msgstr "Vytváření vašeho pracovního prostoru"
#. js-lingui-id: HAzhV7
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Credentials"
msgstr "Přihlašovací údaje"
@@ -5180,6 +5183,13 @@ msgstr "Upravit {objectLabelPlural}"
msgid "Edit Account"
msgstr "Upravit účet"
#. js-lingui-id: t1EOLt
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
msgid "Edit actions"
msgstr ""
#. js-lingui-id: GpnfNN
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Edit Dashboard"
@@ -6676,6 +6686,11 @@ msgstr "Název pole"
msgid "Field on destination"
msgstr "Pole v cíli"
#. js-lingui-id: P8JCfj
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "field permission"
msgstr ""
#. js-lingui-id: RnX5oc
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "fields"
@@ -7400,6 +7415,11 @@ msgstr "Skrýt skupinu {groupValue}"
msgid "Hide hidden groups"
msgstr "Skrýt skryté skupiny"
#. js-lingui-id: 2ouyMV
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Hide label"
msgstr ""
#. js-lingui-id: i0qMbr
#: src/modules/page-layout/constants/StandardPageLayoutTabTitleTranslations.ts
#: src/modules/navigation/components/MainNavigationDrawerTabsRow.tsx
@@ -7508,6 +7528,16 @@ msgstr "Přihlašovací údaje IAM"
msgid "IAM credentials configured"
msgstr "Přihlašovací údaje IAM jsou nakonfigurovány"
#. js-lingui-id: LlQirF
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
msgid "IAM role"
msgstr ""
#. js-lingui-id: VjDLrJ
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "IAM role (instance profile)"
msgstr ""
#. js-lingui-id: wwu18a
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Icon"
@@ -9197,6 +9227,7 @@ msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "More"
msgstr "Více"
@@ -9720,6 +9751,11 @@ msgstr "Žádné tělo"
msgid "No calling code"
msgstr "Bez předvolby"
#. js-lingui-id: d14J3J
#: src/modules/ai/components/NavigationDrawerAIChatContent.tsx
msgid "No chat"
msgstr ""
#. js-lingui-id: wgUPZ1
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "No comment"
@@ -10018,6 +10054,12 @@ msgstr "Žádná oprávnění nebyla nastavena pro jednotlivé objekty."
msgid "No record is required to trigger this workflow"
msgstr "K aktivaci tohoto pracovního postupu není vyžadován žádný záznam"
#. js-lingui-id: aqUuQE
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
@@ -10548,6 +10590,7 @@ msgstr "Otevřít Outlook"
#. js-lingui-id: bY2Xkv
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Open side panel"
msgstr "Otevřít postranní panel"
@@ -10645,6 +10688,8 @@ msgstr "Uspořádat"
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Other"
msgstr "Ostatní"
@@ -11019,6 +11064,12 @@ msgstr "Koláčový graf"
msgid "Pink"
msgstr "Růžová"
#. js-lingui-id: kNiQp6
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Pinned"
msgstr ""
#. js-lingui-id: hx1ePY
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsText.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsNumber.tsx
@@ -11565,6 +11616,12 @@ msgstr "Na úrovni záznamu"
msgid "Records"
msgstr "Záznamy"
#. js-lingui-id: J+Qyf2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "Records selected"
msgstr ""
#. js-lingui-id: wRTiSD
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Red"
@@ -11857,6 +11914,11 @@ msgstr "Obnovit"
msgid "Reset 2FA"
msgstr "Obnovit 2FA"
#. js-lingui-id: YdI8A2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Reset label to default"
msgstr ""
#. js-lingui-id: 1IWc1n
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
msgid "Reset to"
@@ -11864,6 +11926,7 @@ msgstr "Obnovit na"
#. js-lingui-id: L+rMC9
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
msgid "Reset to default"
msgstr "Obnovit na výchozí"
@@ -3028,6 +3028,7 @@ msgstr "Luk banner"
#. js-lingui-id: saip/v
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Close side panel"
msgstr "Luk sidepanelet"
@@ -3402,6 +3403,7 @@ msgstr "Indhold"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
msgstr "Kontekst"
@@ -3893,6 +3895,7 @@ msgstr "Opretter dit arbejdsområde"
#. js-lingui-id: HAzhV7
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Credentials"
msgstr "Legitimationsoplysninger"
@@ -5180,6 +5183,13 @@ msgstr "Rediger {objectLabelPlural}"
msgid "Edit Account"
msgstr "Rediger konto"
#. js-lingui-id: t1EOLt
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
msgid "Edit actions"
msgstr ""
#. js-lingui-id: GpnfNN
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Edit Dashboard"
@@ -6676,6 +6686,11 @@ msgstr "Feltnavn"
msgid "Field on destination"
msgstr "Felt på destination"
#. js-lingui-id: P8JCfj
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "field permission"
msgstr ""
#. js-lingui-id: RnX5oc
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "fields"
@@ -7400,6 +7415,11 @@ msgstr "Skjul gruppe {groupValue}"
msgid "Hide hidden groups"
msgstr "Skjul skjulte grupper"
#. js-lingui-id: 2ouyMV
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Hide label"
msgstr ""
#. js-lingui-id: i0qMbr
#: src/modules/page-layout/constants/StandardPageLayoutTabTitleTranslations.ts
#: src/modules/navigation/components/MainNavigationDrawerTabsRow.tsx
@@ -7508,6 +7528,16 @@ msgstr "IAM-legitimationsoplysninger"
msgid "IAM credentials configured"
msgstr "IAM-legitimationsoplysningerne er konfigureret"
#. js-lingui-id: LlQirF
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
msgid "IAM role"
msgstr ""
#. js-lingui-id: VjDLrJ
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "IAM role (instance profile)"
msgstr ""
#. js-lingui-id: wwu18a
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Icon"
@@ -9197,6 +9227,7 @@ msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "More"
msgstr "Mere"
@@ -9720,6 +9751,11 @@ msgstr "Ingen body"
msgid "No calling code"
msgstr "Uden landekode"
#. js-lingui-id: d14J3J
#: src/modules/ai/components/NavigationDrawerAIChatContent.tsx
msgid "No chat"
msgstr ""
#. js-lingui-id: wgUPZ1
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "No comment"
@@ -10018,6 +10054,12 @@ msgstr "Der er ikke angivet tilladelser for individuelle objekter."
msgid "No record is required to trigger this workflow"
msgstr "Ingen post kræves for at aktivere denne workflow"
#. js-lingui-id: aqUuQE
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
@@ -10548,6 +10590,7 @@ msgstr "Åbn Outlook"
#. js-lingui-id: bY2Xkv
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Open side panel"
msgstr "Åbn sidepanelet"
@@ -10645,6 +10688,8 @@ msgstr "Organiser"
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Other"
msgstr "Andet"
@@ -11019,6 +11064,12 @@ msgstr "Cirkeldiagram"
msgid "Pink"
msgstr "Pink"
#. js-lingui-id: kNiQp6
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Pinned"
msgstr ""
#. js-lingui-id: hx1ePY
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsText.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsNumber.tsx
@@ -11565,6 +11616,12 @@ msgstr "Postniveau"
msgid "Records"
msgstr "Protokoller"
#. js-lingui-id: J+Qyf2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "Records selected"
msgstr ""
#. js-lingui-id: wRTiSD
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Red"
@@ -11857,6 +11914,11 @@ msgstr "Nulstil"
msgid "Reset 2FA"
msgstr "Nulstil 2FA"
#. js-lingui-id: YdI8A2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Reset label to default"
msgstr ""
#. js-lingui-id: 1IWc1n
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
msgid "Reset to"
@@ -11864,6 +11926,7 @@ msgstr "Nulstil til"
#. js-lingui-id: L+rMC9
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
msgid "Reset to default"
msgstr "Nulstil til standard"
@@ -3028,6 +3028,7 @@ msgstr "Banner schließen"
#. js-lingui-id: saip/v
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Close side panel"
msgstr "Seitenpanel schließen"
@@ -3402,6 +3403,7 @@ msgstr "Inhalt"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
msgstr "Kontext"
@@ -3893,6 +3895,7 @@ msgstr "Erstellen Ihres Arbeitsbereichs"
#. js-lingui-id: HAzhV7
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Credentials"
msgstr "Anmeldedaten"
@@ -5180,6 +5183,13 @@ msgstr "Bearbeiten {objectLabelPlural}"
msgid "Edit Account"
msgstr "Konto bearbeiten"
#. js-lingui-id: t1EOLt
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
msgid "Edit actions"
msgstr ""
#. js-lingui-id: GpnfNN
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Edit Dashboard"
@@ -6676,6 +6686,11 @@ msgstr "Feldname"
msgid "Field on destination"
msgstr "Feld am Ziel"
#. js-lingui-id: P8JCfj
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "field permission"
msgstr ""
#. js-lingui-id: RnX5oc
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "fields"
@@ -7400,6 +7415,11 @@ msgstr "Gruppe {groupValue} ausblenden"
msgid "Hide hidden groups"
msgstr "Verborgene Gruppen ausblenden"
#. js-lingui-id: 2ouyMV
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Hide label"
msgstr ""
#. js-lingui-id: i0qMbr
#: src/modules/page-layout/constants/StandardPageLayoutTabTitleTranslations.ts
#: src/modules/navigation/components/MainNavigationDrawerTabsRow.tsx
@@ -7508,6 +7528,16 @@ msgstr "IAM-Anmeldedaten"
msgid "IAM credentials configured"
msgstr "IAM-Anmeldedaten konfiguriert"
#. js-lingui-id: LlQirF
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
msgid "IAM role"
msgstr ""
#. js-lingui-id: VjDLrJ
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "IAM role (instance profile)"
msgstr ""
#. js-lingui-id: wwu18a
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Icon"
@@ -9197,6 +9227,7 @@ msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "More"
msgstr "Mehr"
@@ -9720,6 +9751,11 @@ msgstr "Kein Body"
msgid "No calling code"
msgstr "Ohne Ländervorwahl"
#. js-lingui-id: d14J3J
#: src/modules/ai/components/NavigationDrawerAIChatContent.tsx
msgid "No chat"
msgstr ""
#. js-lingui-id: wgUPZ1
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "No comment"
@@ -10018,6 +10054,12 @@ msgstr "Es wurden keine Berechtigungen für einzelne Objekte festgelegt."
msgid "No record is required to trigger this workflow"
msgstr "Kein Datensatz ist erforderlich, um diesen Arbeitsablauf zu starten"
#. js-lingui-id: aqUuQE
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
@@ -10548,6 +10590,7 @@ msgstr "Outlook öffnen"
#. js-lingui-id: bY2Xkv
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Open side panel"
msgstr "Seitenpanel öffnen"
@@ -10645,6 +10688,8 @@ msgstr "Organisieren"
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Other"
msgstr "Andere"
@@ -11019,6 +11064,12 @@ msgstr "Tortendiagramm"
msgid "Pink"
msgstr "Pink"
#. js-lingui-id: kNiQp6
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Pinned"
msgstr ""
#. js-lingui-id: hx1ePY
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsText.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsNumber.tsx
@@ -11565,6 +11616,12 @@ msgstr "Datensatzebene"
msgid "Records"
msgstr "Datensätze"
#. js-lingui-id: J+Qyf2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "Records selected"
msgstr ""
#. js-lingui-id: wRTiSD
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Red"
@@ -11857,6 +11914,11 @@ msgstr "Zurücksetzen"
msgid "Reset 2FA"
msgstr "2FA zurücksetzen"
#. js-lingui-id: YdI8A2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Reset label to default"
msgstr ""
#. js-lingui-id: 1IWc1n
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
msgid "Reset to"
@@ -11864,6 +11926,7 @@ msgstr "Zurücksetzen auf"
#. js-lingui-id: L+rMC9
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
msgid "Reset to default"
msgstr "Auf Standard zurücksetzen"
@@ -3028,6 +3028,7 @@ msgstr "Κλείσιμο banner"
#. js-lingui-id: saip/v
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Close side panel"
msgstr "Κλείσιμο πλευρικού πάνελ"
@@ -3402,6 +3403,7 @@ msgstr "Περιεχόμενο"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
msgstr "Περιβάλλον"
@@ -3893,6 +3895,7 @@ msgstr "Δημιουργία του χώρου εργασίας σας"
#. js-lingui-id: HAzhV7
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Credentials"
msgstr "Διαπιστευτήρια"
@@ -5180,6 +5183,13 @@ msgstr "Επεξεργασία {objectLabelPlural}"
msgid "Edit Account"
msgstr "Επεξεργασία Λογαριασμού"
#. js-lingui-id: t1EOLt
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
msgid "Edit actions"
msgstr ""
#. js-lingui-id: GpnfNN
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Edit Dashboard"
@@ -6676,6 +6686,11 @@ msgstr "Όνομα Πεδίου"
msgid "Field on destination"
msgstr "Πεδίο στον προορισμό"
#. js-lingui-id: P8JCfj
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "field permission"
msgstr ""
#. js-lingui-id: RnX5oc
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "fields"
@@ -7400,6 +7415,11 @@ msgstr "Απόκρυψη ομάδας {groupValue}"
msgid "Hide hidden groups"
msgstr "Απόκρυψη κρυφών ομάδων"
#. js-lingui-id: 2ouyMV
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Hide label"
msgstr ""
#. js-lingui-id: i0qMbr
#: src/modules/page-layout/constants/StandardPageLayoutTabTitleTranslations.ts
#: src/modules/navigation/components/MainNavigationDrawerTabsRow.tsx
@@ -7508,6 +7528,16 @@ msgstr "Διαπιστευτήρια IAM"
msgid "IAM credentials configured"
msgstr "Τα διαπιστευτήρια IAM έχουν ρυθμιστεί"
#. js-lingui-id: LlQirF
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
msgid "IAM role"
msgstr ""
#. js-lingui-id: VjDLrJ
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "IAM role (instance profile)"
msgstr ""
#. js-lingui-id: wwu18a
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Icon"
@@ -9197,6 +9227,7 @@ msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "More"
msgstr "Περισσότερα"
@@ -9720,6 +9751,11 @@ msgstr "Χωρίς σώμα"
msgid "No calling code"
msgstr "Χωρίς κωδικό κλήσης"
#. js-lingui-id: d14J3J
#: src/modules/ai/components/NavigationDrawerAIChatContent.tsx
msgid "No chat"
msgstr ""
#. js-lingui-id: wgUPZ1
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "No comment"
@@ -10018,6 +10054,12 @@ msgstr "Δεν έχουν οριστεί δικαιώματα για μεμον
msgid "No record is required to trigger this workflow"
msgstr "Δεν απαιτείται καμία εγγραφή για να ενεργοποιήσετε αυτήν τη ροή εργασιών"
#. js-lingui-id: aqUuQE
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
@@ -10548,6 +10590,7 @@ msgstr "Άνοιγμα με Outlook"
#. js-lingui-id: bY2Xkv
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Open side panel"
msgstr "Άνοιγμα πλευρικού πάνελ"
@@ -10645,6 +10688,8 @@ msgstr "Οργάνωση"
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Other"
msgstr "Άλλο"
@@ -11019,6 +11064,12 @@ msgstr "Διάγραμμα πίτας"
msgid "Pink"
msgstr "Ροζ"
#. js-lingui-id: kNiQp6
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Pinned"
msgstr ""
#. js-lingui-id: hx1ePY
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsText.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsNumber.tsx
@@ -11565,6 +11616,12 @@ msgstr "Επίπεδο εγγραφής"
msgid "Records"
msgstr "Εγγραφές"
#. js-lingui-id: J+Qyf2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "Records selected"
msgstr ""
#. js-lingui-id: wRTiSD
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Red"
@@ -11857,6 +11914,11 @@ msgstr "Επαναφορά"
msgid "Reset 2FA"
msgstr "Επαναφορά 2FA"
#. js-lingui-id: YdI8A2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Reset label to default"
msgstr ""
#. js-lingui-id: 1IWc1n
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
msgid "Reset to"
@@ -11864,6 +11926,7 @@ msgstr "Επαναφορά σε"
#. js-lingui-id: L+rMC9
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
msgid "Reset to default"
msgstr "Επαναφορά στις Προεπιλογές"
+63
View File
@@ -3023,6 +3023,7 @@ msgstr "Close banner"
#. js-lingui-id: saip/v
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Close side panel"
msgstr "Close side panel"
@@ -3397,6 +3398,7 @@ msgstr "Content"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
msgstr "Context"
@@ -3888,6 +3890,7 @@ msgstr "Creating your workspace"
#. js-lingui-id: HAzhV7
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Credentials"
msgstr "Credentials"
@@ -5175,6 +5178,13 @@ msgstr "Edit {objectLabelPlural}"
msgid "Edit Account"
msgstr "Edit Account"
#. js-lingui-id: t1EOLt
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
msgid "Edit actions"
msgstr "Edit actions"
#. js-lingui-id: GpnfNN
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Edit Dashboard"
@@ -6671,6 +6681,11 @@ msgstr "Field Name"
msgid "Field on destination"
msgstr "Field on destination"
#. js-lingui-id: P8JCfj
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "field permission"
msgstr "field permission"
#. js-lingui-id: RnX5oc
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "fields"
@@ -7395,6 +7410,11 @@ msgstr "Hide group {groupValue}"
msgid "Hide hidden groups"
msgstr "Hide hidden groups"
#. js-lingui-id: 2ouyMV
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Hide label"
msgstr "Hide label"
#. js-lingui-id: i0qMbr
#: src/modules/page-layout/constants/StandardPageLayoutTabTitleTranslations.ts
#: src/modules/navigation/components/MainNavigationDrawerTabsRow.tsx
@@ -7503,6 +7523,16 @@ msgstr "IAM credentials"
msgid "IAM credentials configured"
msgstr "IAM credentials configured"
#. js-lingui-id: LlQirF
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
msgid "IAM role"
msgstr "IAM role"
#. js-lingui-id: VjDLrJ
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "IAM role (instance profile)"
msgstr "IAM role (instance profile)"
#. js-lingui-id: wwu18a
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Icon"
@@ -9192,6 +9222,7 @@ msgstr "months"
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "More"
msgstr "More"
@@ -9715,6 +9746,11 @@ msgstr "No body"
msgid "No calling code"
msgstr "No calling code"
#. js-lingui-id: d14J3J
#: src/modules/ai/components/NavigationDrawerAIChatContent.tsx
msgid "No chat"
msgstr "No chat"
#. js-lingui-id: wgUPZ1
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "No comment"
@@ -10013,6 +10049,12 @@ msgstr "No permissions have been set for individual objects."
msgid "No record is required to trigger this workflow"
msgstr "No record is required to trigger this workflow"
#. js-lingui-id: aqUuQE
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "No record selected"
msgstr "No record selected"
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
@@ -10543,6 +10585,7 @@ msgstr "Open Outlook"
#. js-lingui-id: bY2Xkv
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Open side panel"
msgstr "Open side panel"
@@ -10640,6 +10683,8 @@ msgstr "Organize"
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Other"
msgstr "Other"
@@ -11014,6 +11059,12 @@ msgstr "Pie Chart"
msgid "Pink"
msgstr "Pink"
#. js-lingui-id: kNiQp6
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Pinned"
msgstr "Pinned"
#. js-lingui-id: hx1ePY
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsText.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsNumber.tsx
@@ -11560,6 +11611,12 @@ msgstr "Record-level"
msgid "Records"
msgstr "Records"
#. js-lingui-id: J+Qyf2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "Records selected"
msgstr "Records selected"
#. js-lingui-id: wRTiSD
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Red"
@@ -11852,6 +11909,11 @@ msgstr "Reset"
msgid "Reset 2FA"
msgstr "Reset 2FA"
#. js-lingui-id: YdI8A2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Reset label to default"
msgstr "Reset label to default"
#. js-lingui-id: 1IWc1n
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
msgid "Reset to"
@@ -11859,6 +11921,7 @@ msgstr "Reset to"
#. js-lingui-id: L+rMC9
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
msgid "Reset to default"
msgstr "Reset to default"
@@ -3028,6 +3028,7 @@ msgstr "Cerrar banner"
#. js-lingui-id: saip/v
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Close side panel"
msgstr "Cerrar panel lateral"
@@ -3402,6 +3403,7 @@ msgstr "Contenido"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
msgstr "Contexto"
@@ -3893,6 +3895,7 @@ msgstr "Creando tu espacio de trabajo"
#. js-lingui-id: HAzhV7
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Credentials"
msgstr "Credenciales"
@@ -5180,6 +5183,13 @@ msgstr "Editar {objectLabelPlural}"
msgid "Edit Account"
msgstr "Editar Cuenta"
#. js-lingui-id: t1EOLt
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
msgid "Edit actions"
msgstr ""
#. js-lingui-id: GpnfNN
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Edit Dashboard"
@@ -6676,6 +6686,11 @@ msgstr "Nombre del campo"
msgid "Field on destination"
msgstr "Campo en destino"
#. js-lingui-id: P8JCfj
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "field permission"
msgstr ""
#. js-lingui-id: RnX5oc
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "fields"
@@ -7400,6 +7415,11 @@ msgstr "Ocultar grupo {groupValue}"
msgid "Hide hidden groups"
msgstr "Ocultar grupos ocultos"
#. js-lingui-id: 2ouyMV
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Hide label"
msgstr ""
#. js-lingui-id: i0qMbr
#: src/modules/page-layout/constants/StandardPageLayoutTabTitleTranslations.ts
#: src/modules/navigation/components/MainNavigationDrawerTabsRow.tsx
@@ -7508,6 +7528,16 @@ msgstr "Credenciales de IAM"
msgid "IAM credentials configured"
msgstr "Credenciales de IAM configuradas"
#. js-lingui-id: LlQirF
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
msgid "IAM role"
msgstr ""
#. js-lingui-id: VjDLrJ
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "IAM role (instance profile)"
msgstr ""
#. js-lingui-id: wwu18a
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Icon"
@@ -9197,6 +9227,7 @@ msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "More"
msgstr "Más"
@@ -9720,6 +9751,11 @@ msgstr "Sin cuerpo"
msgid "No calling code"
msgstr "Sin código de llamada"
#. js-lingui-id: d14J3J
#: src/modules/ai/components/NavigationDrawerAIChatContent.tsx
msgid "No chat"
msgstr ""
#. js-lingui-id: wgUPZ1
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "No comment"
@@ -10018,6 +10054,12 @@ msgstr "No se han establecido permisos para objetos individuales."
msgid "No record is required to trigger this workflow"
msgstr "No se requiere ningún registro para activar este flujo de trabajo"
#. js-lingui-id: aqUuQE
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
@@ -10548,6 +10590,7 @@ msgstr "Abrir Outlook"
#. js-lingui-id: bY2Xkv
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Open side panel"
msgstr "Abrir panel lateral"
@@ -10645,6 +10688,8 @@ msgstr "Organizar"
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Other"
msgstr "Otros"
@@ -11019,6 +11064,12 @@ msgstr "Gráfico de pastel"
msgid "Pink"
msgstr "Rosa"
#. js-lingui-id: kNiQp6
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Pinned"
msgstr ""
#. js-lingui-id: hx1ePY
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsText.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsNumber.tsx
@@ -11565,6 +11616,12 @@ msgstr "Nivel de registro"
msgid "Records"
msgstr "Registros"
#. js-lingui-id: J+Qyf2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "Records selected"
msgstr ""
#. js-lingui-id: wRTiSD
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Red"
@@ -11857,6 +11914,11 @@ msgstr "Restablecer"
msgid "Reset 2FA"
msgstr "Restablecer 2FA"
#. js-lingui-id: YdI8A2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Reset label to default"
msgstr ""
#. js-lingui-id: 1IWc1n
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
msgid "Reset to"
@@ -11864,6 +11926,7 @@ msgstr "Restablecer a"
#. js-lingui-id: L+rMC9
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
msgid "Reset to default"
msgstr "Restablecer a predeterminado"
@@ -3028,6 +3028,7 @@ msgstr "Sulje banneri"
#. js-lingui-id: saip/v
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Close side panel"
msgstr "Sulje sivupaneeli"
@@ -3402,6 +3403,7 @@ msgstr "Sisältö"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
msgstr "Yhteys"
@@ -3893,6 +3895,7 @@ msgstr "Luodaan työtilasi"
#. js-lingui-id: HAzhV7
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Credentials"
msgstr "Tunnistetiedot"
@@ -5180,6 +5183,13 @@ msgstr "Muokkaa {objectLabelPlural}"
msgid "Edit Account"
msgstr "Muokkaa tiliä"
#. js-lingui-id: t1EOLt
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
msgid "Edit actions"
msgstr ""
#. js-lingui-id: GpnfNN
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Edit Dashboard"
@@ -6676,6 +6686,11 @@ msgstr "Kentän nimi"
msgid "Field on destination"
msgstr "Kenttä kohteessa"
#. js-lingui-id: P8JCfj
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "field permission"
msgstr ""
#. js-lingui-id: RnX5oc
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "fields"
@@ -7400,6 +7415,11 @@ msgstr "Piilota ryhmä {groupValue}"
msgid "Hide hidden groups"
msgstr "Piilota piilotetut ryhmät"
#. js-lingui-id: 2ouyMV
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Hide label"
msgstr ""
#. js-lingui-id: i0qMbr
#: src/modules/page-layout/constants/StandardPageLayoutTabTitleTranslations.ts
#: src/modules/navigation/components/MainNavigationDrawerTabsRow.tsx
@@ -7508,6 +7528,16 @@ msgstr "IAM-tunnistetiedot"
msgid "IAM credentials configured"
msgstr "IAM-tunnistetiedot määritetty"
#. js-lingui-id: LlQirF
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
msgid "IAM role"
msgstr ""
#. js-lingui-id: VjDLrJ
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "IAM role (instance profile)"
msgstr ""
#. js-lingui-id: wwu18a
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Icon"
@@ -9197,6 +9227,7 @@ msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "More"
msgstr "Lisää"
@@ -9720,6 +9751,11 @@ msgstr "Ei viestirunkoa"
msgid "No calling code"
msgstr "Ei suuntanumeroa"
#. js-lingui-id: d14J3J
#: src/modules/ai/components/NavigationDrawerAIChatContent.tsx
msgid "No chat"
msgstr ""
#. js-lingui-id: wgUPZ1
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "No comment"
@@ -10018,6 +10054,12 @@ msgstr "Yksittäisille kohteille ei ole asetettu käyttöoikeuksia."
msgid "No record is required to trigger this workflow"
msgstr "Ei tietuetta tarvita tämän työnkulun käynnistämiseen"
#. js-lingui-id: aqUuQE
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
@@ -10548,6 +10590,7 @@ msgstr "Avaa Outlookissa"
#. js-lingui-id: bY2Xkv
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Open side panel"
msgstr "Avaa sivupaneeli"
@@ -10645,6 +10688,8 @@ msgstr ""
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Other"
msgstr "Muu"
@@ -11019,6 +11064,12 @@ msgstr "Ympyräkaavio"
msgid "Pink"
msgstr "Vaaleanpunainen"
#. js-lingui-id: kNiQp6
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Pinned"
msgstr ""
#. js-lingui-id: hx1ePY
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsText.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsNumber.tsx
@@ -11565,6 +11616,12 @@ msgstr "Tietuetaso"
msgid "Records"
msgstr "Tietueet"
#. js-lingui-id: J+Qyf2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "Records selected"
msgstr ""
#. js-lingui-id: wRTiSD
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Red"
@@ -11857,6 +11914,11 @@ msgstr "Nollaa"
msgid "Reset 2FA"
msgstr "Nollaa 2FA"
#. js-lingui-id: YdI8A2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Reset label to default"
msgstr ""
#. js-lingui-id: 1IWc1n
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
msgid "Reset to"
@@ -11864,6 +11926,7 @@ msgstr "Palauta"
#. js-lingui-id: L+rMC9
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
msgid "Reset to default"
msgstr "Palauta oletukseksi"
@@ -3028,6 +3028,7 @@ msgstr "Fermer la bannière"
#. js-lingui-id: saip/v
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Close side panel"
msgstr "Fermer le panneau latéral"
@@ -3402,6 +3403,7 @@ msgstr "Contenu"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
msgstr "Contexte"
@@ -3893,6 +3895,7 @@ msgstr "Création de votre espace de travail"
#. js-lingui-id: HAzhV7
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Credentials"
msgstr "Identifiants"
@@ -5180,6 +5183,13 @@ msgstr "Modifier {objectLabelPlural}"
msgid "Edit Account"
msgstr "Modifier le compte"
#. js-lingui-id: t1EOLt
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
msgid "Edit actions"
msgstr ""
#. js-lingui-id: GpnfNN
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Edit Dashboard"
@@ -6676,6 +6686,11 @@ msgstr "Nom du champ"
msgid "Field on destination"
msgstr "Champ sur la destination"
#. js-lingui-id: P8JCfj
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "field permission"
msgstr ""
#. js-lingui-id: RnX5oc
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "fields"
@@ -7400,6 +7415,11 @@ msgstr "Masquer le groupe {groupValue}"
msgid "Hide hidden groups"
msgstr "Masquer les groupes cachés"
#. js-lingui-id: 2ouyMV
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Hide label"
msgstr ""
#. js-lingui-id: i0qMbr
#: src/modules/page-layout/constants/StandardPageLayoutTabTitleTranslations.ts
#: src/modules/navigation/components/MainNavigationDrawerTabsRow.tsx
@@ -7508,6 +7528,16 @@ msgstr "Identifiants IAM"
msgid "IAM credentials configured"
msgstr "Identifiants IAM configurés"
#. js-lingui-id: LlQirF
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
msgid "IAM role"
msgstr ""
#. js-lingui-id: VjDLrJ
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "IAM role (instance profile)"
msgstr ""
#. js-lingui-id: wwu18a
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Icon"
@@ -9197,6 +9227,7 @@ msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "More"
msgstr "Plus"
@@ -9720,6 +9751,11 @@ msgstr "Aucun corps"
msgid "No calling code"
msgstr "Sans indicatif"
#. js-lingui-id: d14J3J
#: src/modules/ai/components/NavigationDrawerAIChatContent.tsx
msgid "No chat"
msgstr ""
#. js-lingui-id: wgUPZ1
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "No comment"
@@ -10018,6 +10054,12 @@ msgstr "Aucune autorisation n'a été définie pour les objets individuels."
msgid "No record is required to trigger this workflow"
msgstr "Aucun enregistrement n'est requis pour déclencher ce flux de travail"
#. js-lingui-id: aqUuQE
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
@@ -10548,6 +10590,7 @@ msgstr "Ouvrir Outlook"
#. js-lingui-id: bY2Xkv
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Open side panel"
msgstr "Ouvrir le panneau latéral"
@@ -10645,6 +10688,8 @@ msgstr "Organiser"
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Other"
msgstr "Autres"
@@ -11019,6 +11064,12 @@ msgstr ""
msgid "Pink"
msgstr "Rose"
#. js-lingui-id: kNiQp6
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Pinned"
msgstr ""
#. js-lingui-id: hx1ePY
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsText.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsNumber.tsx
@@ -11565,6 +11616,12 @@ msgstr "Niveau des enregistrements"
msgid "Records"
msgstr "Enregistrements"
#. js-lingui-id: J+Qyf2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "Records selected"
msgstr ""
#. js-lingui-id: wRTiSD
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Red"
@@ -11857,6 +11914,11 @@ msgstr "Réinitialiser"
msgid "Reset 2FA"
msgstr "Réinitialiser 2FA"
#. js-lingui-id: YdI8A2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Reset label to default"
msgstr ""
#. js-lingui-id: 1IWc1n
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
msgid "Reset to"
@@ -11864,6 +11926,7 @@ msgstr "Réinitialiser à"
#. js-lingui-id: L+rMC9
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
msgid "Reset to default"
msgstr "Réinitialiser par défaut"
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
@@ -3028,6 +3028,7 @@ msgstr "סגור באנר"
#. js-lingui-id: saip/v
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Close side panel"
msgstr "סגור את חלונית הצד"
@@ -3402,6 +3403,7 @@ msgstr "תוכן"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
msgstr "הקשר"
@@ -3893,6 +3895,7 @@ msgstr "יוצר את המרחב שלך"
#. js-lingui-id: HAzhV7
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Credentials"
msgstr "אישורים"
@@ -5180,6 +5183,13 @@ msgstr "עריכת {objectLabelPlural}"
msgid "Edit Account"
msgstr "ערוך חשבון"
#. js-lingui-id: t1EOLt
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
msgid "Edit actions"
msgstr ""
#. js-lingui-id: GpnfNN
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Edit Dashboard"
@@ -6676,6 +6686,11 @@ msgstr "שם שדה"
msgid "Field on destination"
msgstr "שדה ביעד"
#. js-lingui-id: P8JCfj
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "field permission"
msgstr ""
#. js-lingui-id: RnX5oc
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "fields"
@@ -7400,6 +7415,11 @@ msgstr "הסתר קבוצה {groupValue}"
msgid "Hide hidden groups"
msgstr "הסתר קבוצות מוסתרות"
#. js-lingui-id: 2ouyMV
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Hide label"
msgstr ""
#. js-lingui-id: i0qMbr
#: src/modules/page-layout/constants/StandardPageLayoutTabTitleTranslations.ts
#: src/modules/navigation/components/MainNavigationDrawerTabsRow.tsx
@@ -7508,6 +7528,16 @@ msgstr "אישורי IAM"
msgid "IAM credentials configured"
msgstr "אישורי IAM הוגדרו"
#. js-lingui-id: LlQirF
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
msgid "IAM role"
msgstr ""
#. js-lingui-id: VjDLrJ
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "IAM role (instance profile)"
msgstr ""
#. js-lingui-id: wwu18a
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Icon"
@@ -9197,6 +9227,7 @@ msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "More"
msgstr "עוד"
@@ -9720,6 +9751,11 @@ msgstr "ללא גוף"
msgid "No calling code"
msgstr "ללא קוד חיוג"
#. js-lingui-id: d14J3J
#: src/modules/ai/components/NavigationDrawerAIChatContent.tsx
msgid "No chat"
msgstr ""
#. js-lingui-id: wgUPZ1
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "No comment"
@@ -10018,6 +10054,12 @@ msgstr "לא הוגדרו הרשאות עבור אובייקטים בודדים.
msgid "No record is required to trigger this workflow"
msgstr "לא נדרש תיעוד להפעלת תהליך עבודה זה"
#. js-lingui-id: aqUuQE
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
@@ -10548,6 +10590,7 @@ msgstr "פתח ב-Outlook"
#. js-lingui-id: bY2Xkv
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Open side panel"
msgstr "פתח את חלונית הצד"
@@ -10645,6 +10688,8 @@ msgstr "ארגון"
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Other"
msgstr "אחר"
@@ -11019,6 +11064,12 @@ msgstr "תרשים עוגה"
msgid "Pink"
msgstr "ורוד"
#. js-lingui-id: kNiQp6
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Pinned"
msgstr ""
#. js-lingui-id: hx1ePY
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsText.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsNumber.tsx
@@ -11565,6 +11616,12 @@ msgstr "ברמת הרשומה"
msgid "Records"
msgstr "רישומים"
#. js-lingui-id: J+Qyf2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "Records selected"
msgstr ""
#. js-lingui-id: wRTiSD
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Red"
@@ -11857,6 +11914,11 @@ msgstr "איפוס"
msgid "Reset 2FA"
msgstr "אתחל אימות דו-שלבי"
#. js-lingui-id: YdI8A2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Reset label to default"
msgstr ""
#. js-lingui-id: 1IWc1n
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
msgid "Reset to"
@@ -11864,6 +11926,7 @@ msgstr "\\"
#. js-lingui-id: L+rMC9
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
msgid "Reset to default"
msgstr "איפוס לברירת מחדל"
@@ -3028,6 +3028,7 @@ msgstr "Banner bezárása"
#. js-lingui-id: saip/v
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Close side panel"
msgstr "Oldalsó panel bezárása"
@@ -3402,6 +3403,7 @@ msgstr "Tartalom"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
msgstr "Összefüggés"
@@ -3893,6 +3895,7 @@ msgstr "Munkaterülete létrehozása"
#. js-lingui-id: HAzhV7
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Credentials"
msgstr "Hitelesítő adatok"
@@ -5180,6 +5183,13 @@ msgstr "Szerkesztés {objectLabelPlural}"
msgid "Edit Account"
msgstr "Fiók szerkesztése"
#. js-lingui-id: t1EOLt
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
msgid "Edit actions"
msgstr ""
#. js-lingui-id: GpnfNN
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Edit Dashboard"
@@ -6676,6 +6686,11 @@ msgstr "Mező neve"
msgid "Field on destination"
msgstr "Mező a célállomáson"
#. js-lingui-id: P8JCfj
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "field permission"
msgstr ""
#. js-lingui-id: RnX5oc
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "fields"
@@ -7400,6 +7415,11 @@ msgstr "Csoport elrejtése: {groupValue}"
msgid "Hide hidden groups"
msgstr "Rejtett csoportok elrejtése"
#. js-lingui-id: 2ouyMV
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Hide label"
msgstr ""
#. js-lingui-id: i0qMbr
#: src/modules/page-layout/constants/StandardPageLayoutTabTitleTranslations.ts
#: src/modules/navigation/components/MainNavigationDrawerTabsRow.tsx
@@ -7508,6 +7528,16 @@ msgstr "IAM hitelesítő adatok"
msgid "IAM credentials configured"
msgstr "IAM hitelesítő adatok beállítva"
#. js-lingui-id: LlQirF
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
msgid "IAM role"
msgstr ""
#. js-lingui-id: VjDLrJ
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "IAM role (instance profile)"
msgstr ""
#. js-lingui-id: wwu18a
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Icon"
@@ -9197,6 +9227,7 @@ msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "More"
msgstr "Több"
@@ -9720,6 +9751,11 @@ msgstr "Nincs törzs"
msgid "No calling code"
msgstr "Hívókód nélkül"
#. js-lingui-id: d14J3J
#: src/modules/ai/components/NavigationDrawerAIChatContent.tsx
msgid "No chat"
msgstr ""
#. js-lingui-id: wgUPZ1
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "No comment"
@@ -10018,6 +10054,12 @@ msgstr "Nincs jogosultság beállítva az egyes objektumokhoz."
msgid "No record is required to trigger this workflow"
msgstr "Nincs szükség rekordra ennek a munkafolyamatnak a elindításához"
#. js-lingui-id: aqUuQE
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
@@ -10548,6 +10590,7 @@ msgstr "Outlook megnyitása"
#. js-lingui-id: bY2Xkv
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Open side panel"
msgstr "Oldalsó panel megnyitása"
@@ -10645,6 +10688,8 @@ msgstr "Rendszerezés"
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Other"
msgstr "Egyéb"
@@ -11019,6 +11064,12 @@ msgstr ""
msgid "Pink"
msgstr "Rózsaszín"
#. js-lingui-id: kNiQp6
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Pinned"
msgstr ""
#. js-lingui-id: hx1ePY
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsText.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsNumber.tsx
@@ -11565,6 +11616,12 @@ msgstr "Rekordszintű"
msgid "Records"
msgstr "Rekordok"
#. js-lingui-id: J+Qyf2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "Records selected"
msgstr ""
#. js-lingui-id: wRTiSD
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Red"
@@ -11857,6 +11914,11 @@ msgstr "Visszaállítás"
msgid "Reset 2FA"
msgstr "2FA visszaállítása"
#. js-lingui-id: YdI8A2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Reset label to default"
msgstr ""
#. js-lingui-id: 1IWc1n
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
msgid "Reset to"
@@ -11864,6 +11926,7 @@ msgstr "Visszaállítás"
#. js-lingui-id: L+rMC9
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
msgid "Reset to default"
msgstr "Visszaállítás alapértelmezettre"
@@ -3028,6 +3028,7 @@ msgstr "Chiudi banner"
#. js-lingui-id: saip/v
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Close side panel"
msgstr "Chiudi il pannello laterale"
@@ -3402,6 +3403,7 @@ msgstr "Contenuto"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
msgstr "Contesto"
@@ -3893,6 +3895,7 @@ msgstr "Creazione del tuo spazio di lavoro"
#. js-lingui-id: HAzhV7
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Credentials"
msgstr "Credenziali"
@@ -5180,6 +5183,13 @@ msgstr "Modifica {objectLabelPlural}"
msgid "Edit Account"
msgstr "Modifica Account"
#. js-lingui-id: t1EOLt
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
msgid "Edit actions"
msgstr ""
#. js-lingui-id: GpnfNN
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Edit Dashboard"
@@ -6676,6 +6686,11 @@ msgstr "Nome del campo"
msgid "Field on destination"
msgstr "Campo sulla destinazione"
#. js-lingui-id: P8JCfj
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "field permission"
msgstr ""
#. js-lingui-id: RnX5oc
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "fields"
@@ -7400,6 +7415,11 @@ msgstr "Nascondi gruppo {groupValue}"
msgid "Hide hidden groups"
msgstr "Nascondi gruppi nascosti"
#. js-lingui-id: 2ouyMV
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Hide label"
msgstr ""
#. js-lingui-id: i0qMbr
#: src/modules/page-layout/constants/StandardPageLayoutTabTitleTranslations.ts
#: src/modules/navigation/components/MainNavigationDrawerTabsRow.tsx
@@ -7508,6 +7528,16 @@ msgstr "Credenziali IAM"
msgid "IAM credentials configured"
msgstr "Credenziali IAM configurate"
#. js-lingui-id: LlQirF
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
msgid "IAM role"
msgstr ""
#. js-lingui-id: VjDLrJ
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "IAM role (instance profile)"
msgstr ""
#. js-lingui-id: wwu18a
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Icon"
@@ -9197,6 +9227,7 @@ msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "More"
msgstr "Altro"
@@ -9720,6 +9751,11 @@ msgstr "Nessun corpo"
msgid "No calling code"
msgstr "Senza prefisso internazionale"
#. js-lingui-id: d14J3J
#: src/modules/ai/components/NavigationDrawerAIChatContent.tsx
msgid "No chat"
msgstr ""
#. js-lingui-id: wgUPZ1
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "No comment"
@@ -10018,6 +10054,12 @@ msgstr "Nessuna autorizzazione è stata impostata per gli oggetti individuali."
msgid "No record is required to trigger this workflow"
msgstr "Non è richiesto alcun record per attivare questo flusso di lavoro"
#. js-lingui-id: aqUuQE
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
@@ -10548,6 +10590,7 @@ msgstr "Aprire Outlook"
#. js-lingui-id: bY2Xkv
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Open side panel"
msgstr "Apri il pannello laterale"
@@ -10645,6 +10688,8 @@ msgstr "Organizza"
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Other"
msgstr "Altro"
@@ -11019,6 +11064,12 @@ msgstr "Grafico a Torta"
msgid "Pink"
msgstr "Rosa"
#. js-lingui-id: kNiQp6
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Pinned"
msgstr ""
#. js-lingui-id: hx1ePY
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsText.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsNumber.tsx
@@ -11565,6 +11616,12 @@ msgstr "Livello record"
msgid "Records"
msgstr "Registri"
#. js-lingui-id: J+Qyf2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "Records selected"
msgstr ""
#. js-lingui-id: wRTiSD
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Red"
@@ -11857,6 +11914,11 @@ msgstr "Reimposta"
msgid "Reset 2FA"
msgstr "Reimposta 2FA"
#. js-lingui-id: YdI8A2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Reset label to default"
msgstr ""
#. js-lingui-id: 1IWc1n
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
msgid "Reset to"
@@ -11864,6 +11926,7 @@ msgstr "Reimposta a"
#. js-lingui-id: L+rMC9
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
msgid "Reset to default"
msgstr "Ripristina ai valori predefiniti"
@@ -3028,6 +3028,7 @@ msgstr "バナーを閉じる"
#. js-lingui-id: saip/v
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Close side panel"
msgstr "サイドパネルを閉じる"
@@ -3402,6 +3403,7 @@ msgstr "コンテンツ"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
msgstr "コンテキスト"
@@ -3893,6 +3895,7 @@ msgstr "ワークスペースを作成中"
#. js-lingui-id: HAzhV7
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Credentials"
msgstr "認証情報"
@@ -5180,6 +5183,13 @@ msgstr "{objectLabelPlural}を編集する"
msgid "Edit Account"
msgstr "アカウントを編集する"
#. js-lingui-id: t1EOLt
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
msgid "Edit actions"
msgstr ""
#. js-lingui-id: GpnfNN
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Edit Dashboard"
@@ -6676,6 +6686,11 @@ msgstr "フィールド名"
msgid "Field on destination"
msgstr "宛先のフィールド"
#. js-lingui-id: P8JCfj
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "field permission"
msgstr ""
#. js-lingui-id: RnX5oc
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "fields"
@@ -7400,6 +7415,11 @@ msgstr "グループ {groupValue} を非表示"
msgid "Hide hidden groups"
msgstr "隠されたグループを非表示"
#. js-lingui-id: 2ouyMV
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Hide label"
msgstr ""
#. js-lingui-id: i0qMbr
#: src/modules/page-layout/constants/StandardPageLayoutTabTitleTranslations.ts
#: src/modules/navigation/components/MainNavigationDrawerTabsRow.tsx
@@ -7508,6 +7528,16 @@ msgstr "IAM 認証情報"
msgid "IAM credentials configured"
msgstr "IAM 認証情報が設定されています"
#. js-lingui-id: LlQirF
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
msgid "IAM role"
msgstr ""
#. js-lingui-id: VjDLrJ
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "IAM role (instance profile)"
msgstr ""
#. js-lingui-id: wwu18a
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Icon"
@@ -9197,6 +9227,7 @@ msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "More"
msgstr "もっと"
@@ -9720,6 +9751,11 @@ msgstr "本文なし"
msgid "No calling code"
msgstr "国番号なし"
#. js-lingui-id: d14J3J
#: src/modules/ai/components/NavigationDrawerAIChatContent.tsx
msgid "No chat"
msgstr ""
#. js-lingui-id: wgUPZ1
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "No comment"
@@ -10018,6 +10054,12 @@ msgstr "個々のオブジェクトに対して権限が設定されていませ
msgid "No record is required to trigger this workflow"
msgstr "このワークフローを起動するために必要なレコードはありません"
#. js-lingui-id: aqUuQE
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
@@ -10548,6 +10590,7 @@ msgstr "Outlookで開く"
#. js-lingui-id: bY2Xkv
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Open side panel"
msgstr "サイドパネルを開く"
@@ -10645,6 +10688,8 @@ msgstr "整理"
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Other"
msgstr "その他"
@@ -11019,6 +11064,12 @@ msgstr "パイチャート"
msgid "Pink"
msgstr "ピンク"
#. js-lingui-id: kNiQp6
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Pinned"
msgstr ""
#. js-lingui-id: hx1ePY
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsText.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsNumber.tsx
@@ -11565,6 +11616,12 @@ msgstr "レコードレベル"
msgid "Records"
msgstr "レコード"
#. js-lingui-id: J+Qyf2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "Records selected"
msgstr ""
#. js-lingui-id: wRTiSD
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Red"
@@ -11857,6 +11914,11 @@ msgstr "リセット"
msgid "Reset 2FA"
msgstr "2FAをリセット"
#. js-lingui-id: YdI8A2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Reset label to default"
msgstr ""
#. js-lingui-id: 1IWc1n
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
msgid "Reset to"
@@ -11864,6 +11926,7 @@ msgstr "リセット"
#. js-lingui-id: L+rMC9
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
msgid "Reset to default"
msgstr "デフォルトにリセット"
@@ -3028,6 +3028,7 @@ msgstr "배너 닫기"
#. js-lingui-id: saip/v
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Close side panel"
msgstr "사이드 패널 닫기"
@@ -3402,6 +3403,7 @@ msgstr "내용"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
msgstr "컨텍스트"
@@ -3893,6 +3895,7 @@ msgstr "워크스페이스 생성 중"
#. js-lingui-id: HAzhV7
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Credentials"
msgstr "자격 증명"
@@ -5180,6 +5183,13 @@ msgstr "{objectLabelPlural} 편집"
msgid "Edit Account"
msgstr "계정 편집"
#. js-lingui-id: t1EOLt
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
msgid "Edit actions"
msgstr ""
#. js-lingui-id: GpnfNN
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Edit Dashboard"
@@ -6676,6 +6686,11 @@ msgstr "필드 이름"
msgid "Field on destination"
msgstr "대상 필드"
#. js-lingui-id: P8JCfj
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "field permission"
msgstr ""
#. js-lingui-id: RnX5oc
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "fields"
@@ -7400,6 +7415,11 @@ msgstr "그룹 {groupValue} 숨기기"
msgid "Hide hidden groups"
msgstr "숨겨진 그룹 숨기기"
#. js-lingui-id: 2ouyMV
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Hide label"
msgstr ""
#. js-lingui-id: i0qMbr
#: src/modules/page-layout/constants/StandardPageLayoutTabTitleTranslations.ts
#: src/modules/navigation/components/MainNavigationDrawerTabsRow.tsx
@@ -7508,6 +7528,16 @@ msgstr "IAM 자격 증명"
msgid "IAM credentials configured"
msgstr "IAM 자격 증명이 설정됨"
#. js-lingui-id: LlQirF
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
msgid "IAM role"
msgstr ""
#. js-lingui-id: VjDLrJ
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "IAM role (instance profile)"
msgstr ""
#. js-lingui-id: wwu18a
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Icon"
@@ -9197,6 +9227,7 @@ msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "More"
msgstr "더보기"
@@ -9720,6 +9751,11 @@ msgstr "본문 없음"
msgid "No calling code"
msgstr "국가 번호 없음"
#. js-lingui-id: d14J3J
#: src/modules/ai/components/NavigationDrawerAIChatContent.tsx
msgid "No chat"
msgstr ""
#. js-lingui-id: wgUPZ1
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "No comment"
@@ -10018,6 +10054,12 @@ msgstr "개별 객체에 대한 권한이 설정되지 않았습니다."
msgid "No record is required to trigger this workflow"
msgstr "이 워크플로우를 트리거하기 위해 기록이 필요하지 않습니다."
#. js-lingui-id: aqUuQE
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
@@ -10548,6 +10590,7 @@ msgstr "Outlook 열기"
#. js-lingui-id: bY2Xkv
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Open side panel"
msgstr "사이드 패널 열기"
@@ -10645,6 +10688,8 @@ msgstr "정리"
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Other"
msgstr "기타"
@@ -11019,6 +11064,12 @@ msgstr "파이 차트"
msgid "Pink"
msgstr "분홍색"
#. js-lingui-id: kNiQp6
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Pinned"
msgstr ""
#. js-lingui-id: hx1ePY
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsText.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsNumber.tsx
@@ -11565,6 +11616,12 @@ msgstr "레코드 수준"
msgid "Records"
msgstr "레코드"
#. js-lingui-id: J+Qyf2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "Records selected"
msgstr ""
#. js-lingui-id: wRTiSD
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Red"
@@ -11857,6 +11914,11 @@ msgstr "초기화"
msgid "Reset 2FA"
msgstr "이중 인증 재설정"
#. js-lingui-id: YdI8A2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Reset label to default"
msgstr ""
#. js-lingui-id: 1IWc1n
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
msgid "Reset to"
@@ -11864,6 +11926,7 @@ msgstr "다음으로 재설정"
#. js-lingui-id: L+rMC9
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
msgid "Reset to default"
msgstr "기본값으로 재설정"
@@ -3028,6 +3028,7 @@ msgstr "Banner sluiten"
#. js-lingui-id: saip/v
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Close side panel"
msgstr "Zijpaneel sluiten"
@@ -3402,6 +3403,7 @@ msgstr "Inhoud"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
msgstr "Context"
@@ -3893,6 +3895,7 @@ msgstr "Uw werkruimte maken"
#. js-lingui-id: HAzhV7
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Credentials"
msgstr "Referenties"
@@ -5180,6 +5183,13 @@ msgstr "Bewerk {objectLabelPlural}"
msgid "Edit Account"
msgstr "Account bewerken"
#. js-lingui-id: t1EOLt
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
msgid "Edit actions"
msgstr ""
#. js-lingui-id: GpnfNN
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Edit Dashboard"
@@ -6676,6 +6686,11 @@ msgstr "Veldnaam"
msgid "Field on destination"
msgstr "Veld bij bestemming"
#. js-lingui-id: P8JCfj
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "field permission"
msgstr ""
#. js-lingui-id: RnX5oc
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "fields"
@@ -7400,6 +7415,11 @@ msgstr "Groep {groupValue} verbergen"
msgid "Hide hidden groups"
msgstr "Verborgen groepen verbergen"
#. js-lingui-id: 2ouyMV
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Hide label"
msgstr ""
#. js-lingui-id: i0qMbr
#: src/modules/page-layout/constants/StandardPageLayoutTabTitleTranslations.ts
#: src/modules/navigation/components/MainNavigationDrawerTabsRow.tsx
@@ -7508,6 +7528,16 @@ msgstr "IAM-referenties"
msgid "IAM credentials configured"
msgstr "IAM-referenties geconfigureerd"
#. js-lingui-id: LlQirF
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
msgid "IAM role"
msgstr ""
#. js-lingui-id: VjDLrJ
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "IAM role (instance profile)"
msgstr ""
#. js-lingui-id: wwu18a
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Icon"
@@ -9197,6 +9227,7 @@ msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "More"
msgstr "Meer"
@@ -9720,6 +9751,11 @@ msgstr "Geen body"
msgid "No calling code"
msgstr "Zonder landnummer"
#. js-lingui-id: d14J3J
#: src/modules/ai/components/NavigationDrawerAIChatContent.tsx
msgid "No chat"
msgstr ""
#. js-lingui-id: wgUPZ1
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "No comment"
@@ -10018,6 +10054,12 @@ msgstr "Er zijn geen machtigingen ingesteld voor afzonderlijke objecten."
msgid "No record is required to trigger this workflow"
msgstr "Er is geen record vereist om deze workflow te activeren"
#. js-lingui-id: aqUuQE
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
@@ -10548,6 +10590,7 @@ msgstr "Open Outlook"
#. js-lingui-id: bY2Xkv
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Open side panel"
msgstr "Zijpaneel openen"
@@ -10645,6 +10688,8 @@ msgstr "Ordenen"
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Other"
msgstr "Overige"
@@ -11019,6 +11064,12 @@ msgstr "Cirkeldiagram"
msgid "Pink"
msgstr "Roze"
#. js-lingui-id: kNiQp6
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Pinned"
msgstr ""
#. js-lingui-id: hx1ePY
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsText.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsNumber.tsx
@@ -11565,6 +11616,12 @@ msgstr "Recordniveau"
msgid "Records"
msgstr "Records"
#. js-lingui-id: J+Qyf2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "Records selected"
msgstr ""
#. js-lingui-id: wRTiSD
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Red"
@@ -11857,6 +11914,11 @@ msgstr "Resetten"
msgid "Reset 2FA"
msgstr "Reset 2FA"
#. js-lingui-id: YdI8A2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Reset label to default"
msgstr ""
#. js-lingui-id: 1IWc1n
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
msgid "Reset to"
@@ -11864,6 +11926,7 @@ msgstr "Reset naar"
#. js-lingui-id: L+rMC9
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
msgid "Reset to default"
msgstr "Herstel naar standaard"
@@ -3028,6 +3028,7 @@ msgstr "Lukk banner"
#. js-lingui-id: saip/v
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Close side panel"
msgstr "Lukk sidepanelet"
@@ -3402,6 +3403,7 @@ msgstr "Innhold"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
msgstr "Kontekst"
@@ -3893,6 +3895,7 @@ msgstr "Oppretter arbeidsområdet ditt"
#. js-lingui-id: HAzhV7
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Credentials"
msgstr "Legitimasjon"
@@ -5180,6 +5183,13 @@ msgstr "Rediger {objectLabelPlural}"
msgid "Edit Account"
msgstr "Rediger konto"
#. js-lingui-id: t1EOLt
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
msgid "Edit actions"
msgstr ""
#. js-lingui-id: GpnfNN
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Edit Dashboard"
@@ -6676,6 +6686,11 @@ msgstr "Feltnavn"
msgid "Field on destination"
msgstr "Felt på destinasjon"
#. js-lingui-id: P8JCfj
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "field permission"
msgstr ""
#. js-lingui-id: RnX5oc
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "fields"
@@ -7400,6 +7415,11 @@ msgstr "Skjul gruppe {groupValue}"
msgid "Hide hidden groups"
msgstr "Skjul skjulte grupper"
#. js-lingui-id: 2ouyMV
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Hide label"
msgstr ""
#. js-lingui-id: i0qMbr
#: src/modules/page-layout/constants/StandardPageLayoutTabTitleTranslations.ts
#: src/modules/navigation/components/MainNavigationDrawerTabsRow.tsx
@@ -7508,6 +7528,16 @@ msgstr "IAM-legitimasjon"
msgid "IAM credentials configured"
msgstr "IAM-legitimasjon konfigurert"
#. js-lingui-id: LlQirF
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
msgid "IAM role"
msgstr ""
#. js-lingui-id: VjDLrJ
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "IAM role (instance profile)"
msgstr ""
#. js-lingui-id: wwu18a
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Icon"
@@ -9197,6 +9227,7 @@ msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "More"
msgstr "Mer"
@@ -9720,6 +9751,11 @@ msgstr "Ingen body"
msgid "No calling code"
msgstr "Ingen landskode"
#. js-lingui-id: d14J3J
#: src/modules/ai/components/NavigationDrawerAIChatContent.tsx
msgid "No chat"
msgstr ""
#. js-lingui-id: wgUPZ1
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "No comment"
@@ -10018,6 +10054,12 @@ msgstr "Ingen tillatelser er satt for individuelle objekter."
msgid "No record is required to trigger this workflow"
msgstr "Ingen post er nødvendig for å utløse denne arbeidsflyten"
#. js-lingui-id: aqUuQE
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
@@ -10548,6 +10590,7 @@ msgstr "Åpne Outlook"
#. js-lingui-id: bY2Xkv
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Open side panel"
msgstr "Åpne sidepanelet"
@@ -10645,6 +10688,8 @@ msgstr "Organiser"
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Other"
msgstr "Annen"
@@ -11019,6 +11064,12 @@ msgstr "Sirkeldiagram"
msgid "Pink"
msgstr "Rosa"
#. js-lingui-id: kNiQp6
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Pinned"
msgstr ""
#. js-lingui-id: hx1ePY
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsText.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsNumber.tsx
@@ -11565,6 +11616,12 @@ msgstr "Oppføringsnivå"
msgid "Records"
msgstr "Poster"
#. js-lingui-id: J+Qyf2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "Records selected"
msgstr ""
#. js-lingui-id: wRTiSD
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Red"
@@ -11857,6 +11914,11 @@ msgstr "Tilbakestill"
msgid "Reset 2FA"
msgstr "Tilbakestill 2FA"
#. js-lingui-id: YdI8A2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Reset label to default"
msgstr ""
#. js-lingui-id: 1IWc1n
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
msgid "Reset to"
@@ -11864,6 +11926,7 @@ msgstr "Tilbakestill til"
#. js-lingui-id: L+rMC9
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
msgid "Reset to default"
msgstr "Nullstill til standard"
@@ -3028,6 +3028,7 @@ msgstr "Zamknij baner"
#. js-lingui-id: saip/v
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Close side panel"
msgstr "Zamknij panel boczny"
@@ -3402,6 +3403,7 @@ msgstr "Zawartość"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
msgstr "Kontekst"
@@ -3893,6 +3895,7 @@ msgstr "Tworzenie twojej przestrzeni pracy"
#. js-lingui-id: HAzhV7
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Credentials"
msgstr "Dane uwierzytelniające"
@@ -5180,6 +5183,13 @@ msgstr "Edytuj {objectLabelPlural}"
msgid "Edit Account"
msgstr "Edytuj Konto"
#. js-lingui-id: t1EOLt
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
msgid "Edit actions"
msgstr ""
#. js-lingui-id: GpnfNN
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Edit Dashboard"
@@ -6676,6 +6686,11 @@ msgstr "Nazwa pola"
msgid "Field on destination"
msgstr "Pole na miejscu docelowym"
#. js-lingui-id: P8JCfj
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "field permission"
msgstr ""
#. js-lingui-id: RnX5oc
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "fields"
@@ -7400,6 +7415,11 @@ msgstr "Ukryj grupę {groupValue}"
msgid "Hide hidden groups"
msgstr "Ukryj ukryte grupy"
#. js-lingui-id: 2ouyMV
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Hide label"
msgstr ""
#. js-lingui-id: i0qMbr
#: src/modules/page-layout/constants/StandardPageLayoutTabTitleTranslations.ts
#: src/modules/navigation/components/MainNavigationDrawerTabsRow.tsx
@@ -7508,6 +7528,16 @@ msgstr "Dane uwierzytelniające IAM"
msgid "IAM credentials configured"
msgstr "Dane uwierzytelniające IAM skonfigurowane"
#. js-lingui-id: LlQirF
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
msgid "IAM role"
msgstr ""
#. js-lingui-id: VjDLrJ
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "IAM role (instance profile)"
msgstr ""
#. js-lingui-id: wwu18a
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Icon"
@@ -9197,6 +9227,7 @@ msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "More"
msgstr "Więcej"
@@ -9720,6 +9751,11 @@ msgstr "Brak treści"
msgid "No calling code"
msgstr "Bez kodu kraju"
#. js-lingui-id: d14J3J
#: src/modules/ai/components/NavigationDrawerAIChatContent.tsx
msgid "No chat"
msgstr ""
#. js-lingui-id: wgUPZ1
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "No comment"
@@ -10018,6 +10054,12 @@ msgstr "Nie ustawiono uprawnień dla poszczególnych obiektów."
msgid "No record is required to trigger this workflow"
msgstr "Do uruchomienia tego procesu roboczego nie jest wymagany żaden zapis"
#. js-lingui-id: aqUuQE
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
@@ -10548,6 +10590,7 @@ msgstr "Otwórz Outlook"
#. js-lingui-id: bY2Xkv
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Open side panel"
msgstr "Otwórz panel boczny"
@@ -10645,6 +10688,8 @@ msgstr "Organizuj"
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Other"
msgstr "Inne"
@@ -11019,6 +11064,12 @@ msgstr "Wykres kołowy"
msgid "Pink"
msgstr "Różowy"
#. js-lingui-id: kNiQp6
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Pinned"
msgstr ""
#. js-lingui-id: hx1ePY
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsText.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsNumber.tsx
@@ -11565,6 +11616,12 @@ msgstr "Poziom rekordu"
msgid "Records"
msgstr "Rekordy"
#. js-lingui-id: J+Qyf2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "Records selected"
msgstr ""
#. js-lingui-id: wRTiSD
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Red"
@@ -11857,6 +11914,11 @@ msgstr "Zresetuj"
msgid "Reset 2FA"
msgstr "Resetuj 2FA"
#. js-lingui-id: YdI8A2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Reset label to default"
msgstr ""
#. js-lingui-id: 1IWc1n
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
msgid "Reset to"
@@ -11864,6 +11926,7 @@ msgstr "Zresetuj do"
#. js-lingui-id: L+rMC9
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
msgid "Reset to default"
msgstr "Przywróć domyślne"
@@ -3023,6 +3023,7 @@ msgstr ""
#. js-lingui-id: saip/v
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Close side panel"
msgstr ""
@@ -3397,6 +3398,7 @@ msgstr ""
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
msgstr ""
@@ -3888,6 +3890,7 @@ msgstr ""
#. js-lingui-id: HAzhV7
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Credentials"
msgstr ""
@@ -5175,6 +5178,13 @@ msgstr ""
msgid "Edit Account"
msgstr ""
#. js-lingui-id: t1EOLt
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
msgid "Edit actions"
msgstr ""
#. js-lingui-id: GpnfNN
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Edit Dashboard"
@@ -6671,6 +6681,11 @@ msgstr ""
msgid "Field on destination"
msgstr ""
#. js-lingui-id: P8JCfj
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "field permission"
msgstr ""
#. js-lingui-id: RnX5oc
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "fields"
@@ -7395,6 +7410,11 @@ msgstr ""
msgid "Hide hidden groups"
msgstr ""
#. js-lingui-id: 2ouyMV
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Hide label"
msgstr ""
#. js-lingui-id: i0qMbr
#: src/modules/page-layout/constants/StandardPageLayoutTabTitleTranslations.ts
#: src/modules/navigation/components/MainNavigationDrawerTabsRow.tsx
@@ -7503,6 +7523,16 @@ msgstr ""
msgid "IAM credentials configured"
msgstr ""
#. js-lingui-id: LlQirF
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
msgid "IAM role"
msgstr ""
#. js-lingui-id: VjDLrJ
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "IAM role (instance profile)"
msgstr ""
#. js-lingui-id: wwu18a
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Icon"
@@ -9192,6 +9222,7 @@ msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "More"
msgstr ""
@@ -9715,6 +9746,11 @@ msgstr ""
msgid "No calling code"
msgstr ""
#. js-lingui-id: d14J3J
#: src/modules/ai/components/NavigationDrawerAIChatContent.tsx
msgid "No chat"
msgstr ""
#. js-lingui-id: wgUPZ1
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "No comment"
@@ -10013,6 +10049,12 @@ msgstr ""
msgid "No record is required to trigger this workflow"
msgstr ""
#. js-lingui-id: aqUuQE
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
@@ -10543,6 +10585,7 @@ msgstr ""
#. js-lingui-id: bY2Xkv
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Open side panel"
msgstr ""
@@ -10640,6 +10683,8 @@ msgstr ""
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Other"
msgstr ""
@@ -11014,6 +11059,12 @@ msgstr ""
msgid "Pink"
msgstr ""
#. js-lingui-id: kNiQp6
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Pinned"
msgstr ""
#. js-lingui-id: hx1ePY
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsText.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsNumber.tsx
@@ -11560,6 +11611,12 @@ msgstr ""
msgid "Records"
msgstr ""
#. js-lingui-id: J+Qyf2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "Records selected"
msgstr ""
#. js-lingui-id: wRTiSD
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Red"
@@ -11852,6 +11909,11 @@ msgstr ""
msgid "Reset 2FA"
msgstr ""
#. js-lingui-id: YdI8A2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Reset label to default"
msgstr ""
#. js-lingui-id: 1IWc1n
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
msgid "Reset to"
@@ -11859,6 +11921,7 @@ msgstr ""
#. js-lingui-id: L+rMC9
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
msgid "Reset to default"
msgstr ""
@@ -3028,6 +3028,7 @@ msgstr "Fechar banner"
#. js-lingui-id: saip/v
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Close side panel"
msgstr ""
@@ -3402,6 +3403,7 @@ msgstr "Conteúdo"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
msgstr "Contexto"
@@ -3893,6 +3895,7 @@ msgstr "Criando seu espaço de trabalho"
#. js-lingui-id: HAzhV7
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Credentials"
msgstr "Credenciais"
@@ -5180,6 +5183,13 @@ msgstr "Editar {objectLabelPlural}"
msgid "Edit Account"
msgstr "Editar Conta"
#. js-lingui-id: t1EOLt
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
msgid "Edit actions"
msgstr ""
#. js-lingui-id: GpnfNN
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Edit Dashboard"
@@ -6676,6 +6686,11 @@ msgstr "Nome do campo"
msgid "Field on destination"
msgstr "Campo no destino"
#. js-lingui-id: P8JCfj
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "field permission"
msgstr ""
#. js-lingui-id: RnX5oc
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "fields"
@@ -7400,6 +7415,11 @@ msgstr "Ocultar grupo {groupValue}"
msgid "Hide hidden groups"
msgstr "Ocultar grupos ocultos"
#. js-lingui-id: 2ouyMV
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Hide label"
msgstr ""
#. js-lingui-id: i0qMbr
#: src/modules/page-layout/constants/StandardPageLayoutTabTitleTranslations.ts
#: src/modules/navigation/components/MainNavigationDrawerTabsRow.tsx
@@ -7508,6 +7528,16 @@ msgstr "Credenciais do IAM"
msgid "IAM credentials configured"
msgstr "Credenciais do IAM configuradas"
#. js-lingui-id: LlQirF
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
msgid "IAM role"
msgstr ""
#. js-lingui-id: VjDLrJ
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "IAM role (instance profile)"
msgstr ""
#. js-lingui-id: wwu18a
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Icon"
@@ -9197,6 +9227,7 @@ msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "More"
msgstr "Mais"
@@ -9720,6 +9751,11 @@ msgstr "Sem corpo"
msgid "No calling code"
msgstr "Sem código de chamada"
#. js-lingui-id: d14J3J
#: src/modules/ai/components/NavigationDrawerAIChatContent.tsx
msgid "No chat"
msgstr ""
#. js-lingui-id: wgUPZ1
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "No comment"
@@ -10018,6 +10054,12 @@ msgstr "Nenhuma permissão foi definida para objetos individuais."
msgid "No record is required to trigger this workflow"
msgstr "Nenhum registro é necessário para acionar este fluxo de trabalho"
#. js-lingui-id: aqUuQE
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
@@ -10548,6 +10590,7 @@ msgstr "Abrir Outlook"
#. js-lingui-id: bY2Xkv
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Open side panel"
msgstr ""
@@ -10645,6 +10688,8 @@ msgstr "Organizar"
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Other"
msgstr "Outros"
@@ -11019,6 +11064,12 @@ msgstr "Gráfico de Pizza"
msgid "Pink"
msgstr "Rosa"
#. js-lingui-id: kNiQp6
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Pinned"
msgstr ""
#. js-lingui-id: hx1ePY
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsText.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsNumber.tsx
@@ -11565,6 +11616,12 @@ msgstr "Nível de registro"
msgid "Records"
msgstr "Registros"
#. js-lingui-id: J+Qyf2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "Records selected"
msgstr ""
#. js-lingui-id: wRTiSD
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Red"
@@ -11857,6 +11914,11 @@ msgstr "Redefinir"
msgid "Reset 2FA"
msgstr "Redefinir 2FA"
#. js-lingui-id: YdI8A2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Reset label to default"
msgstr ""
#. js-lingui-id: 1IWc1n
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
msgid "Reset to"
@@ -11864,6 +11926,7 @@ msgstr "Redefinir para"
#. js-lingui-id: L+rMC9
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
msgid "Reset to default"
msgstr "Redefinir para o Padrão"
@@ -3028,6 +3028,7 @@ msgstr "Fechar banner"
#. js-lingui-id: saip/v
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Close side panel"
msgstr "Fechar painel lateral"
@@ -3402,6 +3403,7 @@ msgstr "Conteúdo"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
msgstr "Contexto"
@@ -3893,6 +3895,7 @@ msgstr "Criando seu espaço de trabalho"
#. js-lingui-id: HAzhV7
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Credentials"
msgstr "Credenciais"
@@ -5180,6 +5183,13 @@ msgstr "Editar {objectLabelPlural}"
msgid "Edit Account"
msgstr "Editar Conta"
#. js-lingui-id: t1EOLt
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
msgid "Edit actions"
msgstr ""
#. js-lingui-id: GpnfNN
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Edit Dashboard"
@@ -6676,6 +6686,11 @@ msgstr "Nome do Campo"
msgid "Field on destination"
msgstr "Campo no destino"
#. js-lingui-id: P8JCfj
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "field permission"
msgstr ""
#. js-lingui-id: RnX5oc
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "fields"
@@ -7400,6 +7415,11 @@ msgstr "Ocultar grupo {groupValue}"
msgid "Hide hidden groups"
msgstr "Ocultar grupos ocultos"
#. js-lingui-id: 2ouyMV
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Hide label"
msgstr ""
#. js-lingui-id: i0qMbr
#: src/modules/page-layout/constants/StandardPageLayoutTabTitleTranslations.ts
#: src/modules/navigation/components/MainNavigationDrawerTabsRow.tsx
@@ -7508,6 +7528,16 @@ msgstr "Credenciais do IAM"
msgid "IAM credentials configured"
msgstr "Credenciais do IAM configuradas"
#. js-lingui-id: LlQirF
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
msgid "IAM role"
msgstr ""
#. js-lingui-id: VjDLrJ
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "IAM role (instance profile)"
msgstr ""
#. js-lingui-id: wwu18a
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Icon"
@@ -9197,6 +9227,7 @@ msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "More"
msgstr "Mais"
@@ -9720,6 +9751,11 @@ msgstr "Sem corpo"
msgid "No calling code"
msgstr "Sem indicativo"
#. js-lingui-id: d14J3J
#: src/modules/ai/components/NavigationDrawerAIChatContent.tsx
msgid "No chat"
msgstr ""
#. js-lingui-id: wgUPZ1
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "No comment"
@@ -10018,6 +10054,12 @@ msgstr "Nenhuma permissão foi definida para objetos individuais."
msgid "No record is required to trigger this workflow"
msgstr "Nenhum registro é necessário para acionar este fluxo de trabalho"
#. js-lingui-id: aqUuQE
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
@@ -10548,6 +10590,7 @@ msgstr "Abrir Outlook"
#. js-lingui-id: bY2Xkv
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Open side panel"
msgstr "Abrir painel lateral"
@@ -10645,6 +10688,8 @@ msgstr "Organizar"
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Other"
msgstr "Outros"
@@ -11019,6 +11064,12 @@ msgstr "Gráfico de Pizza"
msgid "Pink"
msgstr "Rosa"
#. js-lingui-id: kNiQp6
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Pinned"
msgstr ""
#. js-lingui-id: hx1ePY
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsText.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsNumber.tsx
@@ -11565,6 +11616,12 @@ msgstr "Nível de registo"
msgid "Records"
msgstr "Registros"
#. js-lingui-id: J+Qyf2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "Records selected"
msgstr ""
#. js-lingui-id: wRTiSD
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Red"
@@ -11857,6 +11914,11 @@ msgstr "Redefinir"
msgid "Reset 2FA"
msgstr "Redefinir 2FA"
#. js-lingui-id: YdI8A2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Reset label to default"
msgstr ""
#. js-lingui-id: 1IWc1n
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
msgid "Reset to"
@@ -11864,6 +11926,7 @@ msgstr "Redefinir para"
#. js-lingui-id: L+rMC9
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
msgid "Reset to default"
msgstr "Redefinir para padrão"
@@ -3028,6 +3028,7 @@ msgstr "Închide bannerul"
#. js-lingui-id: saip/v
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Close side panel"
msgstr "Închide panoul lateral"
@@ -3402,6 +3403,7 @@ msgstr "Conținut"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
msgstr "Context"
@@ -3893,6 +3895,7 @@ msgstr "Crearea spațiului tău de lucru"
#. js-lingui-id: HAzhV7
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Credentials"
msgstr "Acreditări"
@@ -5180,6 +5183,13 @@ msgstr "Editează {objectLabelPlural}"
msgid "Edit Account"
msgstr "Editează Cont"
#. js-lingui-id: t1EOLt
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
msgid "Edit actions"
msgstr ""
#. js-lingui-id: GpnfNN
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Edit Dashboard"
@@ -6676,6 +6686,11 @@ msgstr "Nume câmp"
msgid "Field on destination"
msgstr "Câmp pe destinație"
#. js-lingui-id: P8JCfj
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "field permission"
msgstr ""
#. js-lingui-id: RnX5oc
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "fields"
@@ -7400,6 +7415,11 @@ msgstr "Ascunde grupul {groupValue}"
msgid "Hide hidden groups"
msgstr "Ascundeți grupurile ascunse"
#. js-lingui-id: 2ouyMV
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Hide label"
msgstr ""
#. js-lingui-id: i0qMbr
#: src/modules/page-layout/constants/StandardPageLayoutTabTitleTranslations.ts
#: src/modules/navigation/components/MainNavigationDrawerTabsRow.tsx
@@ -7508,6 +7528,16 @@ msgstr "Acreditări IAM"
msgid "IAM credentials configured"
msgstr "Acreditări IAM configurate"
#. js-lingui-id: LlQirF
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
msgid "IAM role"
msgstr ""
#. js-lingui-id: VjDLrJ
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "IAM role (instance profile)"
msgstr ""
#. js-lingui-id: wwu18a
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Icon"
@@ -9197,6 +9227,7 @@ msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "More"
msgstr "Mai mult"
@@ -9720,6 +9751,11 @@ msgstr "Fără Body"
msgid "No calling code"
msgstr "Fără cod de apelare"
#. js-lingui-id: d14J3J
#: src/modules/ai/components/NavigationDrawerAIChatContent.tsx
msgid "No chat"
msgstr ""
#. js-lingui-id: wgUPZ1
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "No comment"
@@ -10018,6 +10054,12 @@ msgstr "Nu s-au setat permisiuni pentru obiectele individuale."
msgid "No record is required to trigger this workflow"
msgstr "Nu este necesară nicio înregistrare pentru a declanșa acest flux de lucru"
#. js-lingui-id: aqUuQE
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
@@ -10548,6 +10590,7 @@ msgstr "Deschide Outlook"
#. js-lingui-id: bY2Xkv
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Open side panel"
msgstr "Deschide panoul lateral"
@@ -10645,6 +10688,8 @@ msgstr "Organizare"
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Other"
msgstr "Altul"
@@ -11019,6 +11064,12 @@ msgstr "Grafic circular"
msgid "Pink"
msgstr "Roz"
#. js-lingui-id: kNiQp6
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Pinned"
msgstr ""
#. js-lingui-id: hx1ePY
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsText.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsNumber.tsx
@@ -11565,6 +11616,12 @@ msgstr "Nivel de înregistrare"
msgid "Records"
msgstr "Înregistrări"
#. js-lingui-id: J+Qyf2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "Records selected"
msgstr ""
#. js-lingui-id: wRTiSD
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Red"
@@ -11857,6 +11914,11 @@ msgstr "Resetează"
msgid "Reset 2FA"
msgstr "Resetează 2FA"
#. js-lingui-id: YdI8A2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Reset label to default"
msgstr ""
#. js-lingui-id: 1IWc1n
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
msgid "Reset to"
@@ -11864,6 +11926,7 @@ msgstr "Resetează la"
#. js-lingui-id: L+rMC9
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
msgid "Reset to default"
msgstr "Resetați la implicit"
Binary file not shown.
@@ -3028,6 +3028,7 @@ msgstr "Затвори банер"
#. js-lingui-id: saip/v
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Close side panel"
msgstr "Затвори бочни панел"
@@ -3402,6 +3403,7 @@ msgstr "Садржај"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
msgstr "Контекст"
@@ -3893,6 +3895,7 @@ msgstr "Креирање вашег радног простора"
#. js-lingui-id: HAzhV7
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Credentials"
msgstr "Акредитиви"
@@ -5180,6 +5183,13 @@ msgstr "Измени {objectLabelPlural}"
msgid "Edit Account"
msgstr "Измени налог"
#. js-lingui-id: t1EOLt
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
msgid "Edit actions"
msgstr ""
#. js-lingui-id: GpnfNN
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Edit Dashboard"
@@ -6676,6 +6686,11 @@ msgstr "Име поља"
msgid "Field on destination"
msgstr "Поље на одредишту"
#. js-lingui-id: P8JCfj
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "field permission"
msgstr ""
#. js-lingui-id: RnX5oc
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "fields"
@@ -7400,6 +7415,11 @@ msgstr "Сакриј групу {groupValue}"
msgid "Hide hidden groups"
msgstr "Сакриј скривене групе"
#. js-lingui-id: 2ouyMV
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Hide label"
msgstr ""
#. js-lingui-id: i0qMbr
#: src/modules/page-layout/constants/StandardPageLayoutTabTitleTranslations.ts
#: src/modules/navigation/components/MainNavigationDrawerTabsRow.tsx
@@ -7508,6 +7528,16 @@ msgstr "IAM акредитиви"
msgid "IAM credentials configured"
msgstr "IAM акредитиви су подешени"
#. js-lingui-id: LlQirF
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
msgid "IAM role"
msgstr ""
#. js-lingui-id: VjDLrJ
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "IAM role (instance profile)"
msgstr ""
#. js-lingui-id: wwu18a
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Icon"
@@ -9197,6 +9227,7 @@ msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "More"
msgstr "Још"
@@ -9720,6 +9751,11 @@ msgstr "Нема тела"
msgid "No calling code"
msgstr "Без позивног кода"
#. js-lingui-id: d14J3J
#: src/modules/ai/components/NavigationDrawerAIChatContent.tsx
msgid "No chat"
msgstr ""
#. js-lingui-id: wgUPZ1
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "No comment"
@@ -10018,6 +10054,12 @@ msgstr "Нема постављених дозвола за појединачн
msgid "No record is required to trigger this workflow"
msgstr "Запис није потребан за покретање овог рада"
#. js-lingui-id: aqUuQE
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
@@ -10548,6 +10590,7 @@ msgstr "Отвори Outlook"
#. js-lingui-id: bY2Xkv
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Open side panel"
msgstr "Отвори бочни панел"
@@ -10645,6 +10688,8 @@ msgstr "Организујте"
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Other"
msgstr "Остало"
@@ -11019,6 +11064,12 @@ msgstr ""
msgid "Pink"
msgstr "Розе"
#. js-lingui-id: kNiQp6
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Pinned"
msgstr ""
#. js-lingui-id: hx1ePY
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsText.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsNumber.tsx
@@ -11565,6 +11616,12 @@ msgstr "Ниво записа"
msgid "Records"
msgstr "Рекорди"
#. js-lingui-id: J+Qyf2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "Records selected"
msgstr ""
#. js-lingui-id: wRTiSD
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Red"
@@ -11857,6 +11914,11 @@ msgstr "Ресетуј"
msgid "Reset 2FA"
msgstr "Ресетујте 2FA"
#. js-lingui-id: YdI8A2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Reset label to default"
msgstr ""
#. js-lingui-id: 1IWc1n
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
msgid "Reset to"
@@ -11864,6 +11926,7 @@ msgstr "Ресетујте на"
#. js-lingui-id: L+rMC9
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
msgid "Reset to default"
msgstr "Врати на подразумевано"
@@ -3028,6 +3028,7 @@ msgstr "Stäng banner"
#. js-lingui-id: saip/v
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Close side panel"
msgstr "Stäng sidopanelen"
@@ -3402,6 +3403,7 @@ msgstr "Innehåll"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
msgstr "Sammanhang"
@@ -3893,6 +3895,7 @@ msgstr "Skapar din arbetsyta"
#. js-lingui-id: HAzhV7
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Credentials"
msgstr "Autentiseringsuppgifter"
@@ -5180,6 +5183,13 @@ msgstr "Redigera {objectLabelPlural}"
msgid "Edit Account"
msgstr "Redigera Konto"
#. js-lingui-id: t1EOLt
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
msgid "Edit actions"
msgstr ""
#. js-lingui-id: GpnfNN
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Edit Dashboard"
@@ -6676,6 +6686,11 @@ msgstr "Fältnamn"
msgid "Field on destination"
msgstr "Fält på destinationen"
#. js-lingui-id: P8JCfj
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "field permission"
msgstr ""
#. js-lingui-id: RnX5oc
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "fields"
@@ -7400,6 +7415,11 @@ msgstr "Dölj grupp {groupValue}"
msgid "Hide hidden groups"
msgstr "Dölj dolda grupper"
#. js-lingui-id: 2ouyMV
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Hide label"
msgstr ""
#. js-lingui-id: i0qMbr
#: src/modules/page-layout/constants/StandardPageLayoutTabTitleTranslations.ts
#: src/modules/navigation/components/MainNavigationDrawerTabsRow.tsx
@@ -7508,6 +7528,16 @@ msgstr "IAM-autentiseringsuppgifter"
msgid "IAM credentials configured"
msgstr "IAM-autentiseringsuppgifter är konfigurerade"
#. js-lingui-id: LlQirF
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
msgid "IAM role"
msgstr ""
#. js-lingui-id: VjDLrJ
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "IAM role (instance profile)"
msgstr ""
#. js-lingui-id: wwu18a
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Icon"
@@ -9199,6 +9229,7 @@ msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "More"
msgstr "Mer"
@@ -9722,6 +9753,11 @@ msgstr "Ingen body"
msgid "No calling code"
msgstr "Utan uppringningskod"
#. js-lingui-id: d14J3J
#: src/modules/ai/components/NavigationDrawerAIChatContent.tsx
msgid "No chat"
msgstr ""
#. js-lingui-id: wgUPZ1
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "No comment"
@@ -10020,6 +10056,12 @@ msgstr "Inga behörigheter har satts för enskilda objekt."
msgid "No record is required to trigger this workflow"
msgstr "Ingen post krävs för att utlösa detta arbetsflöde"
#. js-lingui-id: aqUuQE
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
@@ -10550,6 +10592,7 @@ msgstr "Öppna Outlook"
#. js-lingui-id: bY2Xkv
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Open side panel"
msgstr "Öppna sidopanelen"
@@ -10647,6 +10690,8 @@ msgstr "Organisera"
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Other"
msgstr "Annat"
@@ -11021,6 +11066,12 @@ msgstr "Cirkeldiagram"
msgid "Pink"
msgstr "Rosa"
#. js-lingui-id: kNiQp6
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Pinned"
msgstr ""
#. js-lingui-id: hx1ePY
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsText.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsNumber.tsx
@@ -11567,6 +11618,12 @@ msgstr "Postnivå"
msgid "Records"
msgstr "Poster"
#. js-lingui-id: J+Qyf2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "Records selected"
msgstr ""
#. js-lingui-id: wRTiSD
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Red"
@@ -11859,6 +11916,11 @@ msgstr "Återställ"
msgid "Reset 2FA"
msgstr "Återställ 2FA"
#. js-lingui-id: YdI8A2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Reset label to default"
msgstr ""
#. js-lingui-id: 1IWc1n
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
msgid "Reset to"
@@ -11866,6 +11928,7 @@ msgstr "Återställ till"
#. js-lingui-id: L+rMC9
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
msgid "Reset to default"
msgstr "Återställ till standard"
@@ -3028,6 +3028,7 @@ msgstr "Afişi kapat"
#. js-lingui-id: saip/v
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Close side panel"
msgstr "Yan paneli kapat"
@@ -3402,6 +3403,7 @@ msgstr "İçerik"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
msgstr "Bağlam"
@@ -3893,6 +3895,7 @@ msgstr "Çalışma alanınızı oluşturma"
#. js-lingui-id: HAzhV7
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Credentials"
msgstr "Kimlik Bilgileri"
@@ -5180,6 +5183,13 @@ msgstr "{objectLabelPlural} Düzenle"
msgid "Edit Account"
msgstr "Hesap Düzenle"
#. js-lingui-id: t1EOLt
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
msgid "Edit actions"
msgstr ""
#. js-lingui-id: GpnfNN
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Edit Dashboard"
@@ -6676,6 +6686,11 @@ msgstr "Alan Adı"
msgid "Field on destination"
msgstr "Hedefteki alan"
#. js-lingui-id: P8JCfj
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "field permission"
msgstr ""
#. js-lingui-id: RnX5oc
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "fields"
@@ -7400,6 +7415,11 @@ msgstr "{groupValue} grubunu gizle"
msgid "Hide hidden groups"
msgstr "Gizli grupları gizle"
#. js-lingui-id: 2ouyMV
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Hide label"
msgstr ""
#. js-lingui-id: i0qMbr
#: src/modules/page-layout/constants/StandardPageLayoutTabTitleTranslations.ts
#: src/modules/navigation/components/MainNavigationDrawerTabsRow.tsx
@@ -7508,6 +7528,16 @@ msgstr "IAM kimlik bilgileri"
msgid "IAM credentials configured"
msgstr "IAM kimlik bilgileri yapılandırıldı"
#. js-lingui-id: LlQirF
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
msgid "IAM role"
msgstr ""
#. js-lingui-id: VjDLrJ
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "IAM role (instance profile)"
msgstr ""
#. js-lingui-id: wwu18a
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Icon"
@@ -9197,6 +9227,7 @@ msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "More"
msgstr "Daha Fazla"
@@ -9720,6 +9751,11 @@ msgstr "Gövde yok"
msgid "No calling code"
msgstr "Arama kodu yok"
#. js-lingui-id: d14J3J
#: src/modules/ai/components/NavigationDrawerAIChatContent.tsx
msgid "No chat"
msgstr ""
#. js-lingui-id: wgUPZ1
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "No comment"
@@ -10018,6 +10054,12 @@ msgstr "Bireysel nesneler için izinler ayarlanmadı."
msgid "No record is required to trigger this workflow"
msgstr "Bu iş akışını tetiklemek için bir kayda gerek yok"
#. js-lingui-id: aqUuQE
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
@@ -10548,6 +10590,7 @@ msgstr "Outlook'u Aç"
#. js-lingui-id: bY2Xkv
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Open side panel"
msgstr "Yan paneli aç"
@@ -10645,6 +10688,8 @@ msgstr "Düzenle"
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Other"
msgstr "Diğer"
@@ -11019,6 +11064,12 @@ msgstr "Pasta Grafiği"
msgid "Pink"
msgstr "Pembe"
#. js-lingui-id: kNiQp6
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Pinned"
msgstr ""
#. js-lingui-id: hx1ePY
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsText.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsNumber.tsx
@@ -11565,6 +11616,12 @@ msgstr "Kayıt düzeyi"
msgid "Records"
msgstr "Kayıtlar"
#. js-lingui-id: J+Qyf2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "Records selected"
msgstr ""
#. js-lingui-id: wRTiSD
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Red"
@@ -11857,6 +11914,11 @@ msgstr "Sıfırla"
msgid "Reset 2FA"
msgstr "2FA Sıfırla"
#. js-lingui-id: YdI8A2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Reset label to default"
msgstr ""
#. js-lingui-id: 1IWc1n
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
msgid "Reset to"
@@ -11864,6 +11926,7 @@ msgstr "Sıfırla"
#. js-lingui-id: L+rMC9
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
msgid "Reset to default"
msgstr "Varsayılana Sıfırla"
@@ -3028,6 +3028,7 @@ msgstr "Закрити банер"
#. js-lingui-id: saip/v
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Close side panel"
msgstr "Закрити бічну панель"
@@ -3402,6 +3403,7 @@ msgstr "Вміст"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
msgstr "Контекст"
@@ -3893,6 +3895,7 @@ msgstr "Створення вашого робочого простору"
#. js-lingui-id: HAzhV7
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Credentials"
msgstr "Облікові дані"
@@ -5180,6 +5183,13 @@ msgstr "Редагувати {objectLabelPlural}"
msgid "Edit Account"
msgstr "Редагувати обліковий запис"
#. js-lingui-id: t1EOLt
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
msgid "Edit actions"
msgstr ""
#. js-lingui-id: GpnfNN
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Edit Dashboard"
@@ -6676,6 +6686,11 @@ msgstr "Назва поля"
msgid "Field on destination"
msgstr "Поле на призначенні"
#. js-lingui-id: P8JCfj
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "field permission"
msgstr ""
#. js-lingui-id: RnX5oc
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "fields"
@@ -7400,6 +7415,11 @@ msgstr "Приховати групу {groupValue}"
msgid "Hide hidden groups"
msgstr "Приховати приховані групи"
#. js-lingui-id: 2ouyMV
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Hide label"
msgstr ""
#. js-lingui-id: i0qMbr
#: src/modules/page-layout/constants/StandardPageLayoutTabTitleTranslations.ts
#: src/modules/navigation/components/MainNavigationDrawerTabsRow.tsx
@@ -7508,6 +7528,16 @@ msgstr "Облікові дані IAM"
msgid "IAM credentials configured"
msgstr "Облікові дані IAM налаштовано"
#. js-lingui-id: LlQirF
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
msgid "IAM role"
msgstr ""
#. js-lingui-id: VjDLrJ
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "IAM role (instance profile)"
msgstr ""
#. js-lingui-id: wwu18a
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Icon"
@@ -9197,6 +9227,7 @@ msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "More"
msgstr "Більше"
@@ -9720,6 +9751,11 @@ msgstr "Без тіла"
msgid "No calling code"
msgstr "Без коду країни"
#. js-lingui-id: d14J3J
#: src/modules/ai/components/NavigationDrawerAIChatContent.tsx
msgid "No chat"
msgstr ""
#. js-lingui-id: wgUPZ1
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "No comment"
@@ -10018,6 +10054,12 @@ msgstr "‎Не встановлено дозволів для окремих о
msgid "No record is required to trigger this workflow"
msgstr "Для запуску цього робочого процесу не потрібен запис"
#. js-lingui-id: aqUuQE
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
@@ -10548,6 +10590,7 @@ msgstr "Відкрити Outlook"
#. js-lingui-id: bY2Xkv
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Open side panel"
msgstr "Відкрити бічну панель"
@@ -10645,6 +10688,8 @@ msgstr "Упорядкувати"
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Other"
msgstr "Інший"
@@ -11019,6 +11064,12 @@ msgstr "Кругова діаграма"
msgid "Pink"
msgstr "Рожевий"
#. js-lingui-id: kNiQp6
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Pinned"
msgstr ""
#. js-lingui-id: hx1ePY
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsText.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsNumber.tsx
@@ -11565,6 +11616,12 @@ msgstr "Рівень запису"
msgid "Records"
msgstr "Записи"
#. js-lingui-id: J+Qyf2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "Records selected"
msgstr ""
#. js-lingui-id: wRTiSD
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Red"
@@ -11857,6 +11914,11 @@ msgstr "Скинути"
msgid "Reset 2FA"
msgstr "Скинути 2FA"
#. js-lingui-id: YdI8A2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Reset label to default"
msgstr ""
#. js-lingui-id: 1IWc1n
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
msgid "Reset to"
@@ -11864,6 +11926,7 @@ msgstr "Скинути до"
#. js-lingui-id: L+rMC9
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
msgid "Reset to default"
msgstr "Скинути до значення за замовчуванням"
@@ -3028,6 +3028,7 @@ msgstr "Đóng biểu ngữ"
#. js-lingui-id: saip/v
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Close side panel"
msgstr "Đóng ngăn bên"
@@ -3402,6 +3403,7 @@ msgstr "Nội dung"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
msgstr "Ngữ cảnh"
@@ -3893,6 +3895,7 @@ msgstr "Đang tạo không gian làm việc của bạn"
#. js-lingui-id: HAzhV7
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Credentials"
msgstr "Thông tin xác thực"
@@ -5180,6 +5183,13 @@ msgstr "Chỉnh sửa {objectLabelPlural}"
msgid "Edit Account"
msgstr "Chỉnh Sửa Tài Khoản"
#. js-lingui-id: t1EOLt
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
msgid "Edit actions"
msgstr ""
#. js-lingui-id: GpnfNN
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Edit Dashboard"
@@ -6676,6 +6686,11 @@ msgstr "Tên Trường"
msgid "Field on destination"
msgstr "Trường ở điểm đến"
#. js-lingui-id: P8JCfj
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "field permission"
msgstr ""
#. js-lingui-id: RnX5oc
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "fields"
@@ -7400,6 +7415,11 @@ msgstr "Ẩn nhóm {groupValue}"
msgid "Hide hidden groups"
msgstr "Ẩn nhóm ẩn"
#. js-lingui-id: 2ouyMV
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Hide label"
msgstr ""
#. js-lingui-id: i0qMbr
#: src/modules/page-layout/constants/StandardPageLayoutTabTitleTranslations.ts
#: src/modules/navigation/components/MainNavigationDrawerTabsRow.tsx
@@ -7508,6 +7528,16 @@ msgstr "Thông tin xác thực IAM"
msgid "IAM credentials configured"
msgstr "Thông tin xác thực IAM đã được cấu hình"
#. js-lingui-id: LlQirF
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
msgid "IAM role"
msgstr ""
#. js-lingui-id: VjDLrJ
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "IAM role (instance profile)"
msgstr ""
#. js-lingui-id: wwu18a
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Icon"
@@ -9197,6 +9227,7 @@ msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "More"
msgstr "Thêm nữa"
@@ -9720,6 +9751,11 @@ msgstr "Không có phần thân"
msgid "No calling code"
msgstr "Không có mã quốc gia"
#. js-lingui-id: d14J3J
#: src/modules/ai/components/NavigationDrawerAIChatContent.tsx
msgid "No chat"
msgstr ""
#. js-lingui-id: wgUPZ1
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "No comment"
@@ -10018,6 +10054,12 @@ msgstr "Chưa thiết lập quyền cho các đối tượng cá nhân."
msgid "No record is required to trigger this workflow"
msgstr "Không cần bản ghi nào để kích hoạt quy trình công việc này"
#. js-lingui-id: aqUuQE
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
@@ -10548,6 +10590,7 @@ msgstr "Mở Outlook"
#. js-lingui-id: bY2Xkv
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Open side panel"
msgstr "Mở ngăn bên"
@@ -10645,6 +10688,8 @@ msgstr "Sắp xếp"
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Other"
msgstr "Khác"
@@ -11019,6 +11064,12 @@ msgstr "Biểu đồ hình tròn"
msgid "Pink"
msgstr "Hồng"
#. js-lingui-id: kNiQp6
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Pinned"
msgstr ""
#. js-lingui-id: hx1ePY
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsText.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsNumber.tsx
@@ -11565,6 +11616,12 @@ msgstr "Cấp bản ghi"
msgid "Records"
msgstr "Hồ Sơ"
#. js-lingui-id: J+Qyf2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "Records selected"
msgstr ""
#. js-lingui-id: wRTiSD
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Red"
@@ -11857,6 +11914,11 @@ msgstr "Đặt lại"
msgid "Reset 2FA"
msgstr "Đặt lại 2FA"
#. js-lingui-id: YdI8A2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Reset label to default"
msgstr ""
#. js-lingui-id: 1IWc1n
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
msgid "Reset to"
@@ -11864,6 +11926,7 @@ msgstr "Đặt lại thành"
#. js-lingui-id: L+rMC9
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
msgid "Reset to default"
msgstr "Đặt lại về mặc định"
@@ -3028,6 +3028,7 @@ msgstr "关闭横幅"
#. js-lingui-id: saip/v
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Close side panel"
msgstr "关闭侧边栏"
@@ -3402,6 +3403,7 @@ msgstr "内容"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
msgstr "上下文"
@@ -3893,6 +3895,7 @@ msgstr "创建您的工作区"
#. js-lingui-id: HAzhV7
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Credentials"
msgstr "凭据"
@@ -5180,6 +5183,13 @@ msgstr "编辑 {objectLabelPlural}"
msgid "Edit Account"
msgstr "编辑账户"
#. js-lingui-id: t1EOLt
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
msgid "Edit actions"
msgstr ""
#. js-lingui-id: GpnfNN
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Edit Dashboard"
@@ -6676,6 +6686,11 @@ msgstr "字段名称"
msgid "Field on destination"
msgstr "目的地字段"
#. js-lingui-id: P8JCfj
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "field permission"
msgstr ""
#. js-lingui-id: RnX5oc
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "fields"
@@ -7400,6 +7415,11 @@ msgstr "隐藏组 {groupValue}"
msgid "Hide hidden groups"
msgstr "隐藏隐藏组"
#. js-lingui-id: 2ouyMV
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Hide label"
msgstr ""
#. js-lingui-id: i0qMbr
#: src/modules/page-layout/constants/StandardPageLayoutTabTitleTranslations.ts
#: src/modules/navigation/components/MainNavigationDrawerTabsRow.tsx
@@ -7508,6 +7528,16 @@ msgstr "IAM 凭据"
msgid "IAM credentials configured"
msgstr "IAM 凭据已配置"
#. js-lingui-id: LlQirF
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
msgid "IAM role"
msgstr ""
#. js-lingui-id: VjDLrJ
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "IAM role (instance profile)"
msgstr ""
#. js-lingui-id: wwu18a
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Icon"
@@ -9197,6 +9227,7 @@ msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "More"
msgstr "更多"
@@ -9720,6 +9751,11 @@ msgstr "无正文"
msgid "No calling code"
msgstr "无国家区号"
#. js-lingui-id: d14J3J
#: src/modules/ai/components/NavigationDrawerAIChatContent.tsx
msgid "No chat"
msgstr ""
#. js-lingui-id: wgUPZ1
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "No comment"
@@ -10018,6 +10054,12 @@ msgstr "尚未为个人对象设置权限。"
msgid "No record is required to trigger this workflow"
msgstr "不需要记录即可触发此工作流"
#. js-lingui-id: aqUuQE
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
@@ -10548,6 +10590,7 @@ msgstr "打开Outlook"
#. js-lingui-id: bY2Xkv
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Open side panel"
msgstr "打开侧边栏"
@@ -10645,6 +10688,8 @@ msgstr "整理"
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Other"
msgstr "其他"
@@ -11019,6 +11064,12 @@ msgstr "饼图"
msgid "Pink"
msgstr "粉色"
#. js-lingui-id: kNiQp6
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Pinned"
msgstr ""
#. js-lingui-id: hx1ePY
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsText.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsNumber.tsx
@@ -11565,6 +11616,12 @@ msgstr "记录级"
msgid "Records"
msgstr "记录"
#. js-lingui-id: J+Qyf2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "Records selected"
msgstr ""
#. js-lingui-id: wRTiSD
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Red"
@@ -11857,6 +11914,11 @@ msgstr "重置"
msgid "Reset 2FA"
msgstr "重置 2FA"
#. js-lingui-id: YdI8A2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Reset label to default"
msgstr ""
#. js-lingui-id: 1IWc1n
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
msgid "Reset to"
@@ -11864,6 +11926,7 @@ msgstr "重置为"
#. js-lingui-id: L+rMC9
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
msgid "Reset to default"
msgstr "重置为默认"
@@ -3028,6 +3028,7 @@ msgstr "關閉橫幅"
#. js-lingui-id: saip/v
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Close side panel"
msgstr "關閉側邊面板"
@@ -3402,6 +3403,7 @@ msgstr "內容"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
msgstr "上下文"
@@ -3893,6 +3895,7 @@ msgstr "創建您的工作區"
#. js-lingui-id: HAzhV7
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Credentials"
msgstr "憑證"
@@ -5180,6 +5183,13 @@ msgstr "編輯 {objectLabelPlural}"
msgid "Edit Account"
msgstr "編輯帳戶"
#. js-lingui-id: t1EOLt
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
msgid "Edit actions"
msgstr ""
#. js-lingui-id: GpnfNN
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Edit Dashboard"
@@ -6676,6 +6686,11 @@ msgstr "欄位名稱"
msgid "Field on destination"
msgstr "目的地資料欄位"
#. js-lingui-id: P8JCfj
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "field permission"
msgstr ""
#. js-lingui-id: RnX5oc
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "fields"
@@ -7400,6 +7415,11 @@ msgstr "隱藏群組 {groupValue}"
msgid "Hide hidden groups"
msgstr "隱藏隱藏的群組"
#. js-lingui-id: 2ouyMV
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Hide label"
msgstr ""
#. js-lingui-id: i0qMbr
#: src/modules/page-layout/constants/StandardPageLayoutTabTitleTranslations.ts
#: src/modules/navigation/components/MainNavigationDrawerTabsRow.tsx
@@ -7508,6 +7528,16 @@ msgstr "IAM 憑證"
msgid "IAM credentials configured"
msgstr "已設定 IAM 憑證"
#. js-lingui-id: LlQirF
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
msgid "IAM role"
msgstr ""
#. js-lingui-id: VjDLrJ
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "IAM role (instance profile)"
msgstr ""
#. js-lingui-id: wwu18a
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Icon"
@@ -9197,6 +9227,7 @@ msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "More"
msgstr "更多"
@@ -9720,6 +9751,11 @@ msgstr "沒有主體"
msgid "No calling code"
msgstr "不含國碼"
#. js-lingui-id: d14J3J
#: src/modules/ai/components/NavigationDrawerAIChatContent.tsx
msgid "No chat"
msgstr ""
#. js-lingui-id: wgUPZ1
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "No comment"
@@ -10018,6 +10054,12 @@ msgstr "尚未為個別對象設定權限。"
msgid "No record is required to trigger this workflow"
msgstr "不需要記錄即可觸發此工作流程"
#. js-lingui-id: aqUuQE
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
@@ -10548,6 +10590,7 @@ msgstr "打開Outlook"
#. js-lingui-id: bY2Xkv
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Open side panel"
msgstr "開啟側邊面板"
@@ -10645,6 +10688,8 @@ msgstr "整理"
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Other"
msgstr "其他"
@@ -11019,6 +11064,12 @@ msgstr "餅圖"
msgid "Pink"
msgstr "粉紅色"
#. js-lingui-id: kNiQp6
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Pinned"
msgstr ""
#. js-lingui-id: hx1ePY
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsText.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsNumber.tsx
@@ -11565,6 +11616,12 @@ msgstr "記錄層級"
msgid "Records"
msgstr "紀錄"
#. js-lingui-id: J+Qyf2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "Records selected"
msgstr ""
#. js-lingui-id: wRTiSD
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Red"
@@ -11857,6 +11914,11 @@ msgstr "重設"
msgid "Reset 2FA"
msgstr "重置 2FA"
#. js-lingui-id: YdI8A2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Reset label to default"
msgstr ""
#. js-lingui-id: 1IWc1n
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
msgid "Reset to"
@@ -11864,6 +11926,7 @@ msgstr "重置為"
#. js-lingui-id: L+rMC9
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
msgid "Reset to default"
msgstr "重置為默認"
@@ -1,4 +1,6 @@
import { styled } from '@linaria/react';
import { useLingui } from '@lingui/react/macro';
import { themeCssVariables } from 'twenty-ui/theme-constants';
import { AIChatSkeletonLoader } from '@/ai/components/internal/AIChatSkeletonLoader';
import { NavigationDrawerAIChatThreadDateSection } from '@/ai/components/NavigationDrawerAIChatThreadDateSection';
@@ -10,25 +12,39 @@ import { DATE_GROUP_KEYS } from '@/ai/utils/dateGroupKeys';
import { getDateGroupTitle } from '@/ai/utils/getDateGroupTitle';
import { groupThreadsByDate } from '@/ai/utils/groupThreadsByDate';
import { useAtomStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomStateValue';
import { themeCssVariables } from 'twenty-ui/theme-constants';
const StyledScrollableList = styled.div`
const StyledContainer = styled.div`
display: flex;
flex: 1;
flex-direction: column;
height: 100%;
min-height: 0;
overflow-y: auto;
`;
const StyledThreadList = styled.div`
display: flex;
flex-direction: column;
padding: ${themeCssVariables.spacing[2]} ${themeCssVariables.spacing[0]};
width: calc(100% - ${themeCssVariables.spacing[2]});
`;
const StyledEmptyState = styled.div`
align-items: center;
color: ${themeCssVariables.font.color.light};
display: flex;
flex: 1;
font-size: ${themeCssVariables.font.size.md};
justify-content: center;
`;
const StyledFetchMoreTrigger = styled.div`
height: 1px;
min-height: 1px;
width: 100%;
`;
export const NavigationDrawerAIChatThreadsList = () => {
export const NavigationDrawerAIChatContent = () => {
const { t } = useLingui();
const currentAIChatThread = useAtomStateValue(currentAIChatThreadState);
const { handleThreadClick } = useAIChatThreadClick({
resetNavigationStack: true,
@@ -39,26 +55,40 @@ export const NavigationDrawerAIChatThreadsList = () => {
const groupedThreads = groupThreadsByDate(threads);
if (loading && threads.length === 0) {
return <AIChatSkeletonLoader />;
return (
<StyledContainer>
<AIChatSkeletonLoader />
</StyledContainer>
);
}
if (threads.length === 0) {
return (
<StyledContainer>
<StyledEmptyState>{t`No chat`}</StyledEmptyState>
</StyledContainer>
);
}
return (
<StyledScrollableList>
{DATE_GROUP_KEYS.map((key: DateGroupKey) => {
const threadsInGroup = groupedThreads[key];
if (threadsInGroup.length === 0) return null;
<StyledContainer>
<StyledThreadList>
{DATE_GROUP_KEYS.map((key: DateGroupKey) => {
const threadsInGroup = groupedThreads[key];
if (threadsInGroup.length === 0) return null;
return (
<NavigationDrawerAIChatThreadDateSection
key={key}
title={getDateGroupTitle(key)}
threads={threadsInGroup}
currentThreadId={currentAIChatThread}
onThreadClick={handleThreadClick}
/>
);
})}
{hasNextPage ? <StyledFetchMoreTrigger ref={fetchMoreRef} /> : null}
</StyledScrollableList>
return (
<NavigationDrawerAIChatThreadDateSection
key={key}
title={getDateGroupTitle(key)}
threads={threadsInGroup}
currentThreadId={currentAIChatThread}
onThreadClick={handleThreadClick}
/>
);
})}
{hasNextPage ? <StyledFetchMoreTrigger ref={fetchMoreRef} /> : null}
</StyledThreadList>
</StyledContainer>
);
};
@@ -31,8 +31,6 @@ import { useCallback, useState } from 'react';
import { type ExtendedUIMessage } from 'twenty-shared/ai';
import { isDefined } from 'twenty-shared/utils';
import { REACT_APP_SERVER_BASE_URL } from '~/config';
import { cookieStorage } from '~/utils/cookie-storage';
export const useAgentChat = (
uiMessages: ExtendedUIMessage[],
ensureThreadIdForSend: () => Promise<string | null>,
@@ -94,7 +92,6 @@ export const useAgentChat = (
return null;
}
cookieStorage.setItem('tokenPair', JSON.stringify(renewedTokens));
setTokenPair(renewedTokens);
const updatedHeaders = new Headers(init?.headers ?? {});
@@ -34,7 +34,6 @@ import {
import isEmpty from 'lodash.isempty';
import { getGenericOperationName, isDefined } from 'twenty-shared/utils';
import { REACT_APP_SERVER_BASE_URL } from '~/config';
import { cookieStorage } from '~/utils/cookie-storage';
import { isUndefinedOrNull } from '~/utils/isUndefinedOrNull';
const logger = loggerLink(() => 'Twenty');
@@ -175,7 +174,6 @@ export class ApolloFactory implements ApolloManager {
if (isDefined(tokens)) {
onTokenPairChange?.(tokens);
cookieStorage.setItem('tokenPair', JSON.stringify(tokens));
}
};
@@ -1,9 +1,16 @@
import { PageHeaderCommandMenuButtons } from '@/command-menu-item/components/PageHeaderCommandMenuButtons';
import { PinnedCommandMenuItemButtons } from '@/command-menu-item/server-items/display/components/PinnedCommandMenuItemButtons';
import { RecordIndexCommandMenuDropdown } from '@/command-menu-item/components/RecordIndexCommandMenuDropdown';
import { CommandMenuContextProvider } from '@/command-menu-item/contexts/CommandMenuContextProvider';
import { CommandMenuItemEditButton } from '@/command-menu-item/server-items/edit/components/CommandMenuItemEditButton';
import { PinnedCommandMenuItemButtonsEditMode } from '@/command-menu-item/server-items/edit/components/PinnedCommandMenuItemButtonsEditMode';
import { MAIN_CONTEXT_STORE_INSTANCE_ID } from '@/context-store/constants/MainContextStoreInstanceId';
import { contextStoreCurrentObjectMetadataItemIdComponentState } from '@/context-store/states/contextStoreCurrentObjectMetadataItemIdComponentState';
import { isLayoutCustomizationModeEnabledState } from '@/layout-customization/states/isLayoutCustomizationModeEnabledState';
import { useAtomComponentStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomComponentStateValue';
import { useAtomStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomStateValue';
import { useIsFeatureEnabled } from '@/workspace/hooks/useIsFeatureEnabled';
import { FeatureFlagKey } from '~/generated-metadata/graphql';
import { useIsMobile } from 'twenty-ui/utilities';
export const RecordIndexCommandMenu = () => {
@@ -13,18 +20,36 @@ export const RecordIndexCommandMenu = () => {
);
const isMobile = useIsMobile();
const isCommandMenuItemEnabled = useIsFeatureEnabled(
FeatureFlagKey.IS_COMMAND_MENU_ITEM_ENABLED,
);
const isLayoutCustomizationModeEnabled = useAtomStateValue(
isLayoutCustomizationModeEnabledState,
);
const showEditModePinnedButtons =
isCommandMenuItemEnabled && isLayoutCustomizationModeEnabled;
return (
<>
{contextStoreCurrentObjectMetadataItemId && (
<>
<CommandMenuContextProvider
isInSidePanel={false}
displayType="button"
containerType="index-page-header"
>
{!isMobile && <PageHeaderCommandMenuButtons />}
</CommandMenuContextProvider>
{!isMobile && showEditModePinnedButtons ? (
<PinnedCommandMenuItemButtonsEditMode />
) : (
<CommandMenuContextProvider
isInSidePanel={false}
displayType="button"
containerType="index-page-header"
>
{!isMobile &&
(isCommandMenuItemEnabled ? (
<PinnedCommandMenuItemButtons />
) : (
<PageHeaderCommandMenuButtons />
))}
</CommandMenuContextProvider>
)}
<CommandMenuContextProvider
isInSidePanel={false}
displayType="dropdownItem"
@@ -32,6 +57,7 @@ export const RecordIndexCommandMenu = () => {
>
<RecordIndexCommandMenuDropdown />
</CommandMenuContextProvider>
<CommandMenuItemEditButton />
</>
)}
</>
@@ -1,9 +1,13 @@
import { PageHeaderCommandMenuButtons } from '@/command-menu-item/components/PageHeaderCommandMenuButtons';
import { PinnedCommandMenuItemButtons } from '@/command-menu-item/server-items/display/components/PinnedCommandMenuItemButtons';
import { CommandMenuContextProvider } from '@/command-menu-item/contexts/CommandMenuContextProvider';
import { CommandMenuItemEditButton } from '@/command-menu-item/server-items/edit/components/CommandMenuItemEditButton';
import { MAIN_CONTEXT_STORE_INSTANCE_ID } from '@/context-store/constants/MainContextStoreInstanceId';
import { contextStoreCurrentObjectMetadataItemIdComponentState } from '@/context-store/states/contextStoreCurrentObjectMetadataItemIdComponentState';
import { contextStoreTargetedRecordsRuleComponentState } from '@/context-store/states/contextStoreTargetedRecordsRuleComponentState';
import { useAtomComponentStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomComponentStateValue';
import { useIsFeatureEnabled } from '@/workspace/hooks/useIsFeatureEnabled';
import { FeatureFlagKey } from '~/generated-metadata/graphql';
import { useIsMobile } from 'twenty-ui/utilities';
export const RecordShowCommandMenu = () => {
@@ -22,17 +26,28 @@ export const RecordShowCommandMenu = () => {
contextStoreTargetedRecordsRule.selectedRecordIds.length === 1;
const isMobile = useIsMobile();
const isCommandMenuItemEnabled = useIsFeatureEnabled(
FeatureFlagKey.IS_COMMAND_MENU_ITEM_ENABLED,
);
return (
<>
{hasSelectedRecord && contextStoreCurrentObjectMetadataItemId && (
<CommandMenuContextProvider
isInSidePanel={false}
displayType="button"
containerType="show-page-header"
>
{!isMobile && <PageHeaderCommandMenuButtons />}
</CommandMenuContextProvider>
<>
<CommandMenuContextProvider
isInSidePanel={false}
displayType="button"
containerType="show-page-header"
>
{!isMobile &&
(isCommandMenuItemEnabled ? (
<PinnedCommandMenuItemButtons />
) : (
<PageHeaderCommandMenuButtons />
))}
</CommandMenuContextProvider>
<CommandMenuItemEditButton />
</>
)}
</>
);
@@ -1,6 +1,6 @@
import { type CommandMenuContextType } from '@/command-menu-item/contexts/CommandMenuContext';
import { CommandMenuContextProviderLegacy } from '@/command-menu-item/contexts/CommandMenuContextProviderLegacy';
import { CommandMenuContextProviderServerItems } from '@/command-menu-item/server-items/contexts/CommandMenuContextProviderServerItems';
import { CommandMenuContextProviderServerItems } from '@/command-menu-item/server-items/common/contexts/CommandMenuContextProviderServerItems';
import { type EnrichedObjectMetadataItem } from '@/object-metadata/types/EnrichedObjectMetadataItem';
import { useIsFeatureEnabled } from '@/workspace/hooks/useIsFeatureEnabled';
import { FeatureFlagKey } from '~/generated-metadata/graphql';
@@ -1,8 +1,8 @@
import { CoreObjectNameSingular } from 'twenty-shared/types';
import { isDefined } from 'twenty-shared/utils';
import { useCommandMenuContextApi } from '@/command-menu-item/server-items/hooks/useCommandMenuContextApi';
import { type CommandMenuContextType } from '@/command-menu-item/contexts/CommandMenuContext';
import { useCommandMenuContextApi } from '@/command-menu-item/server-items/common/hooks/useCommandMenuContextApi';
import { CommandMenuContextProviderServerItemsContent } from './CommandMenuContextProviderServerItemsContent';
import { CommandMenuContextProviderServerItemsWithWorkflowEnrichment } from './CommandMenuContextProviderServerItemsWithWorkflowEnrichment';
@@ -2,7 +2,7 @@ import {
CommandMenuContext,
type CommandMenuContextType,
} from '@/command-menu-item/contexts/CommandMenuContext';
import { useCommandMenuItemsFromBackend } from '@/command-menu-item/server-items/hooks/useCommandMenuItemsFromBackend';
import { useCommandMenuItemsFromBackend } from '@/command-menu-item/server-items/common/hooks/useCommandMenuItemsFromBackend';
import { type CommandMenuContextApi } from 'twenty-shared/types';
type CommandMenuContextProviderServerItemsContentProps = {
@@ -2,7 +2,7 @@ import { type CommandMenuContextApi } from 'twenty-shared/types';
import { isDefined } from 'twenty-shared/utils';
import { type CommandMenuContextType } from '@/command-menu-item/contexts/CommandMenuContext';
import { useWorkflowsWithCurrentVersions } from '@/command-menu-item/server-items/hooks/useWorkflowsWithCurrentVersions';
import { useWorkflowsWithCurrentVersions } from '@/command-menu-item/server-items/common/hooks/useWorkflowsWithCurrentVersions';
import { CommandMenuContextProviderServerItemsContent } from './CommandMenuContextProviderServerItemsContent';
@@ -0,0 +1,11 @@
import { COMMAND_MENU_ITEM_FRAGMENT } from '@/command-menu-item/graphql/fragments/commandMenuItemFragment';
import { gql } from '@apollo/client';
export const UPDATE_COMMAND_MENU_ITEM = gql`
${COMMAND_MENU_ITEM_FRAGMENT}
mutation UpdateCommandMenuItem($input: UpdateCommandMenuItemInput!) {
updateCommandMenuItem(input: $input) {
...CommandMenuItemFields
}
}
`;
@@ -1,6 +1,6 @@
import { currentWorkspaceState } from '@/auth/states/currentWorkspaceState';
import { objectPermissionsFamilySelector } from '@/auth/states/objectPermissionsFamilySelector';
import { CommandMenuContext } from '@/command-menu-item/contexts/CommandMenuContext';
import { ContextStoreComponentInstanceContext } from '@/context-store/states/contexts/ContextStoreComponentInstanceContext';
import { contextStoreCurrentObjectMetadataItemIdComponentState } from '@/context-store/states/contextStoreCurrentObjectMetadataItemIdComponentState';
import { contextStoreCurrentViewTypeComponentState } from '@/context-store/states/contextStoreCurrentViewTypeComponentState';
import { contextStoreIsPageInEditModeComponentState } from '@/context-store/states/contextStoreIsPageInEditModeComponentState';
@@ -13,13 +13,14 @@ import { useObjectPermissionsForObject } from '@/object-record/hooks/useObjectPe
import { hasAnySoftDeleteFilterOnViewComponentSelector } from '@/object-record/record-filter/states/hasAnySoftDeleteFilterOnView';
import { useRecordIndexIdFromCurrentContextStore } from '@/object-record/record-index/hooks/useRecordIndexIdFromCurrentContextStore';
import { recordStoreRecordsSelector } from '@/object-record/record-store/states/selectors/recordStoreRecordsSelector';
import { SIDE_PANEL_COMPONENT_INSTANCE_ID } from '@/side-panel/constants/SidePanelComponentInstanceId';
import { useAtomComponentSelectorValue } from '@/ui/utilities/state/jotai/hooks/useAtomComponentSelectorValue';
import { useAtomComponentStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomComponentStateValue';
import { useAtomFamilySelectorValue } from '@/ui/utilities/state/jotai/hooks/useAtomFamilySelectorValue';
import { useAtomStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomStateValue';
import { useAvailableComponentInstanceIdOrThrow } from '@/ui/utilities/state/component-state/hooks/useAvailableComponentInstanceIdOrThrow';
import { isNonEmptyArray } from '@sniptt/guards';
import { useStore } from 'jotai';
import { useContext } from 'react';
import {
CommandMenuContextApiPageType,
type CommandMenuContextApi,
@@ -29,7 +30,11 @@ import { isDefined } from 'twenty-shared/utils';
export const useCommandMenuContextApi = (): CommandMenuContextApi => {
const store = useStore();
const { isInSidePanel } = useContext(CommandMenuContext);
const contextStoreInstanceId = useAvailableComponentInstanceIdOrThrow(
ContextStoreComponentInstanceContext,
);
const isInSidePanel =
contextStoreInstanceId === SIDE_PANEL_COMPONENT_INSTANCE_ID;
const contextStoreCurrentObjectMetadataItemId = useAtomComponentStateValue(
contextStoreCurrentObjectMetadataItemIdComponentState,
@@ -39,6 +44,10 @@ export const useCommandMenuContextApi = (): CommandMenuContextApi => {
contextStoreTargetedRecordsRuleComponentState,
);
const contextStoreNumberOfSelectedRecords = useAtomComponentStateValue(
contextStoreNumberOfSelectedRecordsComponentState,
);
const { objectMetadataItems } = useObjectMetadataItems();
const objectMetadataItem = objectMetadataItems.find(
@@ -52,19 +61,16 @@ export const useCommandMenuContextApi = (): CommandMenuContextApi => {
? contextStoreTargetedRecordsRule.selectedRecordIds
: undefined;
const favoriteRecordIds = (() => {
if (!isNonEmptyArray(recordIds) || !isDefined(objectMetadataItem)) {
return [];
}
return recordIds.filter((recordId) =>
navigationMenuItems?.some(
(item) =>
item.targetRecordId === recordId &&
item.targetObjectMetadataId === objectMetadataItem.id,
),
);
})();
const favoriteRecordIds =
!isNonEmptyArray(recordIds) || !isDefined(objectMetadataItem)
? []
: recordIds.filter((recordId) =>
navigationMenuItems?.some(
(item) =>
item.targetRecordId === recordId &&
item.targetObjectMetadataId === objectMetadataItem.id,
),
);
const selectedRecords = useAtomFamilySelectorValue(
recordStoreRecordsSelector,
@@ -107,10 +113,6 @@ export const useCommandMenuContextApi = (): CommandMenuContextApi => {
? CommandMenuContextApiPageType.RECORD_PAGE
: CommandMenuContextApiPageType.INDEX_PAGE;
const contextStoreNumberOfSelectedRecords = useAtomComponentStateValue(
contextStoreNumberOfSelectedRecordsComponentState,
);
const isSelectAll = contextStoreTargetedRecordsRule.mode === 'exclusion';
const currentWorkspace = useAtomStateValue(currentWorkspaceState);
@@ -0,0 +1,34 @@
import { isDefined } from 'twenty-shared/utils';
import { commandMenuItemsDraftState } from '@/command-menu-item/server-items/edit/states/commandMenuItemsDraftState';
import { commandMenuItemsSelector } from '@/command-menu-item/server-items/common/states/commandMenuItemsSelector';
import { useAtomStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomStateValue';
import { isDeeplyEqual } from '~/utils/isDeeplyEqual';
export const useCommandMenuItemsDraftState = () => {
const commandMenuItems = useAtomStateValue(commandMenuItemsSelector);
const commandMenuItemsDraft = useAtomStateValue(commandMenuItemsDraftState);
const isDirty =
isDefined(commandMenuItemsDraft) &&
!isDeeplyEqual(
commandMenuItemsDraft.map(({ id, isPinned, position, shortLabel }) => ({
id,
isPinned,
position,
shortLabel,
})),
commandMenuItems.map(({ id, isPinned, position, shortLabel }) => ({
id,
isPinned,
position,
shortLabel,
})),
);
return {
commandMenuItemsDraft,
isDirty,
};
};
@@ -0,0 +1,238 @@
import { FrontComponentCommandMenuItem } from '@/command-menu-item/display/components/FrontComponentCommandMenuItem';
import { HeadlessCommandMenuItem } from '@/command-menu-item/display/components/HeadlessCommandMenuItem';
import { commandMenuItemsSelector } from '@/command-menu-item/server-items/common/states/commandMenuItemsSelector';
import { doesCommandMenuItemMatchObjectMetadataId } from '@/command-menu-item/server-items/common/utils/doesCommandMenuItemMatchObjectMetadataId';
import { CommandMenuItemScope } from '@/command-menu-item/types/CommandMenuItemScope';
import { CommandMenuItemType } from '@/command-menu-item/types/CommandMenuItemType';
import { type CommandMenuContextApi } from 'twenty-shared/types';
import {
evaluateConditionalAvailabilityExpression,
interpolateCommandMenuItemLabel,
isDefined,
} from 'twenty-shared/utils';
import { useIcons } from 'twenty-ui/display';
import { useAtomStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomStateValue';
import { COMMAND_MENU_DEFAULT_ICON } from '@/workflow/workflow-trigger/constants/CommandMenuDefaultIcon';
import {
CommandMenuItemAvailabilityType,
type CommandMenuItemFieldsFragment,
} from '~/generated-metadata/graphql';
type CommandMenuItemWithFrontComponent = CommandMenuItemFieldsFragment & {
frontComponentId: string;
conditionalAvailabilityExpression?: string | null;
};
type CommandMenuItemWithSource = CommandMenuItemFieldsFragment & {
conditionalAvailabilityExpression?: string | null;
};
type BuildCommandMenuItemFromFrontComponentParams = {
item: CommandMenuItemWithFrontComponent;
type?: CommandMenuItemType;
scope: CommandMenuItemScope;
isPinned: boolean;
getIcon: ReturnType<typeof useIcons>['getIcon'];
commandMenuContextApi: CommandMenuContextApi;
};
const buildCommandMenuItemFromFrontComponent = ({
item,
type = CommandMenuItemType.FrontComponent,
scope,
isPinned,
getIcon,
commandMenuContextApi,
}: BuildCommandMenuItemFromFrontComponentParams) => {
const displayLabel = interpolateCommandMenuItemLabel({
label: item.label,
context: commandMenuContextApi,
});
const displayShortLabel = interpolateCommandMenuItemLabel({
label: item.shortLabel,
context: commandMenuContextApi,
});
const Icon = getIcon(item.icon, COMMAND_MENU_DEFAULT_ICON);
const isHeadless = item.frontComponent?.isHeadless === true;
return {
type,
key: `command-menu-item-front-component-${item.id}`,
id: item.id,
scope,
label: displayLabel,
shortLabel: displayShortLabel,
position: item.position,
isPinned,
Icon,
hotKeys: item.hotKeys,
shouldBeRegistered: () =>
evaluateConditionalAvailabilityExpression(
item.conditionalAvailabilityExpression,
commandMenuContextApi,
),
component: isHeadless ? (
<HeadlessCommandMenuItem item={item} />
) : (
<FrontComponentCommandMenuItem frontComponentId={item.frontComponentId} />
),
};
};
type BuildCommandMenuItemFromStandardKeyParams = {
item: CommandMenuItemWithSource;
type?: CommandMenuItemType;
scope: CommandMenuItemScope;
isPinned: boolean;
getIcon: ReturnType<typeof useIcons>['getIcon'];
commandMenuContextApi: CommandMenuContextApi;
};
const buildCommandItemFromEngineKey = ({
item,
type = CommandMenuItemType.Standard,
scope,
isPinned,
getIcon,
commandMenuContextApi,
}: BuildCommandMenuItemFromStandardKeyParams) => {
const Icon = getIcon(item.icon, COMMAND_MENU_DEFAULT_ICON);
return {
type,
key: `command-menu-item-engine-${item.id}`,
id: item.id,
scope,
label: interpolateCommandMenuItemLabel({
label: item.label,
context: commandMenuContextApi,
}),
shortLabel: interpolateCommandMenuItemLabel({
label: item.shortLabel,
context: commandMenuContextApi,
}),
position: item.position,
isPinned,
Icon,
hotKeys: item.hotKeys,
shouldBeRegistered: () =>
evaluateConditionalAvailabilityExpression(
item.conditionalAvailabilityExpression,
commandMenuContextApi,
),
component: <HeadlessCommandMenuItem item={item} />,
};
};
export const useCommandMenuItemsFromBackend = (
commandMenuContextApi: CommandMenuContextApi,
) => {
const { getIcon } = useIcons();
const currentObjectMetadataItemId =
commandMenuContextApi.objectMetadataItem.id;
const hasRecordSelection = commandMenuContextApi.numberOfSelectedRecords >= 1;
const commandMenuItems = useAtomStateValue(commandMenuItemsSelector);
const itemsWithObjectMatches = commandMenuItems.filter(
doesCommandMenuItemMatchObjectMetadataId(currentObjectMetadataItemId),
);
const buildCommandMenuItem = ({
item,
scope,
isPinned,
typeOverride,
}: {
item: CommandMenuItemFieldsFragment;
scope: CommandMenuItemScope;
isPinned: boolean;
typeOverride?: CommandMenuItemType;
}) => {
if (isDefined(item.engineComponentKey)) {
return buildCommandItemFromEngineKey({
item,
type: typeOverride,
scope,
isPinned,
getIcon,
commandMenuContextApi,
});
}
if (isDefined(item.frontComponentId)) {
return buildCommandMenuItemFromFrontComponent({
item: item as CommandMenuItemWithFrontComponent,
type: typeOverride,
scope,
isPinned,
getIcon,
commandMenuContextApi,
});
}
return null;
};
const globalItems = itemsWithObjectMatches.filter(
(item) => item.availabilityType === CommandMenuItemAvailabilityType.GLOBAL,
);
const recordScopedItems = itemsWithObjectMatches.filter(
(item) =>
item.availabilityType ===
CommandMenuItemAvailabilityType.RECORD_SELECTION,
);
const fallbackItems = itemsWithObjectMatches.filter(
(item) =>
item.availabilityType === CommandMenuItemAvailabilityType.FALLBACK,
);
const globalCommandMenuItems = globalItems
.map((item) =>
buildCommandMenuItem({
item,
scope: CommandMenuItemScope.Global,
isPinned: item.isPinned,
}),
)
.filter(isDefined);
const recordScopedCommandMenuItems = hasRecordSelection
? recordScopedItems
.map((item) =>
buildCommandMenuItem({
item,
scope: CommandMenuItemScope.RecordSelection,
isPinned: item.isPinned,
}),
)
.filter(isDefined)
: [];
const fallbackCommandMenuItems = fallbackItems
.map((item) =>
buildCommandMenuItem({
item,
scope: CommandMenuItemScope.Global,
isPinned: false,
typeOverride: CommandMenuItemType.Fallback,
}),
)
.filter(isDefined);
return [
...globalCommandMenuItems,
...recordScopedCommandMenuItems,
...fallbackCommandMenuItems,
]
.filter((item) => item.shouldBeRegistered())
.sort((a, b) => a.position - b.position);
};
@@ -0,0 +1,14 @@
import { metadataStoreState } from '@/metadata-store/states/metadataStoreState';
import { createAtomSelector } from '@/ui/utilities/state/jotai/utils/createAtomSelector';
import { type CommandMenuItemFieldsFragment } from '~/generated-metadata/graphql';
export const commandMenuItemsSelector = createAtomSelector<
CommandMenuItemFieldsFragment[]
>({
key: 'commandMenuItemsSelector',
get: ({ get }) => {
const storeItem = get(metadataStoreState, 'commandMenuItems');
return storeItem.current as CommandMenuItemFieldsFragment[];
},
});
@@ -0,0 +1,7 @@
import { isDefined } from 'twenty-shared/utils';
import { type CommandMenuItemFieldsFragment } from '~/generated-metadata/graphql';
export const doesCommandMenuItemMatchObjectMetadataId =
(objectMetadataItemId: unknown) => (item: CommandMenuItemFieldsFragment) =>
!isDefined(item.availabilityObjectMetadataId) ||
item.availabilityObjectMetadataId === objectMetadataItemId;
@@ -0,0 +1,64 @@
import { useSidePanelMenu } from '@/side-panel/hooks/useSidePanelMenu';
import { isSidePanelOpenedState } from '@/side-panel/states/isSidePanelOpenedState';
import { PAGE_HEADER_SIDE_PANEL_BUTTON_CLICK_OUTSIDE_ID } from '@/ui/layout/page-header/constants/PageHeaderSidePanelButtonClickOutsideId';
import { useAtomStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomStateValue';
import { styled } from '@linaria/react';
import { i18n } from '@lingui/core';
import { t } from '@lingui/core/macro';
import {
AppTooltip,
IconLayoutSidebarRightExpand,
IconX,
TooltipDelay,
TooltipPosition,
} from 'twenty-ui/display';
import { AnimatedButton } from 'twenty-ui/input';
import { themeCssVariables } from 'twenty-ui/theme-constants';
import { AnimatedIconCrossfade, useIsMobile } from 'twenty-ui/utilities';
const StyledTooltipWrapper = styled.div`
font-size: ${themeCssVariables.font.size.md};
`;
export const CommandMenuItemMoreActionsButton = () => {
const { toggleSidePanelMenu } = useSidePanelMenu();
const isSidePanelOpened = useAtomStateValue(isSidePanelOpenedState);
const isMobile = useIsMobile();
const ariaLabel = isSidePanelOpened
? t`Close side panel`
: t`Open side panel`;
return (
<div id="toggle-side-panel-button">
<AnimatedButton
animatedSvg={
<AnimatedIconCrossfade
isActive={isSidePanelOpened}
ActiveIcon={IconX}
InactiveIcon={IconLayoutSidebarRightExpand}
/>
}
dataClickOutsideId={PAGE_HEADER_SIDE_PANEL_BUTTON_CLICK_OUTSIDE_ID}
dataTestId="page-header-side-panel-button"
size={isMobile ? 'medium' : 'small'}
variant="secondary"
accent="default"
title={t`More`}
ariaLabel={ariaLabel}
onClick={toggleSidePanelMenu}
/>
<StyledTooltipWrapper>
<AppTooltip
anchorSelect="#toggle-side-panel-button"
content={i18n._(ariaLabel)}
delay={TooltipDelay.longDelay}
place={TooltipPosition.Bottom}
offset={5}
noArrow
/>
</StyledTooltipWrapper>
</div>
);
};

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