Compare commits

...

30 Commits

Author SHA1 Message Date
neo773 57fd9fe2b6 changes 2026-06-02 14:54:05 +05:30
neo773 46a7c7595f Merge branch 'main' into microsoft-batching 2026-06-02 14:46:59 +05:30
neo773 0def017060 revert unintended file 2026-06-02 14:46:46 +05:30
neo773 6dfb1af261 Update microsoft-message-list-fetch-error-handler.service.ts 2026-06-02 14:26:34 +05:30
neo773 f438658b6b messaging: Microsoft driver Migrate p-limit to native batching
This PR migrates the p-limit library to Native graph SDK batching fixing the concurrency and rate limit issues in production seen for some larger accounts.
2026-06-02 14:25:38 +05:30
github-actions[bot] 5f0096c464 i18n - website translations (#21088)
Created by Github action

---------

Co-authored-by: github-actions <github-actions@twenty.com>
2026-06-02 10:45:36 +02:00
Matt Van Horn 6ac797a69c fix: REST cursor encoding for nested order_by composite fields (#20974)
## Summary

fix: REST cursor encoding for nested order_by composite fields

Closes #20109

---
AI was used for assistance.

---------

Co-authored-by: Matt Van Horn <455140+mvanhorn@users.noreply.github.com>
Co-authored-by: Etienne <45695613+etiennejouan@users.noreply.github.com>
2026-06-02 07:10:20 +00:00
github-actions[bot] 3d6bcc3102 i18n - translations (#21128)
Created by Github action

---------

Co-authored-by: github-actions <github-actions@twenty.com>
2026-06-02 07:30:02 +02:00
Félix Malfait 75df1f3997 chore(settings): address review comments from PR 21072 (#21121)
## Summary

Round through bosiraphael's 31 review threads on the merged PR #21072
(discovery hero + ephemeral playground token). The user asked to apply
each suggestion only where it adds value, so this PR is split into three
buckets.

### Comments (~17 threads)

- Tightened security-rationale / CSS-gotcha / API-doc comments to one or
two factual lines
- Kept (shortened) the comments above `RequireAccessTokenGuard` call
sites — without them a future reader could remove the guard and silently
reopen the escalation hole
- Kept (shortened) the in-memory-only rationale on
`playgroundApiKeyState` for the same reason
- Kept `flex: 1 + min-height: 0` CSS gotcha on `SubMenuTopBarContainer`
— non-obvious and easy to break

### Structure / extraction

- Move `WEBHOOK_TABLE_ROW_GRID_TEMPLATE_COLUMNS` to its own constants
file (one-export-per-file)
- Split `SettingsAgentToolsTab` and `SettingsAgentToolsTable` across
queries/, hooks/, types/, utils/:
  - `graphql/queries/findManyApplicationsForToolTable.ts`
  - `graphql/queries/findManyMarketplaceAppsForToolTable.ts`
  - `hooks/useSettingsAgentToolsTable.ts` (data loading + index merging)
  - `types/SettingsAgentToolItem|Application|MarketplaceApp`
  - `utils/getToolApplicationId|getToolLink`
- Extract `SettingsAiModelsTab` optimistic mutations into
`hooks/useSettingsAiModelsActions` (handleModelFieldChange,
handleUseRecommendedToggle, handleModelToggle,
handleToggleAllVisibleModels)
- Extract `SettingsAI.handleCreateTool` into `hooks/useCreateTool`
- Drop unnecessary `useMemo` wrappers on `heroTabs` arrays
(SettingsObjects, SettingsLayout)
- Simplify `MenuItemToggle` handler in SettingsAgentSkillsTab:
`onToggleChange={setShowDeactivated}` (no longer wrapping with arrow +
read of stale `!showDeactivated`)

### Hero assets

- Replace placeholder `customize-illustration` with per-page exports
- Rename `layout/customize-illustration-{light,dark}.png` →
`layout/cover-{light,dark}.png`
- Add `cover-{light,dark}.png` for **applications** and **members**
(they were both pointing at the layout placeholder as a TODO)
- Overwrite `data-model/cover-*.png`, `playground/cover-*.png`,
`ai/ai-tools-cover-*.png` with the new exports

## Test plan

- [ ] `npx nx typecheck twenty-front` 
- [ ] `npx nx typecheck twenty-server` 
- [ ] `npx nx lint twenty-front`  (oxlint + oxfmt, 0 warnings/errors)
- [ ] `/settings/layout`, `/settings/data-model`,
`/settings/applications`, `/settings/ai`, `/settings/api-webhooks`,
`/settings/members` each render the new hero illustration (light + dark)
- [ ] AI tab: tool list still loads, search + Custom/Managed/Standard
filters still work, "New Tool" still navigates to detail
- [ ] AI tab: Models tab — smart/fast model select, "Use best models
only" toggle, per-model checkboxes, toggle-all all still
optimistic+revert on error
- [ ] Skills tab: "Deactivated" toggle still flips show/hide
- [ ] Webhooks table still uses the 1fr 28px grid
2026-06-02 07:23:14 +02:00
Paul Rastoin d6b3527552 Public assets server s3 redirection (#21108)
# Introduction
Avoid overloading the server on file streaming
Take profit of the different origin implied by the redirection to the s3
Only concern being the expiration date on a public file which is
acceptable

closes https://github.com/twentyhq/private-issues/issues/483
related https://github.com/twentyhq/private-issues/issues/491
2026-06-01 16:25:58 +00:00
Paul Rastoin 989b45db15 Strictly type encryption rotation key site maps constants through entity type derivation (#21085)
# Introduction
Followup https://github.com/twentyhq/twenty/pull/21001

Now that the typeorm entities provide grains over their
`encryptedString` value, we can strictly type the sitemaps of the
encrypted string to rotate in case of encryption key rotation and also
the integration tests tests cases
2026-06-01 15:25:58 +00:00
Weiko d86e827563 fix: return proper FORBIDDEN GraphQL errors from ApiKeyResolver (#21107)
## Context
CI is broken on main, regression introduced in
https://github.com/twentyhq/twenty/pull/21072

Guard-rejected ApiKey mutations returned malformed GraphQL responses.
RequireAccessTokenGuard (and SettingsPermissionGuard) throw plain
AuthException/PermissionException classes, which are not GraphQLErrors.
ApiKeyResolver had no @UseFilters, so these exceptions were never
translated, they surfaced as request-level errors with no data key
(data: undefined) and a non-FORBIDDEN code, instead of data: null +
FORBIDDEN.

This broke the `createApiKey › should reject a non-ACCESS token even
with API key permission` integration test
(expect(res.body.data).toBeNull() received undefined). The sibling
generateApiKeyToken test passed only because it lives on AuthResolver,
which already declares these filters.

## Fix
Add the standard exception filters to ApiKeyResolver, matching the idiom
used by other guard-protected resolvers
```ts
@UseFilters(AuthGraphqlApiExceptionFilter, PermissionsGraphqlApiExceptionFilter)
```
2026-06-01 18:08:02 +02:00
Paul Rastoin 6ad6fcce0f Bump playwright (#21113)
Playwright installation is infinite looping in the ci
seems like to be a global outage
2026-06-01 18:06:55 +02:00
github-actions[bot] ad47b2972c i18n - translations (#21112)
Created by Github action

Co-authored-by: github-actions <github-actions@twenty.com>
2026-06-01 17:42:34 +02:00
Parship Chowdhury ba493e5a23 fix: show relation field changes in the timeline (#21052)
## Summary
- Fixes #20970 
- When we changed only a relation field (e.g. company on a person):
- The diff builder skipped all RELATION fields -> empty diff -> no
timeline row.
- If we change company and something else, only the scalar field
appeared; the company change was missing.
- Even with a diff, the UI validated keys by field name (`company`)
while join columns (`companyId`) could be filtered out.

## Solution
- For `MANY_TO_ONE`, compare join column values (`companyId`) and store
the diff under the relation field name (`company`):
```
"company": {
  "before": { "id": "<old-id>" },
  "after": { "id": "<new-id>" }
}
```
- Frontend
- `filterOutInvalidTimelineActivities`: resolve diff keys by field name
or join column via `findFieldMetadataItemByDiffKey`, so relation diffs
are not stripped.
- `EventRelationFieldDiffValues`: resolve related record labels by id;
show only the new value in the row (same pattern as other fields:
Company -> airSlate).
- Tooltip (relations only): on hover, show before -> after with readable
names (e.g. Microsoft -> Apple). Scalar and composite fields (e.g.
Updated by) are unchanged and do not get this tooltip.
- `EventFieldDiff`: route RELATION diffs to the relation renderer; all
other field types keep the existing FieldDisplay behavior.

### What you’ll see
On a person (or opportunity) timeline after changing company:
```
You updated Company → airSlate
(tooltip: Microsoft → Apple)
```

## Test plan
- Change only company on a person -> timeline shows a company update
with names.
- Change company and name in one save -> both appear in the diff.
- Clear company -> row shows Empty; tooltip reflects previous -> empty
if applicable.
- Same we can do for the Opportunities also
- Scalar / ACTOR fields (e.g. Updated by) - no new tooltip; display
unchanged.

## Screenshots

### Before
<img width="527" height="124" alt="Screenshot 2026-05-29 155123"
src="https://github.com/user-attachments/assets/e067f19a-8184-4e50-9cd0-9135e06188b8"
/>
<br><br>
<img width="535" height="181" alt="Screenshot 2026-05-29 155149"
src="https://github.com/user-attachments/assets/3c513a1e-c5c5-4cff-ae1c-5fed62837798"
/>
<br><br>

### After
<img width="564" height="200" alt="Screenshot 2026-06-01 154539"
src="https://github.com/user-attachments/assets/459ad6b4-af4c-4f7a-b749-30762c979627"
/>
<img width="567" height="187" alt="Screenshot 2026-06-01 154555"
src="https://github.com/user-attachments/assets/6bc4711c-afca-43d8-b874-f51fc0f374df"
/>
<img width="563" height="188" alt="Screenshot 2026-06-01 154639"
src="https://github.com/user-attachments/assets/f275b9fd-a1c3-4c4b-9538-8042657eb593"
/>
<img width="556" height="180" alt="Screenshot 2026-06-01 154654"
src="https://github.com/user-attachments/assets/2e614368-8fd7-4c73-8876-2223f2f98e67"
/>
<img width="560" height="237" alt="Screenshot 2026-06-01 154802"
src="https://github.com/user-attachments/assets/0437aef4-7b2c-4d35-a2e9-f617b90a1beb"
/>

---------

Signed-off-by: Parship Chowdhury <parshipchowdhury@gmail.com>
Co-authored-by: martmull <martmull@hotmail.fr>
2026-06-01 14:34:54 +00:00
Thomas Trompette 627b488556 Fix else branches not properly skipped in nested if/else workflows (#20938)
## Summary

- Extract `findParentSteps` utility that recognizes IF-ELSE steps as
parents of their branch children (via
`settings.input.branches[].nextStepIds`), used in all parent detection
sites (`shouldSkipStepExecution`, `shouldExecuteStep`,
`shouldFailSafely`, and their iterator variants)
- Centralize next-step resolution in `getNextStepIdsToExecute` via
extracted `getNextStepIdsForIterator` and `getNextStepIdsForIfElse`
utils — Iterator now properly returns loop children as
`nextStepIdsToSkip`/`nextStepIdsToFailSafely` when skipped
- Refactor `skipAndFailSafelyStepsThenContinue` to delegate to
`getNextStepIdsToExecute` instead of duplicating type-specific
propagation logic

Fixes #20934

## Test plan

- [x] New unit tests for `findParentSteps` (7 tests covering IF-ELSE
branch parent detection)
- [x] New IF-ELSE-specific tests added to `shouldSkipStepExecution`,
`shouldExecuteStep`, `shouldFailSafely` test suites
- [x] Updated Iterator skip/fail-safely tests in
`workflow-executor.workspace-service.spec.ts`
- [x] All 300 workflow executor tests pass
- [x] `lint:ci` passes
2026-06-01 17:03:50 +02:00
Weiko b9e5ff2065 fix: broadcast timeline activities to live SSE subscriptions (#21104)
## Context
Timeline activities never updated in real time. They were explicitly
excluded from the database-event pipeline
(formatTwentyOrmEventToDatabaseBatchEvent early-returned for the
timelineActivity object), so no SSE event was ever broadcast, and the
frontend timeline only refreshed on mount/manual refetch.

## Implementation
Backend
- Feat: Stop dropping timeline-activity events in
formatTwentyOrmEventToDatabaseBatchEvent.
Instead route them through EntityEventsToDbListener, which publishes
them directly to live subscriptions (but still skipping webhook/audit
handling).
- Fix: Harden ObjectRecordEventPublisher: wrap nested-relation
enrichment in try/catch so a failure broadcasts the event without
relations instead of dropping it (logs a warning).
- Fix: Skip unreadable relation targets in CommonSelectFieldsHelper when
the role lacks canReadObjectRecords, preventing errors while computing
selected fields.
- Fix: Support MORPH_RELATION alongside RELATION in RLS row-level
permission predicate matching (timeline activities use morph targets).

Frontend
- Feat: useTimelineActivities now registers the timeline query with the
SSE system via useListenToEventsForQuery and refetches on incoming
timeline-activity record operations.
- Feat: Add a skip option to useListenToEventsForQuery so the listener
isn't registered when the object has no timeline field.

## Test


https://github.com/user-attachments/assets/ed1d1c66-d6ea-434d-ac9c-9b83d2b78338


Note: "UpdatedBy" seems to be listen to and visible in the timeline
activity summary, this is probably a bug that we want to fix
2026-06-01 16:32:08 +02:00
Etienne 381ca32055 Billing - Fix credit upgrade invoice error (#21097)
In createImmediateUpgradeInvoice, the invoice is finalized with
auto_advance: true, which causes Stripe to automatically attempt payment
asynchronously. Then the explicit stripe.invoices.pay(invoice.id) call
races against that auto-payment — if Stripe already paid it, this throws
"Invoice is already paid".

The fix is to finalize with auto_advance: false and keep the explicit
pay call
2026-06-01 13:55:06 +00:00
nitin 6029847491 fix navigation item tree breadcrumb active state (#21101)
before - 



https://github.com/user-attachments/assets/9a35e07c-def3-47eb-aab4-0bdcaf302d38



after - 


https://github.com/user-attachments/assets/bf452b5a-7a31-4838-83ca-27cae598ef4d
2026-06-01 13:53:42 +00:00
Marie 66afd5a1de Fix array-typed parameters in code/logic-function action forms (#21102)
## Problem

`any[]` type prevented value input:
<img width="544" height="349" alt="Screenshot 2026-06-01 at 14 08 47"
src="https://github.com/user-attachments/assets/956238d0-6fea-4be1-b75a-ab0e6e6424ac"
/>

In the workflow Code action (and the Logic Function action), parameters
typed as any[], string[], etc. rendered as an empty grey box instead of
an "Enter value" text input. After any debounced save, even a properly
initialised array field would also collapse into an empty container.

The Array<T> / ReadonlyArray<T> generic form fell through to a generic
text input by accident (which "looked" right, but for the wrong reason —
no schema info downstream).

## Root causes
Three places treated arrays as plain objects via @sniptt/guards'
isObject (which is true for arrays):

1. WorkflowEditActionCodeFields.tsx — arrays went into the nested-fields
branch; Object.entries([]) is empty → empty container, no placeholder.
2. mergeDefaultFunctionInputAndFunctionInput.ts — recursed into arrays
during merge, turning [] into {}. Triggered on every debounced save, so
the bug surfaced after any edit.
3. get-function-input-schema.ts — only handled T[]
(SyntaxKind.ArrayType); Array<T> (SyntaxKind.TypeReference) was
unrecognised, so the form lost any item-type info.
2026-06-01 13:14:46 +00:00
github-actions[bot] da5e1152bb i18n - translations (#21103)
Created by Github action

---------

Co-authored-by: github-actions <github-actions@twenty.com>
2026-06-01 14:24:47 +02:00
Félix Malfait b338a7a1d2 feat(settings): discovery hero rollout + ephemeral playground token (#21072)
## Summary

Two intertwined streams of work:

### UI — discovery hero pattern, settings shell, AI/API redesign
- **Generalize `SettingsDiscoveryHeroCard`** and use it on Layout, Data
Model, Apps, AI, API/Webhooks, Members. Drops 4 per-page wrapper files
(`SettingsObjectCoverImage`, `SettingsLayoutCoverImage`,
`SettingsLayoutCustomizeVideoModal`,
`SettingsDataModelVisualizeVideoModal`). Each page now supplies cover
src, modal id, and tab list.
- **Modal**: swap `<video>` placeholder for the Vimeo iframe pattern
from `twenty-docs`, per-tab `vimeoId`. Drop the parallel border-bottom
on the header (TabList draws its own baseline) and the grey background
behind the video. Note: Vimeo's embed allowlist applies — the iframes
load with the correct URL on `localhost` but the player itself requires
the video owner to allow the dev/staging domains in Vimeo settings.
- **AI page** rebuilt into a Cockpit pattern (Overview / Models / Skills
/ Tools / Usage). New `SettingsAiOverviewTab` with default Smart/Fast
pickers, at-a-glance stats, and an MCP signpost that deep-links to
`/settings/api-webhooks#mcp`. System Prompt link moved under Models.
Advanced tab removed.
- **API & Webhooks** now has 4 tabs (Playground / MCP / API Keys /
Webhooks). Hero card above tabs. Playground tab inverted to "Core API" /
"Metadata API" sections, each containing REST + GraphQL cards — schema
is the meaningful axis, protocol is secondary. Hash deep-link sync
delegated to the shared `TabListFromUrlOptionalEffect`.
- **Settings shell**: unified drawer outer padding (kill `isSettings`
branch), extract `CollapsibleNavigationDrawerSection`, add `iconColor`
on settings nav items, fix Exit Settings button alignment, 880px content
cap.

### Backend — strategy C: ephemeral playground token
The legacy paste-your-API-key flow is replaced by an on-demand
short-lived token scoped to the calling user's permissions. No shared
"Playground" API key to manage or revoke.

- New `JwtTokenTypeEnum.PLAYGROUND`. `PlaygroundTokenJwtPayload =
Omit<AccessTokenJwtPayload, 'type' | impersonation fields>` so any
future ACCESS claim flows through automatically.
- `AccessTokenService.generatePlaygroundToken` signs an access-shaped
JWT with `type: PLAYGROUND` and a configurable short TTL. A shared
private `resolveTokenSubject` helper parallelizes the user / workspace /
userWorkspace lookups for both generators.
- `JwtAuthStrategy.validateAccessToken` widened to accept
`AccessTokenJwtPayload | PlaygroundTokenJwtPayload`; impersonation gated
on `payload.type === ACCESS` so the union narrows without `as unknown
as` casts. The two branches in `validate()` collapse into one.
- New `PLAYGROUND_TOKEN_EXPIRES_IN` config var (default `2h`).
- New `generatePlaygroundToken` mutation (`WorkspaceAuthGuard`, no args,
returns `AuthToken`).
- Frontend `useOpenPlayground` hook centralizes mint → atom write →
navigate, with Apollo `onError` snackbar and a "use cached PLAYGROUND
token if still fresh" short-circuit (decodes via `jwt-decode`, checks
both `type` AND `exp`). Old API_KEY tokens left in localStorage from the
prior paste-form flow are rejected on `type` alone and force a re-mint —
this is what was causing the "This API Key is revoked" symptom on stale
browsers.

### Drive-by cleanups
- `PlaygroundToken` DTO removed (identical shape to `AuthToken` already
in use).
- 5 `customize-sidebar.webm` imports and the dead placeholder pipeline
removed.

## Test plan

### Discovery hero
- [ ] `/settings/layout`, `/settings/data-model`,
`/settings/applications`, `/settings/ai`, `/settings/api-webhooks`,
`/settings/members` each render the discovery hero card with its
illustration + play button + tabbed modal
- [ ] Modal tabs show the correct Vimeo embed URL per tab; aspect ratio
stays at 1440/900; no parallel border-bottom jog at the tab baseline
- [ ] AI Overview tab shows Smart/Fast model pickers + stats grid + MCP
signpost card; the MCP card lands on `/settings/api-webhooks#mcp` with
the MCP tab active

### API playground (ephemeral token)
- [ ] With an empty `playgroundApiKeyState` in localStorage, clicking
REST or GraphQL playground card opens the playground and the cached
token has `type: "PLAYGROUND"` with ~2h exp
- [ ] Clicking the card again within the freshness window does **not**
re-mint (`iat` / fingerprint stable across visits)
- [ ] Planting a fake API_KEY-shaped JWT in localStorage and clicking
the card forces a fresh mint (old token rejected on `type`)
- [ ] `GET /rest/companies?limit=1` with the cached token returns 200 +
real data
- [ ] `POST /graphql { __typename }` returns 200

### Settings shell
- [ ] Settings nav matches main app drawer padding; sections collapse;
Exit Settings button aligns with the workspace links above
- [ ] Active nav items have a right-gap (cleaner active state)
- [ ] Content area capped at 880px

### Verify
- [ ] `npx nx typecheck twenty-front` passes
- [ ] `npx nx typecheck twenty-server` passes
- [ ] `npx nx lint:diff-with-main twenty-front` passes
- [ ] `npx nx lint:diff-with-main twenty-server` passes
2026-06-01 14:16:02 +02:00
nitin 6e00a122c6 fix(kanban): contain checkbox hover reveal within card bounds (#21100)
follow up to https://github.com/twentyhq/twenty/pull/20455

before - 


https://github.com/user-attachments/assets/e5a8a328-81ec-4dc4-8e54-1a54cf252135


after - 



https://github.com/user-attachments/assets/61cbb856-564c-487f-81e5-e27adc4a0d2d
2026-06-01 12:20:40 +02:00
Priyanshu Bartwal 4dff30f676 Twenty server:Fix REST pagination issues (#20980)
Fixes #20109 

The entry was repeating because in the database we store DateTime fields
with microsecond precision (timestamptz), but when JS parses timestamptz
into a Date object it only keeps millisecond precision.

### Example
If previous cursor was:
```
{
    name: "Quick Lead",
    createdAt: "2026-05-21T15:33:00.708Z",
}
```
The resulting query look something like:
```
...
WHERE (
  "workflow"."name" > "Quick Lead"
  OR (
    "workflow"."name" = "Quick Lead"
    AND "workflow"."createdAt" > "2026-05-21T15:33:00.708Z"
  )
  OR (
    "workflow"."name" = "Quick Lead"
    AND "workflow"."createdAt" = "2026-05-21T15:33:00.708Z"
    AND "workflow"."id" > "8b213cac-a68b-4ffe-817a-3ec994e9932d"
  )
)
```
So, when comparing the 2nd condition the `"workflow"."createdAt" >
"2026-05-21T15:33:00.708Z"` would always result to true because in db
the data for createdAt is `2026-05-21 21:03:00.708 +0530` which will
always be greater than `2026-05-21T15:33:00.708Z`
The second condition `"workflow"."createdAt" >
"2026-05-21T15:33:00.708Z"` always evaluates to true, because the value
actually stored in the DB for createdAt is something like `2026-05-21
21:03:00.708264 +0530`, which is always greater than
`2026-05-21T15:33:00.708Z` in the cursor. The row used to generate the
cursor therefore reappears on the next page.

### My solution
Truncate the column to milliseconds in the comparison so both sides have
the same precision: `date_trunc('milliseconds', ${fieldReference})`.

For the issue of nested sorting filters, when ordering by a composite
field (e.g. `createdBy.name`), `encodeCursor` stored the entire
composite object (`source`, `workspaceMemberId`, `name`, `context`). The
where-condition builder later iterated those sub-keys and threw "Invalid
cursor" because only name had an orderBy direction.

P.S: Duplicate of #20867 because last fork got polluted.

---------

Co-authored-by: Etienne <45695613+etiennejouan@users.noreply.github.com>
2026-06-01 08:50:14 +00:00
Nicolas Besnard 71c377484e fix(front): keep app variable cache in sync after update (#20861)
Updating an application variable in Workspace / Applications / <App> /
Settings persisted server-side but the Apollo cache kept the old value.
Switching tabs unmounted the settings tab, and remounting reseeded the
input from the stale cache — only a full refresh showed the new value.

Mutation now writes the new value into the ApplicationVariable entity
via cache.modify, so FindOneApplication reflects the change immediately.
Hook + table updated to pass the variable id through.

Adds a hook test that pre-seeds the cache and asserts the cached value
after the mutation.

NOTE: saving the plain value in Apollo's cache might not be the best
approach here

---------

Co-authored-by: martmull <martmull@hotmail.fr>
2026-06-01 08:14:28 +00:00
8Maverik8 26906951b3 fix(twenty-sdk): minify front-component bundles & set NODE_ENV=production in deploy build (#20937)
## Summary

`twenty deploy` (and `twenty build`) currently ship front-component
`.mjs` bundles **unminified**, with `process.env.NODE_ENV` undefined at
build time. Two missing options in
`get-base-front-component-build-options.ts` — fix is two lines.

## Why this matters

Each front-component bundle includes React + ReactDOM + the design
system AOT (only `twenty-client-sdk/{core,metadata}` are listed in
`FRONT_COMPONENT_EXTERNAL_MODULES`). A trivial widget measures **~2 MB**
unminified. Because every widget mount spawns a fresh Web Worker that
re-fetches and re-parses the bundle (`FrontComponentWorkerEffect.tsx`),
that 2× size translates directly into 2× cold-start latency on **every
record-page navigation and every browser refresh**. On a CRM with even a
handful of custom widgets this dominates perceived UI latency.

## Why it bites every app, not one user

Reference apps in this repo
(`packages/twenty-apps/fixtures/{minimal,rich}-app`,
`community/github-connector`, `internal/twenty-for-twenty`) ship the
same way — verified by inspecting the released `twenty-sdk@2.5.0`
bundle. There's no CLI flag, env var, or config option to opt into a
production build. A search of issues/PRs for "minify", "bundle size",
"production build" surfaces nothing tracking this.

## Fix

Enable `minify: true` and `define: { 'process.env.NODE_ENV':
'"production"' }` in the base front-component build options. These flow
through `build-application.ts` (the orchestrator for `twenty deploy` and
`twenty build`).

**Watch mode (`twenty dev`) is intentionally untouched.**
`esbuild-watcher.ts` has its own configuration path that doesn't consume
`getBaseFrontComponentBuildOptions()`; it stays unminified so local
rebuilds remain fast and stack traces remain readable during
development.

## Measured impact

Two production extension apps using `twenty-sdk@2.5.0`:

| File | Before | After | Δ |
|---|---:|---:|---:|
| `oapps-deal-items` (single widget) | 2,114,953 B | 863,444 B |
**−59%** |
| `oapps-document-hub/documents-panel` | 2,120,341 B | 872,478 B |
**−59%** |
| `oapps-document-hub/hub-document-record` | 2,077,013 B | 852,544 B |
**−59%** |
| `oapps-document-hub/field-mapping-editor` | 1,168,941 B | 255,787 B |
**−78%** |

End-user effect: opening an Opportunity record with two custom-widget
tabs went from ~3-4s widget paint to under 1s on the same machine, same
browser, same record.

## Risk / scope

- **No behavior change.** Minification is a transparent transform;
`NODE_ENV=production` is the standard signal libraries already gate on.
No app code changes needed.
- **No effect on `twenty dev`** — separate code path.
- **No effect on logic functions** — they use their own build-options
object.
- One file touched.

## Test plan

- [ ] `yarn twenty deploy` on
`packages/twenty-apps/fixtures/minimal-app` → output `.mjs` is mangled
and `process.env.NODE_ENV` no longer appears literally inside the
bundle.
- [ ] `yarn twenty dev` on the same app → output `.mjs` remains
readable.
- [ ] Existing CI green.

Happy to add a feature-flag (`TWENTY_BUILD_MODE` env var or `twenty
deploy --no-minify` escape hatch) if maintainers prefer that over
unconditional minification.

---------

Co-authored-by: 8Maverik8 <8maverik8@users.noreply.github.com>
Co-authored-by: martmull <martmull@hotmail.fr>
2026-06-01 08:13:55 +00:00
Nick 51202d5a32 fix(front): scroll long content in rich text editor (#20319)
## Summary

Fixes scroll behavior in the rich text editor.

Long content was unbounded — the popup grew off-screen, the
expand-to-side-panel button became unreachable, and the side panel
itself didn't scroll either.

Closes #20309

## Changes

- `RichTextFieldInput`: cap the popup at `min(60vh, 500px)` and wrap the
editor in a scrollable region. Collapse button stays at the top via
`align-items: flex-start`.

- `RecordInlineCellEditMode`: add `shift()` middleware to keep the popup
inside the viewport after `flip()` triggers (previously the popup could
extend above the viewport top with the collapse button out of reach).

- `SidePanelContainer` / `SidePanelRouter`: add `min-height: 0` to the
flex-column chain so the existing `overflow-y: auto` on the content area
can actually clip and scroll long children.

The previous attempt in #20310 added the same `min-height: 0` plus a
nested overflow wrapper inside the rich-text page; the nested wrapper
turned out to be the reason scrolling didn't work.

## Test plan

- [x] Open a record with a long `RICH_TEXT` field
- [x] Click the field — popup opens bounded; long content scrolls inside
- [x] Click the expand button (top-right) — side panel opens
- [x] Side panel: long content scrolls vertically
- [x] Popup near the bottom of the viewport flips upward and stays fully
inside the viewport (collapse button remains visible)
- [x] `lint:diff-with-main`, `typecheck`, prettier — green



https://github.com/user-attachments/assets/827be881-aadd-49ed-9ddc-7566c00cf4be

---------

Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-06-01 08:13:11 +00:00
Thomas Trompette f4380f89a8 fix: SSE event stream reconnection after idle connection death (#21061)
The SSE event stream could silently die from network partitions, NAT
table flushes, browser tab throttling, or server restarts. When this
happened:
1. The `error` callback only called `captureException` — no reconnection
was triggered
2. The `complete` callback was `() => {}` — a cleanly terminated stream
left the client permanently broken
3. No mechanism existed to detect a silently dead connection where no
FIN/RST was received

## Summary

- **Fix `error`/`complete` callbacks**: The `graphql-sse` subscription's
`error` callback only reported to Sentry, and `complete` was a no-op.
Both now set `shouldDestroyEventStreamState = true` to trigger the
destroy-recreate lifecycle, ensuring detected transport failures and
clean stream terminations lead to automatic reconnection.
- **Add server-side keepalive**: The existing heartbeat timer now runs
every 30s (instead of 6min) and publishes empty events through the Redis
pub/sub channel in addition to refreshing the Redis TTL (throttled to
~6min). Unlike GraphQL Yoga's opaque SSE comment pings, these are real
subscription events that flow through the client's `next`/`message`
handlers.
- **Add client-side keepalive monitor (`SSEKeepAliveEffect`)**: Tracks
the timestamp of the last received event. If no event arrives within 90
seconds (3x the keepalive interval), it clears query listeners and
triggers a stream destroy-recreate cycle.

## Test plan

- [x] Start the app, verify SSE events flow normally (workflow runs
update in real-time)
- [x] Leave the app idle for >90 seconds, then trigger a workflow run —
verify the stream auto-reconnects and events are delivered
- [x] Kill the server, restart it, verify the frontend recovers its
event stream
- [x] Verify keepalive events (empty
`objectRecordEventsWithQueryIds`/`metadataEvents`) appear in browser
network tab every ~30s
- [x] Verify no regressions in SSE-dependent features (record updates,
metadata changes, workflow run visualization)
2026-06-01 08:09:22 +00:00
nitin e430e4ea0a fix(ai): route xAI search through Responses API as native tools (#21037)
xAI deprecated Live Search, so the `searchParameters` provider option
now returns 410. This routes all xAI models through the Responses API
and binds web/X search as native agent tools, matching how
Anthropic/OpenAI expose search.

- xAI provider now uses `provider.responses()` — its
`webSearch()`/`xSearch()` tools only run against the Responses endpoint,
not chat completions
- web/X search migrated from the `provider-option` variant to `sdk-tool`
(`web_search`/`x_search`); deleted the dead `searchParameters` path, the
`provider-option` variant, and `providerOptions` on `NativeModelBinding`
- dropped a dead `rolePermissionConfig` param on `getAgentRoleId`, left
over from #20331

---------

Co-authored-by: claude[bot] <41898282+claude[bot]@users.noreply.github.com>
Co-authored-by: Félix Malfait <FelixMalfait@users.noreply.github.com>
2026-05-31 15:11:04 +02:00
Abdullah. b027e4bdb1 [Website] i18n module, page-local sections, translatable copy (#21082)
**i18n** — collapsed the ~22 scattered i18n files into a single module
and turned on Spanish alongside French.

**Sections** — dropped the old compound pattern (`Section.Root`,
`Section.Heading`, …). Reusable layout shells moved to `src/templates/`,
atomic bits stay in `design-system/`, and each page now owns its copy in
local `_components` blocks instead of pulling it out of shared sections.
Data files hold arrays only, no prose.

**Copy → `<Trans>`** — A lot of headings were split across several
`<HeadingPart>`s just for font styling, which meant each piece was a
separate translation string. A translator got "Build your Enterprise
CRM" and "at AI Speed" as two unrelated strings and had no way to
reorder them for their language. Those are now single `<Trans>` units
with placeholders. Same idea for the old `\n` + `white-space: pre-line`
line-break trick: replaced with a small `ResponsiveLineBreak` element so
the break is doesn't quietly rot, and did a dead-code pass.

The de-fragmentation changes the message IDs, so around 60 strings will
fall back to English in fr/es until Crowdin re-syncs.
2026-05-31 12:39:35 +00:00
574 changed files with 17304 additions and 9752 deletions
@@ -1779,6 +1779,7 @@ enum FeatureFlagKey {
IS_EMAIL_GROUP_ENABLED
IS_JUNCTION_RELATIONS_ENABLED
IS_REST_METADATA_API_NEW_FORMAT_DIRECT
IS_SETTINGS_DISCOVERY_HERO_ENABLED
}
type WorkspaceUrls {
@@ -2699,6 +2700,12 @@ type AgentTurn {
createdAt: DateTime!
}
type WorkspaceAiStats {
conversationsCount: Int!
skillsCount: Int!
toolsCount: Int!
}
type CalendarChannel {
id: UUID!
handle: String!
@@ -2996,6 +3003,7 @@ type Query {
myConnectedAccounts: [ConnectedAccountPublicDTO!]!
myCalendarChannels(connectedAccountId: UUID): [CalendarChannel!]!
minimalMetadata: MinimalMetadata!
findWorkspaceAiStats: WorkspaceAiStats!
chatThreads: [AgentChatThread!]!
chatThread(id: UUID!): AgentChatThread!
chatMessages(threadId: UUID!): [AgentMessage!]!
@@ -3269,6 +3277,7 @@ type Mutation {
authorizeApp(clientId: String!, codeChallenge: String, redirectUrl: String!, state: String, scope: String): AuthorizeApp!
renewToken(appToken: String!): AuthTokens!
generateApiKeyToken(apiKeyId: UUID!, expiresAt: String!): ApiKeyToken!
generatePlaygroundToken: AuthToken!
emailPasswordResetLink(email: String!, workspaceId: UUID): EmailPasswordResetLink!
updatePasswordViaResetToken(passwordResetToken: String!, newPassword: String!): InvalidatePassword!
createApplicationRegistration(input: CreateApplicationRegistrationInput!): CreateApplicationRegistration!
@@ -1411,7 +1411,7 @@ export interface FeatureFlag {
__typename: 'FeatureFlag'
}
export type FeatureFlagKey = 'IS_UNIQUE_INDEXES_ENABLED' | 'IS_JSON_FILTER_ENABLED' | 'IS_MARKETPLACE_SETTING_TAB_VISIBLE' | 'IS_PUBLIC_DOMAIN_ENABLED' | 'IS_EMAIL_GROUP_ENABLED' | 'IS_JUNCTION_RELATIONS_ENABLED' | 'IS_REST_METADATA_API_NEW_FORMAT_DIRECT'
export type FeatureFlagKey = 'IS_UNIQUE_INDEXES_ENABLED' | 'IS_JSON_FILTER_ENABLED' | 'IS_MARKETPLACE_SETTING_TAB_VISIBLE' | 'IS_PUBLIC_DOMAIN_ENABLED' | 'IS_EMAIL_GROUP_ENABLED' | 'IS_JUNCTION_RELATIONS_ENABLED' | 'IS_REST_METADATA_API_NEW_FORMAT_DIRECT' | 'IS_SETTINGS_DISCOVERY_HERO_ENABLED'
export interface WorkspaceUrls {
customUrl?: Scalars['String']
@@ -2410,6 +2410,13 @@ export interface AgentTurn {
__typename: 'AgentTurn'
}
export interface WorkspaceAiStats {
conversationsCount: Scalars['Int']
skillsCount: Scalars['Int']
toolsCount: Scalars['Int']
__typename: 'WorkspaceAiStats'
}
export interface CalendarChannel {
id: Scalars['UUID']
handle: Scalars['String']
@@ -2597,6 +2604,7 @@ export interface Query {
myConnectedAccounts: ConnectedAccountPublicDTO[]
myCalendarChannels: CalendarChannel[]
minimalMetadata: MinimalMetadata
findWorkspaceAiStats: WorkspaceAiStats
chatThreads: AgentChatThread[]
chatThread: AgentChatThread
chatMessages: AgentMessage[]
@@ -2803,6 +2811,7 @@ export interface Mutation {
authorizeApp: AuthorizeApp
renewToken: AuthTokens
generateApiKeyToken: ApiKeyToken
generatePlaygroundToken: AuthToken
emailPasswordResetLink: EmailPasswordResetLink
updatePasswordViaResetToken: InvalidatePassword
createApplicationRegistration: CreateApplicationRegistration
@@ -5438,6 +5447,14 @@ export interface AgentTurnGenqlSelection{
__scalar?: boolean | number
}
export interface WorkspaceAiStatsGenqlSelection{
conversationsCount?: boolean | number
skillsCount?: boolean | number
toolsCount?: boolean | number
__typename?: boolean | number
__scalar?: boolean | number
}
export interface CalendarChannelGenqlSelection{
id?: boolean | number
handle?: boolean | number
@@ -5625,6 +5642,7 @@ export interface QueryGenqlSelection{
myConnectedAccounts?: ConnectedAccountPublicDTOGenqlSelection
myCalendarChannels?: (CalendarChannelGenqlSelection & { __args?: {connectedAccountId?: (Scalars['UUID'] | null)} })
minimalMetadata?: MinimalMetadataGenqlSelection
findWorkspaceAiStats?: WorkspaceAiStatsGenqlSelection
chatThreads?: AgentChatThreadGenqlSelection
chatThread?: (AgentChatThreadGenqlSelection & { __args: {id: Scalars['UUID']} })
chatMessages?: (AgentMessageGenqlSelection & { __args: {threadId: Scalars['UUID']} })
@@ -5852,6 +5870,7 @@ export interface MutationGenqlSelection{
authorizeApp?: (AuthorizeAppGenqlSelection & { __args: {clientId: Scalars['String'], codeChallenge?: (Scalars['String'] | null), redirectUrl: Scalars['String'], state?: (Scalars['String'] | null), scope?: (Scalars['String'] | null)} })
renewToken?: (AuthTokensGenqlSelection & { __args: {appToken: Scalars['String']} })
generateApiKeyToken?: (ApiKeyTokenGenqlSelection & { __args: {apiKeyId: Scalars['UUID'], expiresAt: Scalars['String']} })
generatePlaygroundToken?: AuthTokenGenqlSelection
emailPasswordResetLink?: (EmailPasswordResetLinkGenqlSelection & { __args: {email: Scalars['String'], workspaceId?: (Scalars['UUID'] | null)} })
updatePasswordViaResetToken?: (InvalidatePasswordGenqlSelection & { __args: {passwordResetToken: Scalars['String'], newPassword: Scalars['String']} })
createApplicationRegistration?: (CreateApplicationRegistrationGenqlSelection & { __args: {input: CreateApplicationRegistrationInput} })
@@ -8152,6 +8171,14 @@ export interface LogicFunctionLogsInput {applicationId?: (Scalars['UUID'] | null
const WorkspaceAiStats_possibleTypes: string[] = ['WorkspaceAiStats']
export const isWorkspaceAiStats = (obj?: { __typename?: any } | null): obj is WorkspaceAiStats => {
if (!obj?.__typename) throw new Error('__typename is missing in "isWorkspaceAiStats"')
return WorkspaceAiStats_possibleTypes.includes(obj.__typename)
}
const CalendarChannel_possibleTypes: string[] = ['CalendarChannel']
export const isCalendarChannel = (obj?: { __typename?: any } | null): obj is CalendarChannel => {
if (!obj?.__typename) throw new Error('__typename is missing in "isCalendarChannel"')
@@ -8705,7 +8732,8 @@ export const enumFeatureFlagKey = {
IS_PUBLIC_DOMAIN_ENABLED: 'IS_PUBLIC_DOMAIN_ENABLED' as const,
IS_EMAIL_GROUP_ENABLED: 'IS_EMAIL_GROUP_ENABLED' as const,
IS_JUNCTION_RELATIONS_ENABLED: 'IS_JUNCTION_RELATIONS_ENABLED' as const,
IS_REST_METADATA_API_NEW_FORMAT_DIRECT: 'IS_REST_METADATA_API_NEW_FORMAT_DIRECT' as const
IS_REST_METADATA_API_NEW_FORMAT_DIRECT: 'IS_REST_METADATA_API_NEW_FORMAT_DIRECT' as const,
IS_SETTINGS_DISCOVERY_HERO_ENABLED: 'IS_SETTINGS_DISCOVERY_HERO_ENABLED' as const
}
export const enumIdentityProviderType = {
File diff suppressed because it is too large Load Diff
+2 -2
View File
@@ -5,7 +5,7 @@
"private": true,
"license": "AGPL-3.0",
"devDependencies": {
"@playwright/test": "^1.56.1",
"playwright": "^1.56.1"
"@playwright/test": "^1.60.0",
"playwright": "^1.60.0"
}
}
@@ -40,7 +40,7 @@
"@types/react-dom": "^18.2.15",
"@typescript/native-preview": "^7.0.0-dev.20260116.1",
"@vitest/browser-playwright": "^4.0.18",
"playwright": "^1.56.1",
"playwright": "^1.60.0",
"prettier": "^3.1.1",
"storybook": "^10.2.13",
"styled-components": "^6.1.0",
+2 -2
View File
@@ -157,7 +157,7 @@
"@lingui/cli": "^5.1.2",
"@lingui/swc-plugin": "^5.11.0",
"@lingui/vite-plugin": "^5.1.2",
"@playwright/test": "^1.56.1",
"@playwright/test": "^1.60.0",
"@storybook-community/storybook-addon-cookie": "^5.0.0",
"@storybook/addon-coverage": "^3.0.0",
"@storybook/addon-docs": "^10.3.3",
@@ -192,7 +192,7 @@
"optionator": "^0.9.1",
"oxlint": "^1.51.0",
"oxlint-tsgolint": "^0.16.0",
"playwright": "^1.56.1",
"playwright": "^1.60.0",
"prettier": "^3.1.1",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-visualizer": "^5.14.0",
Binary file not shown.

Before

Width:  |  Height:  |  Size: 87 KiB

After

Width:  |  Height:  |  Size: 64 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 91 KiB

After

Width:  |  Height:  |  Size: 70 KiB

@@ -289,6 +289,7 @@ export enum FeatureFlagKey {
IS_MARKETPLACE_SETTING_TAB_VISIBLE = 'IS_MARKETPLACE_SETTING_TAB_VISIBLE',
IS_PUBLIC_DOMAIN_ENABLED = 'IS_PUBLIC_DOMAIN_ENABLED',
IS_REST_METADATA_API_NEW_FORMAT_DIRECT = 'IS_REST_METADATA_API_NEW_FORMAT_DIRECT',
IS_SETTINGS_DISCOVERY_HERO_ENABLED = 'IS_SETTINGS_DISCOVERY_HERO_ENABLED',
IS_UNIQUE_INDEXES_ENABLED = 'IS_UNIQUE_INDEXES_ENABLED'
}
@@ -1641,6 +1641,7 @@ export enum FeatureFlagKey {
IS_MARKETPLACE_SETTING_TAB_VISIBLE = 'IS_MARKETPLACE_SETTING_TAB_VISIBLE',
IS_PUBLIC_DOMAIN_ENABLED = 'IS_PUBLIC_DOMAIN_ENABLED',
IS_REST_METADATA_API_NEW_FORMAT_DIRECT = 'IS_REST_METADATA_API_NEW_FORMAT_DIRECT',
IS_SETTINGS_DISCOVERY_HERO_ENABLED = 'IS_SETTINGS_DISCOVERY_HERO_ENABLED',
IS_UNIQUE_INDEXES_ENABLED = 'IS_UNIQUE_INDEXES_ENABLED'
}
@@ -2461,6 +2462,7 @@ export type Mutation = {
executeOneLogicFunction: LogicFunctionExecutionResult;
generateApiKeyToken: ApiKeyToken;
generateApplicationToken: ApplicationTokenPair;
generatePlaygroundToken: AuthToken;
generateTransientToken: TransientToken;
getAuthTokensFromLoginToken: AuthTokens;
getAuthTokensFromOTP: AuthTokens;
@@ -4139,6 +4141,7 @@ export type Query = {
findOneApplication: Application;
findOneApplicationRegistration: ApplicationRegistration;
findOneLogicFunction: LogicFunction;
findWorkspaceAiStats: WorkspaceAiStats;
findWorkspaceFromInviteHash: Workspace;
findWorkspaceInvitations: Array<WorkspaceInvitation>;
frontComponent?: Maybe<FrontComponent>;
@@ -5953,6 +5956,13 @@ export enum WorkspaceActivationStatus {
SUSPENDED = 'SUSPENDED'
}
export type WorkspaceAiStats = {
__typename?: 'WorkspaceAiStats';
conversationsCount: Scalars['Int'];
skillsCount: Scalars['Int'];
toolsCount: Scalars['Int'];
};
export type WorkspaceInvitation = {
__typename?: 'WorkspaceInvitation';
email: Scalars['String'];
@@ -6235,6 +6245,11 @@ export type FindOneSkillQueryVariables = Exact<{
export type FindOneSkillQuery = { __typename?: 'Query', skill?: { __typename?: 'Skill', id: string, name: string, label: string, description?: string | null, icon?: string | null, content: string, isCustom: boolean, isActive: boolean, createdAt: string, updatedAt: string } | null };
export type FindWorkspaceAiStatsQueryVariables = Exact<{ [key: string]: never; }>;
export type FindWorkspaceAiStatsQuery = { __typename?: 'Query', findWorkspaceAiStats: { __typename?: 'WorkspaceAiStats', conversationsCount: number, skillsCount: number, toolsCount: number } };
export type GetAgentTurnsQueryVariables = Exact<{
agentId: Scalars['UUID'];
}>;
@@ -6347,6 +6362,11 @@ export type GenerateApiKeyTokenMutationVariables = Exact<{
export type GenerateApiKeyTokenMutation = { __typename?: 'Mutation', generateApiKeyToken: { __typename?: 'ApiKeyToken', token: string } };
export type GeneratePlaygroundTokenMutationVariables = Exact<{ [key: string]: never; }>;
export type GeneratePlaygroundTokenMutation = { __typename?: 'Mutation', generatePlaygroundToken: { __typename?: 'AuthToken', token: string, expiresAt: string } };
export type GenerateTransientTokenMutationVariables = Exact<{ [key: string]: never; }>;
@@ -8017,6 +8037,7 @@ export const FindManyAgentsDocument = {"kind":"Document","definitions":[{"kind":
export const FindManySkillsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"FindManySkills"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"skills"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"SkillFields"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"SkillFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Skill"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"content"}},{"kind":"Field","name":{"kind":"Name","value":"isCustom"}},{"kind":"Field","name":{"kind":"Name","value":"isActive"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}}]} as unknown as DocumentNode<FindManySkillsQuery, FindManySkillsQueryVariables>;
export const FindOneAgentDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"FindOneAgent"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"id"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"UUID"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"findOneAgent"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"input"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"id"}}}]}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AgentFields"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AgentFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Agent"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"prompt"}},{"kind":"Field","name":{"kind":"Name","value":"modelId"}},{"kind":"Field","name":{"kind":"Name","value":"responseFormat"}},{"kind":"Field","name":{"kind":"Name","value":"roleId"}},{"kind":"Field","name":{"kind":"Name","value":"isCustom"}},{"kind":"Field","name":{"kind":"Name","value":"modelConfiguration"}},{"kind":"Field","name":{"kind":"Name","value":"evaluationInputs"}},{"kind":"Field","name":{"kind":"Name","value":"applicationId"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}}]} as unknown as DocumentNode<FindOneAgentQuery, FindOneAgentQueryVariables>;
export const FindOneSkillDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"FindOneSkill"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"id"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"UUID"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"skill"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"id"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"SkillFields"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"SkillFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Skill"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"content"}},{"kind":"Field","name":{"kind":"Name","value":"isCustom"}},{"kind":"Field","name":{"kind":"Name","value":"isActive"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}}]} as unknown as DocumentNode<FindOneSkillQuery, FindOneSkillQueryVariables>;
export const FindWorkspaceAiStatsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"FindWorkspaceAiStats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"findWorkspaceAiStats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"conversationsCount"}},{"kind":"Field","name":{"kind":"Name","value":"skillsCount"}},{"kind":"Field","name":{"kind":"Name","value":"toolsCount"}}]}}]}}]} as unknown as DocumentNode<FindWorkspaceAiStatsQuery, FindWorkspaceAiStatsQueryVariables>;
export const GetAgentTurnsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetAgentTurns"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"agentId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"UUID"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"agentTurns"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"agentId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"agentId"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"threadId"}},{"kind":"Field","name":{"kind":"Name","value":"agentId"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"evaluations"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"score"}},{"kind":"Field","name":{"kind":"Name","value":"comment"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}}]}},{"kind":"Field","name":{"kind":"Name","value":"messages"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"role"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"parts"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"textContent"}},{"kind":"Field","name":{"kind":"Name","value":"reasoningContent"}},{"kind":"Field","name":{"kind":"Name","value":"toolName"}},{"kind":"Field","name":{"kind":"Name","value":"toolCallId"}},{"kind":"Field","name":{"kind":"Name","value":"toolInput"}},{"kind":"Field","name":{"kind":"Name","value":"toolOutput"}},{"kind":"Field","name":{"kind":"Name","value":"errorMessage"}},{"kind":"Field","name":{"kind":"Name","value":"state"}},{"kind":"Field","name":{"kind":"Name","value":"providerExecuted"}},{"kind":"Field","name":{"kind":"Name","value":"errorDetails"}},{"kind":"Field","name":{"kind":"Name","value":"sourceUrlSourceId"}},{"kind":"Field","name":{"kind":"Name","value":"sourceUrlUrl"}},{"kind":"Field","name":{"kind":"Name","value":"sourceUrlTitle"}},{"kind":"Field","name":{"kind":"Name","value":"sourceDocumentSourceId"}},{"kind":"Field","name":{"kind":"Name","value":"sourceDocumentMediaType"}},{"kind":"Field","name":{"kind":"Name","value":"sourceDocumentTitle"}},{"kind":"Field","name":{"kind":"Name","value":"sourceDocumentFilename"}},{"kind":"Field","name":{"kind":"Name","value":"fileMediaType"}},{"kind":"Field","name":{"kind":"Name","value":"fileFilename"}},{"kind":"Field","name":{"kind":"Name","value":"fileUrl"}},{"kind":"Field","name":{"kind":"Name","value":"providerMetadata"}}]}}]}}]}}]}}]} as unknown as DocumentNode<GetAgentTurnsQuery, GetAgentTurnsQueryVariables>;
export const GetChatMessagesDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetChatMessages"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"threadId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"UUID"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"chatMessages"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"threadId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"threadId"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"threadId"}},{"kind":"Field","name":{"kind":"Name","value":"turnId"}},{"kind":"Field","name":{"kind":"Name","value":"role"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"parts"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"messageId"}},{"kind":"Field","name":{"kind":"Name","value":"orderIndex"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"textContent"}},{"kind":"Field","name":{"kind":"Name","value":"reasoningContent"}},{"kind":"Field","name":{"kind":"Name","value":"toolName"}},{"kind":"Field","name":{"kind":"Name","value":"toolCallId"}},{"kind":"Field","name":{"kind":"Name","value":"toolInput"}},{"kind":"Field","name":{"kind":"Name","value":"toolOutput"}},{"kind":"Field","name":{"kind":"Name","value":"state"}},{"kind":"Field","name":{"kind":"Name","value":"providerExecuted"}},{"kind":"Field","name":{"kind":"Name","value":"errorMessage"}},{"kind":"Field","name":{"kind":"Name","value":"errorDetails"}},{"kind":"Field","name":{"kind":"Name","value":"sourceUrlSourceId"}},{"kind":"Field","name":{"kind":"Name","value":"sourceUrlUrl"}},{"kind":"Field","name":{"kind":"Name","value":"sourceUrlTitle"}},{"kind":"Field","name":{"kind":"Name","value":"sourceDocumentSourceId"}},{"kind":"Field","name":{"kind":"Name","value":"sourceDocumentMediaType"}},{"kind":"Field","name":{"kind":"Name","value":"sourceDocumentTitle"}},{"kind":"Field","name":{"kind":"Name","value":"sourceDocumentFilename"}},{"kind":"Field","name":{"kind":"Name","value":"fileMediaType"}},{"kind":"Field","name":{"kind":"Name","value":"fileFilename"}},{"kind":"Field","name":{"kind":"Name","value":"fileUrl"}},{"kind":"Field","name":{"kind":"Name","value":"fileId"}},{"kind":"Field","name":{"kind":"Name","value":"providerMetadata"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"chatStreamCatchupChunks"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"threadId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"threadId"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"chunks"}},{"kind":"Field","name":{"kind":"Name","value":"maxSeq"}}]}}]}}]} as unknown as DocumentNode<GetChatMessagesQuery, GetChatMessagesQueryVariables>;
export const GetChatThreadsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetChatThreads"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"chatThreads"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"totalInputTokens"}},{"kind":"Field","name":{"kind":"Name","value":"totalOutputTokens"}},{"kind":"Field","name":{"kind":"Name","value":"contextWindowTokens"}},{"kind":"Field","name":{"kind":"Name","value":"conversationSize"}},{"kind":"Field","name":{"kind":"Name","value":"totalInputCredits"}},{"kind":"Field","name":{"kind":"Name","value":"totalOutputCredits"}},{"kind":"Field","name":{"kind":"Name","value":"deletedAt"}},{"kind":"Field","name":{"kind":"Name","value":"lastMessageAt"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}}]}}]} as unknown as DocumentNode<GetChatThreadsQuery, GetChatThreadsQueryVariables>;
@@ -8031,6 +8052,7 @@ export const FindOneApplicationSummaryDocument = {"kind":"Document","definitions
export const AuthorizeAppDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"authorizeApp"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"clientId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"codeChallenge"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"redirectUrl"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"state"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"authorizeApp"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"clientId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"clientId"}}},{"kind":"Argument","name":{"kind":"Name","value":"codeChallenge"},"value":{"kind":"Variable","name":{"kind":"Name","value":"codeChallenge"}}},{"kind":"Argument","name":{"kind":"Name","value":"redirectUrl"},"value":{"kind":"Variable","name":{"kind":"Name","value":"redirectUrl"}}},{"kind":"Argument","name":{"kind":"Name","value":"state"},"value":{"kind":"Variable","name":{"kind":"Name","value":"state"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"redirectUrl"}}]}}]}}]} as unknown as DocumentNode<AuthorizeAppMutation, AuthorizeAppMutationVariables>;
export const EmailPasswordResetLinkDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"EmailPasswordResetLink"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"email"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"workspaceId"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"UUID"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"emailPasswordResetLink"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"email"},"value":{"kind":"Variable","name":{"kind":"Name","value":"email"}}},{"kind":"Argument","name":{"kind":"Name","value":"workspaceId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"workspaceId"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"success"}}]}}]}}]} as unknown as DocumentNode<EmailPasswordResetLinkMutation, EmailPasswordResetLinkMutationVariables>;
export const GenerateApiKeyTokenDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"GenerateApiKeyToken"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"apiKeyId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"UUID"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"expiresAt"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"generateApiKeyToken"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"apiKeyId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"apiKeyId"}}},{"kind":"Argument","name":{"kind":"Name","value":"expiresAt"},"value":{"kind":"Variable","name":{"kind":"Name","value":"expiresAt"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"token"}}]}}]}}]} as unknown as DocumentNode<GenerateApiKeyTokenMutation, GenerateApiKeyTokenMutationVariables>;
export const GeneratePlaygroundTokenDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"GeneratePlaygroundToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"generatePlaygroundToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"token"}},{"kind":"Field","name":{"kind":"Name","value":"expiresAt"}}]}}]}}]} as unknown as DocumentNode<GeneratePlaygroundTokenMutation, GeneratePlaygroundTokenMutationVariables>;
export const GenerateTransientTokenDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"generateTransientToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"generateTransientToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"transientToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"token"}}]}}]}}]}}]} as unknown as DocumentNode<GenerateTransientTokenMutation, GenerateTransientTokenMutationVariables>;
export const GetAuthTokensFromLoginTokenDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"getAuthTokensFromLoginToken"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"loginToken"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"origin"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"getAuthTokensFromLoginToken"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"loginToken"},"value":{"kind":"Variable","name":{"kind":"Name","value":"loginToken"}}},{"kind":"Argument","name":{"kind":"Name","value":"origin"},"value":{"kind":"Variable","name":{"kind":"Name","value":"origin"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tokens"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AuthTokenPairFragment"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AuthTokenFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AuthToken"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"token"}},{"kind":"Field","name":{"kind":"Name","value":"expiresAt"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AuthTokenPairFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AuthTokenPair"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"accessOrWorkspaceAgnosticToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AuthTokenFragment"}}]}},{"kind":"Field","name":{"kind":"Name","value":"refreshToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AuthTokenFragment"}}]}}]}}]} as unknown as DocumentNode<GetAuthTokensFromLoginTokenMutation, GetAuthTokensFromLoginTokenMutationVariables>;
export const GetAuthTokensFromOtpDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"getAuthTokensFromOTP"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"loginToken"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"otp"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"captchaToken"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"origin"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"getAuthTokensFromOTP"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"loginToken"},"value":{"kind":"Variable","name":{"kind":"Name","value":"loginToken"}}},{"kind":"Argument","name":{"kind":"Name","value":"otp"},"value":{"kind":"Variable","name":{"kind":"Name","value":"otp"}}},{"kind":"Argument","name":{"kind":"Name","value":"captchaToken"},"value":{"kind":"Variable","name":{"kind":"Name","value":"captchaToken"}}},{"kind":"Argument","name":{"kind":"Name","value":"origin"},"value":{"kind":"Variable","name":{"kind":"Name","value":"origin"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tokens"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AuthTokenPairFragment"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AuthTokenFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AuthToken"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"token"}},{"kind":"Field","name":{"kind":"Name","value":"expiresAt"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AuthTokenPairFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AuthTokenPair"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"accessOrWorkspaceAgnosticToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AuthTokenFragment"}}]}},{"kind":"Field","name":{"kind":"Name","value":"refreshToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AuthTokenFragment"}}]}}]}}]} as unknown as DocumentNode<GetAuthTokensFromOtpMutation, GetAuthTokensFromOtpMutationVariables>;
+247 -81
View File
@@ -954,7 +954,6 @@ msgstr "Aktief"
#. js-lingui-id: Mue4oc
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Active API keys created by you or your team."
msgstr "Aktiewe API-sleutels geskep deur jou of jou span."
@@ -1051,11 +1050,6 @@ msgstr ""
msgid "Add custom endpoints, private gateways, or additional regions."
msgstr "Voeg pasgemaakte eindpunte, privaat-gateways, of bykomende streke by."
#. js-lingui-id: GuJvBr
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
msgid "Add custom instructions specific to your workspace (appended to system prompt)"
msgstr "Voeg pasgemaakte instruksies by wat spesifiek is vir jou werkruimte (aangeheg by die stelselprompt)"
#. js-lingui-id: 4JviOV
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
@@ -1293,6 +1287,11 @@ msgstr "Voeg by tot swartlys"
msgid "Add to Favorite"
msgstr "Voeg by tot gunstelinge"
#. js-lingui-id: VbareD
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Add Twenty as a Model Context Protocol (MCP) server. Paste this config into Claude Desktop, Cursor, Cline, Continue, Zed, or any other MCP-aware client."
msgstr ""
#. js-lingui-id: XnwceV
#: src/pages/settings/applications/components/SettingsApplicationRegistrationRedirectURIsInput.tsx
msgid "Add URI"
@@ -1775,6 +1774,11 @@ msgstr "Alle take aangespreek. Behou die momentum."
msgid "All the applications currently installed on this workspace"
msgstr ""
#. js-lingui-id: xP6s/m
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "All the layout items declared on your workspace"
msgstr ""
#. js-lingui-id: XuuWVF
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
msgid "All the standard objects"
@@ -1967,11 +1971,6 @@ msgstr "n Interne fout het voorgekom tydens die validering van jou veranderin
msgid "An object with this name already exists"
msgstr "'n Objek met hierdie naam bestaan reeds"
#. js-lingui-id: lxentK
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "An unexpected error occurred"
msgstr "'n Onverwagte fout het voorgekom"
#. js-lingui-id: byKna+
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
msgid "An unexpected error occurred. Please try again."
@@ -2016,6 +2015,7 @@ msgid "Anyone with an email address at these domains is allowed to sign up for t
msgstr "Enigeen met 'n e-posadres by hierdie domeine mag vir hierdie werkruimte inskryf."
#. js-lingui-id: OZtEcz
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "API"
msgstr "API"
@@ -2033,7 +2033,6 @@ msgstr "API & Webtuistes"
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "API Key"
msgstr "API-sleutel"
@@ -2063,7 +2062,6 @@ msgid "API key roles"
msgstr ""
#. js-lingui-id: 5h8ooz
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
msgid "API keys"
msgstr "API-sleutels"
@@ -2104,12 +2102,6 @@ msgstr "API Naam (Enkelvoudig)"
msgid "API values"
msgstr "API waardes"
#. js-lingui-id: JR6nY7
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "APIs"
msgstr "API's"
#. js-lingui-id: ZZAOwb
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
@@ -2131,7 +2123,7 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
msgid "App"
msgstr "App"
@@ -2481,6 +2473,11 @@ msgstr "om {remainingTimes} en {lastTime}"
msgid "at 1 minute past the hour"
msgstr "om 1 minuut na die uur"
#. js-lingui-id: ooA+hm
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "At a glance"
msgstr ""
#. js-lingui-id: vyXyF0
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
msgid "At a specific date or time"
@@ -2645,11 +2642,15 @@ msgid "Availability"
msgstr "Beskikbaarheid"
#. js-lingui-id: csDS2L
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
msgid "Available"
msgstr "Beskikbaar"
#. js-lingui-id: STA+22
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Available models"
msgstr ""
#. js-lingui-id: oD38t2
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Available tools"
@@ -2865,6 +2866,11 @@ msgstr "Brons"
msgid "Brown"
msgstr "Bruin"
#. js-lingui-id: O2UpM1
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Browse"
msgstr ""
#. js-lingui-id: GsXRxc
#: src/modules/settings/data-model/indexes/forms/components/SettingsObjectIndexOptionsForm.tsx
msgid "BTREE (default, good for sorting and equality)"
@@ -3615,6 +3621,11 @@ msgstr "Opdrag na knipbord gekopieer"
msgid "Command Icon"
msgstr "Opdrag ikoon"
#. js-lingui-id: V1zWD4
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Command menu"
msgstr ""
#. js-lingui-id: PUMdxH
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
msgid "Command Menu"
@@ -3642,6 +3653,11 @@ msgstr ""
msgid "commands"
msgstr ""
#. js-lingui-id: 45MZFs
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Commands"
msgstr ""
#. js-lingui-id: 4XlFx/
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Commands copied to clipboard"
@@ -3808,11 +3824,6 @@ msgstr "Stel hierdie DNS-rekords by jou domeinverskaffer op"
msgid "Configure this widget to display fields"
msgstr "Konfigureer hierdie widget om velde te vertoon"
#. js-lingui-id: hzDiM0
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Configure your default AI model"
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -3886,6 +3897,11 @@ msgstr ""
msgid "Connect a new account to your workspace"
msgstr "Verbind 'n nuwe rekening met jou werkruimte"
#. js-lingui-id: vPCRNy
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Connect AI assistants like Claude or Cursor to your workspace via the Model Context Protocol"
msgstr ""
#. js-lingui-id: YLx3sC
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect via IMAP/SMTP"
@@ -3901,6 +3917,11 @@ msgstr "Verbind met Google"
msgid "Connect with Microsoft"
msgstr "Verbind met Microsoft"
#. js-lingui-id: iZWbGJ
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Connect your AI assistant"
msgstr ""
#. js-lingui-id: QHcLEN
#: src/pages/settings/applications/SettingsApplicationConnectionDetail.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationConnectionsSection.tsx
@@ -4066,6 +4087,11 @@ msgstr "Beheer watter tipe entiteite hierdie rol toegeken kan word aan"
msgid "Conversation"
msgstr "Gesprek"
#. js-lingui-id: EnJuK0
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Conversations"
msgstr ""
#. js-lingui-id: HRGl1X
#: src/pages/onboarding/CreateProfile.tsx
#: src/modules/settings/profile/components/NameFields.tsx
@@ -4104,6 +4130,11 @@ msgstr "Kopieer opdrag"
msgid "Copy commands"
msgstr "Kopieer opdragte"
#. js-lingui-id: eaZgIQ
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Copy config"
msgstr ""
#. js-lingui-id: 7eVkEH
#: src/pages/onboarding/InviteTeam.tsx
msgid "Copy invitation link"
@@ -4216,6 +4247,11 @@ msgstr "Kon nie die faktureringsportaal oopmaak nie. Gaan asseblief na of jou on
msgid "Could not open Stripe. Please contact support."
msgstr "Kon nie Stripe oopmaak nie. Kontak asseblief ondersteuning."
#. js-lingui-id: 6wi9Nf
#: src/modules/settings/playground/hooks/useOpenPlayground.ts
msgid "Could not open the API playground"
msgstr ""
#. js-lingui-id: wVw4Am
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not refresh validity token. Please contact support."
@@ -4340,7 +4376,6 @@ msgstr "Skep en konfigureer KI-agente"
#. js-lingui-id: uXGLuq
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Create API key"
msgstr "Skep API-sleutel"
@@ -4625,7 +4660,7 @@ msgstr "Huidige werksruimtelid nie gevind nie."
#. js-lingui-id: 8Tg/JR
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/applications/hooks/useApplicationChipData.ts
@@ -4650,6 +4685,11 @@ msgstr "Pasgemaakte Domein"
msgid "Custom domain updated"
msgstr "Pasgemaakte domein opgedateer"
#. js-lingui-id: c6P+Xe
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Custom instructions appended to every system prompt"
msgstr ""
#. js-lingui-id: 87ZNeX
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
msgid "Custom model ID"
@@ -4692,6 +4732,7 @@ msgid "Customization"
msgstr "Pasmaak"
#. js-lingui-id: srRMnJ
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectLayout.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
@@ -4788,6 +4829,11 @@ msgstr "Donker"
msgid "Dashboard duplicated successfully"
msgstr "Paneelbord suksesvol gedupliseer"
#. js-lingui-id: w6iIMm
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Dashboards"
msgstr ""
#. js-lingui-id: HKH+W+
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
@@ -4988,7 +5034,7 @@ msgstr "Deaktiveer hierdie veld"
#. js-lingui-id: yAT3be
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
@@ -5015,7 +5061,6 @@ msgstr ""
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
msgid "Default"
@@ -5031,6 +5076,11 @@ msgstr "Verstekland"
msgid "Default Country Code"
msgstr "Verstek landkode"
#. js-lingui-id: OtTlfU
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Default model"
msgstr ""
#. js-lingui-id: hUWaAk
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
msgid "Default model for chats and complex reasoning"
@@ -5473,6 +5523,11 @@ msgstr "Besonderhede"
msgid "Detected application version running on this instance"
msgstr ""
#. js-lingui-id: QYXe1O
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Develop"
msgstr ""
#. js-lingui-id: 7aDnUb
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Developer"
@@ -5564,7 +5619,6 @@ msgstr "Moenie invoer nie"
#. js-lingui-id: TvY/XA
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
msgid "Documentation"
@@ -5768,7 +5822,7 @@ msgid "e.g. OpenAI EU"
msgstr "bv. OpenAI EU"
#. js-lingui-id: p5P8NB
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
msgstr "Byvoorbeeld: \"Ons is 'n B2B SaaS-maatskappy. Gebruik altyd formele taal...\""
@@ -6114,6 +6168,8 @@ msgstr "Werknemers"
#. js-lingui-id: N2S1rs
#: src/modules/object-record/record-inline-cell/components/RecordInlineCellDisplayMode.tsx
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRelationFieldDiffValues.tsx
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRelationFieldDiffValues.tsx
#: src/modules/activities/timeline-activities/rows/main-object/components/EventFieldDiff.tsx
msgid "Empty"
msgstr "Leeg"
@@ -6428,11 +6484,6 @@ msgstr "Voer waarde in"
msgid "Enter values, comma-separated"
msgstr "Voer waardes in, komma-geskei"
#. js-lingui-id: OjkRLQ
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "Enter your API key"
msgstr "Voer jou API-sleutel in"
#. js-lingui-id: GpB8YV
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -6988,7 +7039,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
msgstr "Kon nie die ondernemingslisensie aktiveer nie. Gaan asseblief jou sleutel na of kontak ondersteuning."
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Failed to activate skill"
msgstr "Kon nie vaardigheid aktiveer nie"
@@ -7007,11 +7058,6 @@ msgstr "Kon nie verskaffer byvoeg nie"
msgid "Failed to create email handle. Email handles may not be configured on this server."
msgstr ""
#. js-lingui-id: WM7GKt
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Failed to create tool"
msgstr "Kon nie hulpmiddel skep nie"
#. js-lingui-id: lWoewm
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Failed to delete email handle."
@@ -7023,7 +7069,7 @@ msgid "Failed to delete jobs. Please try again later."
msgstr "Kon nie werke uitvee nie. Probeer asseblief later weer."
#. js-lingui-id: bmwWKk
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Failed to delete skill"
msgstr "Kon nie vaardigheid verwyder nie"
@@ -7126,7 +7172,7 @@ msgid "Failed to save role permissions: {errorMessage}"
msgstr ""
#. js-lingui-id: 9ryUyP
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Failed to save workspace instructions"
msgstr "Kon nie werkruimte-instruksies stoor nie"
@@ -7152,13 +7198,13 @@ msgid "Failed to update default model"
msgstr "Kon nie verstekmodel opdateer nie"
#. js-lingui-id: 1R13Ov
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
msgid "Failed to update model"
msgstr "Kon nie model opdateer nie"
#. js-lingui-id: W7Ff/4
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Failed to update model availability"
@@ -7175,7 +7221,7 @@ msgid "Failed to update model recommendations"
msgstr ""
#. js-lingui-id: rCUG3c
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
msgid "Failed to update model selection mode"
msgstr "Kon nie modelkeusemodus opdateer nie"
@@ -7334,6 +7380,7 @@ msgstr "velde"
#. js-lingui-id: vF68cg
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
#: src/pages/settings/data-model/new-index/SettingsObjectNewIndex.tsx
@@ -7868,6 +7915,7 @@ msgid "Grants permission to perform all available actions without restriction"
msgstr "Verleen toestemming om alle beskikbare aksies sonder beperking uit te voer"
#. js-lingui-id: gBiL6J
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "GraphQL"
msgstr "GraphQL"
@@ -8550,6 +8598,7 @@ msgid "Insert a JSON input, then press \"Run Function\"."
msgstr ""
#. js-lingui-id: TKQ7K+
#: src/pages/settings/applications/SettingsApplications.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationRegistrationShareLinkButtons.tsx
msgid "Install"
@@ -8630,11 +8679,6 @@ msgstr "Intervalwisseling is gekanselleer."
msgid "Invalid 2FA information."
msgstr "Ongeldige 2FA inligting."
#. js-lingui-id: GNRDhm
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "Invalid API key"
msgstr "Ongeldige API sleutel"
#. js-lingui-id: 9TgH9p
#: src/modules/settings/security/components/SettingsSecurityAuthBypassOptionsList.tsx
msgid "Invalid auth bypass provider"
@@ -8754,6 +8798,7 @@ msgstr ""
#. js-lingui-id: MFKlMB
#: src/utils/title-utils.ts
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/modules/workspace/components/WorkspaceInviteTeam.tsx
msgid "Invite"
msgstr "Nooi uit"
@@ -9232,12 +9277,15 @@ msgid "Launch manually"
msgstr "Begin handmatig"
#. js-lingui-id: rdU729
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -9693,6 +9741,11 @@ msgstr ""
msgid "Manage Members"
msgstr "Bestuur Lede"
#. js-lingui-id: LNz5UW
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Manage objects, fields and relationships"
msgstr ""
#. js-lingui-id: eGGH1l
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Manage security policies"
@@ -9729,7 +9782,7 @@ msgid "Manage your internet accounts."
msgstr "Bestuur jou internetrekeninge."
#. js-lingui-id: waFx9W
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Managed"
msgstr ""
@@ -9807,12 +9860,23 @@ msgstr "Maksimum URL's"
msgid "Maximum values"
msgstr "Maksimum waardes"
#. js-lingui-id: nA8kxD
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
msgid "MCP"
msgstr ""
#. js-lingui-id: 2jj0eo
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "MCP config copied to clipboard"
msgstr ""
#. js-lingui-id: NvQoNb
#: src/pages/settings/ai/components/SettingsAiMCP.tsx
msgid "MCP Configuration copied to clipboard"
msgstr "MCP-konfigurasie na knipbord gekopieer"
#. js-lingui-id: 8CWirf
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiMCP.tsx
msgid "MCP Server"
msgstr "MCP-bediener"
@@ -10019,6 +10083,7 @@ msgstr "Model-ID word vereis"
#. js-lingui-id: //nm2/
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Models"
msgstr "Modelle"
@@ -10086,7 +10151,6 @@ msgid "months"
msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
msgid "More"
msgstr "Meer"
@@ -10235,8 +10299,8 @@ msgstr ""
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTable.tsx
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
@@ -11417,6 +11481,7 @@ msgstr "objekte"
#. js-lingui-id: B3toQF
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
@@ -11805,7 +11870,9 @@ msgid "Override Draft"
msgstr "Oorskryf Konsep"
#. js-lingui-id: 6/dCYd
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Overview"
msgstr "Oorsig"
@@ -11879,6 +11946,11 @@ msgstr "Bladsy nie gevind nie | Twenty"
msgid "Page Views"
msgstr "Bladsybesoeke"
#. js-lingui-id: wRR604
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Pages"
msgstr ""
#. js-lingui-id: ijBN4V
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "paragraph"
@@ -12592,18 +12664,18 @@ msgid "Read documentation"
msgstr "Lees dokumentasie"
#. js-lingui-id: U26cMX
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read system prompts"
msgstr ""
#. js-lingui-id: EKsFda
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read the system prompts to understand how the AI works"
msgstr ""
#. js-lingui-id: 0URVx8
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1, }, )
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1 }, )
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read the system prompts to understand how the AI works (~{0} tokens)"
msgstr ""
@@ -12732,6 +12804,11 @@ msgstr "Rekord beeld"
msgid "Record label"
msgstr "Rekord etiket"
#. js-lingui-id: XueM/X
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Record page"
msgstr ""
#. js-lingui-id: mAHjRd
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutOpenInContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -12850,6 +12927,7 @@ msgid "Relation type"
msgstr "Verhouding tipe"
#. js-lingui-id: g87L9j
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
#: src/modules/activities/inline-cell/components/ActivityTargetsInlineCell.tsx
msgid "Relations"
@@ -13162,6 +13240,7 @@ msgid "Response Format"
msgstr ""
#. js-lingui-id: WHiaOl
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/playground/SettingsRestPlayground.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "REST"
@@ -13332,6 +13411,7 @@ msgstr ""
#. js-lingui-id: 5dJK4M
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
@@ -13551,7 +13631,7 @@ msgid "Search a role..."
msgstr "Soek 'n rol..."
#. js-lingui-id: lJNEce
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Search a skill..."
msgstr "Soek 'n vaardigheid..."
@@ -13567,7 +13647,7 @@ msgid "Search a team member..."
msgstr "Soek 'n spanlid..."
#. js-lingui-id: VNmPqQ
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Search a tool..."
msgstr ""
@@ -13883,6 +13963,11 @@ msgstr ""
msgid "See Records on All Objects"
msgstr "Sien rekords op alle voorwerpe"
#. js-lingui-id: eQ3co2
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "See your data structure as an interactive diagram"
msgstr ""
#. js-lingui-id: Hhnssf
#: src/pages/settings/applications/components/SettingsApplicationTableRow.tsx
msgid "Seeded"
@@ -14227,6 +14312,11 @@ msgstr "Stel 'n Kies-veld op by {objectLabel} om 'n kanban te skep"
msgid "Set up forwarding from the source address to this destination."
msgstr ""
#. js-lingui-id: dq5Wx1
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Set up MCP"
msgstr ""
#. js-lingui-id: 9HNKkV
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
msgid "Set your application configuration variables"
@@ -14387,6 +14477,16 @@ msgstr ""
msgid "Side Panel"
msgstr "Kantpaneel"
#. js-lingui-id: uWi2Q+
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Sidebar"
msgstr ""
#. js-lingui-id: 9k9PMD
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Sidebar items"
msgstr ""
#. js-lingui-id: 5lWFkC
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
msgid "Sign in"
@@ -14471,12 +14571,12 @@ msgid "Skill"
msgstr "Vaardigheid"
#. js-lingui-id: h4t38o
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skill activated"
msgstr "Vaardigheid geaktiveer"
#. js-lingui-id: /IoK74
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skill deleted"
msgstr "Vaardigheid verwyder"
@@ -14499,7 +14599,9 @@ msgstr ""
#. js-lingui-id: PCSkw2
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skills"
msgstr "Vaardighede"
@@ -14724,7 +14826,7 @@ msgid "Stages"
msgstr "Fases"
#. js-lingui-id: TJBHlP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/applications/hooks/useApplicationChipData.ts
msgid "Standard"
@@ -15137,8 +15239,8 @@ msgstr ""
#: src/pages/settings/ai/SettingsAiPrompts.tsx
#: src/pages/settings/ai/SettingsAiPrompts.tsx
#: src/pages/settings/ai/forms/components/SettingsAiAgentForm.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
msgid "System Prompt"
msgstr "Stelsel Prompt"
@@ -15220,6 +15322,7 @@ msgstr "Taaktitel"
#. js-lingui-id: KM6m8p
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Team"
msgstr ""
@@ -15338,6 +15441,11 @@ msgid ""
"See the [Getting Started guide](https://twenty.com/developers/extend/apps/getting-started) for the full walkthrough, and [Building Apps](https://twenty.com/developers/extend/apps/building) for the `defineApplication` / `defineEntity` APIs."
msgstr ""
#. js-lingui-id: n+CCXl
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "The default AI model used for chats, agents, and workflows"
msgstr ""
#. js-lingui-id: 1xQkU9
#: src/modules/settings/data-model/fields/forms/phones/components/SettingsDataModelFieldPhonesForm.tsx
msgid "The default country code for new phone numbers."
@@ -15900,7 +16008,7 @@ msgid "Tool calls made"
msgstr "Gereedskap-oproepe gemaak"
#. js-lingui-id: SrWh42
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/hooks/useCreateTool.ts
msgid "Tool created"
msgstr "Hulpmiddel geskep"
@@ -15921,7 +16029,9 @@ msgstr "Gereedskapgenerering"
#. js-lingui-id: xdA/+p
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Tools"
msgstr "Gereedskap"
@@ -16067,11 +16177,10 @@ msgstr ""
msgid "True"
msgstr "Waar"
#. js-lingui-id: haaL9N
#. js-lingui-id: 64tOpZ
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Try our REST or GraphQL API playgrounds."
msgstr "Probeer ons REST- of GraphQL API-speelgronde."
msgid "Try our REST or GraphQL API playgrounds"
msgstr ""
#. js-lingui-id: 3WWUB9
#: src/pages/settings/updates/SettingsUpdates.tsx
@@ -16738,9 +16847,13 @@ msgstr "Gebruik magtiging apps en blaaieruitbreidings soos 1Password, Authy, Mic
msgid "Use best models only"
msgstr "Gebruik slegs die beste modelle"
#. js-lingui-id: 5ZehS/
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Use filter to see existing skills or create your own"
msgstr ""
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
@@ -17102,7 +17215,9 @@ msgstr "Bekyk werkruimte-aktiwiteitslogboeke"
#. js-lingui-id: 1I6UoR
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr "Aansigte"
@@ -17155,10 +17270,15 @@ msgid "Visible to you"
msgstr "Sigbaar vir jou"
#. js-lingui-id: 6n7jtr
#: src/modules/settings/data-model/objects/components/SettingsObjectCoverImage.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Visualize"
msgstr "Visualiseer"
#. js-lingui-id: VvM/Ty
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Visualize data model"
msgstr ""
#. js-lingui-id: uUehLT
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Waiting"
@@ -17194,6 +17314,41 @@ msgstr "is verwyder deur"
msgid "was restored by"
msgstr "is herstel deur"
#. js-lingui-id: 0WPnTI
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Watch AI demo"
msgstr ""
#. js-lingui-id: 5qU4Mu
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
msgid "Watch API demo"
msgstr ""
#. js-lingui-id: inpQ46
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Watch apps demo"
msgstr ""
#. js-lingui-id: uIrZTC
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Watch customization demo"
msgstr ""
#. js-lingui-id: syeoTg
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Watch data model demo"
msgstr ""
#. js-lingui-id: egkNh9
#: src/modules/settings/components/SettingsDiscoveryHeroCard.tsx
msgid "Watch demo"
msgstr ""
#. js-lingui-id: 6ZDYQy
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Watch members demo"
msgstr ""
#. js-lingui-id: 6eMAkI
#: src/modules/auth/sign-in-up/components/EmailVerificationSent.tsx
msgid "We encountered an issue verifying"
@@ -17281,6 +17436,7 @@ msgstr "Webhook ID is nodig vir opdaterings"
#. js-lingui-id: v1kQyJ
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
@@ -17336,6 +17492,11 @@ msgstr "Waarmee kan ek jou help?"
msgid "What this API can do: Select a user role to define its permissions."
msgstr "Wat hierdie API kan doen: Kies 'n gebruikersrol om sy toestemmings te definieer."
#. js-lingui-id: drC+Tq
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "What's installed and being used in your workspace"
msgstr ""
#. js-lingui-id: m7GziZ
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "When a deal's stage changes to Closed Won, create a task assigned to the deal owner, due 7 days after the close date, with title \"Post-sale check-in\" and the company name in the description."
@@ -17395,6 +17556,11 @@ msgstr "Widget tipe"
msgid "widgets"
msgstr ""
#. js-lingui-id: tL6W2K
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Widgets"
msgstr ""
#. js-lingui-id: j6ncOZ
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowEditActionIterator.tsx
msgid "Will continue to the next iteration even if the current one fails"
@@ -17464,6 +17630,7 @@ msgstr "Werksvloeie"
#: src/pages/settings/members/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/layout/components/SettingsLayoutDetailScaffold.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
@@ -17473,7 +17640,6 @@ msgstr "Werksvloeie"
#: src/pages/settings/developers/playground/SettingsGraphQLPlayground.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -17553,8 +17719,8 @@ msgid "Workspace Info"
msgstr "Werkruimte-inligting"
#. js-lingui-id: BYrMT0
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Workspace Instructions"
msgstr "Werkruimte-instruksies"
+247 -81
View File
@@ -954,7 +954,6 @@ msgstr "نشط"
#. js-lingui-id: Mue4oc
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Active API keys created by you or your team."
msgstr "مفاتيح واجهة برمجة التطبيقات النشطة التي تم إنشاؤها من قبلك أو فريقك."
@@ -1051,11 +1050,6 @@ msgstr ""
msgid "Add custom endpoints, private gateways, or additional regions."
msgstr "أضف نقاط نهاية مخصصة، وبوابات خاصة، أو مناطق إضافية."
#. js-lingui-id: GuJvBr
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
msgid "Add custom instructions specific to your workspace (appended to system prompt)"
msgstr "أضف تعليمات مخصصة خاصة بمساحة العمل لديك (تُلحق بموجّه النظام)"
#. js-lingui-id: 4JviOV
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
@@ -1293,6 +1287,11 @@ msgstr "إضافة إلى القائمة السوداء"
msgid "Add to Favorite"
msgstr "إضافة إلى المفضلة"
#. js-lingui-id: VbareD
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Add Twenty as a Model Context Protocol (MCP) server. Paste this config into Claude Desktop, Cursor, Cline, Continue, Zed, or any other MCP-aware client."
msgstr ""
#. js-lingui-id: XnwceV
#: src/pages/settings/applications/components/SettingsApplicationRegistrationRedirectURIsInput.tsx
msgid "Add URI"
@@ -1775,6 +1774,11 @@ msgstr "تم التعامل مع جميع المهام. حافظ على الزخ
msgid "All the applications currently installed on this workspace"
msgstr ""
#. js-lingui-id: xP6s/m
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "All the layout items declared on your workspace"
msgstr ""
#. js-lingui-id: XuuWVF
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
msgid "All the standard objects"
@@ -1967,11 +1971,6 @@ msgstr "حدث خطأ داخلي أثناء التحقق من صحة التغي
msgid "An object with this name already exists"
msgstr "يوجد بالفعل كائن يحمل هذا الاسم"
#. js-lingui-id: lxentK
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "An unexpected error occurred"
msgstr "حدث خطأ غير متوقع"
#. js-lingui-id: byKna+
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
msgid "An unexpected error occurred. Please try again."
@@ -2016,6 +2015,7 @@ msgid "Anyone with an email address at these domains is allowed to sign up for t
msgstr "يمكن لأي شخص لديه عنوان بريد إلكتروني في هذه النطاقات التسجيل في مساحة العمل هذه."
#. js-lingui-id: OZtEcz
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "API"
msgstr "واجهة برمجة التطبيقات"
@@ -2033,7 +2033,6 @@ msgstr "واجهة برمجة التطبيقات والويب هوك"
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "API Key"
msgstr "مفتاح واجهة برمجة التطبيقات"
@@ -2063,7 +2062,6 @@ msgid "API key roles"
msgstr ""
#. js-lingui-id: 5h8ooz
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
msgid "API keys"
msgstr "مفاتيح واجهة برمجة التطبيقات"
@@ -2104,12 +2102,6 @@ msgstr "اسم الواجهة برمجية (مفرد)"
msgid "API values"
msgstr "قِيَم API"
#. js-lingui-id: JR6nY7
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "APIs"
msgstr "واجهات برمجة التطبيقات"
#. js-lingui-id: ZZAOwb
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
@@ -2131,7 +2123,7 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
msgid "App"
msgstr "التطبيق"
@@ -2481,6 +2473,11 @@ msgstr "في {remainingTimes} و {lastTime}"
msgid "at 1 minute past the hour"
msgstr "في الدقيقة 1 بعد الساعة"
#. js-lingui-id: ooA+hm
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "At a glance"
msgstr ""
#. js-lingui-id: vyXyF0
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
msgid "At a specific date or time"
@@ -2645,11 +2642,15 @@ msgid "Availability"
msgstr "التوفر"
#. js-lingui-id: csDS2L
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
msgid "Available"
msgstr "متاح"
#. js-lingui-id: STA+22
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Available models"
msgstr ""
#. js-lingui-id: oD38t2
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Available tools"
@@ -2865,6 +2866,11 @@ msgstr "برونزي"
msgid "Brown"
msgstr "بني"
#. js-lingui-id: O2UpM1
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Browse"
msgstr ""
#. js-lingui-id: GsXRxc
#: src/modules/settings/data-model/indexes/forms/components/SettingsObjectIndexOptionsForm.tsx
msgid "BTREE (default, good for sorting and equality)"
@@ -3615,6 +3621,11 @@ msgstr "تم نسخ الأمر إلى الحافظة"
msgid "Command Icon"
msgstr "أيقونة الأمر"
#. js-lingui-id: V1zWD4
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Command menu"
msgstr ""
#. js-lingui-id: PUMdxH
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
msgid "Command Menu"
@@ -3642,6 +3653,11 @@ msgstr ""
msgid "commands"
msgstr ""
#. js-lingui-id: 45MZFs
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Commands"
msgstr ""
#. js-lingui-id: 4XlFx/
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Commands copied to clipboard"
@@ -3808,11 +3824,6 @@ msgstr "قم بتكوين سجلات DNS هذه مع موفر النطاقات
msgid "Configure this widget to display fields"
msgstr "قم بتهيئة هذه الأداة لعرض الحقول"
#. js-lingui-id: hzDiM0
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Configure your default AI model"
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -3886,6 +3897,11 @@ msgstr ""
msgid "Connect a new account to your workspace"
msgstr "ربط حساب جديد بمساحة العمل الخاصة بك"
#. js-lingui-id: vPCRNy
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Connect AI assistants like Claude or Cursor to your workspace via the Model Context Protocol"
msgstr ""
#. js-lingui-id: YLx3sC
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect via IMAP/SMTP"
@@ -3901,6 +3917,11 @@ msgstr "الاتصال بـ Google"
msgid "Connect with Microsoft"
msgstr "الاتصال بـ Microsoft"
#. js-lingui-id: iZWbGJ
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Connect your AI assistant"
msgstr ""
#. js-lingui-id: QHcLEN
#: src/pages/settings/applications/SettingsApplicationConnectionDetail.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationConnectionsSection.tsx
@@ -4066,6 +4087,11 @@ msgstr "التحكم في أنواع الكيانات التي يمكن تعيي
msgid "Conversation"
msgstr "المحادثة"
#. js-lingui-id: EnJuK0
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Conversations"
msgstr ""
#. js-lingui-id: HRGl1X
#: src/pages/onboarding/CreateProfile.tsx
#: src/modules/settings/profile/components/NameFields.tsx
@@ -4104,6 +4130,11 @@ msgstr "نسخ الأمر"
msgid "Copy commands"
msgstr "نسخ الأوامر"
#. js-lingui-id: eaZgIQ
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Copy config"
msgstr ""
#. js-lingui-id: 7eVkEH
#: src/pages/onboarding/InviteTeam.tsx
msgid "Copy invitation link"
@@ -4216,6 +4247,11 @@ msgstr "تعذّر فتح بوابة الفوترة. يُرجى التحقق م
msgid "Could not open Stripe. Please contact support."
msgstr "تعذّر فتح Stripe. يُرجى التواصل مع الدعم."
#. js-lingui-id: 6wi9Nf
#: src/modules/settings/playground/hooks/useOpenPlayground.ts
msgid "Could not open the API playground"
msgstr ""
#. js-lingui-id: wVw4Am
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not refresh validity token. Please contact support."
@@ -4340,7 +4376,6 @@ msgstr "إنشاء وتكوين وكلاء الذكاء الاصطناعي"
#. js-lingui-id: uXGLuq
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Create API key"
msgstr "إنشاء مفتاح API"
@@ -4625,7 +4660,7 @@ msgstr "لم يتم العثور على عضو مساحة العمل الحال
#. js-lingui-id: 8Tg/JR
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/applications/hooks/useApplicationChipData.ts
@@ -4650,6 +4685,11 @@ msgstr "نطاق مخصص"
msgid "Custom domain updated"
msgstr "النطاق المخصص محدث"
#. js-lingui-id: c6P+Xe
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Custom instructions appended to every system prompt"
msgstr ""
#. js-lingui-id: 87ZNeX
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
msgid "Custom model ID"
@@ -4692,6 +4732,7 @@ msgid "Customization"
msgstr "تخصيص"
#. js-lingui-id: srRMnJ
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectLayout.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
@@ -4788,6 +4829,11 @@ msgstr "داكن"
msgid "Dashboard duplicated successfully"
msgstr "تم تكرار لوحة القيادة بنجاح"
#. js-lingui-id: w6iIMm
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Dashboards"
msgstr ""
#. js-lingui-id: HKH+W+
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
@@ -4988,7 +5034,7 @@ msgstr "إلغاء تنشيط هذا الحقل"
#. js-lingui-id: yAT3be
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
@@ -5015,7 +5061,6 @@ msgstr ""
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
msgid "Default"
@@ -5031,6 +5076,11 @@ msgstr "البلد الافتراضي"
msgid "Default Country Code"
msgstr "رمز البلد الافتراضي"
#. js-lingui-id: OtTlfU
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Default model"
msgstr ""
#. js-lingui-id: hUWaAk
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
msgid "Default model for chats and complex reasoning"
@@ -5473,6 +5523,11 @@ msgstr "تفاصيل"
msgid "Detected application version running on this instance"
msgstr ""
#. js-lingui-id: QYXe1O
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Develop"
msgstr ""
#. js-lingui-id: 7aDnUb
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Developer"
@@ -5564,7 +5619,6 @@ msgstr "عدم الاستيراد"
#. js-lingui-id: TvY/XA
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
msgid "Documentation"
@@ -5768,7 +5822,7 @@ msgid "e.g. OpenAI EU"
msgstr "مثال: OpenAI EU"
#. js-lingui-id: p5P8NB
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
msgstr "مثال: \"نحن شركة B2B SaaS. استخدِم دائمًا لغة رسمية...\""
@@ -6114,6 +6168,8 @@ msgstr "الموظفون"
#. js-lingui-id: N2S1rs
#: src/modules/object-record/record-inline-cell/components/RecordInlineCellDisplayMode.tsx
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRelationFieldDiffValues.tsx
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRelationFieldDiffValues.tsx
#: src/modules/activities/timeline-activities/rows/main-object/components/EventFieldDiff.tsx
msgid "Empty"
msgstr "فارغ"
@@ -6428,11 +6484,6 @@ msgstr "أدخل القيمة"
msgid "Enter values, comma-separated"
msgstr "أدخل القيم، مفصولة بفواصل"
#. js-lingui-id: OjkRLQ
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "Enter your API key"
msgstr "أدخل مفتاح API الخاص بك"
#. js-lingui-id: GpB8YV
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -6988,7 +7039,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
msgstr "فشل تفعيل ترخيص Enterprise. يُرجى التحقق من المفتاح أو التواصل مع الدعم."
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Failed to activate skill"
msgstr "فشل في تنشيط المهارة"
@@ -7007,11 +7058,6 @@ msgstr "فشل في إضافة المزود"
msgid "Failed to create email handle. Email handles may not be configured on this server."
msgstr ""
#. js-lingui-id: WM7GKt
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Failed to create tool"
msgstr "فشل إنشاء الأداة"
#. js-lingui-id: lWoewm
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Failed to delete email handle."
@@ -7023,7 +7069,7 @@ msgid "Failed to delete jobs. Please try again later."
msgstr "فشل حذف الوظائف. يُرجى المحاولة مرة أخرى لاحقًا."
#. js-lingui-id: bmwWKk
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Failed to delete skill"
msgstr "فشل في حذف المهارة"
@@ -7126,7 +7172,7 @@ msgid "Failed to save role permissions: {errorMessage}"
msgstr ""
#. js-lingui-id: 9ryUyP
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Failed to save workspace instructions"
msgstr "تعذّر حفظ تعليمات مساحة العمل"
@@ -7152,13 +7198,13 @@ msgid "Failed to update default model"
msgstr "فشل في تحديث النموذج الافتراضي"
#. js-lingui-id: 1R13Ov
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
msgid "Failed to update model"
msgstr "فشل في تحديث النموذج"
#. js-lingui-id: W7Ff/4
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Failed to update model availability"
@@ -7175,7 +7221,7 @@ msgid "Failed to update model recommendations"
msgstr ""
#. js-lingui-id: rCUG3c
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
msgid "Failed to update model selection mode"
msgstr "فشل في تحديث وضع اختيار النموذج"
@@ -7334,6 +7380,7 @@ msgstr "حقول"
#. js-lingui-id: vF68cg
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
#: src/pages/settings/data-model/new-index/SettingsObjectNewIndex.tsx
@@ -7868,6 +7915,7 @@ msgid "Grants permission to perform all available actions without restriction"
msgstr "يمنح الإذن لتنفيذ جميع الإجراءات المتاحة دون قيود"
#. js-lingui-id: gBiL6J
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "GraphQL"
msgstr "جراف كيو إل"
@@ -8550,6 +8598,7 @@ msgid "Insert a JSON input, then press \"Run Function\"."
msgstr ""
#. js-lingui-id: TKQ7K+
#: src/pages/settings/applications/SettingsApplications.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationRegistrationShareLinkButtons.tsx
msgid "Install"
@@ -8630,11 +8679,6 @@ msgstr "تم إلغاء تبديل الفاصل الزمني."
msgid "Invalid 2FA information."
msgstr "معلومات المصادقة الثنائية غير صالحة."
#. js-lingui-id: GNRDhm
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "Invalid API key"
msgstr "مفتاح API غير صالح"
#. js-lingui-id: 9TgH9p
#: src/modules/settings/security/components/SettingsSecurityAuthBypassOptionsList.tsx
msgid "Invalid auth bypass provider"
@@ -8754,6 +8798,7 @@ msgstr "الدعوات"
#. js-lingui-id: MFKlMB
#: src/utils/title-utils.ts
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/modules/workspace/components/WorkspaceInviteTeam.tsx
msgid "Invite"
msgstr "دعوة"
@@ -9232,12 +9277,15 @@ msgid "Launch manually"
msgstr "التشغيل يدويًا"
#. js-lingui-id: rdU729
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -9693,6 +9741,11 @@ msgstr ""
msgid "Manage Members"
msgstr "إدارة الأعضاء"
#. js-lingui-id: LNz5UW
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Manage objects, fields and relationships"
msgstr ""
#. js-lingui-id: eGGH1l
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Manage security policies"
@@ -9729,7 +9782,7 @@ msgid "Manage your internet accounts."
msgstr "إدارة حساباتك على الإنترنت."
#. js-lingui-id: waFx9W
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Managed"
msgstr ""
@@ -9807,12 +9860,23 @@ msgstr "الحد الأقصى لعناوين المواقع الإلكتروني
msgid "Maximum values"
msgstr "الحد الأقصى للقيم"
#. js-lingui-id: nA8kxD
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
msgid "MCP"
msgstr ""
#. js-lingui-id: 2jj0eo
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "MCP config copied to clipboard"
msgstr ""
#. js-lingui-id: NvQoNb
#: src/pages/settings/ai/components/SettingsAiMCP.tsx
msgid "MCP Configuration copied to clipboard"
msgstr "تم نسخ إعدادات MCP إلى الحافظة"
#. js-lingui-id: 8CWirf
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiMCP.tsx
msgid "MCP Server"
msgstr "خادم MCP"
@@ -10019,6 +10083,7 @@ msgstr "معرّف النموذج مطلوب"
#. js-lingui-id: //nm2/
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Models"
msgstr "النماذج"
@@ -10086,7 +10151,6 @@ msgid "months"
msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
msgid "More"
msgstr "المزيد"
@@ -10235,8 +10299,8 @@ msgstr ""
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTable.tsx
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
@@ -11417,6 +11481,7 @@ msgstr "الكائنات"
#. js-lingui-id: B3toQF
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
@@ -11805,7 +11870,9 @@ msgid "Override Draft"
msgstr "تجاوز المسودة"
#. js-lingui-id: 6/dCYd
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Overview"
msgstr "نظرة عامة"
@@ -11879,6 +11946,11 @@ msgstr "الصفحة غير موجودة | Twenty"
msgid "Page Views"
msgstr "مشاهدات الصفحات"
#. js-lingui-id: wRR604
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Pages"
msgstr ""
#. js-lingui-id: ijBN4V
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "paragraph"
@@ -12592,18 +12664,18 @@ msgid "Read documentation"
msgstr "اقرأ الوثائق"
#. js-lingui-id: U26cMX
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read system prompts"
msgstr ""
#. js-lingui-id: EKsFda
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read the system prompts to understand how the AI works"
msgstr ""
#. js-lingui-id: 0URVx8
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1, }, )
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1 }, )
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read the system prompts to understand how the AI works (~{0} tokens)"
msgstr ""
@@ -12732,6 +12804,11 @@ msgstr "صورة سجل"
msgid "Record label"
msgstr "ملصق السجل"
#. js-lingui-id: XueM/X
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Record page"
msgstr ""
#. js-lingui-id: mAHjRd
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutOpenInContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -12850,6 +12927,7 @@ msgid "Relation type"
msgstr "نوع العلاقة"
#. js-lingui-id: g87L9j
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
#: src/modules/activities/inline-cell/components/ActivityTargetsInlineCell.tsx
msgid "Relations"
@@ -13162,6 +13240,7 @@ msgid "Response Format"
msgstr ""
#. js-lingui-id: WHiaOl
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/playground/SettingsRestPlayground.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "REST"
@@ -13332,6 +13411,7 @@ msgstr ""
#. js-lingui-id: 5dJK4M
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
@@ -13551,7 +13631,7 @@ msgid "Search a role..."
msgstr "ابحث عن دور..."
#. js-lingui-id: lJNEce
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Search a skill..."
msgstr "ابحث عن مهارة..."
@@ -13567,7 +13647,7 @@ msgid "Search a team member..."
msgstr "ابحث عن عضو..."
#. js-lingui-id: VNmPqQ
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Search a tool..."
msgstr ""
@@ -13883,6 +13963,11 @@ msgstr ""
msgid "See Records on All Objects"
msgstr "عرض السجلات في جميع العناصر"
#. js-lingui-id: eQ3co2
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "See your data structure as an interactive diagram"
msgstr ""
#. js-lingui-id: Hhnssf
#: src/pages/settings/applications/components/SettingsApplicationTableRow.tsx
msgid "Seeded"
@@ -14227,6 +14312,11 @@ msgstr "قم بإعداد حقل اختيار على {objectLabel} لإنشاء
msgid "Set up forwarding from the source address to this destination."
msgstr ""
#. js-lingui-id: dq5Wx1
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Set up MCP"
msgstr ""
#. js-lingui-id: 9HNKkV
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
msgid "Set your application configuration variables"
@@ -14387,6 +14477,16 @@ msgstr ""
msgid "Side Panel"
msgstr "لوحة جانبية"
#. js-lingui-id: uWi2Q+
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Sidebar"
msgstr ""
#. js-lingui-id: 9k9PMD
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Sidebar items"
msgstr ""
#. js-lingui-id: 5lWFkC
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
msgid "Sign in"
@@ -14471,12 +14571,12 @@ msgid "Skill"
msgstr "مهارة"
#. js-lingui-id: h4t38o
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skill activated"
msgstr "تم تنشيط المهارة"
#. js-lingui-id: /IoK74
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skill deleted"
msgstr "تم حذف المهارة"
@@ -14499,7 +14599,9 @@ msgstr ""
#. js-lingui-id: PCSkw2
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skills"
msgstr "المهارات"
@@ -14724,7 +14826,7 @@ msgid "Stages"
msgstr "مراحل"
#. js-lingui-id: TJBHlP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/applications/hooks/useApplicationChipData.ts
msgid "Standard"
@@ -15137,8 +15239,8 @@ msgstr ""
#: src/pages/settings/ai/SettingsAiPrompts.tsx
#: src/pages/settings/ai/SettingsAiPrompts.tsx
#: src/pages/settings/ai/forms/components/SettingsAiAgentForm.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
msgid "System Prompt"
msgstr "أمر النظام"
@@ -15220,6 +15322,7 @@ msgstr "عنوان المهمة"
#. js-lingui-id: KM6m8p
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Team"
msgstr ""
@@ -15338,6 +15441,11 @@ msgid ""
"See the [Getting Started guide](https://twenty.com/developers/extend/apps/getting-started) for the full walkthrough, and [Building Apps](https://twenty.com/developers/extend/apps/building) for the `defineApplication` / `defineEntity` APIs."
msgstr ""
#. js-lingui-id: n+CCXl
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "The default AI model used for chats, agents, and workflows"
msgstr ""
#. js-lingui-id: 1xQkU9
#: src/modules/settings/data-model/fields/forms/phones/components/SettingsDataModelFieldPhonesForm.tsx
msgid "The default country code for new phone numbers."
@@ -15900,7 +16008,7 @@ msgid "Tool calls made"
msgstr "عمليات استدعاء الأدوات المنفذة"
#. js-lingui-id: SrWh42
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/hooks/useCreateTool.ts
msgid "Tool created"
msgstr "تم إنشاء الأداة"
@@ -15921,7 +16029,9 @@ msgstr "توليد الأداة"
#. js-lingui-id: xdA/+p
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Tools"
msgstr "أدوات"
@@ -16067,11 +16177,10 @@ msgstr ""
msgid "True"
msgstr "صحيح"
#. js-lingui-id: haaL9N
#. js-lingui-id: 64tOpZ
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Try our REST or GraphQL API playgrounds."
msgstr "جرب ساحات لعب REST أو GraphQL لواجهة برمجة التطبيقات."
msgid "Try our REST or GraphQL API playgrounds"
msgstr ""
#. js-lingui-id: 3WWUB9
#: src/pages/settings/updates/SettingsUpdates.tsx
@@ -16738,9 +16847,13 @@ msgstr "استخدم تطبيقات المصادقة وملحقات المتصف
msgid "Use best models only"
msgstr "استخدام أفضل النماذج فقط"
#. js-lingui-id: 5ZehS/
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Use filter to see existing skills or create your own"
msgstr ""
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
@@ -17102,7 +17215,9 @@ msgstr "عرض سجلات نشاط مساحة العمل"
#. js-lingui-id: 1I6UoR
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr "العروض"
@@ -17155,10 +17270,15 @@ msgid "Visible to you"
msgstr "مرئي لديك"
#. js-lingui-id: 6n7jtr
#: src/modules/settings/data-model/objects/components/SettingsObjectCoverImage.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Visualize"
msgstr "تصور"
#. js-lingui-id: VvM/Ty
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Visualize data model"
msgstr ""
#. js-lingui-id: uUehLT
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Waiting"
@@ -17194,6 +17314,41 @@ msgstr "تم الحذف بواسطة"
msgid "was restored by"
msgstr "تم الاسترجاع بواسطة"
#. js-lingui-id: 0WPnTI
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Watch AI demo"
msgstr ""
#. js-lingui-id: 5qU4Mu
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
msgid "Watch API demo"
msgstr ""
#. js-lingui-id: inpQ46
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Watch apps demo"
msgstr ""
#. js-lingui-id: uIrZTC
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Watch customization demo"
msgstr ""
#. js-lingui-id: syeoTg
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Watch data model demo"
msgstr ""
#. js-lingui-id: egkNh9
#: src/modules/settings/components/SettingsDiscoveryHeroCard.tsx
msgid "Watch demo"
msgstr ""
#. js-lingui-id: 6ZDYQy
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Watch members demo"
msgstr ""
#. js-lingui-id: 6eMAkI
#: src/modules/auth/sign-in-up/components/EmailVerificationSent.tsx
msgid "We encountered an issue verifying"
@@ -17279,6 +17434,7 @@ msgstr "معرف Webhook مطلوب للتحديثات"
#. js-lingui-id: v1kQyJ
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
@@ -17334,6 +17490,11 @@ msgstr "بماذا يمكنني مساعدتك؟"
msgid "What this API can do: Select a user role to define its permissions."
msgstr "يُمكن لهذه API تنفيذ ما يلي: اختر دور المستخدم لتعريف الأذونات الخاصة به."
#. js-lingui-id: drC+Tq
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "What's installed and being used in your workspace"
msgstr ""
#. js-lingui-id: m7GziZ
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "When a deal's stage changes to Closed Won, create a task assigned to the deal owner, due 7 days after the close date, with title \"Post-sale check-in\" and the company name in the description."
@@ -17393,6 +17554,11 @@ msgstr "نوع الأداة"
msgid "widgets"
msgstr ""
#. js-lingui-id: tL6W2K
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Widgets"
msgstr ""
#. js-lingui-id: j6ncOZ
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowEditActionIterator.tsx
msgid "Will continue to the next iteration even if the current one fails"
@@ -17462,6 +17628,7 @@ msgstr "سير العمل"
#: src/pages/settings/members/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/layout/components/SettingsLayoutDetailScaffold.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
@@ -17471,7 +17638,6 @@ msgstr "سير العمل"
#: src/pages/settings/developers/playground/SettingsGraphQLPlayground.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -17551,8 +17717,8 @@ msgid "Workspace Info"
msgstr "معلومات مساحة العمل"
#. js-lingui-id: BYrMT0
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Workspace Instructions"
msgstr "تعليمات مساحة العمل"
+247 -81
View File
@@ -954,7 +954,6 @@ msgstr "Actiu"
#. js-lingui-id: Mue4oc
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Active API keys created by you or your team."
msgstr "Claus d'API actives creades per tu o pel teu equip."
@@ -1051,11 +1050,6 @@ msgstr ""
msgid "Add custom endpoints, private gateways, or additional regions."
msgstr "Afegeix punts finals personalitzats, passarel·les privades o regions addicionals."
#. js-lingui-id: GuJvBr
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
msgid "Add custom instructions specific to your workspace (appended to system prompt)"
msgstr "Afegeix instruccions personalitzades específiques del teu espai de treball (que s'afegiran al prompt del sistema)"
#. js-lingui-id: 4JviOV
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
@@ -1293,6 +1287,11 @@ msgstr "Afegeix a la llista de bloqueig"
msgid "Add to Favorite"
msgstr "Afegeix a les preferides"
#. js-lingui-id: VbareD
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Add Twenty as a Model Context Protocol (MCP) server. Paste this config into Claude Desktop, Cursor, Cline, Continue, Zed, or any other MCP-aware client."
msgstr ""
#. js-lingui-id: XnwceV
#: src/pages/settings/applications/components/SettingsApplicationRegistrationRedirectURIsInput.tsx
msgid "Add URI"
@@ -1775,6 +1774,11 @@ msgstr "Totes les tasques ateses. Mantén l'impuls."
msgid "All the applications currently installed on this workspace"
msgstr ""
#. js-lingui-id: xP6s/m
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "All the layout items declared on your workspace"
msgstr ""
#. js-lingui-id: XuuWVF
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
msgid "All the standard objects"
@@ -1967,11 +1971,6 @@ msgstr "S'ha produït un error intern en validar els vostres canvis. Contacteu a
msgid "An object with this name already exists"
msgstr "Ja existeix un objecte amb aquest nom"
#. js-lingui-id: lxentK
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "An unexpected error occurred"
msgstr "S'ha produït un error inesperat"
#. js-lingui-id: byKna+
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
msgid "An unexpected error occurred. Please try again."
@@ -2016,6 +2015,7 @@ msgid "Anyone with an email address at these domains is allowed to sign up for t
msgstr "Qualsevol persona amb una adreça de correu en aquests dominis pot registrar-se en aquest espai de treball."
#. js-lingui-id: OZtEcz
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "API"
msgstr "API"
@@ -2033,7 +2033,6 @@ msgstr "API i Webhooks"
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "API Key"
msgstr "Clau d'API"
@@ -2063,7 +2062,6 @@ msgid "API key roles"
msgstr ""
#. js-lingui-id: 5h8ooz
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
msgid "API keys"
msgstr "Claus d'API"
@@ -2104,12 +2102,6 @@ msgstr "Nom de l'API (Singular)"
msgid "API values"
msgstr "Valors de l'API"
#. js-lingui-id: JR6nY7
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "APIs"
msgstr "API"
#. js-lingui-id: ZZAOwb
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
@@ -2131,7 +2123,7 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
msgid "App"
msgstr "App"
@@ -2481,6 +2473,11 @@ msgstr "a les {remainingTimes} i {lastTime}"
msgid "at 1 minute past the hour"
msgstr "a 1 minut després de l'hora"
#. js-lingui-id: ooA+hm
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "At a glance"
msgstr ""
#. js-lingui-id: vyXyF0
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
msgid "At a specific date or time"
@@ -2645,11 +2642,15 @@ msgid "Availability"
msgstr "Disponibilitat"
#. js-lingui-id: csDS2L
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
msgid "Available"
msgstr "Disponible"
#. js-lingui-id: STA+22
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Available models"
msgstr ""
#. js-lingui-id: oD38t2
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Available tools"
@@ -2865,6 +2866,11 @@ msgstr "Bronze"
msgid "Brown"
msgstr "Marró"
#. js-lingui-id: O2UpM1
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Browse"
msgstr ""
#. js-lingui-id: GsXRxc
#: src/modules/settings/data-model/indexes/forms/components/SettingsObjectIndexOptionsForm.tsx
msgid "BTREE (default, good for sorting and equality)"
@@ -3615,6 +3621,11 @@ msgstr "Ordre copiada al porta-retalls"
msgid "Command Icon"
msgstr "Icona del Comandament"
#. js-lingui-id: V1zWD4
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Command menu"
msgstr ""
#. js-lingui-id: PUMdxH
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
msgid "Command Menu"
@@ -3642,6 +3653,11 @@ msgstr ""
msgid "commands"
msgstr ""
#. js-lingui-id: 45MZFs
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Commands"
msgstr ""
#. js-lingui-id: 4XlFx/
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Commands copied to clipboard"
@@ -3808,11 +3824,6 @@ msgstr "Configura aquests registres DNS amb el teu proveïdor de domini"
msgid "Configure this widget to display fields"
msgstr "Configura aquest giny per mostrar camps"
#. js-lingui-id: hzDiM0
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Configure your default AI model"
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -3886,6 +3897,11 @@ msgstr ""
msgid "Connect a new account to your workspace"
msgstr "Connecteu un nou compte al vostre espai de treball"
#. js-lingui-id: vPCRNy
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Connect AI assistants like Claude or Cursor to your workspace via the Model Context Protocol"
msgstr ""
#. js-lingui-id: YLx3sC
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect via IMAP/SMTP"
@@ -3901,6 +3917,11 @@ msgstr "Connecta amb Google"
msgid "Connect with Microsoft"
msgstr "Connecta amb Microsoft"
#. js-lingui-id: iZWbGJ
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Connect your AI assistant"
msgstr ""
#. js-lingui-id: QHcLEN
#: src/pages/settings/applications/SettingsApplicationConnectionDetail.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationConnectionsSection.tsx
@@ -4066,6 +4087,11 @@ msgstr "Controlar quin tipus d'entitat es pot assignar aquest rol"
msgid "Conversation"
msgstr "Conversa"
#. js-lingui-id: EnJuK0
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Conversations"
msgstr ""
#. js-lingui-id: HRGl1X
#: src/pages/onboarding/CreateProfile.tsx
#: src/modules/settings/profile/components/NameFields.tsx
@@ -4104,6 +4130,11 @@ msgstr "Copia l'ordre"
msgid "Copy commands"
msgstr "Copia les ordres"
#. js-lingui-id: eaZgIQ
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Copy config"
msgstr ""
#. js-lingui-id: 7eVkEH
#: src/pages/onboarding/InviteTeam.tsx
msgid "Copy invitation link"
@@ -4216,6 +4247,11 @@ msgstr "No s'ha pogut obrir el portal de facturació. Comproveu que la vostra cl
msgid "Could not open Stripe. Please contact support."
msgstr "No s'ha pogut obrir Stripe. Contacteu amb el suport."
#. js-lingui-id: 6wi9Nf
#: src/modules/settings/playground/hooks/useOpenPlayground.ts
msgid "Could not open the API playground"
msgstr ""
#. js-lingui-id: wVw4Am
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not refresh validity token. Please contact support."
@@ -4340,7 +4376,6 @@ msgstr "Crea i configura agents d'IA"
#. js-lingui-id: uXGLuq
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Create API key"
msgstr "Crea clau d'API"
@@ -4625,7 +4660,7 @@ msgstr "Membre de l'espai de treball actual no trobat."
#. js-lingui-id: 8Tg/JR
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/applications/hooks/useApplicationChipData.ts
@@ -4650,6 +4685,11 @@ msgstr "Domini Personalitzat"
msgid "Custom domain updated"
msgstr "Domini personalitzat actualitzat"
#. js-lingui-id: c6P+Xe
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Custom instructions appended to every system prompt"
msgstr ""
#. js-lingui-id: 87ZNeX
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
msgid "Custom model ID"
@@ -4692,6 +4732,7 @@ msgid "Customization"
msgstr "Personalització"
#. js-lingui-id: srRMnJ
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectLayout.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
@@ -4788,6 +4829,11 @@ msgstr "Fosc"
msgid "Dashboard duplicated successfully"
msgstr "Quadre de comandament duplicat correctament"
#. js-lingui-id: w6iIMm
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Dashboards"
msgstr ""
#. js-lingui-id: HKH+W+
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
@@ -4988,7 +5034,7 @@ msgstr "Desactiva aquest camp"
#. js-lingui-id: yAT3be
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
@@ -5015,7 +5061,6 @@ msgstr ""
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
msgid "Default"
@@ -5031,6 +5076,11 @@ msgstr "País predeterminat"
msgid "Default Country Code"
msgstr "Codi de país predeterminat"
#. js-lingui-id: OtTlfU
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Default model"
msgstr ""
#. js-lingui-id: hUWaAk
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
msgid "Default model for chats and complex reasoning"
@@ -5473,6 +5523,11 @@ msgstr "Detalls"
msgid "Detected application version running on this instance"
msgstr ""
#. js-lingui-id: QYXe1O
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Develop"
msgstr ""
#. js-lingui-id: 7aDnUb
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Developer"
@@ -5564,7 +5619,6 @@ msgstr "No importar"
#. js-lingui-id: TvY/XA
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
msgid "Documentation"
@@ -5768,7 +5822,7 @@ msgid "e.g. OpenAI EU"
msgstr "p. ex., OpenAI EU"
#. js-lingui-id: p5P8NB
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
msgstr "P. ex., \"Som una empresa SaaS B2B. Utilitza sempre un llenguatge formal...\""
@@ -6114,6 +6168,8 @@ msgstr "Empleats"
#. js-lingui-id: N2S1rs
#: src/modules/object-record/record-inline-cell/components/RecordInlineCellDisplayMode.tsx
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRelationFieldDiffValues.tsx
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRelationFieldDiffValues.tsx
#: src/modules/activities/timeline-activities/rows/main-object/components/EventFieldDiff.tsx
msgid "Empty"
msgstr "Buit"
@@ -6428,11 +6484,6 @@ msgstr "Introdueix el valor"
msgid "Enter values, comma-separated"
msgstr "Introdueix els valors, separats per comes"
#. js-lingui-id: OjkRLQ
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "Enter your API key"
msgstr "Introdueix la teva clau API"
#. js-lingui-id: GpB8YV
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -6988,7 +7039,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
msgstr "No s'ha pogut activar la llicència Enterprise. Comproveu la vostra clau o contacteu amb el suport."
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Failed to activate skill"
msgstr "No s'ha pogut activar l'habilitat"
@@ -7007,11 +7058,6 @@ msgstr "No s'ha pogut afegir el proveïdor"
msgid "Failed to create email handle. Email handles may not be configured on this server."
msgstr ""
#. js-lingui-id: WM7GKt
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Failed to create tool"
msgstr "No s'ha pogut crear l'eina"
#. js-lingui-id: lWoewm
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Failed to delete email handle."
@@ -7023,7 +7069,7 @@ msgid "Failed to delete jobs. Please try again later."
msgstr "Error al suprimir feines. Torneu-ho a provar més tard."
#. js-lingui-id: bmwWKk
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Failed to delete skill"
msgstr "No s'ha pogut suprimir l'habilitat"
@@ -7126,7 +7172,7 @@ msgid "Failed to save role permissions: {errorMessage}"
msgstr ""
#. js-lingui-id: 9ryUyP
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Failed to save workspace instructions"
msgstr "No s'han pogut desar les instruccions de l'espai de treball"
@@ -7152,13 +7198,13 @@ msgid "Failed to update default model"
msgstr "No s'ha pogut actualitzar el model predeterminat"
#. js-lingui-id: 1R13Ov
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
msgid "Failed to update model"
msgstr "No s'ha pogut actualitzar el model"
#. js-lingui-id: W7Ff/4
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Failed to update model availability"
@@ -7175,7 +7221,7 @@ msgid "Failed to update model recommendations"
msgstr ""
#. js-lingui-id: rCUG3c
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
msgid "Failed to update model selection mode"
msgstr "No s'ha pogut actualitzar el mode de selecció de models"
@@ -7334,6 +7380,7 @@ msgstr "camps"
#. js-lingui-id: vF68cg
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
#: src/pages/settings/data-model/new-index/SettingsObjectNewIndex.tsx
@@ -7868,6 +7915,7 @@ msgid "Grants permission to perform all available actions without restriction"
msgstr "Atorga permís per realitzar totes les accions disponibles sense restricció"
#. js-lingui-id: gBiL6J
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "GraphQL"
msgstr "GraphQL"
@@ -8550,6 +8598,7 @@ msgid "Insert a JSON input, then press \"Run Function\"."
msgstr ""
#. js-lingui-id: TKQ7K+
#: src/pages/settings/applications/SettingsApplications.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationRegistrationShareLinkButtons.tsx
msgid "Install"
@@ -8630,11 +8679,6 @@ msgstr "El canvi d'interval ha estat cancel·lat."
msgid "Invalid 2FA information."
msgstr "Informació 2FA no vàlida."
#. js-lingui-id: GNRDhm
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "Invalid API key"
msgstr "Clau API invàlida"
#. js-lingui-id: 9TgH9p
#: src/modules/settings/security/components/SettingsSecurityAuthBypassOptionsList.tsx
msgid "Invalid auth bypass provider"
@@ -8754,6 +8798,7 @@ msgstr "Invitacions"
#. js-lingui-id: MFKlMB
#: src/utils/title-utils.ts
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/modules/workspace/components/WorkspaceInviteTeam.tsx
msgid "Invite"
msgstr "Convida"
@@ -9232,12 +9277,15 @@ msgid "Launch manually"
msgstr "Llança manualment"
#. js-lingui-id: rdU729
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -9693,6 +9741,11 @@ msgstr ""
msgid "Manage Members"
msgstr "Gestionar Membres"
#. js-lingui-id: LNz5UW
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Manage objects, fields and relationships"
msgstr ""
#. js-lingui-id: eGGH1l
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Manage security policies"
@@ -9729,7 +9782,7 @@ msgid "Manage your internet accounts."
msgstr "Gestiona els teus comptes d'Internet."
#. js-lingui-id: waFx9W
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Managed"
msgstr ""
@@ -9807,12 +9860,23 @@ msgstr "Quantitat màxima d'URL"
msgid "Maximum values"
msgstr "Quantitat màxima de valors"
#. js-lingui-id: nA8kxD
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
msgid "MCP"
msgstr ""
#. js-lingui-id: 2jj0eo
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "MCP config copied to clipboard"
msgstr ""
#. js-lingui-id: NvQoNb
#: src/pages/settings/ai/components/SettingsAiMCP.tsx
msgid "MCP Configuration copied to clipboard"
msgstr "Configuració MCP copiada al porta-retalls"
#. js-lingui-id: 8CWirf
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiMCP.tsx
msgid "MCP Server"
msgstr "Servidor MCP"
@@ -10019,6 +10083,7 @@ msgstr "L'ID del model és necessari"
#. js-lingui-id: //nm2/
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Models"
msgstr "Models"
@@ -10086,7 +10151,6 @@ msgid "months"
msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
msgid "More"
msgstr "Més"
@@ -10235,8 +10299,8 @@ msgstr ""
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTable.tsx
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
@@ -11417,6 +11481,7 @@ msgstr "objectes"
#. js-lingui-id: B3toQF
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
@@ -11805,7 +11870,9 @@ msgid "Override Draft"
msgstr "Sobreescriu Esborrany"
#. js-lingui-id: 6/dCYd
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Overview"
msgstr "Visió general"
@@ -11879,6 +11946,11 @@ msgstr "Pàgina no trobada | Twenty"
msgid "Page Views"
msgstr "Visualitzacions de pàgina"
#. js-lingui-id: wRR604
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Pages"
msgstr ""
#. js-lingui-id: ijBN4V
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "paragraph"
@@ -12592,18 +12664,18 @@ msgid "Read documentation"
msgstr "Llegeix la documentació"
#. js-lingui-id: U26cMX
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read system prompts"
msgstr ""
#. js-lingui-id: EKsFda
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read the system prompts to understand how the AI works"
msgstr ""
#. js-lingui-id: 0URVx8
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1, }, )
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1 }, )
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read the system prompts to understand how the AI works (~{0} tokens)"
msgstr ""
@@ -12732,6 +12804,11 @@ msgstr "Imatge de registre"
msgid "Record label"
msgstr "Etiqueta de registre"
#. js-lingui-id: XueM/X
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Record page"
msgstr ""
#. js-lingui-id: mAHjRd
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutOpenInContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -12850,6 +12927,7 @@ msgid "Relation type"
msgstr "Tipus de relació"
#. js-lingui-id: g87L9j
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
#: src/modules/activities/inline-cell/components/ActivityTargetsInlineCell.tsx
msgid "Relations"
@@ -13162,6 +13240,7 @@ msgid "Response Format"
msgstr ""
#. js-lingui-id: WHiaOl
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/playground/SettingsRestPlayground.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "REST"
@@ -13332,6 +13411,7 @@ msgstr ""
#. js-lingui-id: 5dJK4M
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
@@ -13551,7 +13631,7 @@ msgid "Search a role..."
msgstr "Cerca un rol..."
#. js-lingui-id: lJNEce
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Search a skill..."
msgstr "Cerca una habilitat..."
@@ -13567,7 +13647,7 @@ msgid "Search a team member..."
msgstr "Buscar un membre de l'equip..."
#. js-lingui-id: VNmPqQ
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Search a tool..."
msgstr ""
@@ -13883,6 +13963,11 @@ msgstr ""
msgid "See Records on All Objects"
msgstr "Veure registres de tots els objectes"
#. js-lingui-id: eQ3co2
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "See your data structure as an interactive diagram"
msgstr ""
#. js-lingui-id: Hhnssf
#: src/pages/settings/applications/components/SettingsApplicationTableRow.tsx
msgid "Seeded"
@@ -14227,6 +14312,11 @@ msgstr "Configura un camp de selecció a {objectLabel} per crear un Kanban"
msgid "Set up forwarding from the source address to this destination."
msgstr ""
#. js-lingui-id: dq5Wx1
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Set up MCP"
msgstr ""
#. js-lingui-id: 9HNKkV
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
msgid "Set your application configuration variables"
@@ -14387,6 +14477,16 @@ msgstr ""
msgid "Side Panel"
msgstr "Panell lateral"
#. js-lingui-id: uWi2Q+
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Sidebar"
msgstr ""
#. js-lingui-id: 9k9PMD
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Sidebar items"
msgstr ""
#. js-lingui-id: 5lWFkC
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
msgid "Sign in"
@@ -14471,12 +14571,12 @@ msgid "Skill"
msgstr "Habilitat"
#. js-lingui-id: h4t38o
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skill activated"
msgstr "Habilitat activada"
#. js-lingui-id: /IoK74
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skill deleted"
msgstr "Habilitat suprimida"
@@ -14499,7 +14599,9 @@ msgstr ""
#. js-lingui-id: PCSkw2
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skills"
msgstr "Habilitats"
@@ -14724,7 +14826,7 @@ msgid "Stages"
msgstr "Etapes"
#. js-lingui-id: TJBHlP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/applications/hooks/useApplicationChipData.ts
msgid "Standard"
@@ -15137,8 +15239,8 @@ msgstr ""
#: src/pages/settings/ai/SettingsAiPrompts.tsx
#: src/pages/settings/ai/SettingsAiPrompts.tsx
#: src/pages/settings/ai/forms/components/SettingsAiAgentForm.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
msgid "System Prompt"
msgstr "Indicador del Sistema"
@@ -15220,6 +15322,7 @@ msgstr "Títol de la tasca"
#. js-lingui-id: KM6m8p
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Team"
msgstr ""
@@ -15338,6 +15441,11 @@ msgid ""
"See the [Getting Started guide](https://twenty.com/developers/extend/apps/getting-started) for the full walkthrough, and [Building Apps](https://twenty.com/developers/extend/apps/building) for the `defineApplication` / `defineEntity` APIs."
msgstr ""
#. js-lingui-id: n+CCXl
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "The default AI model used for chats, agents, and workflows"
msgstr ""
#. js-lingui-id: 1xQkU9
#: src/modules/settings/data-model/fields/forms/phones/components/SettingsDataModelFieldPhonesForm.tsx
msgid "The default country code for new phone numbers."
@@ -15900,7 +16008,7 @@ msgid "Tool calls made"
msgstr "Crides a eines efectuades"
#. js-lingui-id: SrWh42
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/hooks/useCreateTool.ts
msgid "Tool created"
msgstr "Eina creada"
@@ -15921,7 +16029,9 @@ msgstr "Generació d'eines"
#. js-lingui-id: xdA/+p
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Tools"
msgstr "Eines"
@@ -16067,11 +16177,10 @@ msgstr ""
msgid "True"
msgstr "Cert"
#. js-lingui-id: haaL9N
#. js-lingui-id: 64tOpZ
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Try our REST or GraphQL API playgrounds."
msgstr "Proveu les nostres àrees de prova de l'API REST o GraphQL."
msgid "Try our REST or GraphQL API playgrounds"
msgstr ""
#. js-lingui-id: 3WWUB9
#: src/pages/settings/updates/SettingsUpdates.tsx
@@ -16738,9 +16847,13 @@ msgstr "Utilitza aplicacions d'autenticació i extensions de navegador com 1Pass
msgid "Use best models only"
msgstr "Utilitzar només els millors models"
#. js-lingui-id: 5ZehS/
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Use filter to see existing skills or create your own"
msgstr ""
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
@@ -17102,7 +17215,9 @@ msgstr "Veure els registres d'activitat de l'espai de treball"
#. js-lingui-id: 1I6UoR
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr "Vistes"
@@ -17155,10 +17270,15 @@ msgid "Visible to you"
msgstr "Visible per a tu"
#. js-lingui-id: 6n7jtr
#: src/modules/settings/data-model/objects/components/SettingsObjectCoverImage.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Visualize"
msgstr "Visualitzar"
#. js-lingui-id: VvM/Ty
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Visualize data model"
msgstr ""
#. js-lingui-id: uUehLT
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Waiting"
@@ -17194,6 +17314,41 @@ msgstr "va ser eliminat per"
msgid "was restored by"
msgstr "va ser restaurat per"
#. js-lingui-id: 0WPnTI
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Watch AI demo"
msgstr ""
#. js-lingui-id: 5qU4Mu
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
msgid "Watch API demo"
msgstr ""
#. js-lingui-id: inpQ46
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Watch apps demo"
msgstr ""
#. js-lingui-id: uIrZTC
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Watch customization demo"
msgstr ""
#. js-lingui-id: syeoTg
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Watch data model demo"
msgstr ""
#. js-lingui-id: egkNh9
#: src/modules/settings/components/SettingsDiscoveryHeroCard.tsx
msgid "Watch demo"
msgstr ""
#. js-lingui-id: 6ZDYQy
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Watch members demo"
msgstr ""
#. js-lingui-id: 6eMAkI
#: src/modules/auth/sign-in-up/components/EmailVerificationSent.tsx
msgid "We encountered an issue verifying"
@@ -17281,6 +17436,7 @@ msgstr "És necessari un ID de webhook per a les actualitzacions"
#. js-lingui-id: v1kQyJ
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
@@ -17336,6 +17492,11 @@ msgstr "En què et puc ajudar?"
msgid "What this API can do: Select a user role to define its permissions."
msgstr "Què pot fer aquesta API: Seleccioneu un rol d\\'usuari per definir-ne els permisos."
#. js-lingui-id: drC+Tq
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "What's installed and being used in your workspace"
msgstr ""
#. js-lingui-id: m7GziZ
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "When a deal's stage changes to Closed Won, create a task assigned to the deal owner, due 7 days after the close date, with title \"Post-sale check-in\" and the company name in the description."
@@ -17395,6 +17556,11 @@ msgstr "Tipus de widget"
msgid "widgets"
msgstr ""
#. js-lingui-id: tL6W2K
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Widgets"
msgstr ""
#. js-lingui-id: j6ncOZ
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowEditActionIterator.tsx
msgid "Will continue to the next iteration even if the current one fails"
@@ -17464,6 +17630,7 @@ msgstr "Fluxos de treball"
#: src/pages/settings/members/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/layout/components/SettingsLayoutDetailScaffold.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
@@ -17473,7 +17640,6 @@ msgstr "Fluxos de treball"
#: src/pages/settings/developers/playground/SettingsGraphQLPlayground.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -17553,8 +17719,8 @@ msgid "Workspace Info"
msgstr "Informació de l'espai de treball"
#. js-lingui-id: BYrMT0
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Workspace Instructions"
msgstr "Instruccions de l'espai de treball"
+247 -81
View File
@@ -954,7 +954,6 @@ msgstr "Aktivní"
#. js-lingui-id: Mue4oc
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Active API keys created by you or your team."
msgstr "Aktivní API klíče vytvořené vámi nebo vaším týmem."
@@ -1051,11 +1050,6 @@ msgstr ""
msgid "Add custom endpoints, private gateways, or additional regions."
msgstr "Přidejte vlastní koncové body, privátní brány nebo další regiony."
#. js-lingui-id: GuJvBr
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
msgid "Add custom instructions specific to your workspace (appended to system prompt)"
msgstr "Přidejte vlastní pokyny specifické pro váš pracovní prostor (připojené k systémovému promptu)"
#. js-lingui-id: 4JviOV
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
@@ -1293,6 +1287,11 @@ msgstr "Přidat do seznamu blokovaných"
msgid "Add to Favorite"
msgstr "Přidat do oblíbených"
#. js-lingui-id: VbareD
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Add Twenty as a Model Context Protocol (MCP) server. Paste this config into Claude Desktop, Cursor, Cline, Continue, Zed, or any other MCP-aware client."
msgstr ""
#. js-lingui-id: XnwceV
#: src/pages/settings/applications/components/SettingsApplicationRegistrationRedirectURIsInput.tsx
msgid "Add URI"
@@ -1775,6 +1774,11 @@ msgstr "Všechny úkoly vyřízeny. Udržujte tempo."
msgid "All the applications currently installed on this workspace"
msgstr ""
#. js-lingui-id: xP6s/m
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "All the layout items declared on your workspace"
msgstr ""
#. js-lingui-id: XuuWVF
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
msgid "All the standard objects"
@@ -1967,11 +1971,6 @@ msgstr "Došlo k interní chybě při ověřování vašich změn. Prosím, kont
msgid "An object with this name already exists"
msgstr "Objekt s tímto názvem již existuje"
#. js-lingui-id: lxentK
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "An unexpected error occurred"
msgstr "Došlo k neočekávané chybě"
#. js-lingui-id: byKna+
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
msgid "An unexpected error occurred. Please try again."
@@ -2016,6 +2015,7 @@ msgid "Anyone with an email address at these domains is allowed to sign up for t
msgstr "Kdokoli s e-mailovou adresou na těchto doménách se může přihlásit do tohoto pracovního prostoru."
#. js-lingui-id: OZtEcz
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "API"
msgstr "API"
@@ -2033,7 +2033,6 @@ msgstr "API & Webhooks"
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "API Key"
msgstr "API klíč"
@@ -2063,7 +2062,6 @@ msgid "API key roles"
msgstr ""
#. js-lingui-id: 5h8ooz
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
msgid "API keys"
msgstr "API klíče"
@@ -2104,12 +2102,6 @@ msgstr "API název (jednotné číslo)"
msgid "API values"
msgstr "Hodnoty API"
#. js-lingui-id: JR6nY7
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "APIs"
msgstr "API"
#. js-lingui-id: ZZAOwb
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
@@ -2131,7 +2123,7 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
msgid "App"
msgstr "Aplikace"
@@ -2481,6 +2473,11 @@ msgstr "v {remainingTimes} a {lastTime}"
msgid "at 1 minute past the hour"
msgstr "v 1 minutě po hodině"
#. js-lingui-id: ooA+hm
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "At a glance"
msgstr ""
#. js-lingui-id: vyXyF0
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
msgid "At a specific date or time"
@@ -2645,11 +2642,15 @@ msgid "Availability"
msgstr "Dostupnost"
#. js-lingui-id: csDS2L
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
msgid "Available"
msgstr "Dostupný"
#. js-lingui-id: STA+22
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Available models"
msgstr ""
#. js-lingui-id: oD38t2
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Available tools"
@@ -2865,6 +2866,11 @@ msgstr "Bronzová"
msgid "Brown"
msgstr "Hnědá"
#. js-lingui-id: O2UpM1
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Browse"
msgstr ""
#. js-lingui-id: GsXRxc
#: src/modules/settings/data-model/indexes/forms/components/SettingsObjectIndexOptionsForm.tsx
msgid "BTREE (default, good for sorting and equality)"
@@ -3615,6 +3621,11 @@ msgstr "Příkaz zkopírován do schránky"
msgid "Command Icon"
msgstr "Ikona příkazu"
#. js-lingui-id: V1zWD4
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Command menu"
msgstr ""
#. js-lingui-id: PUMdxH
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
msgid "Command Menu"
@@ -3642,6 +3653,11 @@ msgstr ""
msgid "commands"
msgstr ""
#. js-lingui-id: 45MZFs
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Commands"
msgstr ""
#. js-lingui-id: 4XlFx/
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Commands copied to clipboard"
@@ -3808,11 +3824,6 @@ msgstr "Nakonfigurujte tyto DNS záznamy u svého poskytovatele domény"
msgid "Configure this widget to display fields"
msgstr "Nakonfigurujte tento widget, aby zobrazoval pole."
#. js-lingui-id: hzDiM0
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Configure your default AI model"
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -3886,6 +3897,11 @@ msgstr ""
msgid "Connect a new account to your workspace"
msgstr "Připojte nový účet k vašemu pracovnímu prostoru"
#. js-lingui-id: vPCRNy
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Connect AI assistants like Claude or Cursor to your workspace via the Model Context Protocol"
msgstr ""
#. js-lingui-id: YLx3sC
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect via IMAP/SMTP"
@@ -3901,6 +3917,11 @@ msgstr "Připojit s Google"
msgid "Connect with Microsoft"
msgstr "Připojit s Microsoft"
#. js-lingui-id: iZWbGJ
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Connect your AI assistant"
msgstr ""
#. js-lingui-id: QHcLEN
#: src/pages/settings/applications/SettingsApplicationConnectionDetail.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationConnectionsSection.tsx
@@ -4066,6 +4087,11 @@ msgstr "Ovládat, ke kterým typům entit může být tato role přiřazena"
msgid "Conversation"
msgstr "Konverzace"
#. js-lingui-id: EnJuK0
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Conversations"
msgstr ""
#. js-lingui-id: HRGl1X
#: src/pages/onboarding/CreateProfile.tsx
#: src/modules/settings/profile/components/NameFields.tsx
@@ -4104,6 +4130,11 @@ msgstr "Kopírovat příkaz"
msgid "Copy commands"
msgstr "Kopírovat příkazy"
#. js-lingui-id: eaZgIQ
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Copy config"
msgstr ""
#. js-lingui-id: 7eVkEH
#: src/pages/onboarding/InviteTeam.tsx
msgid "Copy invitation link"
@@ -4216,6 +4247,11 @@ msgstr "Nelze otevřít fakturační portál. Zkontrolujte, zda je váš klíč
msgid "Could not open Stripe. Please contact support."
msgstr "Nelze otevřít Stripe. Kontaktujte podporu."
#. js-lingui-id: 6wi9Nf
#: src/modules/settings/playground/hooks/useOpenPlayground.ts
msgid "Could not open the API playground"
msgstr ""
#. js-lingui-id: wVw4Am
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not refresh validity token. Please contact support."
@@ -4340,7 +4376,6 @@ msgstr "Vytvořit a nakonfigurovat AI agenty"
#. js-lingui-id: uXGLuq
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Create API key"
msgstr "Vytvořit API klíč"
@@ -4625,7 +4660,7 @@ msgstr "Současný člen pracovního prostoru nebyl nalezen."
#. js-lingui-id: 8Tg/JR
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/applications/hooks/useApplicationChipData.ts
@@ -4650,6 +4685,11 @@ msgstr "Vlastní doména"
msgid "Custom domain updated"
msgstr "Vlastní doména aktualizována"
#. js-lingui-id: c6P+Xe
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Custom instructions appended to every system prompt"
msgstr ""
#. js-lingui-id: 87ZNeX
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
msgid "Custom model ID"
@@ -4692,6 +4732,7 @@ msgid "Customization"
msgstr "Přizpůsobení"
#. js-lingui-id: srRMnJ
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectLayout.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
@@ -4788,6 +4829,11 @@ msgstr "Tmavý"
msgid "Dashboard duplicated successfully"
msgstr "Ovládací panel byl úspěšně duplikován"
#. js-lingui-id: w6iIMm
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Dashboards"
msgstr ""
#. js-lingui-id: HKH+W+
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
@@ -4988,7 +5034,7 @@ msgstr "Deaktivovat toto pole"
#. js-lingui-id: yAT3be
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
@@ -5015,7 +5061,6 @@ msgstr ""
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
msgid "Default"
@@ -5031,6 +5076,11 @@ msgstr "Výchozí země"
msgid "Default Country Code"
msgstr "Výchozí číselný kód země"
#. js-lingui-id: OtTlfU
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Default model"
msgstr ""
#. js-lingui-id: hUWaAk
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
msgid "Default model for chats and complex reasoning"
@@ -5473,6 +5523,11 @@ msgstr "Podrobnosti"
msgid "Detected application version running on this instance"
msgstr ""
#. js-lingui-id: QYXe1O
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Develop"
msgstr ""
#. js-lingui-id: 7aDnUb
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Developer"
@@ -5564,7 +5619,6 @@ msgstr "Neimportovat"
#. js-lingui-id: TvY/XA
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
msgid "Documentation"
@@ -5768,7 +5822,7 @@ msgid "e.g. OpenAI EU"
msgstr "např. OpenAI EU"
#. js-lingui-id: p5P8NB
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
msgstr "Např.: \"Jsme B2B SaaS společnost. Vždy používejte formální jazyk...\""
@@ -6114,6 +6168,8 @@ msgstr "Zaměstnanci"
#. js-lingui-id: N2S1rs
#: src/modules/object-record/record-inline-cell/components/RecordInlineCellDisplayMode.tsx
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRelationFieldDiffValues.tsx
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRelationFieldDiffValues.tsx
#: src/modules/activities/timeline-activities/rows/main-object/components/EventFieldDiff.tsx
msgid "Empty"
msgstr "Prázdné"
@@ -6428,11 +6484,6 @@ msgstr "Zadejte hodnotu"
msgid "Enter values, comma-separated"
msgstr "Zadejte hodnoty, oddělené čárkami"
#. js-lingui-id: OjkRLQ
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "Enter your API key"
msgstr "Zadejte svůj klíč API"
#. js-lingui-id: GpB8YV
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -6988,7 +7039,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
msgstr "Aktivace licence Enterprise se nezdařila. Zkontrolujte svůj klíč nebo kontaktujte podporu."
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Failed to activate skill"
msgstr "Nepodařilo se aktivovat dovednost"
@@ -7007,11 +7058,6 @@ msgstr "Nepodařilo se přidat poskytovatele"
msgid "Failed to create email handle. Email handles may not be configured on this server."
msgstr ""
#. js-lingui-id: WM7GKt
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Failed to create tool"
msgstr "Nepodařilo se vytvořit nástroj"
#. js-lingui-id: lWoewm
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Failed to delete email handle."
@@ -7023,7 +7069,7 @@ msgid "Failed to delete jobs. Please try again later."
msgstr "Nelze smazat úlohy. Prosím, zkuste to znovu později."
#. js-lingui-id: bmwWKk
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Failed to delete skill"
msgstr "Nepodařilo se smazat dovednost"
@@ -7126,7 +7172,7 @@ msgid "Failed to save role permissions: {errorMessage}"
msgstr ""
#. js-lingui-id: 9ryUyP
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Failed to save workspace instructions"
msgstr "Nepodařilo se uložit pokyny pracovního prostoru"
@@ -7152,13 +7198,13 @@ msgid "Failed to update default model"
msgstr "Nepodařilo se aktualizovat výchozí model"
#. js-lingui-id: 1R13Ov
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
msgid "Failed to update model"
msgstr "Nepodařilo se aktualizovat model"
#. js-lingui-id: W7Ff/4
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Failed to update model availability"
@@ -7175,7 +7221,7 @@ msgid "Failed to update model recommendations"
msgstr ""
#. js-lingui-id: rCUG3c
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
msgid "Failed to update model selection mode"
msgstr "Nepodařilo se aktualizovat režim výběru modelu"
@@ -7334,6 +7380,7 @@ msgstr "pole"
#. js-lingui-id: vF68cg
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
#: src/pages/settings/data-model/new-index/SettingsObjectNewIndex.tsx
@@ -7868,6 +7915,7 @@ msgid "Grants permission to perform all available actions without restriction"
msgstr "Uděluje povolení provádět všechny dostupné akce bez omezení"
#. js-lingui-id: gBiL6J
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "GraphQL"
msgstr "GraphQL"
@@ -8550,6 +8598,7 @@ msgid "Insert a JSON input, then press \"Run Function\"."
msgstr ""
#. js-lingui-id: TKQ7K+
#: src/pages/settings/applications/SettingsApplications.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationRegistrationShareLinkButtons.tsx
msgid "Install"
@@ -8630,11 +8679,6 @@ msgstr "Přepínání intervalu bylo zrušeno."
msgid "Invalid 2FA information."
msgstr "Neplatné informace o 2FA."
#. js-lingui-id: GNRDhm
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "Invalid API key"
msgstr "Neplatný API klíč"
#. js-lingui-id: 9TgH9p
#: src/modules/settings/security/components/SettingsSecurityAuthBypassOptionsList.tsx
msgid "Invalid auth bypass provider"
@@ -8754,6 +8798,7 @@ msgstr "Pozvánky"
#. js-lingui-id: MFKlMB
#: src/utils/title-utils.ts
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/modules/workspace/components/WorkspaceInviteTeam.tsx
msgid "Invite"
msgstr "Pozvat"
@@ -9232,12 +9277,15 @@ msgid "Launch manually"
msgstr "Spustit ručně"
#. js-lingui-id: rdU729
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -9693,6 +9741,11 @@ msgstr ""
msgid "Manage Members"
msgstr "Spravovat členy"
#. js-lingui-id: LNz5UW
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Manage objects, fields and relationships"
msgstr ""
#. js-lingui-id: eGGH1l
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Manage security policies"
@@ -9729,7 +9782,7 @@ msgid "Manage your internet accounts."
msgstr "Spravujte své internetové účty."
#. js-lingui-id: waFx9W
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Managed"
msgstr ""
@@ -9807,12 +9860,23 @@ msgstr "Maximální počet URL"
msgid "Maximum values"
msgstr "Maximální počet hodnot"
#. js-lingui-id: nA8kxD
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
msgid "MCP"
msgstr ""
#. js-lingui-id: 2jj0eo
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "MCP config copied to clipboard"
msgstr ""
#. js-lingui-id: NvQoNb
#: src/pages/settings/ai/components/SettingsAiMCP.tsx
msgid "MCP Configuration copied to clipboard"
msgstr "Konfigurace MCP zkopírována do schránky"
#. js-lingui-id: 8CWirf
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiMCP.tsx
msgid "MCP Server"
msgstr "MCP Server"
@@ -10019,6 +10083,7 @@ msgstr "ID modelu je povinné"
#. js-lingui-id: //nm2/
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Models"
msgstr "Modely"
@@ -10086,7 +10151,6 @@ msgid "months"
msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
msgid "More"
msgstr "Více"
@@ -10235,8 +10299,8 @@ msgstr ""
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTable.tsx
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
@@ -11417,6 +11481,7 @@ msgstr "objekty"
#. js-lingui-id: B3toQF
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
@@ -11805,7 +11870,9 @@ msgid "Override Draft"
msgstr "Přepsat koncept"
#. js-lingui-id: 6/dCYd
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Overview"
msgstr "Přehled"
@@ -11879,6 +11946,11 @@ msgstr "Stránka nenalezena | Twenty"
msgid "Page Views"
msgstr "Zobrazení stránek"
#. js-lingui-id: wRR604
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Pages"
msgstr ""
#. js-lingui-id: ijBN4V
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "paragraph"
@@ -12592,18 +12664,18 @@ msgid "Read documentation"
msgstr "Přečtěte si dokumentaci"
#. js-lingui-id: U26cMX
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read system prompts"
msgstr ""
#. js-lingui-id: EKsFda
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read the system prompts to understand how the AI works"
msgstr ""
#. js-lingui-id: 0URVx8
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1, }, )
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1 }, )
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read the system prompts to understand how the AI works (~{0} tokens)"
msgstr ""
@@ -12732,6 +12804,11 @@ msgstr "Záznamový obrázek"
msgid "Record label"
msgstr "Záznamový popisek"
#. js-lingui-id: XueM/X
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Record page"
msgstr ""
#. js-lingui-id: mAHjRd
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutOpenInContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -12850,6 +12927,7 @@ msgid "Relation type"
msgstr "Typ vztahu"
#. js-lingui-id: g87L9j
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
#: src/modules/activities/inline-cell/components/ActivityTargetsInlineCell.tsx
msgid "Relations"
@@ -13162,6 +13240,7 @@ msgid "Response Format"
msgstr ""
#. js-lingui-id: WHiaOl
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/playground/SettingsRestPlayground.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "REST"
@@ -13332,6 +13411,7 @@ msgstr ""
#. js-lingui-id: 5dJK4M
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
@@ -13551,7 +13631,7 @@ msgid "Search a role..."
msgstr "Vyhledat roli..."
#. js-lingui-id: lJNEce
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Search a skill..."
msgstr "Vyhledat dovednost..."
@@ -13567,7 +13647,7 @@ msgid "Search a team member..."
msgstr "Vyhledávejte člena týmu..."
#. js-lingui-id: VNmPqQ
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Search a tool..."
msgstr ""
@@ -13883,6 +13963,11 @@ msgstr ""
msgid "See Records on All Objects"
msgstr "Zobrazit záznamy na všech objektech"
#. js-lingui-id: eQ3co2
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "See your data structure as an interactive diagram"
msgstr ""
#. js-lingui-id: Hhnssf
#: src/pages/settings/applications/components/SettingsApplicationTableRow.tsx
msgid "Seeded"
@@ -14227,6 +14312,11 @@ msgstr "Nastavte u {objectLabel} pole Výběr pro vytvoření Kanbanu"
msgid "Set up forwarding from the source address to this destination."
msgstr ""
#. js-lingui-id: dq5Wx1
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Set up MCP"
msgstr ""
#. js-lingui-id: 9HNKkV
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
msgid "Set your application configuration variables"
@@ -14387,6 +14477,16 @@ msgstr ""
msgid "Side Panel"
msgstr "Postranní panel"
#. js-lingui-id: uWi2Q+
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Sidebar"
msgstr ""
#. js-lingui-id: 9k9PMD
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Sidebar items"
msgstr ""
#. js-lingui-id: 5lWFkC
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
msgid "Sign in"
@@ -14471,12 +14571,12 @@ msgid "Skill"
msgstr "Dovednost"
#. js-lingui-id: h4t38o
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skill activated"
msgstr "Dovednost aktivována"
#. js-lingui-id: /IoK74
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skill deleted"
msgstr "Dovednost smazána"
@@ -14499,7 +14599,9 @@ msgstr ""
#. js-lingui-id: PCSkw2
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skills"
msgstr "Dovednosti"
@@ -14724,7 +14826,7 @@ msgid "Stages"
msgstr "Etapy"
#. js-lingui-id: TJBHlP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/applications/hooks/useApplicationChipData.ts
msgid "Standard"
@@ -15137,8 +15239,8 @@ msgstr ""
#: src/pages/settings/ai/SettingsAiPrompts.tsx
#: src/pages/settings/ai/SettingsAiPrompts.tsx
#: src/pages/settings/ai/forms/components/SettingsAiAgentForm.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
msgid "System Prompt"
msgstr "Systémová výzva"
@@ -15220,6 +15322,7 @@ msgstr "Název úkolu"
#. js-lingui-id: KM6m8p
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Team"
msgstr ""
@@ -15338,6 +15441,11 @@ msgid ""
"See the [Getting Started guide](https://twenty.com/developers/extend/apps/getting-started) for the full walkthrough, and [Building Apps](https://twenty.com/developers/extend/apps/building) for the `defineApplication` / `defineEntity` APIs."
msgstr ""
#. js-lingui-id: n+CCXl
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "The default AI model used for chats, agents, and workflows"
msgstr ""
#. js-lingui-id: 1xQkU9
#: src/modules/settings/data-model/fields/forms/phones/components/SettingsDataModelFieldPhonesForm.tsx
msgid "The default country code for new phone numbers."
@@ -15900,7 +16008,7 @@ msgid "Tool calls made"
msgstr "Provedená volání nástrojů"
#. js-lingui-id: SrWh42
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/hooks/useCreateTool.ts
msgid "Tool created"
msgstr "Nástroj byl vytvořen"
@@ -15921,7 +16029,9 @@ msgstr "Generování nástrojů"
#. js-lingui-id: xdA/+p
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Tools"
msgstr "Nástroje"
@@ -16067,11 +16177,10 @@ msgstr ""
msgid "True"
msgstr "Pravda"
#. js-lingui-id: haaL9N
#. js-lingui-id: 64tOpZ
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Try our REST or GraphQL API playgrounds."
msgstr "Vyzkoušejte naše REST nebo GraphQL API sandboxy."
msgid "Try our REST or GraphQL API playgrounds"
msgstr ""
#. js-lingui-id: 3WWUB9
#: src/pages/settings/updates/SettingsUpdates.tsx
@@ -16738,9 +16847,13 @@ msgstr "Používejte autentizační aplikace a rozšíření prohlížeče jako
msgid "Use best models only"
msgstr "Používat pouze nejlepší modely"
#. js-lingui-id: 5ZehS/
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Use filter to see existing skills or create your own"
msgstr ""
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
@@ -17102,7 +17215,9 @@ msgstr "Zobrazit protokoly aktivit pracovního prostoru"
#. js-lingui-id: 1I6UoR
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr "Zobrazení"
@@ -17155,10 +17270,15 @@ msgid "Visible to you"
msgstr "Viditelné pro vás"
#. js-lingui-id: 6n7jtr
#: src/modules/settings/data-model/objects/components/SettingsObjectCoverImage.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Visualize"
msgstr "Vizualizovat"
#. js-lingui-id: VvM/Ty
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Visualize data model"
msgstr ""
#. js-lingui-id: uUehLT
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Waiting"
@@ -17194,6 +17314,41 @@ msgstr "byl smazán"
msgid "was restored by"
msgstr "byl obnoven"
#. js-lingui-id: 0WPnTI
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Watch AI demo"
msgstr ""
#. js-lingui-id: 5qU4Mu
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
msgid "Watch API demo"
msgstr ""
#. js-lingui-id: inpQ46
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Watch apps demo"
msgstr ""
#. js-lingui-id: uIrZTC
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Watch customization demo"
msgstr ""
#. js-lingui-id: syeoTg
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Watch data model demo"
msgstr ""
#. js-lingui-id: egkNh9
#: src/modules/settings/components/SettingsDiscoveryHeroCard.tsx
msgid "Watch demo"
msgstr ""
#. js-lingui-id: 6ZDYQy
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Watch members demo"
msgstr ""
#. js-lingui-id: 6eMAkI
#: src/modules/auth/sign-in-up/components/EmailVerificationSent.tsx
msgid "We encountered an issue verifying"
@@ -17281,6 +17436,7 @@ msgstr "Webhook ID je vyžadován pro aktualizaci"
#. js-lingui-id: v1kQyJ
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
@@ -17336,6 +17492,11 @@ msgstr "S čím vám mohu pomoci?"
msgid "What this API can do: Select a user role to define its permissions."
msgstr "Co může tato API dělat: Vyberte roli uživatele pro definování jeho oprávnění."
#. js-lingui-id: drC+Tq
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "What's installed and being used in your workspace"
msgstr ""
#. js-lingui-id: m7GziZ
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "When a deal's stage changes to Closed Won, create a task assigned to the deal owner, due 7 days after the close date, with title \"Post-sale check-in\" and the company name in the description."
@@ -17395,6 +17556,11 @@ msgstr "Typ widgetu"
msgid "widgets"
msgstr ""
#. js-lingui-id: tL6W2K
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Widgets"
msgstr ""
#. js-lingui-id: j6ncOZ
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowEditActionIterator.tsx
msgid "Will continue to the next iteration even if the current one fails"
@@ -17464,6 +17630,7 @@ msgstr "Pracovní postupy"
#: src/pages/settings/members/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/layout/components/SettingsLayoutDetailScaffold.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
@@ -17473,7 +17640,6 @@ msgstr "Pracovní postupy"
#: src/pages/settings/developers/playground/SettingsGraphQLPlayground.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -17553,8 +17719,8 @@ msgid "Workspace Info"
msgstr "Informace o pracovním prostoru"
#. js-lingui-id: BYrMT0
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Workspace Instructions"
msgstr "Pokyny pro pracovní prostor"
+247 -81
View File
@@ -954,7 +954,6 @@ msgstr "Aktiv"
#. js-lingui-id: Mue4oc
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Active API keys created by you or your team."
msgstr "Aktive API-nøgler oprettet af dig eller dit team."
@@ -1051,11 +1050,6 @@ msgstr ""
msgid "Add custom endpoints, private gateways, or additional regions."
msgstr "Tilføj brugerdefinerede slutpunkter, private gateways eller yderligere regioner."
#. js-lingui-id: GuJvBr
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
msgid "Add custom instructions specific to your workspace (appended to system prompt)"
msgstr "Tilføj brugerdefinerede instruktioner, der er specifikke for dit arbejdsområde (tilføjes til systemprompten)"
#. js-lingui-id: 4JviOV
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
@@ -1293,6 +1287,11 @@ msgstr "Tilføj til blokeringsliste"
msgid "Add to Favorite"
msgstr "Tilføj til Favorit"
#. js-lingui-id: VbareD
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Add Twenty as a Model Context Protocol (MCP) server. Paste this config into Claude Desktop, Cursor, Cline, Continue, Zed, or any other MCP-aware client."
msgstr ""
#. js-lingui-id: XnwceV
#: src/pages/settings/applications/components/SettingsApplicationRegistrationRedirectURIsInput.tsx
msgid "Add URI"
@@ -1775,6 +1774,11 @@ msgstr "Alle opgaver er håndteret. Bevar momentum."
msgid "All the applications currently installed on this workspace"
msgstr ""
#. js-lingui-id: xP6s/m
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "All the layout items declared on your workspace"
msgstr ""
#. js-lingui-id: XuuWVF
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
msgid "All the standard objects"
@@ -1967,11 +1971,6 @@ msgstr "Der opstod en intern fejl under validering af dine ændringer. Kontakt v
msgid "An object with this name already exists"
msgstr "Et objekt med dette navn findes allerede"
#. js-lingui-id: lxentK
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "An unexpected error occurred"
msgstr "Der opstod en uventet fejl"
#. js-lingui-id: byKna+
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
msgid "An unexpected error occurred. Please try again."
@@ -2016,6 +2015,7 @@ msgid "Anyone with an email address at these domains is allowed to sign up for t
msgstr "Enhver med en e-mailadresse på disse domæner har tilladelse til at tilmelde sig dette arbejdsområde."
#. js-lingui-id: OZtEcz
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "API"
msgstr "API"
@@ -2033,7 +2033,6 @@ msgstr "API & Webhooks"
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "API Key"
msgstr "API-nøgle"
@@ -2063,7 +2062,6 @@ msgid "API key roles"
msgstr ""
#. js-lingui-id: 5h8ooz
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
msgid "API keys"
msgstr "API-nøgler"
@@ -2104,12 +2102,6 @@ msgstr "API-navn (entalsform)"
msgid "API values"
msgstr "API-værdier"
#. js-lingui-id: JR6nY7
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "APIs"
msgstr "API'er"
#. js-lingui-id: ZZAOwb
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
@@ -2131,7 +2123,7 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
msgid "App"
msgstr "App"
@@ -2481,6 +2473,11 @@ msgstr "kl. {remainingTimes} og {lastTime}"
msgid "at 1 minute past the hour"
msgstr "kl. 1 minut efter time"
#. js-lingui-id: ooA+hm
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "At a glance"
msgstr ""
#. js-lingui-id: vyXyF0
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
msgid "At a specific date or time"
@@ -2645,11 +2642,15 @@ msgid "Availability"
msgstr "Tilgængelighed"
#. js-lingui-id: csDS2L
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
msgid "Available"
msgstr "Tilgængelig"
#. js-lingui-id: STA+22
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Available models"
msgstr ""
#. js-lingui-id: oD38t2
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Available tools"
@@ -2865,6 +2866,11 @@ msgstr "Bronze"
msgid "Brown"
msgstr "Brun"
#. js-lingui-id: O2UpM1
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Browse"
msgstr ""
#. js-lingui-id: GsXRxc
#: src/modules/settings/data-model/indexes/forms/components/SettingsObjectIndexOptionsForm.tsx
msgid "BTREE (default, good for sorting and equality)"
@@ -3615,6 +3621,11 @@ msgstr "Kommando kopieret til udklipsholder"
msgid "Command Icon"
msgstr "Kommando ikon"
#. js-lingui-id: V1zWD4
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Command menu"
msgstr ""
#. js-lingui-id: PUMdxH
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
msgid "Command Menu"
@@ -3642,6 +3653,11 @@ msgstr ""
msgid "commands"
msgstr ""
#. js-lingui-id: 45MZFs
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Commands"
msgstr ""
#. js-lingui-id: 4XlFx/
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Commands copied to clipboard"
@@ -3808,11 +3824,6 @@ msgstr "Konfigurer disse DNS-poster med din domæneudbyder"
msgid "Configure this widget to display fields"
msgstr "Konfigurer denne widget til at vise felter"
#. js-lingui-id: hzDiM0
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Configure your default AI model"
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -3886,6 +3897,11 @@ msgstr ""
msgid "Connect a new account to your workspace"
msgstr "Tilslut en ny konto til dit arbejdsområde"
#. js-lingui-id: vPCRNy
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Connect AI assistants like Claude or Cursor to your workspace via the Model Context Protocol"
msgstr ""
#. js-lingui-id: YLx3sC
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect via IMAP/SMTP"
@@ -3901,6 +3917,11 @@ msgstr "Forbind med Google"
msgid "Connect with Microsoft"
msgstr "Forbind med Microsoft"
#. js-lingui-id: iZWbGJ
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Connect your AI assistant"
msgstr ""
#. js-lingui-id: QHcLEN
#: src/pages/settings/applications/SettingsApplicationConnectionDetail.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationConnectionsSection.tsx
@@ -4066,6 +4087,11 @@ msgstr "Kontrollér, hvilke typer entiteter denne rolle kan tildeles til"
msgid "Conversation"
msgstr "Samtale"
#. js-lingui-id: EnJuK0
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Conversations"
msgstr ""
#. js-lingui-id: HRGl1X
#: src/pages/onboarding/CreateProfile.tsx
#: src/modules/settings/profile/components/NameFields.tsx
@@ -4104,6 +4130,11 @@ msgstr "Kopiér kommando"
msgid "Copy commands"
msgstr "Kopiér kommandoer"
#. js-lingui-id: eaZgIQ
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Copy config"
msgstr ""
#. js-lingui-id: 7eVkEH
#: src/pages/onboarding/InviteTeam.tsx
msgid "Copy invitation link"
@@ -4216,6 +4247,11 @@ msgstr "Kunne ikke åbne faktureringsportalen. Kontrollér, at din Enterprise-n
msgid "Could not open Stripe. Please contact support."
msgstr "Kunne ikke åbne Stripe. Kontakt support."
#. js-lingui-id: 6wi9Nf
#: src/modules/settings/playground/hooks/useOpenPlayground.ts
msgid "Could not open the API playground"
msgstr ""
#. js-lingui-id: wVw4Am
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not refresh validity token. Please contact support."
@@ -4340,7 +4376,6 @@ msgstr "Opret og konfigurer AI-agenter"
#. js-lingui-id: uXGLuq
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Create API key"
msgstr "Opret API nøgle"
@@ -4625,7 +4660,7 @@ msgstr "Nuværende arbejdsområde medlem ikke fundet."
#. js-lingui-id: 8Tg/JR
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/applications/hooks/useApplicationChipData.ts
@@ -4650,6 +4685,11 @@ msgstr "Brugerdefineret domæne"
msgid "Custom domain updated"
msgstr "Brugerdefineret domæne opdateret"
#. js-lingui-id: c6P+Xe
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Custom instructions appended to every system prompt"
msgstr ""
#. js-lingui-id: 87ZNeX
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
msgid "Custom model ID"
@@ -4692,6 +4732,7 @@ msgid "Customization"
msgstr "Tilpasning"
#. js-lingui-id: srRMnJ
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectLayout.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
@@ -4788,6 +4829,11 @@ msgstr "Mørk"
msgid "Dashboard duplicated successfully"
msgstr "Dashboard duplikeret med succes"
#. js-lingui-id: w6iIMm
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Dashboards"
msgstr ""
#. js-lingui-id: HKH+W+
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
@@ -4988,7 +5034,7 @@ msgstr "Deaktiver dette felt"
#. js-lingui-id: yAT3be
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
@@ -5015,7 +5061,6 @@ msgstr ""
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
msgid "Default"
@@ -5031,6 +5076,11 @@ msgstr "Standardland"
msgid "Default Country Code"
msgstr "Standardlandekode"
#. js-lingui-id: OtTlfU
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Default model"
msgstr ""
#. js-lingui-id: hUWaAk
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
msgid "Default model for chats and complex reasoning"
@@ -5473,6 +5523,11 @@ msgstr "Detaljer"
msgid "Detected application version running on this instance"
msgstr ""
#. js-lingui-id: QYXe1O
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Develop"
msgstr ""
#. js-lingui-id: 7aDnUb
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Developer"
@@ -5564,7 +5619,6 @@ msgstr "Importér ikke"
#. js-lingui-id: TvY/XA
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
msgid "Documentation"
@@ -5768,7 +5822,7 @@ msgid "e.g. OpenAI EU"
msgstr "f.eks. OpenAI EU"
#. js-lingui-id: p5P8NB
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
msgstr "F.eks.: \"Vi er en B2B SaaS-virksomhed. Brug altid formelt sprog...\""
@@ -6114,6 +6168,8 @@ msgstr "Medarbejdere"
#. js-lingui-id: N2S1rs
#: src/modules/object-record/record-inline-cell/components/RecordInlineCellDisplayMode.tsx
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRelationFieldDiffValues.tsx
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRelationFieldDiffValues.tsx
#: src/modules/activities/timeline-activities/rows/main-object/components/EventFieldDiff.tsx
msgid "Empty"
msgstr "Tom"
@@ -6428,11 +6484,6 @@ msgstr "Indtast værdi"
msgid "Enter values, comma-separated"
msgstr ""
#. js-lingui-id: OjkRLQ
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "Enter your API key"
msgstr "Indtast din API-nøgle"
#. js-lingui-id: GpB8YV
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -6988,7 +7039,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
msgstr "Kunne ikke aktivere Enterprise-licensen. Kontrollér din nøgle, eller kontakt support."
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Failed to activate skill"
msgstr "Kunne ikke aktivere færdighed"
@@ -7007,11 +7058,6 @@ msgstr "Kunne ikke tilføje udbyder"
msgid "Failed to create email handle. Email handles may not be configured on this server."
msgstr ""
#. js-lingui-id: WM7GKt
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Failed to create tool"
msgstr "Kunne ikke oprette værktøj"
#. js-lingui-id: lWoewm
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Failed to delete email handle."
@@ -7023,7 +7069,7 @@ msgid "Failed to delete jobs. Please try again later."
msgstr "Kunne ikke slette jobs. Prøv venligst igen senere."
#. js-lingui-id: bmwWKk
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Failed to delete skill"
msgstr "Kunne ikke slette færdighed"
@@ -7126,7 +7172,7 @@ msgid "Failed to save role permissions: {errorMessage}"
msgstr ""
#. js-lingui-id: 9ryUyP
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Failed to save workspace instructions"
msgstr "Kunne ikke gemme instruktioner for arbejdsområdet"
@@ -7152,13 +7198,13 @@ msgid "Failed to update default model"
msgstr "Kunne ikke opdatere standardmodellen"
#. js-lingui-id: 1R13Ov
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
msgid "Failed to update model"
msgstr "Kunne ikke opdatere modellen"
#. js-lingui-id: W7Ff/4
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Failed to update model availability"
@@ -7175,7 +7221,7 @@ msgid "Failed to update model recommendations"
msgstr ""
#. js-lingui-id: rCUG3c
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
msgid "Failed to update model selection mode"
msgstr "Kunne ikke opdatere tilstand for modelvalg"
@@ -7334,6 +7380,7 @@ msgstr "felter"
#. js-lingui-id: vF68cg
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
#: src/pages/settings/data-model/new-index/SettingsObjectNewIndex.tsx
@@ -7868,6 +7915,7 @@ msgid "Grants permission to perform all available actions without restriction"
msgstr "Giver tilladelse til at udføre alle tilgængelige handlinger uden begrænsning"
#. js-lingui-id: gBiL6J
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "GraphQL"
msgstr "GraphQL"
@@ -8550,6 +8598,7 @@ msgid "Insert a JSON input, then press \"Run Function\"."
msgstr ""
#. js-lingui-id: TKQ7K+
#: src/pages/settings/applications/SettingsApplications.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationRegistrationShareLinkButtons.tsx
msgid "Install"
@@ -8630,11 +8679,6 @@ msgstr "Intervalskift er blevet annulleret."
msgid "Invalid 2FA information."
msgstr "Ugyldige 2FA-oplysninger."
#. js-lingui-id: GNRDhm
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "Invalid API key"
msgstr "Ugyldig API-nøgle"
#. js-lingui-id: 9TgH9p
#: src/modules/settings/security/components/SettingsSecurityAuthBypassOptionsList.tsx
msgid "Invalid auth bypass provider"
@@ -8754,6 +8798,7 @@ msgstr "Invitationer"
#. js-lingui-id: MFKlMB
#: src/utils/title-utils.ts
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/modules/workspace/components/WorkspaceInviteTeam.tsx
msgid "Invite"
msgstr "Inviter"
@@ -9232,12 +9277,15 @@ msgid "Launch manually"
msgstr "Start manuelt"
#. js-lingui-id: rdU729
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -9693,6 +9741,11 @@ msgstr ""
msgid "Manage Members"
msgstr "Administrer medlemmer"
#. js-lingui-id: LNz5UW
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Manage objects, fields and relationships"
msgstr ""
#. js-lingui-id: eGGH1l
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Manage security policies"
@@ -9729,7 +9782,7 @@ msgid "Manage your internet accounts."
msgstr "Administrer dine internetkonti."
#. js-lingui-id: waFx9W
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Managed"
msgstr ""
@@ -9807,12 +9860,23 @@ msgstr "Maksimalt antal URLs"
msgid "Maximum values"
msgstr "Maksimalt antal værdier"
#. js-lingui-id: nA8kxD
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
msgid "MCP"
msgstr ""
#. js-lingui-id: 2jj0eo
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "MCP config copied to clipboard"
msgstr ""
#. js-lingui-id: NvQoNb
#: src/pages/settings/ai/components/SettingsAiMCP.tsx
msgid "MCP Configuration copied to clipboard"
msgstr "MCP-konfiguration kopieret til udklipsholder"
#. js-lingui-id: 8CWirf
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiMCP.tsx
msgid "MCP Server"
msgstr "MCP-Server"
@@ -10019,6 +10083,7 @@ msgstr "Model-id er påkrævet"
#. js-lingui-id: //nm2/
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Models"
msgstr "Modeller"
@@ -10086,7 +10151,6 @@ msgid "months"
msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
msgid "More"
msgstr "Mere"
@@ -10235,8 +10299,8 @@ msgstr ""
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTable.tsx
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
@@ -11417,6 +11481,7 @@ msgstr "objekter"
#. js-lingui-id: B3toQF
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
@@ -11805,7 +11870,9 @@ msgid "Override Draft"
msgstr "Overskriv kladde"
#. js-lingui-id: 6/dCYd
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Overview"
msgstr "Oversigt"
@@ -11879,6 +11946,11 @@ msgstr "Side ikke fundet | Twenty"
msgid "Page Views"
msgstr "Sidevisninger"
#. js-lingui-id: wRR604
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Pages"
msgstr ""
#. js-lingui-id: ijBN4V
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "paragraph"
@@ -12592,18 +12664,18 @@ msgid "Read documentation"
msgstr "Læs dokumentation"
#. js-lingui-id: U26cMX
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read system prompts"
msgstr ""
#. js-lingui-id: EKsFda
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read the system prompts to understand how the AI works"
msgstr ""
#. js-lingui-id: 0URVx8
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1, }, )
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1 }, )
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read the system prompts to understand how the AI works (~{0} tokens)"
msgstr ""
@@ -12732,6 +12804,11 @@ msgstr "Optag billede"
msgid "Record label"
msgstr "Optag label"
#. js-lingui-id: XueM/X
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Record page"
msgstr ""
#. js-lingui-id: mAHjRd
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutOpenInContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -12850,6 +12927,7 @@ msgid "Relation type"
msgstr "Relationstype"
#. js-lingui-id: g87L9j
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
#: src/modules/activities/inline-cell/components/ActivityTargetsInlineCell.tsx
msgid "Relations"
@@ -13162,6 +13240,7 @@ msgid "Response Format"
msgstr ""
#. js-lingui-id: WHiaOl
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/playground/SettingsRestPlayground.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "REST"
@@ -13332,6 +13411,7 @@ msgstr ""
#. js-lingui-id: 5dJK4M
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
@@ -13551,7 +13631,7 @@ msgid "Search a role..."
msgstr "Søg en rolle..."
#. js-lingui-id: lJNEce
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Search a skill..."
msgstr "Søg efter en færdighed..."
@@ -13567,7 +13647,7 @@ msgid "Search a team member..."
msgstr "Søg efter et team medlem..."
#. js-lingui-id: VNmPqQ
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Search a tool..."
msgstr ""
@@ -13883,6 +13963,11 @@ msgstr ""
msgid "See Records on All Objects"
msgstr "Se poster på alle objekter"
#. js-lingui-id: eQ3co2
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "See your data structure as an interactive diagram"
msgstr ""
#. js-lingui-id: Hhnssf
#: src/pages/settings/applications/components/SettingsApplicationTableRow.tsx
msgid "Seeded"
@@ -14227,6 +14312,11 @@ msgstr "Opsæt et valgfelt på {objectLabel} for at oprette en Kanban"
msgid "Set up forwarding from the source address to this destination."
msgstr ""
#. js-lingui-id: dq5Wx1
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Set up MCP"
msgstr ""
#. js-lingui-id: 9HNKkV
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
msgid "Set your application configuration variables"
@@ -14387,6 +14477,16 @@ msgstr ""
msgid "Side Panel"
msgstr "Sidepanel"
#. js-lingui-id: uWi2Q+
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Sidebar"
msgstr ""
#. js-lingui-id: 9k9PMD
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Sidebar items"
msgstr ""
#. js-lingui-id: 5lWFkC
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
msgid "Sign in"
@@ -14471,12 +14571,12 @@ msgid "Skill"
msgstr "Færdighed"
#. js-lingui-id: h4t38o
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skill activated"
msgstr "Færdighed aktiveret"
#. js-lingui-id: /IoK74
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skill deleted"
msgstr "Færdighed slettet"
@@ -14499,7 +14599,9 @@ msgstr ""
#. js-lingui-id: PCSkw2
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skills"
msgstr "Færdigheder"
@@ -14724,7 +14826,7 @@ msgid "Stages"
msgstr "Faser"
#. js-lingui-id: TJBHlP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/applications/hooks/useApplicationChipData.ts
msgid "Standard"
@@ -15137,8 +15239,8 @@ msgstr ""
#: src/pages/settings/ai/SettingsAiPrompts.tsx
#: src/pages/settings/ai/SettingsAiPrompts.tsx
#: src/pages/settings/ai/forms/components/SettingsAiAgentForm.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
msgid "System Prompt"
msgstr "Systemprompt"
@@ -15220,6 +15322,7 @@ msgstr "Opgavetitel"
#. js-lingui-id: KM6m8p
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Team"
msgstr ""
@@ -15338,6 +15441,11 @@ msgid ""
"See the [Getting Started guide](https://twenty.com/developers/extend/apps/getting-started) for the full walkthrough, and [Building Apps](https://twenty.com/developers/extend/apps/building) for the `defineApplication` / `defineEntity` APIs."
msgstr ""
#. js-lingui-id: n+CCXl
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "The default AI model used for chats, agents, and workflows"
msgstr ""
#. js-lingui-id: 1xQkU9
#: src/modules/settings/data-model/fields/forms/phones/components/SettingsDataModelFieldPhonesForm.tsx
msgid "The default country code for new phone numbers."
@@ -15902,7 +16010,7 @@ msgid "Tool calls made"
msgstr "Værktøjskald foretaget"
#. js-lingui-id: SrWh42
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/hooks/useCreateTool.ts
msgid "Tool created"
msgstr "Værktøj oprettet"
@@ -15923,7 +16031,9 @@ msgstr "Værktøjsgenerering"
#. js-lingui-id: xdA/+p
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Tools"
msgstr "Værktøjer"
@@ -16069,11 +16179,10 @@ msgstr ""
msgid "True"
msgstr "Sand"
#. js-lingui-id: haaL9N
#. js-lingui-id: 64tOpZ
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Try our REST or GraphQL API playgrounds."
msgstr "Prøv vores REST eller GraphQL API-sandkasser."
msgid "Try our REST or GraphQL API playgrounds"
msgstr ""
#. js-lingui-id: 3WWUB9
#: src/pages/settings/updates/SettingsUpdates.tsx
@@ -16740,9 +16849,13 @@ msgstr "Brug autentifikationsapps og browserudvidelser som 1Password, Authy, Mic
msgid "Use best models only"
msgstr "Brug kun de bedste modeller"
#. js-lingui-id: 5ZehS/
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Use filter to see existing skills or create your own"
msgstr ""
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
@@ -17104,7 +17217,9 @@ msgstr "Se arbejdsområdets aktivitetslogge"
#. js-lingui-id: 1I6UoR
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr "Visninger"
@@ -17157,10 +17272,15 @@ msgid "Visible to you"
msgstr "Synlig for dig"
#. js-lingui-id: 6n7jtr
#: src/modules/settings/data-model/objects/components/SettingsObjectCoverImage.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Visualize"
msgstr "Visualiser"
#. js-lingui-id: VvM/Ty
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Visualize data model"
msgstr ""
#. js-lingui-id: uUehLT
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Waiting"
@@ -17196,6 +17316,41 @@ msgstr "blev slettet af"
msgid "was restored by"
msgstr "blev gendannet af"
#. js-lingui-id: 0WPnTI
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Watch AI demo"
msgstr ""
#. js-lingui-id: 5qU4Mu
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
msgid "Watch API demo"
msgstr ""
#. js-lingui-id: inpQ46
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Watch apps demo"
msgstr ""
#. js-lingui-id: uIrZTC
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Watch customization demo"
msgstr ""
#. js-lingui-id: syeoTg
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Watch data model demo"
msgstr ""
#. js-lingui-id: egkNh9
#: src/modules/settings/components/SettingsDiscoveryHeroCard.tsx
msgid "Watch demo"
msgstr ""
#. js-lingui-id: 6ZDYQy
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Watch members demo"
msgstr ""
#. js-lingui-id: 6eMAkI
#: src/modules/auth/sign-in-up/components/EmailVerificationSent.tsx
msgid "We encountered an issue verifying"
@@ -17283,6 +17438,7 @@ msgstr "Webhook ID er påkrævet for opdateringer"
#. js-lingui-id: v1kQyJ
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
@@ -17338,6 +17494,11 @@ msgstr "Hvad kan jeg hjælpe dig med?"
msgid "What this API can do: Select a user role to define its permissions."
msgstr "Hvad denne API kan gøre: Vælg en brugerrolle for at definere dens tilladelser."
#. js-lingui-id: drC+Tq
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "What's installed and being used in your workspace"
msgstr ""
#. js-lingui-id: m7GziZ
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "When a deal's stage changes to Closed Won, create a task assigned to the deal owner, due 7 days after the close date, with title \"Post-sale check-in\" and the company name in the description."
@@ -17397,6 +17558,11 @@ msgstr "Widget type"
msgid "widgets"
msgstr ""
#. js-lingui-id: tL6W2K
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Widgets"
msgstr ""
#. js-lingui-id: j6ncOZ
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowEditActionIterator.tsx
msgid "Will continue to the next iteration even if the current one fails"
@@ -17466,6 +17632,7 @@ msgstr "Arbejdsgange"
#: src/pages/settings/members/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/layout/components/SettingsLayoutDetailScaffold.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
@@ -17475,7 +17642,6 @@ msgstr "Arbejdsgange"
#: src/pages/settings/developers/playground/SettingsGraphQLPlayground.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -17555,8 +17721,8 @@ msgid "Workspace Info"
msgstr "Arbejdsområde Info"
#. js-lingui-id: BYrMT0
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Workspace Instructions"
msgstr "Instruktioner for arbejdsområdet"
+247 -81
View File
@@ -954,7 +954,6 @@ msgstr "Aktiv"
#. js-lingui-id: Mue4oc
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Active API keys created by you or your team."
msgstr "Aktive API-Schlüssel, die von Ihnen oder Ihrem Team erstellt wurden."
@@ -1051,11 +1050,6 @@ msgstr ""
msgid "Add custom endpoints, private gateways, or additional regions."
msgstr "Fügen Sie benutzerdefinierte Endpunkte, private Gateways oder zusätzliche Regionen hinzu."
#. js-lingui-id: GuJvBr
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
msgid "Add custom instructions specific to your workspace (appended to system prompt)"
msgstr "Fügen Sie arbeitsbereichsspezifische benutzerdefinierte Anweisungen hinzu (an den Systemprompt angehängt)"
#. js-lingui-id: 4JviOV
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
@@ -1293,6 +1287,11 @@ msgstr "Zur Blockliste hinzufügen"
msgid "Add to Favorite"
msgstr "Zu Favoriten hinzufügen"
#. js-lingui-id: VbareD
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Add Twenty as a Model Context Protocol (MCP) server. Paste this config into Claude Desktop, Cursor, Cline, Continue, Zed, or any other MCP-aware client."
msgstr ""
#. js-lingui-id: XnwceV
#: src/pages/settings/applications/components/SettingsApplicationRegistrationRedirectURIsInput.tsx
msgid "Add URI"
@@ -1775,6 +1774,11 @@ msgstr "Alle Aufgaben erledigt. Halten Sie das Tempo."
msgid "All the applications currently installed on this workspace"
msgstr ""
#. js-lingui-id: xP6s/m
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "All the layout items declared on your workspace"
msgstr ""
#. js-lingui-id: XuuWVF
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
msgid "All the standard objects"
@@ -1967,11 +1971,6 @@ msgstr "Ein interner Fehler ist aufgetreten, während Ihre Änderungen validiert
msgid "An object with this name already exists"
msgstr "Ein Objekt mit diesem Namen existiert bereits"
#. js-lingui-id: lxentK
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "An unexpected error occurred"
msgstr "Ein unerwarteter Fehler ist aufgetreten"
#. js-lingui-id: byKna+
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
msgid "An unexpected error occurred. Please try again."
@@ -2016,6 +2015,7 @@ msgid "Anyone with an email address at these domains is allowed to sign up for t
msgstr "Jeder mit einer E-Mail-Adresse in diesen Domänen darf sich für diesen Arbeitsbereich anmelden."
#. js-lingui-id: OZtEcz
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "API"
msgstr "API"
@@ -2033,7 +2033,6 @@ msgstr "API & Webhooks"
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "API Key"
msgstr "API-Schlüssel"
@@ -2063,7 +2062,6 @@ msgid "API key roles"
msgstr "API-Schlüsselrollen"
#. js-lingui-id: 5h8ooz
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
msgid "API keys"
msgstr "API-Schlüssel"
@@ -2104,12 +2102,6 @@ msgstr "API-Name (Einzahl)"
msgid "API values"
msgstr "API-Werte"
#. js-lingui-id: JR6nY7
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "APIs"
msgstr "Schnittstellen"
#. js-lingui-id: ZZAOwb
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
@@ -2131,7 +2123,7 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
msgid "App"
msgstr "App"
@@ -2481,6 +2473,11 @@ msgstr "um {remainingTimes} und {lastTime}"
msgid "at 1 minute past the hour"
msgstr "um 1 Minute nach der Stunde"
#. js-lingui-id: ooA+hm
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "At a glance"
msgstr ""
#. js-lingui-id: vyXyF0
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
msgid "At a specific date or time"
@@ -2645,11 +2642,15 @@ msgid "Availability"
msgstr "Verfügbarkeit"
#. js-lingui-id: csDS2L
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
msgid "Available"
msgstr "Verfügbar"
#. js-lingui-id: STA+22
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Available models"
msgstr ""
#. js-lingui-id: oD38t2
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Available tools"
@@ -2865,6 +2866,11 @@ msgstr "Bronze"
msgid "Brown"
msgstr "Braun"
#. js-lingui-id: O2UpM1
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Browse"
msgstr ""
#. js-lingui-id: GsXRxc
#: src/modules/settings/data-model/indexes/forms/components/SettingsObjectIndexOptionsForm.tsx
msgid "BTREE (default, good for sorting and equality)"
@@ -3615,6 +3621,11 @@ msgstr "Befehl in die Zwischenablage kopiert"
msgid "Command Icon"
msgstr "Befehlsmenü-Symbol"
#. js-lingui-id: V1zWD4
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Command menu"
msgstr ""
#. js-lingui-id: PUMdxH
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
msgid "Command Menu"
@@ -3642,6 +3653,11 @@ msgstr ""
msgid "commands"
msgstr ""
#. js-lingui-id: 45MZFs
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Commands"
msgstr ""
#. js-lingui-id: 4XlFx/
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Commands copied to clipboard"
@@ -3808,11 +3824,6 @@ msgstr "Konfigurieren Sie diese DNS-Einträge bei Ihrem Domainanbieter"
msgid "Configure this widget to display fields"
msgstr "Konfigurieren Sie dieses Widget, um Felder anzuzeigen."
#. js-lingui-id: hzDiM0
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Configure your default AI model"
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -3886,6 +3897,11 @@ msgstr ""
msgid "Connect a new account to your workspace"
msgstr "Neues Konto mit Ihrem Arbeitsbereich verbinden"
#. js-lingui-id: vPCRNy
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Connect AI assistants like Claude or Cursor to your workspace via the Model Context Protocol"
msgstr ""
#. js-lingui-id: YLx3sC
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect via IMAP/SMTP"
@@ -3901,6 +3917,11 @@ msgstr "Mit Google verbinden"
msgid "Connect with Microsoft"
msgstr "Mit Microsoft verbinden"
#. js-lingui-id: iZWbGJ
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Connect your AI assistant"
msgstr ""
#. js-lingui-id: QHcLEN
#: src/pages/settings/applications/SettingsApplicationConnectionDetail.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationConnectionsSection.tsx
@@ -4066,6 +4087,11 @@ msgstr "Kontrollieren, welche Arten von Entitäten diese Rolle zugewiesen werden
msgid "Conversation"
msgstr "Unterhaltung"
#. js-lingui-id: EnJuK0
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Conversations"
msgstr ""
#. js-lingui-id: HRGl1X
#: src/pages/onboarding/CreateProfile.tsx
#: src/modules/settings/profile/components/NameFields.tsx
@@ -4104,6 +4130,11 @@ msgstr "Befehl kopieren"
msgid "Copy commands"
msgstr "Befehle kopieren"
#. js-lingui-id: eaZgIQ
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Copy config"
msgstr ""
#. js-lingui-id: 7eVkEH
#: src/pages/onboarding/InviteTeam.tsx
msgid "Copy invitation link"
@@ -4216,6 +4247,11 @@ msgstr "Abrechnungsportal konnte nicht geöffnet werden. Bitte prüfen Sie, ob I
msgid "Could not open Stripe. Please contact support."
msgstr "Stripe konnte nicht geöffnet werden. Bitte wenden Sie sich an den Support."
#. js-lingui-id: 6wi9Nf
#: src/modules/settings/playground/hooks/useOpenPlayground.ts
msgid "Could not open the API playground"
msgstr ""
#. js-lingui-id: wVw4Am
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not refresh validity token. Please contact support."
@@ -4340,7 +4376,6 @@ msgstr "KI-Agenten erstellen und konfigurieren"
#. js-lingui-id: uXGLuq
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Create API key"
msgstr "API-Schlüssel erstellen"
@@ -4625,7 +4660,7 @@ msgstr "Aktuelles Arbeitsbereichsmitglied nicht gefunden."
#. js-lingui-id: 8Tg/JR
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/applications/hooks/useApplicationChipData.ts
@@ -4650,6 +4685,11 @@ msgstr "Benutzerdefinierte Domäne"
msgid "Custom domain updated"
msgstr "Benutzerdefinierte Domain aktualisiert"
#. js-lingui-id: c6P+Xe
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Custom instructions appended to every system prompt"
msgstr ""
#. js-lingui-id: 87ZNeX
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
msgid "Custom model ID"
@@ -4692,6 +4732,7 @@ msgid "Customization"
msgstr "Anpassung"
#. js-lingui-id: srRMnJ
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectLayout.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
@@ -4788,6 +4829,11 @@ msgstr "Dunkel"
msgid "Dashboard duplicated successfully"
msgstr "Dashboard erfolgreich dupliziert"
#. js-lingui-id: w6iIMm
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Dashboards"
msgstr ""
#. js-lingui-id: HKH+W+
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
@@ -4988,7 +5034,7 @@ msgstr "Dieses Feld deaktivieren"
#. js-lingui-id: yAT3be
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
@@ -5015,7 +5061,6 @@ msgstr ""
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
msgid "Default"
@@ -5031,6 +5076,11 @@ msgstr "Standardland"
msgid "Default Country Code"
msgstr "Standard-Ländercode"
#. js-lingui-id: OtTlfU
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Default model"
msgstr ""
#. js-lingui-id: hUWaAk
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
msgid "Default model for chats and complex reasoning"
@@ -5473,6 +5523,11 @@ msgstr "Details"
msgid "Detected application version running on this instance"
msgstr ""
#. js-lingui-id: QYXe1O
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Develop"
msgstr ""
#. js-lingui-id: 7aDnUb
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Developer"
@@ -5564,7 +5619,6 @@ msgstr "Nicht importieren"
#. js-lingui-id: TvY/XA
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
msgid "Documentation"
@@ -5768,7 +5822,7 @@ msgid "e.g. OpenAI EU"
msgstr "z. B. OpenAI EU"
#. js-lingui-id: p5P8NB
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
msgstr "Z. B.: \"Wir sind ein B2B-SaaS-Unternehmen. Verwenden Sie immer eine formelle Sprache...\""
@@ -6114,6 +6168,8 @@ msgstr "Mitarbeiter"
#. js-lingui-id: N2S1rs
#: src/modules/object-record/record-inline-cell/components/RecordInlineCellDisplayMode.tsx
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRelationFieldDiffValues.tsx
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRelationFieldDiffValues.tsx
#: src/modules/activities/timeline-activities/rows/main-object/components/EventFieldDiff.tsx
msgid "Empty"
msgstr "Leer"
@@ -6428,11 +6484,6 @@ msgstr "Wert eingeben"
msgid "Enter values, comma-separated"
msgstr "Geben Sie Werte kommagetrennt ein"
#. js-lingui-id: OjkRLQ
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "Enter your API key"
msgstr "Geben Sie Ihren API-Schlüssel ein"
#. js-lingui-id: GpB8YV
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -6988,7 +7039,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
msgstr "Enterprise-Lizenz konnte nicht aktiviert werden. Bitte überprüfen Sie Ihren Schlüssel oder wenden Sie sich an den Support."
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Failed to activate skill"
msgstr "Skill konnte nicht aktiviert werden"
@@ -7007,11 +7058,6 @@ msgstr "Fehler beim Hinzufügen des Anbieters"
msgid "Failed to create email handle. Email handles may not be configured on this server."
msgstr ""
#. js-lingui-id: WM7GKt
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Failed to create tool"
msgstr "Erstellen des Tools fehlgeschlagen"
#. js-lingui-id: lWoewm
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Failed to delete email handle."
@@ -7023,7 +7069,7 @@ msgid "Failed to delete jobs. Please try again later."
msgstr "Aufgaben konnten nicht gelöscht werden. Bitte versuchen Sie es später noch einmal."
#. js-lingui-id: bmwWKk
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Failed to delete skill"
msgstr "Skill konnte nicht gelöscht werden"
@@ -7126,7 +7172,7 @@ msgid "Failed to save role permissions: {errorMessage}"
msgstr "Fehler beim Speichern der Rollenberechtigungen: {errorMessage}"
#. js-lingui-id: 9ryUyP
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Failed to save workspace instructions"
msgstr "Fehler beim Speichern der Arbeitsbereichsanweisungen"
@@ -7152,13 +7198,13 @@ msgid "Failed to update default model"
msgstr "Standardmodell konnte nicht aktualisiert werden"
#. js-lingui-id: 1R13Ov
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
msgid "Failed to update model"
msgstr "Fehler beim Aktualisieren des Modells"
#. js-lingui-id: W7Ff/4
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Failed to update model availability"
@@ -7175,7 +7221,7 @@ msgid "Failed to update model recommendations"
msgstr ""
#. js-lingui-id: rCUG3c
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
msgid "Failed to update model selection mode"
msgstr "Fehler beim Aktualisieren des Modellauswahlmodus"
@@ -7334,6 +7380,7 @@ msgstr "Felder"
#. js-lingui-id: vF68cg
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
#: src/pages/settings/data-model/new-index/SettingsObjectNewIndex.tsx
@@ -7868,6 +7915,7 @@ msgid "Grants permission to perform all available actions without restriction"
msgstr "Erteilt die Berechtigung, alle verfügbaren Aktionen ohne Einschränkungen auszuführen"
#. js-lingui-id: gBiL6J
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "GraphQL"
msgstr "GraphQL"
@@ -8550,6 +8598,7 @@ msgid "Insert a JSON input, then press \"Run Function\"."
msgstr ""
#. js-lingui-id: TKQ7K+
#: src/pages/settings/applications/SettingsApplications.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationRegistrationShareLinkButtons.tsx
msgid "Install"
@@ -8630,11 +8679,6 @@ msgstr "Der Intervallwechsel wurde abgebrochen."
msgid "Invalid 2FA information."
msgstr "Ungültige 2FA-Informationen."
#. js-lingui-id: GNRDhm
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "Invalid API key"
msgstr "Ungültiger API-Schlüssel"
#. js-lingui-id: 9TgH9p
#: src/modules/settings/security/components/SettingsSecurityAuthBypassOptionsList.tsx
msgid "Invalid auth bypass provider"
@@ -8754,6 +8798,7 @@ msgstr "Einladungen"
#. js-lingui-id: MFKlMB
#: src/utils/title-utils.ts
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/modules/workspace/components/WorkspaceInviteTeam.tsx
msgid "Invite"
msgstr "Einladen"
@@ -9232,12 +9277,15 @@ msgid "Launch manually"
msgstr "Manuell auslösen"
#. js-lingui-id: rdU729
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -9693,6 +9741,11 @@ msgstr ""
msgid "Manage Members"
msgstr "Mitglieder verwalten"
#. js-lingui-id: LNz5UW
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Manage objects, fields and relationships"
msgstr ""
#. js-lingui-id: eGGH1l
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Manage security policies"
@@ -9729,7 +9782,7 @@ msgid "Manage your internet accounts."
msgstr "Verwalten Sie Ihre Internetkonten."
#. js-lingui-id: waFx9W
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Managed"
msgstr ""
@@ -9807,12 +9860,23 @@ msgstr "Maximale URLs"
msgid "Maximum values"
msgstr "Maximale Werte"
#. js-lingui-id: nA8kxD
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
msgid "MCP"
msgstr ""
#. js-lingui-id: 2jj0eo
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "MCP config copied to clipboard"
msgstr ""
#. js-lingui-id: NvQoNb
#: src/pages/settings/ai/components/SettingsAiMCP.tsx
msgid "MCP Configuration copied to clipboard"
msgstr "MCP-Konfiguration in die Zwischenablage kopiert"
#. js-lingui-id: 8CWirf
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiMCP.tsx
msgid "MCP Server"
msgstr "MCP-Server"
@@ -10019,6 +10083,7 @@ msgstr "Modell-ID ist erforderlich"
#. js-lingui-id: //nm2/
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Models"
msgstr "Modelle"
@@ -10086,7 +10151,6 @@ msgid "months"
msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
msgid "More"
msgstr "Mehr"
@@ -10235,8 +10299,8 @@ msgstr ""
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTable.tsx
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
@@ -11417,6 +11481,7 @@ msgstr "Objekte"
#. js-lingui-id: B3toQF
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
@@ -11805,7 +11870,9 @@ msgid "Override Draft"
msgstr "Entwurf überschreiben"
#. js-lingui-id: 6/dCYd
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Overview"
msgstr "Übersicht"
@@ -11879,6 +11946,11 @@ msgstr "Seite nicht gefunden | Twenty"
msgid "Page Views"
msgstr "Seitenaufrufe"
#. js-lingui-id: wRR604
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Pages"
msgstr ""
#. js-lingui-id: ijBN4V
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "paragraph"
@@ -12592,18 +12664,18 @@ msgid "Read documentation"
msgstr "Dokumentation lesen"
#. js-lingui-id: U26cMX
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read system prompts"
msgstr ""
#. js-lingui-id: EKsFda
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read the system prompts to understand how the AI works"
msgstr ""
#. js-lingui-id: 0URVx8
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1, }, )
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1 }, )
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read the system prompts to understand how the AI works (~{0} tokens)"
msgstr ""
@@ -12732,6 +12804,11 @@ msgstr "Bild aufzeichnen"
msgid "Record label"
msgstr "Bezeichnung aufzeichnen"
#. js-lingui-id: XueM/X
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Record page"
msgstr ""
#. js-lingui-id: mAHjRd
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutOpenInContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -12850,6 +12927,7 @@ msgid "Relation type"
msgstr "Beziehungstyp"
#. js-lingui-id: g87L9j
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
#: src/modules/activities/inline-cell/components/ActivityTargetsInlineCell.tsx
msgid "Relations"
@@ -13162,6 +13240,7 @@ msgid "Response Format"
msgstr ""
#. js-lingui-id: WHiaOl
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/playground/SettingsRestPlayground.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "REST"
@@ -13332,6 +13411,7 @@ msgstr ""
#. js-lingui-id: 5dJK4M
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
@@ -13551,7 +13631,7 @@ msgid "Search a role..."
msgstr "Nach einer Rolle suchen..."
#. js-lingui-id: lJNEce
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Search a skill..."
msgstr "Nach einem Skill suchen..."
@@ -13567,7 +13647,7 @@ msgid "Search a team member..."
msgstr "Ein Teammitglied suchen..."
#. js-lingui-id: VNmPqQ
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Search a tool..."
msgstr ""
@@ -13883,6 +13963,11 @@ msgstr ""
msgid "See Records on All Objects"
msgstr "Datensätze auf allen Objekten anzeigen"
#. js-lingui-id: eQ3co2
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "See your data structure as an interactive diagram"
msgstr ""
#. js-lingui-id: Hhnssf
#: src/pages/settings/applications/components/SettingsApplicationTableRow.tsx
msgid "Seeded"
@@ -14227,6 +14312,11 @@ msgstr "Richten Sie ein Auswahlfeld in {objectLabel} ein, um ein Kanban zu erste
msgid "Set up forwarding from the source address to this destination."
msgstr ""
#. js-lingui-id: dq5Wx1
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Set up MCP"
msgstr ""
#. js-lingui-id: 9HNKkV
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
msgid "Set your application configuration variables"
@@ -14387,6 +14477,16 @@ msgstr ""
msgid "Side Panel"
msgstr "Seitenpanel"
#. js-lingui-id: uWi2Q+
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Sidebar"
msgstr ""
#. js-lingui-id: 9k9PMD
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Sidebar items"
msgstr ""
#. js-lingui-id: 5lWFkC
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
msgid "Sign in"
@@ -14471,12 +14571,12 @@ msgid "Skill"
msgstr "Skill"
#. js-lingui-id: h4t38o
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skill activated"
msgstr "Skill aktiviert"
#. js-lingui-id: /IoK74
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skill deleted"
msgstr "Skill gelöscht"
@@ -14499,7 +14599,9 @@ msgstr ""
#. js-lingui-id: PCSkw2
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skills"
msgstr "Skills"
@@ -14724,7 +14826,7 @@ msgid "Stages"
msgstr "Phasen"
#. js-lingui-id: TJBHlP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/applications/hooks/useApplicationChipData.ts
msgid "Standard"
@@ -15137,8 +15239,8 @@ msgstr ""
#: src/pages/settings/ai/SettingsAiPrompts.tsx
#: src/pages/settings/ai/SettingsAiPrompts.tsx
#: src/pages/settings/ai/forms/components/SettingsAiAgentForm.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
msgid "System Prompt"
msgstr "Systemaufforderung"
@@ -15220,6 +15322,7 @@ msgstr "Aufgabentitel"
#. js-lingui-id: KM6m8p
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Team"
msgstr ""
@@ -15338,6 +15441,11 @@ msgid ""
"See the [Getting Started guide](https://twenty.com/developers/extend/apps/getting-started) for the full walkthrough, and [Building Apps](https://twenty.com/developers/extend/apps/building) for the `defineApplication` / `defineEntity` APIs."
msgstr ""
#. js-lingui-id: n+CCXl
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "The default AI model used for chats, agents, and workflows"
msgstr ""
#. js-lingui-id: 1xQkU9
#: src/modules/settings/data-model/fields/forms/phones/components/SettingsDataModelFieldPhonesForm.tsx
msgid "The default country code for new phone numbers."
@@ -15900,7 +16008,7 @@ msgid "Tool calls made"
msgstr "Getätigte Tool-Aufrufe"
#. js-lingui-id: SrWh42
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/hooks/useCreateTool.ts
msgid "Tool created"
msgstr "Tool erstellt"
@@ -15921,7 +16029,9 @@ msgstr "Tool-Generierung"
#. js-lingui-id: xdA/+p
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Tools"
msgstr "Werkzeuge"
@@ -16067,11 +16177,10 @@ msgstr ""
msgid "True"
msgstr "Wahr"
#. js-lingui-id: haaL9N
#. js-lingui-id: 64tOpZ
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Try our REST or GraphQL API playgrounds."
msgstr "Probieren Sie unsere REST- oder GraphQL-API-Spielplätze aus."
msgid "Try our REST or GraphQL API playgrounds"
msgstr ""
#. js-lingui-id: 3WWUB9
#: src/pages/settings/updates/SettingsUpdates.tsx
@@ -16738,9 +16847,13 @@ msgstr "Verwenden Sie Authenticator-Apps und Browser-Erweiterungen wie 1Password
msgid "Use best models only"
msgstr "Nur die besten Modelle verwenden"
#. js-lingui-id: 5ZehS/
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Use filter to see existing skills or create your own"
msgstr ""
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
@@ -17102,7 +17215,9 @@ msgstr "Aktivitätsprotokolle des Arbeitsbereichs anzeigen"
#. js-lingui-id: 1I6UoR
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr "Ansichten"
@@ -17155,10 +17270,15 @@ msgid "Visible to you"
msgstr "Für Sie sichtbar"
#. js-lingui-id: 6n7jtr
#: src/modules/settings/data-model/objects/components/SettingsObjectCoverImage.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Visualize"
msgstr "Visualisieren"
#. js-lingui-id: VvM/Ty
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Visualize data model"
msgstr ""
#. js-lingui-id: uUehLT
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Waiting"
@@ -17194,6 +17314,41 @@ msgstr "wurde gelöscht von"
msgid "was restored by"
msgstr "wurde wiederhergestellt von"
#. js-lingui-id: 0WPnTI
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Watch AI demo"
msgstr ""
#. js-lingui-id: 5qU4Mu
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
msgid "Watch API demo"
msgstr ""
#. js-lingui-id: inpQ46
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Watch apps demo"
msgstr ""
#. js-lingui-id: uIrZTC
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Watch customization demo"
msgstr ""
#. js-lingui-id: syeoTg
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Watch data model demo"
msgstr ""
#. js-lingui-id: egkNh9
#: src/modules/settings/components/SettingsDiscoveryHeroCard.tsx
msgid "Watch demo"
msgstr ""
#. js-lingui-id: 6ZDYQy
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Watch members demo"
msgstr ""
#. js-lingui-id: 6eMAkI
#: src/modules/auth/sign-in-up/components/EmailVerificationSent.tsx
msgid "We encountered an issue verifying"
@@ -17281,6 +17436,7 @@ msgstr "Webhook-ID ist für Aktualisierungen erforderlich"
#. js-lingui-id: v1kQyJ
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
@@ -17336,6 +17492,11 @@ msgstr "Wobei kann ich Ihnen helfen?"
msgid "What this API can do: Select a user role to define its permissions."
msgstr "Was diese API tun kann: Wählen Sie eine Benutzerrolle aus, um die Berechtigungen festzulegen."
#. js-lingui-id: drC+Tq
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "What's installed and being used in your workspace"
msgstr ""
#. js-lingui-id: m7GziZ
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "When a deal's stage changes to Closed Won, create a task assigned to the deal owner, due 7 days after the close date, with title \"Post-sale check-in\" and the company name in the description."
@@ -17395,6 +17556,11 @@ msgstr "Widget-Typ"
msgid "widgets"
msgstr ""
#. js-lingui-id: tL6W2K
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Widgets"
msgstr ""
#. js-lingui-id: j6ncOZ
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowEditActionIterator.tsx
msgid "Will continue to the next iteration even if the current one fails"
@@ -17464,6 +17630,7 @@ msgstr "Workflows"
#: src/pages/settings/members/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/layout/components/SettingsLayoutDetailScaffold.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
@@ -17473,7 +17640,6 @@ msgstr "Workflows"
#: src/pages/settings/developers/playground/SettingsGraphQLPlayground.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -17553,8 +17719,8 @@ msgid "Workspace Info"
msgstr "Arbeitsbereichsinfo"
#. js-lingui-id: BYrMT0
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Workspace Instructions"
msgstr "Arbeitsbereichsanweisungen"
+247 -81
View File
@@ -954,7 +954,6 @@ msgstr "Ενεργό"
#. js-lingui-id: Mue4oc
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Active API keys created by you or your team."
msgstr "Ενεργά API keys που έχουν δημιουργηθεί από εσάς ή την ομάδα σας."
@@ -1051,11 +1050,6 @@ msgstr ""
msgid "Add custom endpoints, private gateways, or additional regions."
msgstr "Προσθέστε προσαρμοσμένα endpoints, ιδιωτικά gateways ή επιπλέον περιοχές."
#. js-lingui-id: GuJvBr
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
msgid "Add custom instructions specific to your workspace (appended to system prompt)"
msgstr "Προσθέστε προσαρμοσμένες οδηγίες που αφορούν ειδικά τον χώρο εργασίας σας (προστίθενται στην προτροπή συστήματος)"
#. js-lingui-id: 4JviOV
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
@@ -1293,6 +1287,11 @@ msgstr "Προσθήκη στη λίστα αποκλεισμού"
msgid "Add to Favorite"
msgstr "Προσθήκη στα Αγαπημένα"
#. js-lingui-id: VbareD
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Add Twenty as a Model Context Protocol (MCP) server. Paste this config into Claude Desktop, Cursor, Cline, Continue, Zed, or any other MCP-aware client."
msgstr ""
#. js-lingui-id: XnwceV
#: src/pages/settings/applications/components/SettingsApplicationRegistrationRedirectURIsInput.tsx
msgid "Add URI"
@@ -1775,6 +1774,11 @@ msgstr "Όλες οι εργασίες αντιμετωπίστηκαν. Δια
msgid "All the applications currently installed on this workspace"
msgstr ""
#. js-lingui-id: xP6s/m
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "All the layout items declared on your workspace"
msgstr ""
#. js-lingui-id: XuuWVF
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
msgid "All the standard objects"
@@ -1967,11 +1971,6 @@ msgstr "Παρουσιάστηκε εσωτερικό σφάλμα κατά τη
msgid "An object with this name already exists"
msgstr "Υπάρχει ήδη αντικείμενο με αυτό το όνομα"
#. js-lingui-id: lxentK
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "An unexpected error occurred"
msgstr "Παρουσιάστηκε ένα απρόβλεπτο σφάλμα"
#. js-lingui-id: byKna+
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
msgid "An unexpected error occurred. Please try again."
@@ -2016,6 +2015,7 @@ msgid "Anyone with an email address at these domains is allowed to sign up for t
msgstr "Οποιοσδήποτε με διεύθυνση email σε αυτούς τους τομείς επιτρέπεται να εγγραφεί για αυτό το χώρο εργασίας."
#. js-lingui-id: OZtEcz
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "API"
msgstr "API"
@@ -2033,7 +2033,6 @@ msgstr "API & Webhooks"
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "API Key"
msgstr "API Key"
@@ -2063,7 +2062,6 @@ msgid "API key roles"
msgstr ""
#. js-lingui-id: 5h8ooz
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
msgid "API keys"
msgstr "Κλειδιά API"
@@ -2104,12 +2102,6 @@ msgstr "Όνομα API (Ενικός)"
msgid "API values"
msgstr "Τιμές API"
#. js-lingui-id: JR6nY7
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "APIs"
msgstr "API"
#. js-lingui-id: ZZAOwb
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
@@ -2131,7 +2123,7 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
msgid "App"
msgstr "Εφαρμογή"
@@ -2481,6 +2473,11 @@ msgstr "στις {remainingTimes} και {lastTime}"
msgid "at 1 minute past the hour"
msgstr "στις 1 λεπτών μετά την ώρα"
#. js-lingui-id: ooA+hm
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "At a glance"
msgstr ""
#. js-lingui-id: vyXyF0
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
msgid "At a specific date or time"
@@ -2645,11 +2642,15 @@ msgid "Availability"
msgstr "Διαθεσιμότητα"
#. js-lingui-id: csDS2L
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
msgid "Available"
msgstr "Διαθέσιμο"
#. js-lingui-id: STA+22
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Available models"
msgstr ""
#. js-lingui-id: oD38t2
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Available tools"
@@ -2865,6 +2866,11 @@ msgstr "Μπρονζέ"
msgid "Brown"
msgstr "Καφέ"
#. js-lingui-id: O2UpM1
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Browse"
msgstr ""
#. js-lingui-id: GsXRxc
#: src/modules/settings/data-model/indexes/forms/components/SettingsObjectIndexOptionsForm.tsx
msgid "BTREE (default, good for sorting and equality)"
@@ -3615,6 +3621,11 @@ msgstr "Η εντολή αντιγράφηκε στο πρόχειρο"
msgid "Command Icon"
msgstr "Εικονίδιο εντολής"
#. js-lingui-id: V1zWD4
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Command menu"
msgstr ""
#. js-lingui-id: PUMdxH
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
msgid "Command Menu"
@@ -3642,6 +3653,11 @@ msgstr ""
msgid "commands"
msgstr ""
#. js-lingui-id: 45MZFs
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Commands"
msgstr ""
#. js-lingui-id: 4XlFx/
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Commands copied to clipboard"
@@ -3808,11 +3824,6 @@ msgstr "Διαμόρφωση αυτών των DNS εγγραφών στον π
msgid "Configure this widget to display fields"
msgstr "Ρυθμίστε αυτό το γραφικό στοιχείο ώστε να εμφανίζει πεδία"
#. js-lingui-id: hzDiM0
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Configure your default AI model"
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -3886,6 +3897,11 @@ msgstr ""
msgid "Connect a new account to your workspace"
msgstr "Συνδέστε έναν νέο λογαριασμό με το χώρο εργασίας σας"
#. js-lingui-id: vPCRNy
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Connect AI assistants like Claude or Cursor to your workspace via the Model Context Protocol"
msgstr ""
#. js-lingui-id: YLx3sC
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect via IMAP/SMTP"
@@ -3901,6 +3917,11 @@ msgstr "Συνδέστε με το Google"
msgid "Connect with Microsoft"
msgstr "Συνδέστε με τη Microsoft"
#. js-lingui-id: iZWbGJ
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Connect your AI assistant"
msgstr ""
#. js-lingui-id: QHcLEN
#: src/pages/settings/applications/SettingsApplicationConnectionDetail.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationConnectionsSection.tsx
@@ -4066,6 +4087,11 @@ msgstr "Ελέγξτε σε ποιους τύπους οντοτήτων μπο
msgid "Conversation"
msgstr "Συνομιλία"
#. js-lingui-id: EnJuK0
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Conversations"
msgstr ""
#. js-lingui-id: HRGl1X
#: src/pages/onboarding/CreateProfile.tsx
#: src/modules/settings/profile/components/NameFields.tsx
@@ -4104,6 +4130,11 @@ msgstr "Αντιγραφή εντολής"
msgid "Copy commands"
msgstr "Αντιγραφή εντολών"
#. js-lingui-id: eaZgIQ
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Copy config"
msgstr ""
#. js-lingui-id: 7eVkEH
#: src/pages/onboarding/InviteTeam.tsx
msgid "Copy invitation link"
@@ -4216,6 +4247,11 @@ msgstr "Δεν ήταν δυνατό το άνοιγμα της πύλης χρ
msgid "Could not open Stripe. Please contact support."
msgstr "Δεν ήταν δυνατό το άνοιγμα του Stripe. Επικοινωνήστε με την υποστήριξη."
#. js-lingui-id: 6wi9Nf
#: src/modules/settings/playground/hooks/useOpenPlayground.ts
msgid "Could not open the API playground"
msgstr ""
#. js-lingui-id: wVw4Am
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not refresh validity token. Please contact support."
@@ -4340,7 +4376,6 @@ msgstr "Δημιουργία και διαμόρφωση πρακτόρων AI"
#. js-lingui-id: uXGLuq
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Create API key"
msgstr "Δημιουργήστε μια κλειδί API"
@@ -4625,7 +4660,7 @@ msgstr "Το τρέχον μέλος του χώρου εργασίας δεν
#. js-lingui-id: 8Tg/JR
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/applications/hooks/useApplicationChipData.ts
@@ -4650,6 +4685,11 @@ msgstr "Προσαρμοσμένο Όνομα Τομέα"
msgid "Custom domain updated"
msgstr "Προσαρμοσμένος τομέας ενημερώθηκε"
#. js-lingui-id: c6P+Xe
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Custom instructions appended to every system prompt"
msgstr ""
#. js-lingui-id: 87ZNeX
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
msgid "Custom model ID"
@@ -4692,6 +4732,7 @@ msgid "Customization"
msgstr "Προσαρμογή"
#. js-lingui-id: srRMnJ
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectLayout.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
@@ -4788,6 +4829,11 @@ msgstr "Σκοτεινό"
msgid "Dashboard duplicated successfully"
msgstr "Ο πίνακας ελέγχου αντιγράφηκε με επιτυχία"
#. js-lingui-id: w6iIMm
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Dashboards"
msgstr ""
#. js-lingui-id: HKH+W+
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
@@ -4988,7 +5034,7 @@ msgstr "Απενεργοποίηση αυτού του πεδίου"
#. js-lingui-id: yAT3be
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
@@ -5015,7 +5061,6 @@ msgstr ""
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
msgid "Default"
@@ -5031,6 +5076,11 @@ msgstr "Προεπιλεγμένη Χώρα"
msgid "Default Country Code"
msgstr "Προεπιλεγμένος Κωδικός Χώρας"
#. js-lingui-id: OtTlfU
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Default model"
msgstr ""
#. js-lingui-id: hUWaAk
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
msgid "Default model for chats and complex reasoning"
@@ -5473,6 +5523,11 @@ msgstr "Λεπτομέρειες"
msgid "Detected application version running on this instance"
msgstr ""
#. js-lingui-id: QYXe1O
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Develop"
msgstr ""
#. js-lingui-id: 7aDnUb
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Developer"
@@ -5564,7 +5619,6 @@ msgstr "Μην εισάγετε"
#. js-lingui-id: TvY/XA
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
msgid "Documentation"
@@ -5768,7 +5822,7 @@ msgid "e.g. OpenAI EU"
msgstr "π.χ. OpenAI EU"
#. js-lingui-id: p5P8NB
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
msgstr "Π.χ., \"Είμαστε μια εταιρεία B2B SaaS. Να χρησιμοποιείτε πάντα επίσημη γλώσσα...\""
@@ -6114,6 +6168,8 @@ msgstr "Εργαζόμενοι"
#. js-lingui-id: N2S1rs
#: src/modules/object-record/record-inline-cell/components/RecordInlineCellDisplayMode.tsx
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRelationFieldDiffValues.tsx
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRelationFieldDiffValues.tsx
#: src/modules/activities/timeline-activities/rows/main-object/components/EventFieldDiff.tsx
msgid "Empty"
msgstr "Κενό"
@@ -6428,11 +6484,6 @@ msgstr "Εισαγωγή τιμής"
msgid "Enter values, comma-separated"
msgstr "Εισαγάγετε τιμές, χωρισμένες με κόμμα"
#. js-lingui-id: OjkRLQ
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "Enter your API key"
msgstr "Εισάγετε το κλειδί API σας"
#. js-lingui-id: GpB8YV
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -6988,7 +7039,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
msgstr "Αποτυχία ενεργοποίησης της άδειας Enterprise. Ελέγξτε το κλειδί σας ή επικοινωνήστε με την υποστήριξη."
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Failed to activate skill"
msgstr "Αποτυχία ενεργοποίησης δεξιότητας"
@@ -7007,11 +7058,6 @@ msgstr "Αποτυχία προσθήκης παρόχου"
msgid "Failed to create email handle. Email handles may not be configured on this server."
msgstr ""
#. js-lingui-id: WM7GKt
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Failed to create tool"
msgstr "Αποτυχία δημιουργίας εργαλείου"
#. js-lingui-id: lWoewm
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Failed to delete email handle."
@@ -7023,7 +7069,7 @@ msgid "Failed to delete jobs. Please try again later."
msgstr "Αποτυχία διαγραφής εργασιών. Παρακαλώ δοκιμάστε ξανά αργότερα."
#. js-lingui-id: bmwWKk
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Failed to delete skill"
msgstr "Αποτυχία διαγραφής δεξιότητας"
@@ -7126,7 +7172,7 @@ msgid "Failed to save role permissions: {errorMessage}"
msgstr ""
#. js-lingui-id: 9ryUyP
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Failed to save workspace instructions"
msgstr "Αποτυχία αποθήκευσης των οδηγιών του χώρου εργασίας"
@@ -7152,13 +7198,13 @@ msgid "Failed to update default model"
msgstr "Αποτυχία ενημέρωσης προεπιλεγμένου μοντέλου"
#. js-lingui-id: 1R13Ov
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
msgid "Failed to update model"
msgstr "Αποτυχία ενημέρωσης μοντέλου"
#. js-lingui-id: W7Ff/4
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Failed to update model availability"
@@ -7175,7 +7221,7 @@ msgid "Failed to update model recommendations"
msgstr ""
#. js-lingui-id: rCUG3c
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
msgid "Failed to update model selection mode"
msgstr "Αποτυχία ενημέρωσης λειτουργίας επιλογής μοντέλου"
@@ -7334,6 +7380,7 @@ msgstr "πεδία"
#. js-lingui-id: vF68cg
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
#: src/pages/settings/data-model/new-index/SettingsObjectNewIndex.tsx
@@ -7868,6 +7915,7 @@ msgid "Grants permission to perform all available actions without restriction"
msgstr "Παρέχει δικαιώματα για την εκτέλεση όλων των διαθέσιμων ενεργειών χωρίς περιορισμούς"
#. js-lingui-id: gBiL6J
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "GraphQL"
msgstr "GraphQL"
@@ -8550,6 +8598,7 @@ msgid "Insert a JSON input, then press \"Run Function\"."
msgstr ""
#. js-lingui-id: TKQ7K+
#: src/pages/settings/applications/SettingsApplications.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationRegistrationShareLinkButtons.tsx
msgid "Install"
@@ -8630,11 +8679,6 @@ msgstr "Η αλλαγή περιόδου ακυρώθηκε."
msgid "Invalid 2FA information."
msgstr "Ακυρη πληροφορία 2FA."
#. js-lingui-id: GNRDhm
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "Invalid API key"
msgstr "Μη έγκυρο κλειδί API"
#. js-lingui-id: 9TgH9p
#: src/modules/settings/security/components/SettingsSecurityAuthBypassOptionsList.tsx
msgid "Invalid auth bypass provider"
@@ -8754,6 +8798,7 @@ msgstr "Προσκλήσεις"
#. js-lingui-id: MFKlMB
#: src/utils/title-utils.ts
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/modules/workspace/components/WorkspaceInviteTeam.tsx
msgid "Invite"
msgstr "Πρόσκληση"
@@ -9232,12 +9277,15 @@ msgid "Launch manually"
msgstr "Εκκίνηση χειροκίνητα"
#. js-lingui-id: rdU729
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -9693,6 +9741,11 @@ msgstr ""
msgid "Manage Members"
msgstr "Διαχείριση Μελών"
#. js-lingui-id: LNz5UW
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Manage objects, fields and relationships"
msgstr ""
#. js-lingui-id: eGGH1l
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Manage security policies"
@@ -9729,7 +9782,7 @@ msgid "Manage your internet accounts."
msgstr "Διαχειριστείτε τους λογαριασμούς σας στο διαδίκτυο."
#. js-lingui-id: waFx9W
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Managed"
msgstr ""
@@ -9807,12 +9860,23 @@ msgstr "Μέγιστος αριθμός URLs"
msgid "Maximum values"
msgstr "Μέγιστες τιμές"
#. js-lingui-id: nA8kxD
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
msgid "MCP"
msgstr ""
#. js-lingui-id: 2jj0eo
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "MCP config copied to clipboard"
msgstr ""
#. js-lingui-id: NvQoNb
#: src/pages/settings/ai/components/SettingsAiMCP.tsx
msgid "MCP Configuration copied to clipboard"
msgstr "Η διαμόρφωση MCP αντιγράφηκε στο πρόχειρο"
#. js-lingui-id: 8CWirf
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiMCP.tsx
msgid "MCP Server"
msgstr "Διακομιστής MCP"
@@ -10019,6 +10083,7 @@ msgstr "Απαιτείται το ID μοντέλου"
#. js-lingui-id: //nm2/
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Models"
msgstr "Μοντέλα"
@@ -10086,7 +10151,6 @@ msgid "months"
msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
msgid "More"
msgstr "Περισσότερα"
@@ -10235,8 +10299,8 @@ msgstr ""
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTable.tsx
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
@@ -11417,6 +11481,7 @@ msgstr "αντικείμενα"
#. js-lingui-id: B3toQF
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
@@ -11805,7 +11870,9 @@ msgid "Override Draft"
msgstr "Αντικατάσταση Προχείρου"
#. js-lingui-id: 6/dCYd
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Overview"
msgstr "Επισκόπηση"
@@ -11879,6 +11946,11 @@ msgstr "Η Σελίδα Δεν Βρέθηκε | Twenty"
msgid "Page Views"
msgstr "Προβολές σελίδας"
#. js-lingui-id: wRR604
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Pages"
msgstr ""
#. js-lingui-id: ijBN4V
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "paragraph"
@@ -12592,18 +12664,18 @@ msgid "Read documentation"
msgstr "Διαβάστε την τεκμηρίωση"
#. js-lingui-id: U26cMX
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read system prompts"
msgstr ""
#. js-lingui-id: EKsFda
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read the system prompts to understand how the AI works"
msgstr ""
#. js-lingui-id: 0URVx8
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1, }, )
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1 }, )
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read the system prompts to understand how the AI works (~{0} tokens)"
msgstr ""
@@ -12732,6 +12804,11 @@ msgstr "Εγγραφή εικόνας"
msgid "Record label"
msgstr "Ετικέτα εγγραφής"
#. js-lingui-id: XueM/X
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Record page"
msgstr ""
#. js-lingui-id: mAHjRd
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutOpenInContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -12850,6 +12927,7 @@ msgid "Relation type"
msgstr "Τύπος σχέσης"
#. js-lingui-id: g87L9j
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
#: src/modules/activities/inline-cell/components/ActivityTargetsInlineCell.tsx
msgid "Relations"
@@ -13162,6 +13240,7 @@ msgid "Response Format"
msgstr ""
#. js-lingui-id: WHiaOl
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/playground/SettingsRestPlayground.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "REST"
@@ -13332,6 +13411,7 @@ msgstr ""
#. js-lingui-id: 5dJK4M
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
@@ -13551,7 +13631,7 @@ msgid "Search a role..."
msgstr "Αναζήτηση ρόλου..."
#. js-lingui-id: lJNEce
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Search a skill..."
msgstr "Αναζήτηση δεξιότητας..."
@@ -13567,7 +13647,7 @@ msgid "Search a team member..."
msgstr "Αναζήτηση ενός μέλους..."
#. js-lingui-id: VNmPqQ
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Search a tool..."
msgstr ""
@@ -13883,6 +13963,11 @@ msgstr ""
msgid "See Records on All Objects"
msgstr "Δείτε εγγραφές σε όλα τα αντικείμενα"
#. js-lingui-id: eQ3co2
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "See your data structure as an interactive diagram"
msgstr ""
#. js-lingui-id: Hhnssf
#: src/pages/settings/applications/components/SettingsApplicationTableRow.tsx
msgid "Seeded"
@@ -14227,6 +14312,11 @@ msgstr "Ρυθμίστε ένα πεδίο Επιλογής στο {objectLabel}
msgid "Set up forwarding from the source address to this destination."
msgstr ""
#. js-lingui-id: dq5Wx1
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Set up MCP"
msgstr ""
#. js-lingui-id: 9HNKkV
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
msgid "Set your application configuration variables"
@@ -14389,6 +14479,16 @@ msgstr ""
msgid "Side Panel"
msgstr "Πλάγιος Πίνακας"
#. js-lingui-id: uWi2Q+
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Sidebar"
msgstr ""
#. js-lingui-id: 9k9PMD
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Sidebar items"
msgstr ""
#. js-lingui-id: 5lWFkC
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
msgid "Sign in"
@@ -14473,12 +14573,12 @@ msgid "Skill"
msgstr "Δεξιότητα"
#. js-lingui-id: h4t38o
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skill activated"
msgstr "Η δεξιότητα ενεργοποιήθηκε"
#. js-lingui-id: /IoK74
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skill deleted"
msgstr "Η δεξιότητα διαγράφηκε"
@@ -14501,7 +14601,9 @@ msgstr ""
#. js-lingui-id: PCSkw2
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skills"
msgstr "Δεξιότητες"
@@ -14726,7 +14828,7 @@ msgid "Stages"
msgstr "Στάδια"
#. js-lingui-id: TJBHlP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/applications/hooks/useApplicationChipData.ts
msgid "Standard"
@@ -15139,8 +15241,8 @@ msgstr ""
#: src/pages/settings/ai/SettingsAiPrompts.tsx
#: src/pages/settings/ai/SettingsAiPrompts.tsx
#: src/pages/settings/ai/forms/components/SettingsAiAgentForm.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
msgid "System Prompt"
msgstr "Σύστημα Προτροπής"
@@ -15222,6 +15324,7 @@ msgstr "Τίτλος εργασίας"
#. js-lingui-id: KM6m8p
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Team"
msgstr ""
@@ -15340,6 +15443,11 @@ msgid ""
"See the [Getting Started guide](https://twenty.com/developers/extend/apps/getting-started) for the full walkthrough, and [Building Apps](https://twenty.com/developers/extend/apps/building) for the `defineApplication` / `defineEntity` APIs."
msgstr ""
#. js-lingui-id: n+CCXl
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "The default AI model used for chats, agents, and workflows"
msgstr ""
#. js-lingui-id: 1xQkU9
#: src/modules/settings/data-model/fields/forms/phones/components/SettingsDataModelFieldPhonesForm.tsx
msgid "The default country code for new phone numbers."
@@ -15904,7 +16012,7 @@ msgid "Tool calls made"
msgstr "Κλήσεις εργαλείων που έγιναν"
#. js-lingui-id: SrWh42
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/hooks/useCreateTool.ts
msgid "Tool created"
msgstr "Το εργαλείο δημιουργήθηκε"
@@ -15925,7 +16033,9 @@ msgstr "Δημιουργία εργαλείου"
#. js-lingui-id: xdA/+p
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Tools"
msgstr "Εργαλεία"
@@ -16071,11 +16181,10 @@ msgstr ""
msgid "True"
msgstr "Αληθής"
#. js-lingui-id: haaL9N
#. js-lingui-id: 64tOpZ
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Try our REST or GraphQL API playgrounds."
msgstr "Δοκιμάστε τις REST ή GraphQL API πλατφόρμες μας."
msgid "Try our REST or GraphQL API playgrounds"
msgstr ""
#. js-lingui-id: 3WWUB9
#: src/pages/settings/updates/SettingsUpdates.tsx
@@ -16742,9 +16851,13 @@ msgstr "Χρησιμοποιήστε εφαρμογές ταυτοποίησης
msgid "Use best models only"
msgstr "Χρήση μόνο των καλύτερων μοντέλων"
#. js-lingui-id: 5ZehS/
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Use filter to see existing skills or create your own"
msgstr ""
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
@@ -17106,7 +17219,9 @@ msgstr "Προβολή αρχείων καταγραφής δραστηριότ
#. js-lingui-id: 1I6UoR
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr "Προβολές"
@@ -17159,10 +17274,15 @@ msgid "Visible to you"
msgstr "Ορατό σε εσάς"
#. js-lingui-id: 6n7jtr
#: src/modules/settings/data-model/objects/components/SettingsObjectCoverImage.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Visualize"
msgstr "Απεικόνιση"
#. js-lingui-id: VvM/Ty
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Visualize data model"
msgstr ""
#. js-lingui-id: uUehLT
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Waiting"
@@ -17198,6 +17318,41 @@ msgstr "διαγράφηκε από"
msgid "was restored by"
msgstr "ανακτήθηκε από"
#. js-lingui-id: 0WPnTI
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Watch AI demo"
msgstr ""
#. js-lingui-id: 5qU4Mu
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
msgid "Watch API demo"
msgstr ""
#. js-lingui-id: inpQ46
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Watch apps demo"
msgstr ""
#. js-lingui-id: uIrZTC
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Watch customization demo"
msgstr ""
#. js-lingui-id: syeoTg
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Watch data model demo"
msgstr ""
#. js-lingui-id: egkNh9
#: src/modules/settings/components/SettingsDiscoveryHeroCard.tsx
msgid "Watch demo"
msgstr ""
#. js-lingui-id: 6ZDYQy
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Watch members demo"
msgstr ""
#. js-lingui-id: 6eMAkI
#: src/modules/auth/sign-in-up/components/EmailVerificationSent.tsx
msgid "We encountered an issue verifying"
@@ -17285,6 +17440,7 @@ msgstr "Απαιτείται το Webhook ID για ενημερώσεις"
#. js-lingui-id: v1kQyJ
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
@@ -17340,6 +17496,11 @@ msgstr "Με τι μπορώ να σας βοηθήσω;"
msgid "What this API can do: Select a user role to define its permissions."
msgstr "Τι μπορεί να κάνει αυτό το API: Επιλέξτε έναν ρόλο χρήστη για να ορίσετε τα δικαιώματά του."
#. js-lingui-id: drC+Tq
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "What's installed and being used in your workspace"
msgstr ""
#. js-lingui-id: m7GziZ
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "When a deal's stage changes to Closed Won, create a task assigned to the deal owner, due 7 days after the close date, with title \"Post-sale check-in\" and the company name in the description."
@@ -17399,6 +17560,11 @@ msgstr "Τύπος στοιχείου"
msgid "widgets"
msgstr ""
#. js-lingui-id: tL6W2K
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Widgets"
msgstr ""
#. js-lingui-id: j6ncOZ
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowEditActionIterator.tsx
msgid "Will continue to the next iteration even if the current one fails"
@@ -17468,6 +17634,7 @@ msgstr "Ροές Εργασίας"
#: src/pages/settings/members/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/layout/components/SettingsLayoutDetailScaffold.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
@@ -17477,7 +17644,6 @@ msgstr "Ροές Εργασίας"
#: src/pages/settings/developers/playground/SettingsGraphQLPlayground.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -17557,8 +17723,8 @@ msgid "Workspace Info"
msgstr "Πληροφορίες Χώρου Εργασίας"
#. js-lingui-id: BYrMT0
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Workspace Instructions"
msgstr "Οδηγίες Χώρου Εργασίας"
+247 -81
View File
@@ -949,7 +949,6 @@ msgstr "Active"
#. js-lingui-id: Mue4oc
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Active API keys created by you or your team."
msgstr "Active API keys created by you or your team."
@@ -1046,11 +1045,6 @@ msgstr "Add connection"
msgid "Add custom endpoints, private gateways, or additional regions."
msgstr "Add custom endpoints, private gateways, or additional regions."
#. js-lingui-id: GuJvBr
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
msgid "Add custom instructions specific to your workspace (appended to system prompt)"
msgstr "Add custom instructions specific to your workspace (appended to system prompt)"
#. js-lingui-id: 4JviOV
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
@@ -1288,6 +1282,11 @@ msgstr "Add to blocklist"
msgid "Add to Favorite"
msgstr "Add to Favorite"
#. js-lingui-id: VbareD
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Add Twenty as a Model Context Protocol (MCP) server. Paste this config into Claude Desktop, Cursor, Cline, Continue, Zed, or any other MCP-aware client."
msgstr "Add Twenty as a Model Context Protocol (MCP) server. Paste this config into Claude Desktop, Cursor, Cline, Continue, Zed, or any other MCP-aware client."
#. js-lingui-id: XnwceV
#: src/pages/settings/applications/components/SettingsApplicationRegistrationRedirectURIsInput.tsx
msgid "Add URI"
@@ -1770,6 +1769,11 @@ msgstr "All tasks addressed. Maintain the momentum."
msgid "All the applications currently installed on this workspace"
msgstr "All the applications currently installed on this workspace"
#. js-lingui-id: xP6s/m
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "All the layout items declared on your workspace"
msgstr "All the layout items declared on your workspace"
#. js-lingui-id: XuuWVF
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
msgid "All the standard objects"
@@ -1962,11 +1966,6 @@ msgstr "An internal error occurred while validating your changes. Please contact
msgid "An object with this name already exists"
msgstr "An object with this name already exists"
#. js-lingui-id: lxentK
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "An unexpected error occurred"
msgstr "An unexpected error occurred"
#. js-lingui-id: byKna+
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
msgid "An unexpected error occurred. Please try again."
@@ -2011,6 +2010,7 @@ msgid "Anyone with an email address at these domains is allowed to sign up for t
msgstr "Anyone with an email address at these domains is allowed to sign up for this workspace."
#. js-lingui-id: OZtEcz
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "API"
msgstr "API"
@@ -2028,7 +2028,6 @@ msgstr "API & Webhooks"
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "API Key"
msgstr "API Key"
@@ -2058,7 +2057,6 @@ msgid "API key roles"
msgstr "API key roles"
#. js-lingui-id: 5h8ooz
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
msgid "API keys"
msgstr "API keys"
@@ -2099,12 +2097,6 @@ msgstr "API Name (Singular)"
msgid "API values"
msgstr "API values"
#. js-lingui-id: JR6nY7
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "APIs"
msgstr "APIs"
#. js-lingui-id: ZZAOwb
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
@@ -2126,7 +2118,7 @@ msgstr "Apostrophe and dot"
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
msgid "App"
msgstr "App"
@@ -2476,6 +2468,11 @@ msgstr "at {remainingTimes} and {lastTime}"
msgid "at 1 minute past the hour"
msgstr "at 1 minute past the hour"
#. js-lingui-id: ooA+hm
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "At a glance"
msgstr "At a glance"
#. js-lingui-id: vyXyF0
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
msgid "At a specific date or time"
@@ -2640,11 +2637,15 @@ msgid "Availability"
msgstr "Availability"
#. js-lingui-id: csDS2L
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
msgid "Available"
msgstr "Available"
#. js-lingui-id: STA+22
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Available models"
msgstr "Available models"
#. js-lingui-id: oD38t2
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Available tools"
@@ -2860,6 +2861,11 @@ msgstr "Bronze"
msgid "Brown"
msgstr "Brown"
#. js-lingui-id: O2UpM1
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Browse"
msgstr "Browse"
#. js-lingui-id: GsXRxc
#: src/modules/settings/data-model/indexes/forms/components/SettingsObjectIndexOptionsForm.tsx
msgid "BTREE (default, good for sorting and equality)"
@@ -3610,6 +3616,11 @@ msgstr "Command copied to clipboard"
msgid "Command Icon"
msgstr "Command Icon"
#. js-lingui-id: V1zWD4
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Command menu"
msgstr "Command menu"
#. js-lingui-id: PUMdxH
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
msgid "Command Menu"
@@ -3637,6 +3648,11 @@ msgstr "Command menu items"
msgid "commands"
msgstr "commands"
#. js-lingui-id: 45MZFs
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Commands"
msgstr "Commands"
#. js-lingui-id: 4XlFx/
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Commands copied to clipboard"
@@ -3803,11 +3819,6 @@ msgstr "Configure these DNS records with your domain provider"
msgid "Configure this widget to display fields"
msgstr "Configure this widget to display fields"
#. js-lingui-id: hzDiM0
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Configure your default AI model"
msgstr "Configure your default AI model"
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -3881,6 +3892,11 @@ msgstr "Connect {providerDisplayName}"
msgid "Connect a new account to your workspace"
msgstr "Connect a new account to your workspace"
#. js-lingui-id: vPCRNy
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Connect AI assistants like Claude or Cursor to your workspace via the Model Context Protocol"
msgstr "Connect AI assistants like Claude or Cursor to your workspace via the Model Context Protocol"
#. js-lingui-id: YLx3sC
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect via IMAP/SMTP"
@@ -3896,6 +3912,11 @@ msgstr "Connect with Google"
msgid "Connect with Microsoft"
msgstr "Connect with Microsoft"
#. js-lingui-id: iZWbGJ
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Connect your AI assistant"
msgstr "Connect your AI assistant"
#. js-lingui-id: QHcLEN
#: src/pages/settings/applications/SettingsApplicationConnectionDetail.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationConnectionsSection.tsx
@@ -4061,6 +4082,11 @@ msgstr "Control which types of entities this role can be assigned to"
msgid "Conversation"
msgstr "Conversation"
#. js-lingui-id: EnJuK0
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Conversations"
msgstr "Conversations"
#. js-lingui-id: HRGl1X
#: src/pages/onboarding/CreateProfile.tsx
#: src/modules/settings/profile/components/NameFields.tsx
@@ -4099,6 +4125,11 @@ msgstr "Copy command"
msgid "Copy commands"
msgstr "Copy commands"
#. js-lingui-id: eaZgIQ
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Copy config"
msgstr "Copy config"
#. js-lingui-id: 7eVkEH
#: src/pages/onboarding/InviteTeam.tsx
msgid "Copy invitation link"
@@ -4211,6 +4242,11 @@ msgstr "Could not open billing portal. Please check your enterprise key is prese
msgid "Could not open Stripe. Please contact support."
msgstr "Could not open Stripe. Please contact support."
#. js-lingui-id: 6wi9Nf
#: src/modules/settings/playground/hooks/useOpenPlayground.ts
msgid "Could not open the API playground"
msgstr "Could not open the API playground"
#. js-lingui-id: wVw4Am
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not refresh validity token. Please contact support."
@@ -4335,7 +4371,6 @@ msgstr "Create and configure AI agents"
#. js-lingui-id: uXGLuq
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Create API key"
msgstr "Create API key"
@@ -4620,7 +4655,7 @@ msgstr "Current workspace member not found."
#. js-lingui-id: 8Tg/JR
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/applications/hooks/useApplicationChipData.ts
@@ -4645,6 +4680,11 @@ msgstr "Custom Domain"
msgid "Custom domain updated"
msgstr "Custom domain updated"
#. js-lingui-id: c6P+Xe
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Custom instructions appended to every system prompt"
msgstr "Custom instructions appended to every system prompt"
#. js-lingui-id: 87ZNeX
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
msgid "Custom model ID"
@@ -4687,6 +4727,7 @@ msgid "Customization"
msgstr "Customization"
#. js-lingui-id: srRMnJ
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectLayout.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
@@ -4783,6 +4824,11 @@ msgstr "Dark"
msgid "Dashboard duplicated successfully"
msgstr "Dashboard duplicated successfully"
#. js-lingui-id: w6iIMm
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Dashboards"
msgstr "Dashboards"
#. js-lingui-id: HKH+W+
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
@@ -4983,7 +5029,7 @@ msgstr "Deactivate this field"
#. js-lingui-id: yAT3be
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
@@ -5010,7 +5056,6 @@ msgstr "default"
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
msgid "Default"
@@ -5026,6 +5071,11 @@ msgstr "Default Country"
msgid "Default Country Code"
msgstr "Default Country Code"
#. js-lingui-id: OtTlfU
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Default model"
msgstr "Default model"
#. js-lingui-id: hUWaAk
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
msgid "Default model for chats and complex reasoning"
@@ -5468,6 +5518,11 @@ msgstr "Details"
msgid "Detected application version running on this instance"
msgstr "Detected application version running on this instance"
#. js-lingui-id: QYXe1O
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Develop"
msgstr "Develop"
#. js-lingui-id: 7aDnUb
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Developer"
@@ -5559,7 +5614,6 @@ msgstr "Do not import"
#. js-lingui-id: TvY/XA
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
msgid "Documentation"
@@ -5763,7 +5817,7 @@ msgid "e.g. OpenAI EU"
msgstr "e.g. OpenAI EU"
#. js-lingui-id: p5P8NB
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
msgstr "E.g., \"We are a B2B SaaS company. Always use formal language...\""
@@ -6109,6 +6163,8 @@ msgstr "Employees"
#. js-lingui-id: N2S1rs
#: src/modules/object-record/record-inline-cell/components/RecordInlineCellDisplayMode.tsx
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRelationFieldDiffValues.tsx
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRelationFieldDiffValues.tsx
#: src/modules/activities/timeline-activities/rows/main-object/components/EventFieldDiff.tsx
msgid "Empty"
msgstr "Empty"
@@ -6423,11 +6479,6 @@ msgstr "Enter value"
msgid "Enter values, comma-separated"
msgstr "Enter values, comma-separated"
#. js-lingui-id: OjkRLQ
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "Enter your API key"
msgstr "Enter your API key"
#. js-lingui-id: GpB8YV
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -6983,7 +7034,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
msgstr "Failed to activate enterprise license. Please check your key or contact support."
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Failed to activate skill"
msgstr "Failed to activate skill"
@@ -7002,11 +7053,6 @@ msgstr "Failed to add provider"
msgid "Failed to create email handle. Email handles may not be configured on this server."
msgstr "Failed to create email handle. Email handles may not be configured on this server."
#. js-lingui-id: WM7GKt
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Failed to create tool"
msgstr "Failed to create tool"
#. js-lingui-id: lWoewm
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Failed to delete email handle."
@@ -7018,7 +7064,7 @@ msgid "Failed to delete jobs. Please try again later."
msgstr "Failed to delete jobs. Please try again later."
#. js-lingui-id: bmwWKk
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Failed to delete skill"
msgstr "Failed to delete skill"
@@ -7121,7 +7167,7 @@ msgid "Failed to save role permissions: {errorMessage}"
msgstr "Failed to save role permissions: {errorMessage}"
#. js-lingui-id: 9ryUyP
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Failed to save workspace instructions"
msgstr "Failed to save workspace instructions"
@@ -7147,13 +7193,13 @@ msgid "Failed to update default model"
msgstr "Failed to update default model"
#. js-lingui-id: 1R13Ov
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
msgid "Failed to update model"
msgstr "Failed to update model"
#. js-lingui-id: W7Ff/4
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Failed to update model availability"
@@ -7170,7 +7216,7 @@ msgid "Failed to update model recommendations"
msgstr "Failed to update model recommendations"
#. js-lingui-id: rCUG3c
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
msgid "Failed to update model selection mode"
msgstr "Failed to update model selection mode"
@@ -7329,6 +7375,7 @@ msgstr "fields"
#. js-lingui-id: vF68cg
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
#: src/pages/settings/data-model/new-index/SettingsObjectNewIndex.tsx
@@ -7863,6 +7910,7 @@ msgid "Grants permission to perform all available actions without restriction"
msgstr "Grants permission to perform all available actions without restriction"
#. js-lingui-id: gBiL6J
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "GraphQL"
msgstr "GraphQL"
@@ -8568,6 +8616,7 @@ msgid "Insert a JSON input, then press \"Run Function\"."
msgstr "Insert a JSON input, then press \"Run Function\"."
#. js-lingui-id: TKQ7K+
#: src/pages/settings/applications/SettingsApplications.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationRegistrationShareLinkButtons.tsx
msgid "Install"
@@ -8648,11 +8697,6 @@ msgstr "Interval switching has been cancelled."
msgid "Invalid 2FA information."
msgstr "Invalid 2FA information."
#. js-lingui-id: GNRDhm
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "Invalid API key"
msgstr "Invalid API key"
#. js-lingui-id: 9TgH9p
#: src/modules/settings/security/components/SettingsSecurityAuthBypassOptionsList.tsx
msgid "Invalid auth bypass provider"
@@ -8772,6 +8816,7 @@ msgstr "Invitations"
#. js-lingui-id: MFKlMB
#: src/utils/title-utils.ts
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/modules/workspace/components/WorkspaceInviteTeam.tsx
msgid "Invite"
msgstr "Invite"
@@ -9250,12 +9295,15 @@ msgid "Launch manually"
msgstr "Launch manually"
#. js-lingui-id: rdU729
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -9711,6 +9759,11 @@ msgstr "Manage feature flags for this workspace"
msgid "Manage Members"
msgstr "Manage Members"
#. js-lingui-id: LNz5UW
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Manage objects, fields and relationships"
msgstr "Manage objects, fields and relationships"
#. js-lingui-id: eGGH1l
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Manage security policies"
@@ -9747,7 +9800,7 @@ msgid "Manage your internet accounts."
msgstr "Manage your internet accounts."
#. js-lingui-id: waFx9W
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Managed"
msgstr "Managed"
@@ -9825,12 +9878,23 @@ msgstr "Maximum URLs"
msgid "Maximum values"
msgstr "Maximum values"
#. js-lingui-id: nA8kxD
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
msgid "MCP"
msgstr "MCP"
#. js-lingui-id: 2jj0eo
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "MCP config copied to clipboard"
msgstr "MCP config copied to clipboard"
#. js-lingui-id: NvQoNb
#: src/pages/settings/ai/components/SettingsAiMCP.tsx
msgid "MCP Configuration copied to clipboard"
msgstr "MCP Configuration copied to clipboard"
#. js-lingui-id: 8CWirf
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiMCP.tsx
msgid "MCP Server"
msgstr "MCP Server"
@@ -10037,6 +10101,7 @@ msgstr "Model ID is required"
#. js-lingui-id: //nm2/
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Models"
msgstr "Models"
@@ -10104,7 +10169,6 @@ msgid "months"
msgstr "months"
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
msgid "More"
msgstr "More"
@@ -10253,8 +10317,8 @@ msgstr "N/A"
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTable.tsx
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
@@ -11435,6 +11499,7 @@ msgstr "objects"
#. js-lingui-id: B3toQF
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
@@ -11823,7 +11888,9 @@ msgid "Override Draft"
msgstr "Override Draft"
#. js-lingui-id: 6/dCYd
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Overview"
msgstr "Overview"
@@ -11897,6 +11964,11 @@ msgstr "Page Not Found | Twenty"
msgid "Page Views"
msgstr "Page Views"
#. js-lingui-id: wRR604
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Pages"
msgstr "Pages"
#. js-lingui-id: ijBN4V
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "paragraph"
@@ -12610,18 +12682,18 @@ msgid "Read documentation"
msgstr "Read documentation"
#. js-lingui-id: U26cMX
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read system prompts"
msgstr "Read system prompts"
#. js-lingui-id: EKsFda
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read the system prompts to understand how the AI works"
msgstr "Read the system prompts to understand how the AI works"
#. js-lingui-id: 0URVx8
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1, }, )
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1 }, )
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read the system prompts to understand how the AI works (~{0} tokens)"
msgstr "Read the system prompts to understand how the AI works (~{0} tokens)"
@@ -12750,6 +12822,11 @@ msgstr "Record image"
msgid "Record label"
msgstr "Record label"
#. js-lingui-id: XueM/X
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Record page"
msgstr "Record page"
#. js-lingui-id: mAHjRd
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutOpenInContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -12868,6 +12945,7 @@ msgid "Relation type"
msgstr "Relation type"
#. js-lingui-id: g87L9j
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
#: src/modules/activities/inline-cell/components/ActivityTargetsInlineCell.tsx
msgid "Relations"
@@ -13180,6 +13258,7 @@ msgid "Response Format"
msgstr "Response Format"
#. js-lingui-id: WHiaOl
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/playground/SettingsRestPlayground.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "REST"
@@ -13350,6 +13429,7 @@ msgstr "roles"
#. js-lingui-id: 5dJK4M
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
@@ -13569,7 +13649,7 @@ msgid "Search a role..."
msgstr "Search a role..."
#. js-lingui-id: lJNEce
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Search a skill..."
msgstr "Search a skill..."
@@ -13585,7 +13665,7 @@ msgid "Search a team member..."
msgstr "Search a team member..."
#. js-lingui-id: VNmPqQ
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Search a tool..."
msgstr "Search a tool..."
@@ -13901,6 +13981,11 @@ msgstr "See records"
msgid "See Records on All Objects"
msgstr "See Records on All Objects"
#. js-lingui-id: eQ3co2
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "See your data structure as an interactive diagram"
msgstr "See your data structure as an interactive diagram"
#. js-lingui-id: Hhnssf
#: src/pages/settings/applications/components/SettingsApplicationTableRow.tsx
msgid "Seeded"
@@ -14245,6 +14330,11 @@ msgstr "Set up a Select field on {objectLabel} to create a Kanban"
msgid "Set up forwarding from the source address to this destination."
msgstr "Set up forwarding from the source address to this destination."
#. js-lingui-id: dq5Wx1
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Set up MCP"
msgstr "Set up MCP"
#. js-lingui-id: 9HNKkV
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
msgid "Set your application configuration variables"
@@ -14405,6 +14495,16 @@ msgstr "Show value in center"
msgid "Side Panel"
msgstr "Side Panel"
#. js-lingui-id: uWi2Q+
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Sidebar"
msgstr "Sidebar"
#. js-lingui-id: 9k9PMD
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Sidebar items"
msgstr "Sidebar items"
#. js-lingui-id: 5lWFkC
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
msgid "Sign in"
@@ -14489,12 +14589,12 @@ msgid "Skill"
msgstr "Skill"
#. js-lingui-id: h4t38o
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skill activated"
msgstr "Skill activated"
#. js-lingui-id: /IoK74
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skill deleted"
msgstr "Skill deleted"
@@ -14517,7 +14617,9 @@ msgstr "skills"
#. js-lingui-id: PCSkw2
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skills"
msgstr "Skills"
@@ -14742,7 +14844,7 @@ msgid "Stages"
msgstr "Stages"
#. js-lingui-id: TJBHlP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/applications/hooks/useApplicationChipData.ts
msgid "Standard"
@@ -15155,8 +15257,8 @@ msgstr "System objects"
#: src/pages/settings/ai/SettingsAiPrompts.tsx
#: src/pages/settings/ai/SettingsAiPrompts.tsx
#: src/pages/settings/ai/forms/components/SettingsAiAgentForm.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
msgid "System Prompt"
msgstr "System Prompt"
@@ -15238,6 +15340,7 @@ msgstr "Task Title"
#. js-lingui-id: KM6m8p
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Team"
msgstr "Team"
@@ -15386,6 +15489,11 @@ msgstr ""
"\n"
"See the [Getting Started guide](https://twenty.com/developers/extend/apps/getting-started) for the full walkthrough, and [Building Apps](https://twenty.com/developers/extend/apps/building) for the `defineApplication` / `defineEntity` APIs."
#. js-lingui-id: n+CCXl
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "The default AI model used for chats, agents, and workflows"
msgstr "The default AI model used for chats, agents, and workflows"
#. js-lingui-id: 1xQkU9
#: src/modules/settings/data-model/fields/forms/phones/components/SettingsDataModelFieldPhonesForm.tsx
msgid "The default country code for new phone numbers."
@@ -15950,7 +16058,7 @@ msgid "Tool calls made"
msgstr "Tool calls made"
#. js-lingui-id: SrWh42
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/hooks/useCreateTool.ts
msgid "Tool created"
msgstr "Tool created"
@@ -15971,7 +16079,9 @@ msgstr "Tool generation"
#. js-lingui-id: xdA/+p
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Tools"
msgstr "Tools"
@@ -16117,11 +16227,10 @@ msgstr "Triggers the function with an HTTP request"
msgid "True"
msgstr "True"
#. js-lingui-id: haaL9N
#. js-lingui-id: 64tOpZ
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Try our REST or GraphQL API playgrounds."
msgstr "Try our REST or GraphQL API playgrounds."
msgid "Try our REST or GraphQL API playgrounds"
msgstr "Try our REST or GraphQL API playgrounds"
#. js-lingui-id: 3WWUB9
#: src/pages/settings/updates/SettingsUpdates.tsx
@@ -16788,9 +16897,13 @@ msgstr "Use authenticator apps and browser extensions like 1Password, Authy, Mic
msgid "Use best models only"
msgstr "Use best models only"
#. js-lingui-id: 5ZehS/
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Use filter to see existing skills or create your own"
msgstr "Use filter to see existing skills or create your own"
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Use filter to see existing tools or create your own"
msgstr "Use filter to see existing tools or create your own"
@@ -17152,7 +17265,9 @@ msgstr "View workspace activity logs"
#. js-lingui-id: 1I6UoR
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr "Views"
@@ -17205,10 +17320,15 @@ msgid "Visible to you"
msgstr "Visible to you"
#. js-lingui-id: 6n7jtr
#: src/modules/settings/data-model/objects/components/SettingsObjectCoverImage.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Visualize"
msgstr "Visualize"
#. js-lingui-id: VvM/Ty
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Visualize data model"
msgstr "Visualize data model"
#. js-lingui-id: uUehLT
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Waiting"
@@ -17244,6 +17364,41 @@ msgstr "was deleted by"
msgid "was restored by"
msgstr "was restored by"
#. js-lingui-id: 0WPnTI
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Watch AI demo"
msgstr "Watch AI demo"
#. js-lingui-id: 5qU4Mu
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
msgid "Watch API demo"
msgstr "Watch API demo"
#. js-lingui-id: inpQ46
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Watch apps demo"
msgstr "Watch apps demo"
#. js-lingui-id: uIrZTC
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Watch customization demo"
msgstr "Watch customization demo"
#. js-lingui-id: syeoTg
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Watch data model demo"
msgstr "Watch data model demo"
#. js-lingui-id: egkNh9
#: src/modules/settings/components/SettingsDiscoveryHeroCard.tsx
msgid "Watch demo"
msgstr "Watch demo"
#. js-lingui-id: 6ZDYQy
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Watch members demo"
msgstr "Watch members demo"
#. js-lingui-id: 6eMAkI
#: src/modules/auth/sign-in-up/components/EmailVerificationSent.tsx
msgid "We encountered an issue verifying"
@@ -17331,6 +17486,7 @@ msgstr "Webhook ID is required for updates"
#. js-lingui-id: v1kQyJ
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
@@ -17386,6 +17542,11 @@ msgstr "What can I help you with?"
msgid "What this API can do: Select a user role to define its permissions."
msgstr "What this API can do: Select a user role to define its permissions."
#. js-lingui-id: drC+Tq
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "What's installed and being used in your workspace"
msgstr "What's installed and being used in your workspace"
#. js-lingui-id: m7GziZ
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "When a deal's stage changes to Closed Won, create a task assigned to the deal owner, due 7 days after the close date, with title \"Post-sale check-in\" and the company name in the description."
@@ -17445,6 +17606,11 @@ msgstr "Widget type"
msgid "widgets"
msgstr "widgets"
#. js-lingui-id: tL6W2K
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Widgets"
msgstr "Widgets"
#. js-lingui-id: j6ncOZ
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowEditActionIterator.tsx
msgid "Will continue to the next iteration even if the current one fails"
@@ -17514,6 +17680,7 @@ msgstr "Workflows"
#: src/pages/settings/members/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/layout/components/SettingsLayoutDetailScaffold.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
@@ -17523,7 +17690,6 @@ msgstr "Workflows"
#: src/pages/settings/developers/playground/SettingsGraphQLPlayground.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -17603,8 +17769,8 @@ msgid "Workspace Info"
msgstr "Workspace Info"
#. js-lingui-id: BYrMT0
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Workspace Instructions"
msgstr "Workspace Instructions"
+247 -81
View File
@@ -954,7 +954,6 @@ msgstr "Activo"
#. js-lingui-id: Mue4oc
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Active API keys created by you or your team."
msgstr "Claves API activas creadas por usted o su equipo."
@@ -1051,11 +1050,6 @@ msgstr ""
msgid "Add custom endpoints, private gateways, or additional regions."
msgstr "Añade endpoints personalizados, puertas de enlace privadas o regiones adicionales."
#. js-lingui-id: GuJvBr
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
msgid "Add custom instructions specific to your workspace (appended to system prompt)"
msgstr "Añade instrucciones personalizadas específicas de tu espacio de trabajo (se añaden al prompt del sistema)"
#. js-lingui-id: 4JviOV
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
@@ -1293,6 +1287,11 @@ msgstr "Añadir a la lista de bloqueo"
msgid "Add to Favorite"
msgstr "Añadir a favoritos"
#. js-lingui-id: VbareD
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Add Twenty as a Model Context Protocol (MCP) server. Paste this config into Claude Desktop, Cursor, Cline, Continue, Zed, or any other MCP-aware client."
msgstr ""
#. js-lingui-id: XnwceV
#: src/pages/settings/applications/components/SettingsApplicationRegistrationRedirectURIsInput.tsx
msgid "Add URI"
@@ -1775,6 +1774,11 @@ msgstr "Todas las tareas abordadas. Mantén el impulso."
msgid "All the applications currently installed on this workspace"
msgstr ""
#. js-lingui-id: xP6s/m
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "All the layout items declared on your workspace"
msgstr ""
#. js-lingui-id: XuuWVF
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
msgid "All the standard objects"
@@ -1967,11 +1971,6 @@ msgstr "Ocurrió un error interno al validar sus cambios. Por favor, contacte so
msgid "An object with this name already exists"
msgstr "Ya existe un objeto con este nombre"
#. js-lingui-id: lxentK
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "An unexpected error occurred"
msgstr "Se produjo un error inesperado"
#. js-lingui-id: byKna+
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
msgid "An unexpected error occurred. Please try again."
@@ -2016,6 +2015,7 @@ msgid "Anyone with an email address at these domains is allowed to sign up for t
msgstr "Cualquiera con una dirección de correo electrónico en estos dominios puede registrarse en este espacio de trabajo."
#. js-lingui-id: OZtEcz
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "API"
msgstr "API"
@@ -2033,7 +2033,6 @@ msgstr "API y Webhooks"
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "API Key"
msgstr "Clave API"
@@ -2063,7 +2062,6 @@ msgid "API key roles"
msgstr "Roles de Claves API"
#. js-lingui-id: 5h8ooz
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
msgid "API keys"
msgstr "Claves API"
@@ -2104,12 +2102,6 @@ msgstr "Nombre de API (Singular)"
msgid "API values"
msgstr "Valores de la API"
#. js-lingui-id: JR6nY7
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "APIs"
msgstr "API"
#. js-lingui-id: ZZAOwb
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
@@ -2131,7 +2123,7 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
msgid "App"
msgstr "Aplicación"
@@ -2481,6 +2473,11 @@ msgstr "a las {remainingTimes} y {lastTime}"
msgid "at 1 minute past the hour"
msgstr "a 1 minuto pasada la hora"
#. js-lingui-id: ooA+hm
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "At a glance"
msgstr ""
#. js-lingui-id: vyXyF0
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
msgid "At a specific date or time"
@@ -2645,11 +2642,15 @@ msgid "Availability"
msgstr "Disponibilidad"
#. js-lingui-id: csDS2L
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
msgid "Available"
msgstr "Disponible"
#. js-lingui-id: STA+22
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Available models"
msgstr ""
#. js-lingui-id: oD38t2
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Available tools"
@@ -2865,6 +2866,11 @@ msgstr "Bronce"
msgid "Brown"
msgstr "Marrón"
#. js-lingui-id: O2UpM1
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Browse"
msgstr ""
#. js-lingui-id: GsXRxc
#: src/modules/settings/data-model/indexes/forms/components/SettingsObjectIndexOptionsForm.tsx
msgid "BTREE (default, good for sorting and equality)"
@@ -3615,6 +3621,11 @@ msgstr "Comando copiado al portapapeles"
msgid "Command Icon"
msgstr "Icono de comando"
#. js-lingui-id: V1zWD4
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Command menu"
msgstr ""
#. js-lingui-id: PUMdxH
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
msgid "Command Menu"
@@ -3642,6 +3653,11 @@ msgstr ""
msgid "commands"
msgstr ""
#. js-lingui-id: 45MZFs
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Commands"
msgstr ""
#. js-lingui-id: 4XlFx/
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Commands copied to clipboard"
@@ -3808,11 +3824,6 @@ msgstr "Configure estos registros DNS con su proveedor de dominio"
msgid "Configure this widget to display fields"
msgstr "Configura este widget para visualizar campos"
#. js-lingui-id: hzDiM0
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Configure your default AI model"
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -3886,6 +3897,11 @@ msgstr ""
msgid "Connect a new account to your workspace"
msgstr "Conectar una nueva cuenta a su espacio de trabajo"
#. js-lingui-id: vPCRNy
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Connect AI assistants like Claude or Cursor to your workspace via the Model Context Protocol"
msgstr ""
#. js-lingui-id: YLx3sC
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect via IMAP/SMTP"
@@ -3901,6 +3917,11 @@ msgstr "Conectar con Google"
msgid "Connect with Microsoft"
msgstr "Conectar con Microsoft"
#. js-lingui-id: iZWbGJ
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Connect your AI assistant"
msgstr ""
#. js-lingui-id: QHcLEN
#: src/pages/settings/applications/SettingsApplicationConnectionDetail.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationConnectionsSection.tsx
@@ -4066,6 +4087,11 @@ msgstr "Controla a qué tipos de entidades se puede asignar este rol"
msgid "Conversation"
msgstr "Conversación"
#. js-lingui-id: EnJuK0
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Conversations"
msgstr ""
#. js-lingui-id: HRGl1X
#: src/pages/onboarding/CreateProfile.tsx
#: src/modules/settings/profile/components/NameFields.tsx
@@ -4104,6 +4130,11 @@ msgstr "Copiar comando"
msgid "Copy commands"
msgstr "Copiar comandos"
#. js-lingui-id: eaZgIQ
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Copy config"
msgstr ""
#. js-lingui-id: 7eVkEH
#: src/pages/onboarding/InviteTeam.tsx
msgid "Copy invitation link"
@@ -4216,6 +4247,11 @@ msgstr "No se pudo abrir el portal de facturación. Comprueba que tu clave Enter
msgid "Could not open Stripe. Please contact support."
msgstr "No se pudo abrir Stripe. Ponte en contacto con soporte."
#. js-lingui-id: 6wi9Nf
#: src/modules/settings/playground/hooks/useOpenPlayground.ts
msgid "Could not open the API playground"
msgstr ""
#. js-lingui-id: wVw4Am
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not refresh validity token. Please contact support."
@@ -4340,7 +4376,6 @@ msgstr "Crear y configurar agentes de IA"
#. js-lingui-id: uXGLuq
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Create API key"
msgstr "Crear clave API"
@@ -4625,7 +4660,7 @@ msgstr "Miembro actual del espacio de trabajo no encontrado."
#. js-lingui-id: 8Tg/JR
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/applications/hooks/useApplicationChipData.ts
@@ -4650,6 +4685,11 @@ msgstr "Dominio personalizado"
msgid "Custom domain updated"
msgstr "Dominio personalizado actualizado"
#. js-lingui-id: c6P+Xe
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Custom instructions appended to every system prompt"
msgstr ""
#. js-lingui-id: 87ZNeX
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
msgid "Custom model ID"
@@ -4692,6 +4732,7 @@ msgid "Customization"
msgstr "Personalización"
#. js-lingui-id: srRMnJ
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectLayout.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
@@ -4788,6 +4829,11 @@ msgstr "Oscuro"
msgid "Dashboard duplicated successfully"
msgstr "Se duplicó el tablero con éxito"
#. js-lingui-id: w6iIMm
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Dashboards"
msgstr ""
#. js-lingui-id: HKH+W+
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
@@ -4988,7 +5034,7 @@ msgstr "Desactivar este campo"
#. js-lingui-id: yAT3be
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
@@ -5015,7 +5061,6 @@ msgstr ""
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
msgid "Default"
@@ -5031,6 +5076,11 @@ msgstr "País predeterminado"
msgid "Default Country Code"
msgstr "Código de país predeterminado"
#. js-lingui-id: OtTlfU
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Default model"
msgstr ""
#. js-lingui-id: hUWaAk
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
msgid "Default model for chats and complex reasoning"
@@ -5473,6 +5523,11 @@ msgstr "Detalles"
msgid "Detected application version running on this instance"
msgstr ""
#. js-lingui-id: QYXe1O
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Develop"
msgstr ""
#. js-lingui-id: 7aDnUb
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Developer"
@@ -5564,7 +5619,6 @@ msgstr "No importar"
#. js-lingui-id: TvY/XA
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
msgid "Documentation"
@@ -5768,7 +5822,7 @@ msgid "e.g. OpenAI EU"
msgstr "p. ej., OpenAI EU"
#. js-lingui-id: p5P8NB
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
msgstr "p. ej., \"Somos una empresa SaaS B2B. Utiliza siempre un lenguaje formal...\""
@@ -6114,6 +6168,8 @@ msgstr "Empleados"
#. js-lingui-id: N2S1rs
#: src/modules/object-record/record-inline-cell/components/RecordInlineCellDisplayMode.tsx
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRelationFieldDiffValues.tsx
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRelationFieldDiffValues.tsx
#: src/modules/activities/timeline-activities/rows/main-object/components/EventFieldDiff.tsx
msgid "Empty"
msgstr "Vacío"
@@ -6428,11 +6484,6 @@ msgstr "Introducir valor"
msgid "Enter values, comma-separated"
msgstr "Introduce valores, separados por comas"
#. js-lingui-id: OjkRLQ
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "Enter your API key"
msgstr "Introduce tu clave de API"
#. js-lingui-id: GpB8YV
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -6988,7 +7039,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
msgstr "No se pudo activar la licencia Enterprise. Comprueba tu clave o ponte en contacto con soporte."
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Failed to activate skill"
msgstr "No se pudo activar la habilidad"
@@ -7007,11 +7058,6 @@ msgstr "Error al añadir el proveedor"
msgid "Failed to create email handle. Email handles may not be configured on this server."
msgstr ""
#. js-lingui-id: WM7GKt
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Failed to create tool"
msgstr "No se pudo crear la herramienta"
#. js-lingui-id: lWoewm
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Failed to delete email handle."
@@ -7023,7 +7069,7 @@ msgid "Failed to delete jobs. Please try again later."
msgstr "Error al eliminar trabajos. Por favor, inténtelo de nuevo más tarde."
#. js-lingui-id: bmwWKk
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Failed to delete skill"
msgstr "No se pudo eliminar la habilidad"
@@ -7126,7 +7172,7 @@ msgid "Failed to save role permissions: {errorMessage}"
msgstr "Error al guardar los permisos de rol: {errorMessage}"
#. js-lingui-id: 9ryUyP
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Failed to save workspace instructions"
msgstr "Error al guardar las instrucciones del espacio de trabajo"
@@ -7152,13 +7198,13 @@ msgid "Failed to update default model"
msgstr "No se pudo actualizar el modelo predeterminado"
#. js-lingui-id: 1R13Ov
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
msgid "Failed to update model"
msgstr "Error al actualizar el modelo"
#. js-lingui-id: W7Ff/4
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Failed to update model availability"
@@ -7175,7 +7221,7 @@ msgid "Failed to update model recommendations"
msgstr ""
#. js-lingui-id: rCUG3c
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
msgid "Failed to update model selection mode"
msgstr "Error al actualizar el modo de selección de modelos"
@@ -7334,6 +7380,7 @@ msgstr "campos"
#. js-lingui-id: vF68cg
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
#: src/pages/settings/data-model/new-index/SettingsObjectNewIndex.tsx
@@ -7868,6 +7915,7 @@ msgid "Grants permission to perform all available actions without restriction"
msgstr "Concede permiso para realizar todas las acciones disponibles sin restricción"
#. js-lingui-id: gBiL6J
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "GraphQL"
msgstr "GraphQL"
@@ -8550,6 +8598,7 @@ msgid "Insert a JSON input, then press \"Run Function\"."
msgstr ""
#. js-lingui-id: TKQ7K+
#: src/pages/settings/applications/SettingsApplications.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationRegistrationShareLinkButtons.tsx
msgid "Install"
@@ -8630,11 +8679,6 @@ msgstr "El cambio de intervalo ha sido cancelado."
msgid "Invalid 2FA information."
msgstr "Información 2FA inválida."
#. js-lingui-id: GNRDhm
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "Invalid API key"
msgstr "Clave de API no válida"
#. js-lingui-id: 9TgH9p
#: src/modules/settings/security/components/SettingsSecurityAuthBypassOptionsList.tsx
msgid "Invalid auth bypass provider"
@@ -8754,6 +8798,7 @@ msgstr "Invitaciones"
#. js-lingui-id: MFKlMB
#: src/utils/title-utils.ts
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/modules/workspace/components/WorkspaceInviteTeam.tsx
msgid "Invite"
msgstr "Invitar"
@@ -9232,12 +9277,15 @@ msgid "Launch manually"
msgstr "Lanzar manualmente"
#. js-lingui-id: rdU729
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -9693,6 +9741,11 @@ msgstr ""
msgid "Manage Members"
msgstr "Gestionar miembros"
#. js-lingui-id: LNz5UW
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Manage objects, fields and relationships"
msgstr ""
#. js-lingui-id: eGGH1l
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Manage security policies"
@@ -9729,7 +9782,7 @@ msgid "Manage your internet accounts."
msgstr "Gestione sus cuentas de internet."
#. js-lingui-id: waFx9W
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Managed"
msgstr ""
@@ -9807,12 +9860,23 @@ msgstr "Máximo de URLs"
msgid "Maximum values"
msgstr "Máximo de valores"
#. js-lingui-id: nA8kxD
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
msgid "MCP"
msgstr ""
#. js-lingui-id: 2jj0eo
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "MCP config copied to clipboard"
msgstr ""
#. js-lingui-id: NvQoNb
#: src/pages/settings/ai/components/SettingsAiMCP.tsx
msgid "MCP Configuration copied to clipboard"
msgstr "Configuración MCP copiada al portapapeles"
#. js-lingui-id: 8CWirf
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiMCP.tsx
msgid "MCP Server"
msgstr "Servidor MCP"
@@ -10019,6 +10083,7 @@ msgstr "El ID del modelo es obligatorio"
#. js-lingui-id: //nm2/
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Models"
msgstr "Modelos"
@@ -10086,7 +10151,6 @@ msgid "months"
msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
msgid "More"
msgstr "Más"
@@ -10235,8 +10299,8 @@ msgstr ""
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTable.tsx
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
@@ -11417,6 +11481,7 @@ msgstr "objetos"
#. js-lingui-id: B3toQF
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
@@ -11805,7 +11870,9 @@ msgid "Override Draft"
msgstr "Sobrescribir Borrador"
#. js-lingui-id: 6/dCYd
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Overview"
msgstr "Resumen"
@@ -11879,6 +11946,11 @@ msgstr "Página no encontrada | Twenty"
msgid "Page Views"
msgstr "Vistas de página"
#. js-lingui-id: wRR604
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Pages"
msgstr ""
#. js-lingui-id: ijBN4V
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "paragraph"
@@ -12592,18 +12664,18 @@ msgid "Read documentation"
msgstr "Leer documentación"
#. js-lingui-id: U26cMX
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read system prompts"
msgstr ""
#. js-lingui-id: EKsFda
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read the system prompts to understand how the AI works"
msgstr ""
#. js-lingui-id: 0URVx8
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1, }, )
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1 }, )
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read the system prompts to understand how the AI works (~{0} tokens)"
msgstr ""
@@ -12732,6 +12804,11 @@ msgstr "Imagen de registro"
msgid "Record label"
msgstr "Etiqueta de registro"
#. js-lingui-id: XueM/X
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Record page"
msgstr ""
#. js-lingui-id: mAHjRd
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutOpenInContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -12850,6 +12927,7 @@ msgid "Relation type"
msgstr "Tipo de relación"
#. js-lingui-id: g87L9j
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
#: src/modules/activities/inline-cell/components/ActivityTargetsInlineCell.tsx
msgid "Relations"
@@ -13162,6 +13240,7 @@ msgid "Response Format"
msgstr ""
#. js-lingui-id: WHiaOl
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/playground/SettingsRestPlayground.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "REST"
@@ -13332,6 +13411,7 @@ msgstr ""
#. js-lingui-id: 5dJK4M
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
@@ -13551,7 +13631,7 @@ msgid "Search a role..."
msgstr "Buscar un rol..."
#. js-lingui-id: lJNEce
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Search a skill..."
msgstr "Buscar una habilidad..."
@@ -13567,7 +13647,7 @@ msgid "Search a team member..."
msgstr "Buscar un miembro del equipo..."
#. js-lingui-id: VNmPqQ
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Search a tool..."
msgstr ""
@@ -13883,6 +13963,11 @@ msgstr ""
msgid "See Records on All Objects"
msgstr "Ver registros en todos los objetos"
#. js-lingui-id: eQ3co2
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "See your data structure as an interactive diagram"
msgstr ""
#. js-lingui-id: Hhnssf
#: src/pages/settings/applications/components/SettingsApplicationTableRow.tsx
msgid "Seeded"
@@ -14227,6 +14312,11 @@ msgstr "Configura un campo de selección en {objectLabel} para crear un Kanban"
msgid "Set up forwarding from the source address to this destination."
msgstr ""
#. js-lingui-id: dq5Wx1
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Set up MCP"
msgstr ""
#. js-lingui-id: 9HNKkV
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
msgid "Set your application configuration variables"
@@ -14387,6 +14477,16 @@ msgstr ""
msgid "Side Panel"
msgstr "Panel lateral"
#. js-lingui-id: uWi2Q+
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Sidebar"
msgstr ""
#. js-lingui-id: 9k9PMD
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Sidebar items"
msgstr ""
#. js-lingui-id: 5lWFkC
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
msgid "Sign in"
@@ -14471,12 +14571,12 @@ msgid "Skill"
msgstr "Habilidad"
#. js-lingui-id: h4t38o
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skill activated"
msgstr "Habilidad activada"
#. js-lingui-id: /IoK74
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skill deleted"
msgstr "Habilidad eliminada"
@@ -14499,7 +14599,9 @@ msgstr ""
#. js-lingui-id: PCSkw2
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skills"
msgstr "Habilidades"
@@ -14724,7 +14826,7 @@ msgid "Stages"
msgstr "Fases"
#. js-lingui-id: TJBHlP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/applications/hooks/useApplicationChipData.ts
msgid "Standard"
@@ -15137,8 +15239,8 @@ msgstr "Objetos del sistema"
#: src/pages/settings/ai/SettingsAiPrompts.tsx
#: src/pages/settings/ai/SettingsAiPrompts.tsx
#: src/pages/settings/ai/forms/components/SettingsAiAgentForm.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
msgid "System Prompt"
msgstr "Aviso del sistema"
@@ -15220,6 +15322,7 @@ msgstr "Título de la tarea"
#. js-lingui-id: KM6m8p
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Team"
msgstr ""
@@ -15338,6 +15441,11 @@ msgid ""
"See the [Getting Started guide](https://twenty.com/developers/extend/apps/getting-started) for the full walkthrough, and [Building Apps](https://twenty.com/developers/extend/apps/building) for the `defineApplication` / `defineEntity` APIs."
msgstr ""
#. js-lingui-id: n+CCXl
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "The default AI model used for chats, agents, and workflows"
msgstr ""
#. js-lingui-id: 1xQkU9
#: src/modules/settings/data-model/fields/forms/phones/components/SettingsDataModelFieldPhonesForm.tsx
msgid "The default country code for new phone numbers."
@@ -15902,7 +16010,7 @@ msgid "Tool calls made"
msgstr "Llamadas a herramientas realizadas"
#. js-lingui-id: SrWh42
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/hooks/useCreateTool.ts
msgid "Tool created"
msgstr "Herramienta creada"
@@ -15923,7 +16031,9 @@ msgstr "Generación de herramientas"
#. js-lingui-id: xdA/+p
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Tools"
msgstr "Herramientas"
@@ -16069,11 +16179,10 @@ msgstr ""
msgid "True"
msgstr "Verdadero"
#. js-lingui-id: haaL9N
#. js-lingui-id: 64tOpZ
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Try our REST or GraphQL API playgrounds."
msgstr "Prueba nuestros entornos de prueba de API REST o GraphQL."
msgid "Try our REST or GraphQL API playgrounds"
msgstr ""
#. js-lingui-id: 3WWUB9
#: src/pages/settings/updates/SettingsUpdates.tsx
@@ -16740,9 +16849,13 @@ msgstr "Usa aplicaciones de autenticación y extensiones de navegador como 1Pass
msgid "Use best models only"
msgstr "Usar solo los mejores modelos"
#. js-lingui-id: 5ZehS/
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Use filter to see existing skills or create your own"
msgstr ""
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
@@ -17104,7 +17217,9 @@ msgstr "Ver registros de actividad del espacio de trabajo"
#. js-lingui-id: 1I6UoR
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr "Vistas"
@@ -17157,10 +17272,15 @@ msgid "Visible to you"
msgstr "Visible para usted"
#. js-lingui-id: 6n7jtr
#: src/modules/settings/data-model/objects/components/SettingsObjectCoverImage.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Visualize"
msgstr "Visualizar"
#. js-lingui-id: VvM/Ty
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Visualize data model"
msgstr ""
#. js-lingui-id: uUehLT
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Waiting"
@@ -17196,6 +17316,41 @@ msgstr "fue eliminado por"
msgid "was restored by"
msgstr "fue restaurado por"
#. js-lingui-id: 0WPnTI
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Watch AI demo"
msgstr ""
#. js-lingui-id: 5qU4Mu
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
msgid "Watch API demo"
msgstr ""
#. js-lingui-id: inpQ46
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Watch apps demo"
msgstr ""
#. js-lingui-id: uIrZTC
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Watch customization demo"
msgstr ""
#. js-lingui-id: syeoTg
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Watch data model demo"
msgstr ""
#. js-lingui-id: egkNh9
#: src/modules/settings/components/SettingsDiscoveryHeroCard.tsx
msgid "Watch demo"
msgstr ""
#. js-lingui-id: 6ZDYQy
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Watch members demo"
msgstr ""
#. js-lingui-id: 6eMAkI
#: src/modules/auth/sign-in-up/components/EmailVerificationSent.tsx
msgid "We encountered an issue verifying"
@@ -17283,6 +17438,7 @@ msgstr "Se requiere el ID del webhook para actualizaciones"
#. js-lingui-id: v1kQyJ
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
@@ -17338,6 +17494,11 @@ msgstr "¿En qué puedo ayudarte?"
msgid "What this API can do: Select a user role to define its permissions."
msgstr "Lo que puede hacer esta API: Selecciona un rol de usuario para definir sus permisos."
#. js-lingui-id: drC+Tq
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "What's installed and being used in your workspace"
msgstr ""
#. js-lingui-id: m7GziZ
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "When a deal's stage changes to Closed Won, create a task assigned to the deal owner, due 7 days after the close date, with title \"Post-sale check-in\" and the company name in the description."
@@ -17397,6 +17558,11 @@ msgstr "Tipo de Widget"
msgid "widgets"
msgstr ""
#. js-lingui-id: tL6W2K
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Widgets"
msgstr ""
#. js-lingui-id: j6ncOZ
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowEditActionIterator.tsx
msgid "Will continue to the next iteration even if the current one fails"
@@ -17466,6 +17632,7 @@ msgstr "Workflows"
#: src/pages/settings/members/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/layout/components/SettingsLayoutDetailScaffold.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
@@ -17475,7 +17642,6 @@ msgstr "Workflows"
#: src/pages/settings/developers/playground/SettingsGraphQLPlayground.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -17555,8 +17721,8 @@ msgid "Workspace Info"
msgstr "Información del espacio de trabajo"
#. js-lingui-id: BYrMT0
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Workspace Instructions"
msgstr "Instrucciones del espacio de trabajo"
+247 -81
View File
@@ -954,7 +954,6 @@ msgstr "Aktiivinen"
#. js-lingui-id: Mue4oc
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Active API keys created by you or your team."
msgstr "Sinun tai tiimisi luomat aktiiviset API-avaimet."
@@ -1051,11 +1050,6 @@ msgstr ""
msgid "Add custom endpoints, private gateways, or additional regions."
msgstr "Lisää mukautettuja päätepisteitä, yksityisiä yhdyskäytäviä tai lisäalueita."
#. js-lingui-id: GuJvBr
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
msgid "Add custom instructions specific to your workspace (appended to system prompt)"
msgstr "Lisää työtilaasi koskevia mukautettuja ohjeita (lisätään järjestelmäkehotteeseen)"
#. js-lingui-id: 4JviOV
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
@@ -1293,6 +1287,11 @@ msgstr "Lisää estolistalle"
msgid "Add to Favorite"
msgstr "Lisää suosikkilistalle"
#. js-lingui-id: VbareD
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Add Twenty as a Model Context Protocol (MCP) server. Paste this config into Claude Desktop, Cursor, Cline, Continue, Zed, or any other MCP-aware client."
msgstr ""
#. js-lingui-id: XnwceV
#: src/pages/settings/applications/components/SettingsApplicationRegistrationRedirectURIsInput.tsx
msgid "Add URI"
@@ -1775,6 +1774,11 @@ msgstr "Kaikki tehtävät käsitelty. Pidä vauhti yllä."
msgid "All the applications currently installed on this workspace"
msgstr ""
#. js-lingui-id: xP6s/m
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "All the layout items declared on your workspace"
msgstr ""
#. js-lingui-id: XuuWVF
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
msgid "All the standard objects"
@@ -1967,11 +1971,6 @@ msgstr "Sisäinen virhe tapahtui, kun muutoksiasi validoitiin. Ota yhteyttä tuk
msgid "An object with this name already exists"
msgstr "Tämän niminen objekti on jo olemassa"
#. js-lingui-id: lxentK
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "An unexpected error occurred"
msgstr "Tapahtui odottamaton virhe"
#. js-lingui-id: byKna+
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
msgid "An unexpected error occurred. Please try again."
@@ -2016,6 +2015,7 @@ msgid "Anyone with an email address at these domains is allowed to sign up for t
msgstr "Kuka tahansa, jolla on sähköpostiosoite näissä tunnusalueissa, saa rekisteröityä tähän työtilaan."
#. js-lingui-id: OZtEcz
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "API"
msgstr "Rajapinta"
@@ -2033,7 +2033,6 @@ msgstr "API & Webhooks"
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "API Key"
msgstr "API-avain"
@@ -2063,7 +2062,6 @@ msgid "API key roles"
msgstr ""
#. js-lingui-id: 5h8ooz
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
msgid "API keys"
msgstr "API-avaimet"
@@ -2104,12 +2102,6 @@ msgstr "API-nimi (yksikkö)"
msgid "API values"
msgstr "API-arvot"
#. js-lingui-id: JR6nY7
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "APIs"
msgstr "Rajapinnat"
#. js-lingui-id: ZZAOwb
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
@@ -2131,7 +2123,7 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
msgid "App"
msgstr "Sovellus"
@@ -2481,6 +2473,11 @@ msgstr "klo {remainingTimes} ja {lastTime}"
msgid "at 1 minute past the hour"
msgstr "klo 1 minuutti tunnin jälkeen"
#. js-lingui-id: ooA+hm
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "At a glance"
msgstr ""
#. js-lingui-id: vyXyF0
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
msgid "At a specific date or time"
@@ -2645,11 +2642,15 @@ msgid "Availability"
msgstr "Saatavuus"
#. js-lingui-id: csDS2L
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
msgid "Available"
msgstr "Saatavilla"
#. js-lingui-id: STA+22
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Available models"
msgstr ""
#. js-lingui-id: oD38t2
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Available tools"
@@ -2865,6 +2866,11 @@ msgstr "Pronssi"
msgid "Brown"
msgstr "Ruskea"
#. js-lingui-id: O2UpM1
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Browse"
msgstr ""
#. js-lingui-id: GsXRxc
#: src/modules/settings/data-model/indexes/forms/components/SettingsObjectIndexOptionsForm.tsx
msgid "BTREE (default, good for sorting and equality)"
@@ -3615,6 +3621,11 @@ msgstr "Komento kopioitu leikepöydälle"
msgid "Command Icon"
msgstr "Komentokuvake"
#. js-lingui-id: V1zWD4
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Command menu"
msgstr ""
#. js-lingui-id: PUMdxH
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
msgid "Command Menu"
@@ -3642,6 +3653,11 @@ msgstr ""
msgid "commands"
msgstr ""
#. js-lingui-id: 45MZFs
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Commands"
msgstr ""
#. js-lingui-id: 4XlFx/
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Commands copied to clipboard"
@@ -3808,11 +3824,6 @@ msgstr "Määritä nämä DNS-tietueet verkkotunnuksen tarjoajallasi"
msgid "Configure this widget to display fields"
msgstr "Määritä tämä pienoisohjelma näyttämään kenttiä"
#. js-lingui-id: hzDiM0
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Configure your default AI model"
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -3886,6 +3897,11 @@ msgstr ""
msgid "Connect a new account to your workspace"
msgstr "Yhdistä uusi tili työtilaasi"
#. js-lingui-id: vPCRNy
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Connect AI assistants like Claude or Cursor to your workspace via the Model Context Protocol"
msgstr ""
#. js-lingui-id: YLx3sC
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect via IMAP/SMTP"
@@ -3901,6 +3917,11 @@ msgstr "Yhdistä Googleen"
msgid "Connect with Microsoft"
msgstr "Yhdistä Microsoftiin"
#. js-lingui-id: iZWbGJ
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Connect your AI assistant"
msgstr ""
#. js-lingui-id: QHcLEN
#: src/pages/settings/applications/SettingsApplicationConnectionDetail.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationConnectionsSection.tsx
@@ -4066,6 +4087,11 @@ msgstr "Ohjaa, minkä tyyppisille yksiköille tämä rooli voidaan määrittää
msgid "Conversation"
msgstr "Keskustelu"
#. js-lingui-id: EnJuK0
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Conversations"
msgstr ""
#. js-lingui-id: HRGl1X
#: src/pages/onboarding/CreateProfile.tsx
#: src/modules/settings/profile/components/NameFields.tsx
@@ -4104,6 +4130,11 @@ msgstr "Kopioi komento"
msgid "Copy commands"
msgstr "Kopioi komennot"
#. js-lingui-id: eaZgIQ
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Copy config"
msgstr ""
#. js-lingui-id: 7eVkEH
#: src/pages/onboarding/InviteTeam.tsx
msgid "Copy invitation link"
@@ -4216,6 +4247,11 @@ msgstr "Laskutusportaalia ei voitu avata. Tarkista, että Enterprise-avaimesi on
msgid "Could not open Stripe. Please contact support."
msgstr "Stripeä ei voitu avata. Ota yhteyttä tukeen."
#. js-lingui-id: 6wi9Nf
#: src/modules/settings/playground/hooks/useOpenPlayground.ts
msgid "Could not open the API playground"
msgstr ""
#. js-lingui-id: wVw4Am
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not refresh validity token. Please contact support."
@@ -4340,7 +4376,6 @@ msgstr "Luo ja konfiguroi AI-agentit"
#. js-lingui-id: uXGLuq
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Create API key"
msgstr "Luo API-avain"
@@ -4625,7 +4660,7 @@ msgstr "Nykyistä työtilan jäsentä ei löytynyt."
#. js-lingui-id: 8Tg/JR
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/applications/hooks/useApplicationChipData.ts
@@ -4650,6 +4685,11 @@ msgstr "Mukauta toimialuetta"
msgid "Custom domain updated"
msgstr "Mukautettu verkkotunnus päivitetty"
#. js-lingui-id: c6P+Xe
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Custom instructions appended to every system prompt"
msgstr ""
#. js-lingui-id: 87ZNeX
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
msgid "Custom model ID"
@@ -4692,6 +4732,7 @@ msgid "Customization"
msgstr "Mukauttaminen"
#. js-lingui-id: srRMnJ
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectLayout.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
@@ -4788,6 +4829,11 @@ msgstr "Tumma"
msgid "Dashboard duplicated successfully"
msgstr "Hallintapaneeli monistettiin onnistuneesti"
#. js-lingui-id: w6iIMm
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Dashboards"
msgstr ""
#. js-lingui-id: HKH+W+
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
@@ -4988,7 +5034,7 @@ msgstr "Poista käytöstä tämä kenttä"
#. js-lingui-id: yAT3be
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
@@ -5015,7 +5061,6 @@ msgstr ""
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
msgid "Default"
@@ -5031,6 +5076,11 @@ msgstr "Oletusmaa"
msgid "Default Country Code"
msgstr "Oletusmaakoodi"
#. js-lingui-id: OtTlfU
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Default model"
msgstr ""
#. js-lingui-id: hUWaAk
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
msgid "Default model for chats and complex reasoning"
@@ -5473,6 +5523,11 @@ msgstr "Tiedot"
msgid "Detected application version running on this instance"
msgstr ""
#. js-lingui-id: QYXe1O
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Develop"
msgstr ""
#. js-lingui-id: 7aDnUb
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Developer"
@@ -5564,7 +5619,6 @@ msgstr "Älä tuo"
#. js-lingui-id: TvY/XA
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
msgid "Documentation"
@@ -5768,7 +5822,7 @@ msgid "e.g. OpenAI EU"
msgstr "esim. OpenAI EU"
#. js-lingui-id: p5P8NB
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
msgstr "Esim. \"Olemme B2B SaaS -yritys. Käytä aina muodollista kieltä...\""
@@ -6114,6 +6168,8 @@ msgstr "Työntekijät"
#. js-lingui-id: N2S1rs
#: src/modules/object-record/record-inline-cell/components/RecordInlineCellDisplayMode.tsx
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRelationFieldDiffValues.tsx
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRelationFieldDiffValues.tsx
#: src/modules/activities/timeline-activities/rows/main-object/components/EventFieldDiff.tsx
msgid "Empty"
msgstr "Tyhjä"
@@ -6428,11 +6484,6 @@ msgstr "Syötä arvo"
msgid "Enter values, comma-separated"
msgstr "Syötä arvot, pilkuilla eroteltuina"
#. js-lingui-id: OjkRLQ
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "Enter your API key"
msgstr "Anna API-avaimesi"
#. js-lingui-id: GpB8YV
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -6988,7 +7039,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
msgstr "Enterprise-lisenssin aktivointi epäonnistui. Tarkista avaimesi tai ota yhteyttä tukeen."
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Failed to activate skill"
msgstr "Taidon aktivointi epäonnistui"
@@ -7007,11 +7058,6 @@ msgstr "Tarjoajan lisääminen epäonnistui"
msgid "Failed to create email handle. Email handles may not be configured on this server."
msgstr ""
#. js-lingui-id: WM7GKt
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Failed to create tool"
msgstr "Työkalun luominen epäonnistui"
#. js-lingui-id: lWoewm
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Failed to delete email handle."
@@ -7023,7 +7069,7 @@ msgid "Failed to delete jobs. Please try again later."
msgstr "Epäonnistui töiden poistamisessa. Yritä myöhemmin uudelleen."
#. js-lingui-id: bmwWKk
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Failed to delete skill"
msgstr "Taidon poistaminen epäonnistui"
@@ -7126,7 +7172,7 @@ msgid "Failed to save role permissions: {errorMessage}"
msgstr ""
#. js-lingui-id: 9ryUyP
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Failed to save workspace instructions"
msgstr "Työtilan ohjeiden tallentaminen epäonnistui"
@@ -7152,13 +7198,13 @@ msgid "Failed to update default model"
msgstr "Oletusmallin päivittäminen epäonnistui"
#. js-lingui-id: 1R13Ov
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
msgid "Failed to update model"
msgstr "Mallin päivittäminen epäonnistui"
#. js-lingui-id: W7Ff/4
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Failed to update model availability"
@@ -7175,7 +7221,7 @@ msgid "Failed to update model recommendations"
msgstr ""
#. js-lingui-id: rCUG3c
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
msgid "Failed to update model selection mode"
msgstr "Mallin valintatilan päivittäminen epäonnistui"
@@ -7334,6 +7380,7 @@ msgstr "kentät"
#. js-lingui-id: vF68cg
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
#: src/pages/settings/data-model/new-index/SettingsObjectNewIndex.tsx
@@ -7868,6 +7915,7 @@ msgid "Grants permission to perform all available actions without restriction"
msgstr "Antaa luvan suorittaa kaikki käytettävissä olevat toiminnot ilman rajoituksia"
#. js-lingui-id: gBiL6J
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "GraphQL"
msgstr "GraphQL"
@@ -8550,6 +8598,7 @@ msgid "Insert a JSON input, then press \"Run Function\"."
msgstr ""
#. js-lingui-id: TKQ7K+
#: src/pages/settings/applications/SettingsApplications.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationRegistrationShareLinkButtons.tsx
msgid "Install"
@@ -8630,11 +8679,6 @@ msgstr "Jaksotus on peruutettu."
msgid "Invalid 2FA information."
msgstr "Virheelliset 2FA-tiedot."
#. js-lingui-id: GNRDhm
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "Invalid API key"
msgstr "Virheellinen API-avain"
#. js-lingui-id: 9TgH9p
#: src/modules/settings/security/components/SettingsSecurityAuthBypassOptionsList.tsx
msgid "Invalid auth bypass provider"
@@ -8754,6 +8798,7 @@ msgstr "Kutsut"
#. js-lingui-id: MFKlMB
#: src/utils/title-utils.ts
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/modules/workspace/components/WorkspaceInviteTeam.tsx
msgid "Invite"
msgstr "Kutsu"
@@ -9232,12 +9277,15 @@ msgid "Launch manually"
msgstr "Käynnistä manuaalisesti"
#. js-lingui-id: rdU729
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -9693,6 +9741,11 @@ msgstr ""
msgid "Manage Members"
msgstr "Hallitse jäseniä"
#. js-lingui-id: LNz5UW
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Manage objects, fields and relationships"
msgstr ""
#. js-lingui-id: eGGH1l
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Manage security policies"
@@ -9729,7 +9782,7 @@ msgid "Manage your internet accounts."
msgstr "Hallitse internet-tilejäsi."
#. js-lingui-id: waFx9W
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Managed"
msgstr ""
@@ -9807,12 +9860,23 @@ msgstr "URL-osoitteiden enimmäismäärä"
msgid "Maximum values"
msgstr "Arvojen enimmäismäärä"
#. js-lingui-id: nA8kxD
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
msgid "MCP"
msgstr ""
#. js-lingui-id: 2jj0eo
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "MCP config copied to clipboard"
msgstr ""
#. js-lingui-id: NvQoNb
#: src/pages/settings/ai/components/SettingsAiMCP.tsx
msgid "MCP Configuration copied to clipboard"
msgstr "MCP-konfiguraatio kopioitu leikepöydälle"
#. js-lingui-id: 8CWirf
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiMCP.tsx
msgid "MCP Server"
msgstr "MCP-palvelin"
@@ -10019,6 +10083,7 @@ msgstr "Mallin tunnus on pakollinen"
#. js-lingui-id: //nm2/
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Models"
msgstr "Mallit"
@@ -10086,7 +10151,6 @@ msgid "months"
msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
msgid "More"
msgstr "Lisää"
@@ -10235,8 +10299,8 @@ msgstr ""
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTable.tsx
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
@@ -11417,6 +11481,7 @@ msgstr "objektit"
#. js-lingui-id: B3toQF
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
@@ -11805,7 +11870,9 @@ msgid "Override Draft"
msgstr "Ohita luonnos"
#. js-lingui-id: 6/dCYd
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Overview"
msgstr "Yleiskatsaus"
@@ -11879,6 +11946,11 @@ msgstr "Sivua ei löydy | Twenty"
msgid "Page Views"
msgstr "Sivun näyttökerrat"
#. js-lingui-id: wRR604
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Pages"
msgstr ""
#. js-lingui-id: ijBN4V
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "paragraph"
@@ -12592,18 +12664,18 @@ msgid "Read documentation"
msgstr "Lue dokumentaatio"
#. js-lingui-id: U26cMX
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read system prompts"
msgstr ""
#. js-lingui-id: EKsFda
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read the system prompts to understand how the AI works"
msgstr ""
#. js-lingui-id: 0URVx8
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1, }, )
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1 }, )
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read the system prompts to understand how the AI works (~{0} tokens)"
msgstr ""
@@ -12732,6 +12804,11 @@ msgstr "Tietueen kuva"
msgid "Record label"
msgstr "Tietueen otsikko"
#. js-lingui-id: XueM/X
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Record page"
msgstr ""
#. js-lingui-id: mAHjRd
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutOpenInContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -12850,6 +12927,7 @@ msgid "Relation type"
msgstr "Suhdetyyppi"
#. js-lingui-id: g87L9j
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
#: src/modules/activities/inline-cell/components/ActivityTargetsInlineCell.tsx
msgid "Relations"
@@ -13162,6 +13240,7 @@ msgid "Response Format"
msgstr ""
#. js-lingui-id: WHiaOl
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/playground/SettingsRestPlayground.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "REST"
@@ -13332,6 +13411,7 @@ msgstr ""
#. js-lingui-id: 5dJK4M
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
@@ -13551,7 +13631,7 @@ msgid "Search a role..."
msgstr "Etsi roolia..."
#. js-lingui-id: lJNEce
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Search a skill..."
msgstr "Etsi taitoa..."
@@ -13567,7 +13647,7 @@ msgid "Search a team member..."
msgstr "Etsi tiimin jäsentä..."
#. js-lingui-id: VNmPqQ
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Search a tool..."
msgstr ""
@@ -13883,6 +13963,11 @@ msgstr ""
msgid "See Records on All Objects"
msgstr "Näytä tietueet kaikista objekteista"
#. js-lingui-id: eQ3co2
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "See your data structure as an interactive diagram"
msgstr ""
#. js-lingui-id: Hhnssf
#: src/pages/settings/applications/components/SettingsApplicationTableRow.tsx
msgid "Seeded"
@@ -14227,6 +14312,11 @@ msgstr "Määritä {objectLabel}-kohteelle Valinta-kenttä luodaksesi kanbanin"
msgid "Set up forwarding from the source address to this destination."
msgstr ""
#. js-lingui-id: dq5Wx1
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Set up MCP"
msgstr ""
#. js-lingui-id: 9HNKkV
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
msgid "Set your application configuration variables"
@@ -14387,6 +14477,16 @@ msgstr ""
msgid "Side Panel"
msgstr "Sivupaneeli"
#. js-lingui-id: uWi2Q+
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Sidebar"
msgstr ""
#. js-lingui-id: 9k9PMD
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Sidebar items"
msgstr ""
#. js-lingui-id: 5lWFkC
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
msgid "Sign in"
@@ -14471,12 +14571,12 @@ msgid "Skill"
msgstr "Taito"
#. js-lingui-id: h4t38o
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skill activated"
msgstr "Taito aktivoitu"
#. js-lingui-id: /IoK74
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skill deleted"
msgstr "Taito poistettu"
@@ -14499,7 +14599,9 @@ msgstr ""
#. js-lingui-id: PCSkw2
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skills"
msgstr "Taidot"
@@ -14724,7 +14826,7 @@ msgid "Stages"
msgstr "Vaiheet"
#. js-lingui-id: TJBHlP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/applications/hooks/useApplicationChipData.ts
msgid "Standard"
@@ -15137,8 +15239,8 @@ msgstr ""
#: src/pages/settings/ai/SettingsAiPrompts.tsx
#: src/pages/settings/ai/SettingsAiPrompts.tsx
#: src/pages/settings/ai/forms/components/SettingsAiAgentForm.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
msgid "System Prompt"
msgstr "Järjestelmäkehotus"
@@ -15220,6 +15322,7 @@ msgstr "Tehtävän otsikko"
#. js-lingui-id: KM6m8p
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Team"
msgstr ""
@@ -15338,6 +15441,11 @@ msgid ""
"See the [Getting Started guide](https://twenty.com/developers/extend/apps/getting-started) for the full walkthrough, and [Building Apps](https://twenty.com/developers/extend/apps/building) for the `defineApplication` / `defineEntity` APIs."
msgstr ""
#. js-lingui-id: n+CCXl
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "The default AI model used for chats, agents, and workflows"
msgstr ""
#. js-lingui-id: 1xQkU9
#: src/modules/settings/data-model/fields/forms/phones/components/SettingsDataModelFieldPhonesForm.tsx
msgid "The default country code for new phone numbers."
@@ -15900,7 +16008,7 @@ msgid "Tool calls made"
msgstr "Työkalukutsuja tehty"
#. js-lingui-id: SrWh42
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/hooks/useCreateTool.ts
msgid "Tool created"
msgstr "Työkalu luotu"
@@ -15921,7 +16029,9 @@ msgstr "Työkalun generointi"
#. js-lingui-id: xdA/+p
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Tools"
msgstr "Työkalut"
@@ -16067,11 +16177,10 @@ msgstr ""
msgid "True"
msgstr "Tosi"
#. js-lingui-id: haaL9N
#. js-lingui-id: 64tOpZ
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Try our REST or GraphQL API playgrounds."
msgstr "Kokeile REST- tai GraphQL-rajapintojen leikkikenttiämme."
msgid "Try our REST or GraphQL API playgrounds"
msgstr ""
#. js-lingui-id: 3WWUB9
#: src/pages/settings/updates/SettingsUpdates.tsx
@@ -16738,9 +16847,13 @@ msgstr "Käytä todennussovelluksia ja selainlaajennuksia, kuten 1Password, Auth
msgid "Use best models only"
msgstr "Käytä vain parhaita malleja"
#. js-lingui-id: 5ZehS/
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Use filter to see existing skills or create your own"
msgstr ""
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
@@ -17102,7 +17215,9 @@ msgstr "Näytä työtilan toimintalokit"
#. js-lingui-id: 1I6UoR
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr "Näkymät"
@@ -17155,10 +17270,15 @@ msgid "Visible to you"
msgstr "Näkyvissä vain sinulle"
#. js-lingui-id: 6n7jtr
#: src/modules/settings/data-model/objects/components/SettingsObjectCoverImage.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Visualize"
msgstr "Visualisoi"
#. js-lingui-id: VvM/Ty
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Visualize data model"
msgstr ""
#. js-lingui-id: uUehLT
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Waiting"
@@ -17194,6 +17314,41 @@ msgstr "poisti"
msgid "was restored by"
msgstr "palautti"
#. js-lingui-id: 0WPnTI
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Watch AI demo"
msgstr ""
#. js-lingui-id: 5qU4Mu
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
msgid "Watch API demo"
msgstr ""
#. js-lingui-id: inpQ46
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Watch apps demo"
msgstr ""
#. js-lingui-id: uIrZTC
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Watch customization demo"
msgstr ""
#. js-lingui-id: syeoTg
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Watch data model demo"
msgstr ""
#. js-lingui-id: egkNh9
#: src/modules/settings/components/SettingsDiscoveryHeroCard.tsx
msgid "Watch demo"
msgstr ""
#. js-lingui-id: 6ZDYQy
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Watch members demo"
msgstr ""
#. js-lingui-id: 6eMAkI
#: src/modules/auth/sign-in-up/components/EmailVerificationSent.tsx
msgid "We encountered an issue verifying"
@@ -17281,6 +17436,7 @@ msgstr "Webhook-ID tarvitaan päivityksiä varten"
#. js-lingui-id: v1kQyJ
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
@@ -17336,6 +17492,11 @@ msgstr "Miten voin auttaa sinua?"
msgid "What this API can do: Select a user role to define its permissions."
msgstr "Mitä tämä API voi tehdä: Valitse käyttäjän rooli määrittääksesi sen oikeudet."
#. js-lingui-id: drC+Tq
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "What's installed and being used in your workspace"
msgstr ""
#. js-lingui-id: m7GziZ
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "When a deal's stage changes to Closed Won, create a task assigned to the deal owner, due 7 days after the close date, with title \"Post-sale check-in\" and the company name in the description."
@@ -17395,6 +17556,11 @@ msgstr "Widgetin tyyppi"
msgid "widgets"
msgstr ""
#. js-lingui-id: tL6W2K
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Widgets"
msgstr ""
#. js-lingui-id: j6ncOZ
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowEditActionIterator.tsx
msgid "Will continue to the next iteration even if the current one fails"
@@ -17464,6 +17630,7 @@ msgstr "Työnkulut"
#: src/pages/settings/members/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/layout/components/SettingsLayoutDetailScaffold.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
@@ -17473,7 +17640,6 @@ msgstr "Työnkulut"
#: src/pages/settings/developers/playground/SettingsGraphQLPlayground.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -17553,8 +17719,8 @@ msgid "Workspace Info"
msgstr "Työtilan tiedot"
#. js-lingui-id: BYrMT0
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Workspace Instructions"
msgstr "Työtilan ohjeet"
+247 -81
View File
@@ -954,7 +954,6 @@ msgstr "Actif"
#. js-lingui-id: Mue4oc
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Active API keys created by you or your team."
msgstr "Clés API actives créées par vous ou votre équipe."
@@ -1051,11 +1050,6 @@ msgstr ""
msgid "Add custom endpoints, private gateways, or additional regions."
msgstr "Ajouter des points de terminaison personnalisés, des passerelles privées ou des régions supplémentaires."
#. js-lingui-id: GuJvBr
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
msgid "Add custom instructions specific to your workspace (appended to system prompt)"
msgstr "Ajouter des instructions personnalisées propres à votre espace de travail (ajoutées à l'invite système)"
#. js-lingui-id: 4JviOV
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
@@ -1293,6 +1287,11 @@ msgstr "Ajouter à la liste de blocage"
msgid "Add to Favorite"
msgstr "Ajouter aux favoris"
#. js-lingui-id: VbareD
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Add Twenty as a Model Context Protocol (MCP) server. Paste this config into Claude Desktop, Cursor, Cline, Continue, Zed, or any other MCP-aware client."
msgstr ""
#. js-lingui-id: XnwceV
#: src/pages/settings/applications/components/SettingsApplicationRegistrationRedirectURIsInput.tsx
msgid "Add URI"
@@ -1775,6 +1774,11 @@ msgstr "Toutes les tâches ont été traitées. Maintenez l'élan."
msgid "All the applications currently installed on this workspace"
msgstr ""
#. js-lingui-id: xP6s/m
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "All the layout items declared on your workspace"
msgstr ""
#. js-lingui-id: XuuWVF
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
msgid "All the standard objects"
@@ -1967,11 +1971,6 @@ msgstr "Une erreur interne s'est produite lors de la validation de vos modificat
msgid "An object with this name already exists"
msgstr "Un objet avec ce nom existe déjà"
#. js-lingui-id: lxentK
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "An unexpected error occurred"
msgstr "Une erreur inattendue s'est produite"
#. js-lingui-id: byKna+
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
msgid "An unexpected error occurred. Please try again."
@@ -2016,6 +2015,7 @@ msgid "Anyone with an email address at these domains is allowed to sign up for t
msgstr "Toute personne avec une adresse email dans ces domaines est autorisée à s'inscrire à cet espace de travail."
#. js-lingui-id: OZtEcz
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "API"
msgstr "API"
@@ -2033,7 +2033,6 @@ msgstr "API & Webhooks"
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "API Key"
msgstr "Clé API"
@@ -2063,7 +2062,6 @@ msgid "API key roles"
msgstr ""
#. js-lingui-id: 5h8ooz
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
msgid "API keys"
msgstr "Clés API"
@@ -2104,12 +2102,6 @@ msgstr "Nom de l'API (Singulier)"
msgid "API values"
msgstr "Valeurs API"
#. js-lingui-id: JR6nY7
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "APIs"
msgstr "API"
#. js-lingui-id: ZZAOwb
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
@@ -2131,7 +2123,7 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
msgid "App"
msgstr "Application"
@@ -2481,6 +2473,11 @@ msgstr "à {remainingTimes} et {lastTime}"
msgid "at 1 minute past the hour"
msgstr "à 1 minute après l'heure"
#. js-lingui-id: ooA+hm
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "At a glance"
msgstr ""
#. js-lingui-id: vyXyF0
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
msgid "At a specific date or time"
@@ -2645,11 +2642,15 @@ msgid "Availability"
msgstr "Disponibilité"
#. js-lingui-id: csDS2L
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
msgid "Available"
msgstr "Disponible"
#. js-lingui-id: STA+22
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Available models"
msgstr ""
#. js-lingui-id: oD38t2
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Available tools"
@@ -2865,6 +2866,11 @@ msgstr "Bronze"
msgid "Brown"
msgstr "Marron"
#. js-lingui-id: O2UpM1
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Browse"
msgstr ""
#. js-lingui-id: GsXRxc
#: src/modules/settings/data-model/indexes/forms/components/SettingsObjectIndexOptionsForm.tsx
msgid "BTREE (default, good for sorting and equality)"
@@ -3615,6 +3621,11 @@ msgstr "Commande copiée dans le presse-papiers"
msgid "Command Icon"
msgstr "Icône de commande"
#. js-lingui-id: V1zWD4
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Command menu"
msgstr ""
#. js-lingui-id: PUMdxH
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
msgid "Command Menu"
@@ -3642,6 +3653,11 @@ msgstr ""
msgid "commands"
msgstr ""
#. js-lingui-id: 45MZFs
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Commands"
msgstr ""
#. js-lingui-id: 4XlFx/
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Commands copied to clipboard"
@@ -3808,11 +3824,6 @@ msgstr "Configurer ces enregistrements DNS avec votre fournisseur de domaine"
msgid "Configure this widget to display fields"
msgstr "Configurez ce widget pour afficher des champs"
#. js-lingui-id: hzDiM0
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Configure your default AI model"
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -3886,6 +3897,11 @@ msgstr ""
msgid "Connect a new account to your workspace"
msgstr "Connecter un nouveau compte à votre espace de travail"
#. js-lingui-id: vPCRNy
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Connect AI assistants like Claude or Cursor to your workspace via the Model Context Protocol"
msgstr ""
#. js-lingui-id: YLx3sC
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect via IMAP/SMTP"
@@ -3901,6 +3917,11 @@ msgstr "Se connecter avec Google"
msgid "Connect with Microsoft"
msgstr "Se connecter avec Microsoft"
#. js-lingui-id: iZWbGJ
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Connect your AI assistant"
msgstr ""
#. js-lingui-id: QHcLEN
#: src/pages/settings/applications/SettingsApplicationConnectionDetail.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationConnectionsSection.tsx
@@ -4066,6 +4087,11 @@ msgstr "Contrôler les types d'entités auxquels ce rôle peut être attribué"
msgid "Conversation"
msgstr "Conversation"
#. js-lingui-id: EnJuK0
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Conversations"
msgstr ""
#. js-lingui-id: HRGl1X
#: src/pages/onboarding/CreateProfile.tsx
#: src/modules/settings/profile/components/NameFields.tsx
@@ -4104,6 +4130,11 @@ msgstr "Copier la commande"
msgid "Copy commands"
msgstr "Copier les commandes"
#. js-lingui-id: eaZgIQ
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Copy config"
msgstr ""
#. js-lingui-id: 7eVkEH
#: src/pages/onboarding/InviteTeam.tsx
msgid "Copy invitation link"
@@ -4216,6 +4247,11 @@ msgstr "Impossible d'ouvrir le portail de facturation. Vérifiez que votre clé
msgid "Could not open Stripe. Please contact support."
msgstr "Impossible d'ouvrir Stripe. Veuillez contacter l'assistance."
#. js-lingui-id: 6wi9Nf
#: src/modules/settings/playground/hooks/useOpenPlayground.ts
msgid "Could not open the API playground"
msgstr ""
#. js-lingui-id: wVw4Am
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not refresh validity token. Please contact support."
@@ -4340,7 +4376,6 @@ msgstr "Créer et configurer des agents IA"
#. js-lingui-id: uXGLuq
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Create API key"
msgstr "Créer une clé API"
@@ -4625,7 +4660,7 @@ msgstr "Membre actuel de l'espace de travail introuvable."
#. js-lingui-id: 8Tg/JR
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/applications/hooks/useApplicationChipData.ts
@@ -4650,6 +4685,11 @@ msgstr "Domaine personnalisé"
msgid "Custom domain updated"
msgstr "Domaine personnalisé mis à jour"
#. js-lingui-id: c6P+Xe
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Custom instructions appended to every system prompt"
msgstr ""
#. js-lingui-id: 87ZNeX
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
msgid "Custom model ID"
@@ -4692,6 +4732,7 @@ msgid "Customization"
msgstr "Personnalisation"
#. js-lingui-id: srRMnJ
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectLayout.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
@@ -4788,6 +4829,11 @@ msgstr "Sombre"
msgid "Dashboard duplicated successfully"
msgstr "Tableau de bord dupliqué avec succès"
#. js-lingui-id: w6iIMm
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Dashboards"
msgstr ""
#. js-lingui-id: HKH+W+
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
@@ -4988,7 +5034,7 @@ msgstr "Désactiver ce champ"
#. js-lingui-id: yAT3be
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
@@ -5015,7 +5061,6 @@ msgstr ""
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
msgid "Default"
@@ -5031,6 +5076,11 @@ msgstr "Pays par défaut"
msgid "Default Country Code"
msgstr "Code du pays par défaut"
#. js-lingui-id: OtTlfU
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Default model"
msgstr ""
#. js-lingui-id: hUWaAk
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
msgid "Default model for chats and complex reasoning"
@@ -5473,6 +5523,11 @@ msgstr "Détails"
msgid "Detected application version running on this instance"
msgstr ""
#. js-lingui-id: QYXe1O
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Develop"
msgstr ""
#. js-lingui-id: 7aDnUb
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Developer"
@@ -5564,7 +5619,6 @@ msgstr "Ne pas importer"
#. js-lingui-id: TvY/XA
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
msgid "Documentation"
@@ -5768,7 +5822,7 @@ msgid "e.g. OpenAI EU"
msgstr "p. ex. OpenAI UE"
#. js-lingui-id: p5P8NB
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
msgstr "Par exemple, \"Nous sommes une entreprise SaaS B2B. Utilisez toujours un langage formel...\""
@@ -6114,6 +6168,8 @@ msgstr "Employés"
#. js-lingui-id: N2S1rs
#: src/modules/object-record/record-inline-cell/components/RecordInlineCellDisplayMode.tsx
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRelationFieldDiffValues.tsx
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRelationFieldDiffValues.tsx
#: src/modules/activities/timeline-activities/rows/main-object/components/EventFieldDiff.tsx
msgid "Empty"
msgstr "Vide"
@@ -6428,11 +6484,6 @@ msgstr "Entrer la valeur"
msgid "Enter values, comma-separated"
msgstr "Saisissez des valeurs, séparées par des virgules"
#. js-lingui-id: OjkRLQ
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "Enter your API key"
msgstr "Saisissez votre clé API"
#. js-lingui-id: GpB8YV
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -6988,7 +7039,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
msgstr "Échec de l'activation de la licence Enterprise. Vérifiez votre clé ou contactez l'assistance."
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Failed to activate skill"
msgstr "Échec de l'activation de la compétence"
@@ -7007,11 +7058,6 @@ msgstr "Échec de l'ajout du fournisseur"
msgid "Failed to create email handle. Email handles may not be configured on this server."
msgstr ""
#. js-lingui-id: WM7GKt
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Failed to create tool"
msgstr "Échec de la création de l'outil"
#. js-lingui-id: lWoewm
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Failed to delete email handle."
@@ -7023,7 +7069,7 @@ msgid "Failed to delete jobs. Please try again later."
msgstr "Échec de la suppression des tâches. Veuillez réessayer plus tard."
#. js-lingui-id: bmwWKk
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Failed to delete skill"
msgstr "Échec de la suppression de la compétence"
@@ -7126,7 +7172,7 @@ msgid "Failed to save role permissions: {errorMessage}"
msgstr ""
#. js-lingui-id: 9ryUyP
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Failed to save workspace instructions"
msgstr "Impossible d'enregistrer les instructions de l'espace de travail"
@@ -7152,13 +7198,13 @@ msgid "Failed to update default model"
msgstr "Échec de la mise à jour du modèle par défaut"
#. js-lingui-id: 1R13Ov
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
msgid "Failed to update model"
msgstr "Échec de la mise à jour du modèle"
#. js-lingui-id: W7Ff/4
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Failed to update model availability"
@@ -7175,7 +7221,7 @@ msgid "Failed to update model recommendations"
msgstr ""
#. js-lingui-id: rCUG3c
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
msgid "Failed to update model selection mode"
msgstr "Échec de la mise à jour du mode de sélection des modèles"
@@ -7334,6 +7380,7 @@ msgstr "champs"
#. js-lingui-id: vF68cg
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
#: src/pages/settings/data-model/new-index/SettingsObjectNewIndex.tsx
@@ -7868,6 +7915,7 @@ msgid "Grants permission to perform all available actions without restriction"
msgstr "Accorde la permission d'exécuter toutes les actions disponibles sans restriction"
#. js-lingui-id: gBiL6J
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "GraphQL"
msgstr "GraphQL"
@@ -8550,6 +8598,7 @@ msgid "Insert a JSON input, then press \"Run Function\"."
msgstr ""
#. js-lingui-id: TKQ7K+
#: src/pages/settings/applications/SettingsApplications.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationRegistrationShareLinkButtons.tsx
msgid "Install"
@@ -8630,11 +8679,6 @@ msgstr "Le changement d'intervalle a été annulé."
msgid "Invalid 2FA information."
msgstr "Informations 2FA invalides."
#. js-lingui-id: GNRDhm
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "Invalid API key"
msgstr "Clé API invalide"
#. js-lingui-id: 9TgH9p
#: src/modules/settings/security/components/SettingsSecurityAuthBypassOptionsList.tsx
msgid "Invalid auth bypass provider"
@@ -8754,6 +8798,7 @@ msgstr "Invitations"
#. js-lingui-id: MFKlMB
#: src/utils/title-utils.ts
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/modules/workspace/components/WorkspaceInviteTeam.tsx
msgid "Invite"
msgstr "Inviter"
@@ -9232,12 +9277,15 @@ msgid "Launch manually"
msgstr "Lancer manuellement"
#. js-lingui-id: rdU729
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -9693,6 +9741,11 @@ msgstr ""
msgid "Manage Members"
msgstr "Gérer les membres"
#. js-lingui-id: LNz5UW
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Manage objects, fields and relationships"
msgstr ""
#. js-lingui-id: eGGH1l
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Manage security policies"
@@ -9729,7 +9782,7 @@ msgid "Manage your internet accounts."
msgstr "Gérez vos comptes internet."
#. js-lingui-id: waFx9W
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Managed"
msgstr ""
@@ -9807,12 +9860,23 @@ msgstr "URLs maximales"
msgid "Maximum values"
msgstr "Valeurs maximales"
#. js-lingui-id: nA8kxD
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
msgid "MCP"
msgstr ""
#. js-lingui-id: 2jj0eo
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "MCP config copied to clipboard"
msgstr ""
#. js-lingui-id: NvQoNb
#: src/pages/settings/ai/components/SettingsAiMCP.tsx
msgid "MCP Configuration copied to clipboard"
msgstr "Configuration MCP copiée dans le presse-papiers"
#. js-lingui-id: 8CWirf
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiMCP.tsx
msgid "MCP Server"
msgstr "Serveur MCP"
@@ -10019,6 +10083,7 @@ msgstr "L'ID du modèle est requis"
#. js-lingui-id: //nm2/
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Models"
msgstr "Modèles"
@@ -10086,7 +10151,6 @@ msgid "months"
msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
msgid "More"
msgstr "Plus"
@@ -10235,8 +10299,8 @@ msgstr ""
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTable.tsx
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
@@ -11417,6 +11481,7 @@ msgstr "objets"
#. js-lingui-id: B3toQF
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
@@ -11805,7 +11870,9 @@ msgid "Override Draft"
msgstr "Remplacer le brouillon"
#. js-lingui-id: 6/dCYd
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Overview"
msgstr "Vue d'ensemble"
@@ -11879,6 +11946,11 @@ msgstr "Page non trouvée | Twenty"
msgid "Page Views"
msgstr "Vues de page"
#. js-lingui-id: wRR604
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Pages"
msgstr ""
#. js-lingui-id: ijBN4V
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "paragraph"
@@ -12592,18 +12664,18 @@ msgid "Read documentation"
msgstr "Lire la documentation"
#. js-lingui-id: U26cMX
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read system prompts"
msgstr ""
#. js-lingui-id: EKsFda
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read the system prompts to understand how the AI works"
msgstr ""
#. js-lingui-id: 0URVx8
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1, }, )
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1 }, )
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read the system prompts to understand how the AI works (~{0} tokens)"
msgstr ""
@@ -12732,6 +12804,11 @@ msgstr "Enregistrer l'image"
msgid "Record label"
msgstr "Étiquette d'enregistrement"
#. js-lingui-id: XueM/X
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Record page"
msgstr ""
#. js-lingui-id: mAHjRd
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutOpenInContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -12850,6 +12927,7 @@ msgid "Relation type"
msgstr "Type de relation"
#. js-lingui-id: g87L9j
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
#: src/modules/activities/inline-cell/components/ActivityTargetsInlineCell.tsx
msgid "Relations"
@@ -13162,6 +13240,7 @@ msgid "Response Format"
msgstr ""
#. js-lingui-id: WHiaOl
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/playground/SettingsRestPlayground.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "REST"
@@ -13332,6 +13411,7 @@ msgstr ""
#. js-lingui-id: 5dJK4M
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
@@ -13551,7 +13631,7 @@ msgid "Search a role..."
msgstr "Rechercher un rôle..."
#. js-lingui-id: lJNEce
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Search a skill..."
msgstr "Rechercher une compétence..."
@@ -13567,7 +13647,7 @@ msgid "Search a team member..."
msgstr "Rechercher un membre de l'équipe..."
#. js-lingui-id: VNmPqQ
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Search a tool..."
msgstr ""
@@ -13883,6 +13963,11 @@ msgstr ""
msgid "See Records on All Objects"
msgstr "Voir les enregistrements sur tous les objets"
#. js-lingui-id: eQ3co2
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "See your data structure as an interactive diagram"
msgstr ""
#. js-lingui-id: Hhnssf
#: src/pages/settings/applications/components/SettingsApplicationTableRow.tsx
msgid "Seeded"
@@ -14227,6 +14312,11 @@ msgstr "Configurez un champ Sélection sur {objectLabel} pour créer un Kanban"
msgid "Set up forwarding from the source address to this destination."
msgstr ""
#. js-lingui-id: dq5Wx1
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Set up MCP"
msgstr ""
#. js-lingui-id: 9HNKkV
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
msgid "Set your application configuration variables"
@@ -14387,6 +14477,16 @@ msgstr ""
msgid "Side Panel"
msgstr "Panneau latéral"
#. js-lingui-id: uWi2Q+
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Sidebar"
msgstr ""
#. js-lingui-id: 9k9PMD
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Sidebar items"
msgstr ""
#. js-lingui-id: 5lWFkC
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
msgid "Sign in"
@@ -14471,12 +14571,12 @@ msgid "Skill"
msgstr "Compétence"
#. js-lingui-id: h4t38o
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skill activated"
msgstr "Compétence activée"
#. js-lingui-id: /IoK74
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skill deleted"
msgstr "Compétence supprimée"
@@ -14499,7 +14599,9 @@ msgstr ""
#. js-lingui-id: PCSkw2
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skills"
msgstr "Compétences"
@@ -14724,7 +14826,7 @@ msgid "Stages"
msgstr "Étapes"
#. js-lingui-id: TJBHlP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/applications/hooks/useApplicationChipData.ts
msgid "Standard"
@@ -15137,8 +15239,8 @@ msgstr ""
#: src/pages/settings/ai/SettingsAiPrompts.tsx
#: src/pages/settings/ai/SettingsAiPrompts.tsx
#: src/pages/settings/ai/forms/components/SettingsAiAgentForm.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
msgid "System Prompt"
msgstr "Invite système"
@@ -15220,6 +15322,7 @@ msgstr "Titre de la tâche"
#. js-lingui-id: KM6m8p
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Team"
msgstr ""
@@ -15338,6 +15441,11 @@ msgid ""
"See the [Getting Started guide](https://twenty.com/developers/extend/apps/getting-started) for the full walkthrough, and [Building Apps](https://twenty.com/developers/extend/apps/building) for the `defineApplication` / `defineEntity` APIs."
msgstr ""
#. js-lingui-id: n+CCXl
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "The default AI model used for chats, agents, and workflows"
msgstr ""
#. js-lingui-id: 1xQkU9
#: src/modules/settings/data-model/fields/forms/phones/components/SettingsDataModelFieldPhonesForm.tsx
msgid "The default country code for new phone numbers."
@@ -15902,7 +16010,7 @@ msgid "Tool calls made"
msgstr "Appels d'outils effectués"
#. js-lingui-id: SrWh42
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/hooks/useCreateTool.ts
msgid "Tool created"
msgstr "Outil créé"
@@ -15923,7 +16031,9 @@ msgstr "Génération d'outils"
#. js-lingui-id: xdA/+p
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Tools"
msgstr "Outils"
@@ -16069,11 +16179,10 @@ msgstr ""
msgid "True"
msgstr "Vrai"
#. js-lingui-id: haaL9N
#. js-lingui-id: 64tOpZ
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Try our REST or GraphQL API playgrounds."
msgstr "Essayez nos espaces de jeu API REST ou GraphQL."
msgid "Try our REST or GraphQL API playgrounds"
msgstr ""
#. js-lingui-id: 3WWUB9
#: src/pages/settings/updates/SettingsUpdates.tsx
@@ -16740,9 +16849,13 @@ msgstr "Utilisez des applications d'authentification et des extensions de naviga
msgid "Use best models only"
msgstr "Utiliser uniquement les meilleurs modèles"
#. js-lingui-id: 5ZehS/
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Use filter to see existing skills or create your own"
msgstr ""
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
@@ -17104,7 +17217,9 @@ msgstr "Afficher les journaux d'activité de l'espace de travail"
#. js-lingui-id: 1I6UoR
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr "Vues"
@@ -17157,10 +17272,15 @@ msgid "Visible to you"
msgstr "Visible par vous"
#. js-lingui-id: 6n7jtr
#: src/modules/settings/data-model/objects/components/SettingsObjectCoverImage.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Visualize"
msgstr "Visualiser"
#. js-lingui-id: VvM/Ty
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Visualize data model"
msgstr ""
#. js-lingui-id: uUehLT
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Waiting"
@@ -17196,6 +17316,41 @@ msgstr "a été supprimé par"
msgid "was restored by"
msgstr "a été restauré par"
#. js-lingui-id: 0WPnTI
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Watch AI demo"
msgstr ""
#. js-lingui-id: 5qU4Mu
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
msgid "Watch API demo"
msgstr ""
#. js-lingui-id: inpQ46
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Watch apps demo"
msgstr ""
#. js-lingui-id: uIrZTC
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Watch customization demo"
msgstr ""
#. js-lingui-id: syeoTg
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Watch data model demo"
msgstr ""
#. js-lingui-id: egkNh9
#: src/modules/settings/components/SettingsDiscoveryHeroCard.tsx
msgid "Watch demo"
msgstr ""
#. js-lingui-id: 6ZDYQy
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Watch members demo"
msgstr ""
#. js-lingui-id: 6eMAkI
#: src/modules/auth/sign-in-up/components/EmailVerificationSent.tsx
msgid "We encountered an issue verifying"
@@ -17283,6 +17438,7 @@ msgstr "L'ID du webhook est requis pour les mises à jour"
#. js-lingui-id: v1kQyJ
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
@@ -17338,6 +17494,11 @@ msgstr "En quoi puis-je vous aider ?"
msgid "What this API can do: Select a user role to define its permissions."
msgstr "Ce que cette API peut faire : Sélectionnez un rôle d'utilisateur pour définir ses permissions."
#. js-lingui-id: drC+Tq
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "What's installed and being used in your workspace"
msgstr ""
#. js-lingui-id: m7GziZ
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "When a deal's stage changes to Closed Won, create a task assigned to the deal owner, due 7 days after the close date, with title \"Post-sale check-in\" and the company name in the description."
@@ -17397,6 +17558,11 @@ msgstr "Type de widget"
msgid "widgets"
msgstr ""
#. js-lingui-id: tL6W2K
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Widgets"
msgstr ""
#. js-lingui-id: j6ncOZ
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowEditActionIterator.tsx
msgid "Will continue to the next iteration even if the current one fails"
@@ -17466,6 +17632,7 @@ msgstr "Workflows"
#: src/pages/settings/members/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/layout/components/SettingsLayoutDetailScaffold.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
@@ -17475,7 +17642,6 @@ msgstr "Workflows"
#: src/pages/settings/developers/playground/SettingsGraphQLPlayground.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -17555,8 +17721,8 @@ msgid "Workspace Info"
msgstr "Infos sur l'espace de travail"
#. js-lingui-id: BYrMT0
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Workspace Instructions"
msgstr "Instructions de l'espace de travail"
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+247 -81
View File
@@ -954,7 +954,6 @@ msgstr "פעיל"
#. js-lingui-id: Mue4oc
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Active API keys created by you or your team."
msgstr "מפתחי API פעילים שנוצרו על ידך או על ידי הצוות שלך."
@@ -1051,11 +1050,6 @@ msgstr ""
msgid "Add custom endpoints, private gateways, or additional regions."
msgstr "הוסף נקודות קצה מותאמות אישית, שערים פרטיים או אזורים נוספים."
#. js-lingui-id: GuJvBr
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
msgid "Add custom instructions specific to your workspace (appended to system prompt)"
msgstr "הוסף הנחיות מותאמות אישית ספציפיות לסביבת העבודה שלך (מצורפות להנחיית המערכת)"
#. js-lingui-id: 4JviOV
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
@@ -1293,6 +1287,11 @@ msgstr "הוסף לרשימת החסימה"
msgid "Add to Favorite"
msgstr "הוסף למועדפים"
#. js-lingui-id: VbareD
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Add Twenty as a Model Context Protocol (MCP) server. Paste this config into Claude Desktop, Cursor, Cline, Continue, Zed, or any other MCP-aware client."
msgstr ""
#. js-lingui-id: XnwceV
#: src/pages/settings/applications/components/SettingsApplicationRegistrationRedirectURIsInput.tsx
msgid "Add URI"
@@ -1775,6 +1774,11 @@ msgstr "כל המשימות טופלו. שמרו על התנופה."
msgid "All the applications currently installed on this workspace"
msgstr ""
#. js-lingui-id: xP6s/m
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "All the layout items declared on your workspace"
msgstr ""
#. js-lingui-id: XuuWVF
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
msgid "All the standard objects"
@@ -1967,11 +1971,6 @@ msgstr "אירעה שגיאה פנימית בעת אימות השינויים ש
msgid "An object with this name already exists"
msgstr "אובייקט בשם זה כבר קיים"
#. js-lingui-id: lxentK
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "An unexpected error occurred"
msgstr "אירעה שגיאה בלתי צפויה"
#. js-lingui-id: byKna+
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
msgid "An unexpected error occurred. Please try again."
@@ -2016,6 +2015,7 @@ msgid "Anyone with an email address at these domains is allowed to sign up for t
msgstr "כל אחד עם כתובת דוא\"ל בדומיינים הללו רשאי להרשם למרחב עבודה זה."
#. js-lingui-id: OZtEcz
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "API"
msgstr "API"
@@ -2033,7 +2033,6 @@ msgstr "API ו-Webhooks"
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "API Key"
msgstr "מפתח API"
@@ -2063,7 +2062,6 @@ msgid "API key roles"
msgstr ""
#. js-lingui-id: 5h8ooz
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
msgid "API keys"
msgstr "מפתחות API"
@@ -2104,12 +2102,6 @@ msgstr "שם API (יחיד)"
msgid "API values"
msgstr "ערכי API"
#. js-lingui-id: JR6nY7
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "APIs"
msgstr "APIים"
#. js-lingui-id: ZZAOwb
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
@@ -2131,7 +2123,7 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
msgid "App"
msgstr "אפליקציה"
@@ -2481,6 +2473,11 @@ msgstr "ב-{remainingTimes} וב-{lastTime}"
msgid "at 1 minute past the hour"
msgstr "ב-1 דקות אחרי השעה"
#. js-lingui-id: ooA+hm
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "At a glance"
msgstr ""
#. js-lingui-id: vyXyF0
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
msgid "At a specific date or time"
@@ -2645,11 +2642,15 @@ msgid "Availability"
msgstr "זמינות"
#. js-lingui-id: csDS2L
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
msgid "Available"
msgstr "זמין"
#. js-lingui-id: STA+22
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Available models"
msgstr ""
#. js-lingui-id: oD38t2
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Available tools"
@@ -2865,6 +2866,11 @@ msgstr "ברונזה"
msgid "Brown"
msgstr "חום"
#. js-lingui-id: O2UpM1
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Browse"
msgstr ""
#. js-lingui-id: GsXRxc
#: src/modules/settings/data-model/indexes/forms/components/SettingsObjectIndexOptionsForm.tsx
msgid "BTREE (default, good for sorting and equality)"
@@ -3615,6 +3621,11 @@ msgstr "הפקודה הועתקה ללוח הגזירים"
msgid "Command Icon"
msgstr "אייקון פקודות"
#. js-lingui-id: V1zWD4
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Command menu"
msgstr ""
#. js-lingui-id: PUMdxH
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
msgid "Command Menu"
@@ -3642,6 +3653,11 @@ msgstr ""
msgid "commands"
msgstr ""
#. js-lingui-id: 45MZFs
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Commands"
msgstr ""
#. js-lingui-id: 4XlFx/
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Commands copied to clipboard"
@@ -3808,11 +3824,6 @@ msgstr "הגדר את רשומות ה-DNS הללו אצל ספק הדומיין
msgid "Configure this widget to display fields"
msgstr "הגדירו את הווידג'ט הזה כדי להציג שדות"
#. js-lingui-id: hzDiM0
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Configure your default AI model"
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -3886,6 +3897,11 @@ msgstr ""
msgid "Connect a new account to your workspace"
msgstr "חבר חשבון חדש למרחב העבודה שלך"
#. js-lingui-id: vPCRNy
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Connect AI assistants like Claude or Cursor to your workspace via the Model Context Protocol"
msgstr ""
#. js-lingui-id: YLx3sC
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect via IMAP/SMTP"
@@ -3901,6 +3917,11 @@ msgstr "התחבר עם Google"
msgid "Connect with Microsoft"
msgstr "התחבר עם Microsoft"
#. js-lingui-id: iZWbGJ
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Connect your AI assistant"
msgstr ""
#. js-lingui-id: QHcLEN
#: src/pages/settings/applications/SettingsApplicationConnectionDetail.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationConnectionsSection.tsx
@@ -4066,6 +4087,11 @@ msgstr "לשלוט בסוגי הישויות שניתן להקצות לתפקי
msgid "Conversation"
msgstr "שיחה"
#. js-lingui-id: EnJuK0
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Conversations"
msgstr ""
#. js-lingui-id: HRGl1X
#: src/pages/onboarding/CreateProfile.tsx
#: src/modules/settings/profile/components/NameFields.tsx
@@ -4104,6 +4130,11 @@ msgstr "העתק פקודה"
msgid "Copy commands"
msgstr "העתק פקודות"
#. js-lingui-id: eaZgIQ
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Copy config"
msgstr ""
#. js-lingui-id: 7eVkEH
#: src/pages/onboarding/InviteTeam.tsx
msgid "Copy invitation link"
@@ -4216,6 +4247,11 @@ msgstr "לא ניתן היה לפתוח את פורטל החיוב. נא ודא
msgid "Could not open Stripe. Please contact support."
msgstr "לא ניתן היה לפתוח את Stripe. אנא פנה לתמיכה."
#. js-lingui-id: 6wi9Nf
#: src/modules/settings/playground/hooks/useOpenPlayground.ts
msgid "Could not open the API playground"
msgstr ""
#. js-lingui-id: wVw4Am
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not refresh validity token. Please contact support."
@@ -4340,7 +4376,6 @@ msgstr "צור וקבע תצורה של סוכני AI"
#. js-lingui-id: uXGLuq
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Create API key"
msgstr "צור מפתח API"
@@ -4625,7 +4660,7 @@ msgstr "חבר המרחב הנוכחי לא נמצא."
#. js-lingui-id: 8Tg/JR
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/applications/hooks/useApplicationChipData.ts
@@ -4650,6 +4685,11 @@ msgstr "דומיין מותאם אישית"
msgid "Custom domain updated"
msgstr "הדומיין המותאם עודכן"
#. js-lingui-id: c6P+Xe
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Custom instructions appended to every system prompt"
msgstr ""
#. js-lingui-id: 87ZNeX
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
msgid "Custom model ID"
@@ -4692,6 +4732,7 @@ msgid "Customization"
msgstr "התאמה אישית"
#. js-lingui-id: srRMnJ
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectLayout.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
@@ -4788,6 +4829,11 @@ msgstr "כהה"
msgid "Dashboard duplicated successfully"
msgstr "לוח הבקרה שוכפל בהצלחה"
#. js-lingui-id: w6iIMm
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Dashboards"
msgstr ""
#. js-lingui-id: HKH+W+
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
@@ -4988,7 +5034,7 @@ msgstr "השבת שדה זה"
#. js-lingui-id: yAT3be
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
@@ -5015,7 +5061,6 @@ msgstr ""
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
msgid "Default"
@@ -5031,6 +5076,11 @@ msgstr "מדינת ברירת המחדל"
msgid "Default Country Code"
msgstr "קוד מדינה ברירת מחדל"
#. js-lingui-id: OtTlfU
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Default model"
msgstr ""
#. js-lingui-id: hUWaAk
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
msgid "Default model for chats and complex reasoning"
@@ -5473,6 +5523,11 @@ msgstr "פרטים"
msgid "Detected application version running on this instance"
msgstr ""
#. js-lingui-id: QYXe1O
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Develop"
msgstr ""
#. js-lingui-id: 7aDnUb
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Developer"
@@ -5564,7 +5619,6 @@ msgstr "אל תייבא"
#. js-lingui-id: TvY/XA
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
msgid "Documentation"
@@ -5768,7 +5822,7 @@ msgid "e.g. OpenAI EU"
msgstr "לדוגמה OpenAI EU"
#. js-lingui-id: p5P8NB
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
msgstr "למשל, \"אנחנו חברת B2B SaaS. השתמש תמיד בשפה רשמית...\""
@@ -6114,6 +6168,8 @@ msgstr "עובדים"
#. js-lingui-id: N2S1rs
#: src/modules/object-record/record-inline-cell/components/RecordInlineCellDisplayMode.tsx
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRelationFieldDiffValues.tsx
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRelationFieldDiffValues.tsx
#: src/modules/activities/timeline-activities/rows/main-object/components/EventFieldDiff.tsx
msgid "Empty"
msgstr "ריק"
@@ -6428,11 +6484,6 @@ msgstr "הזן ערך"
msgid "Enter values, comma-separated"
msgstr "הזן ערכים, מופרדים בפסיקים"
#. js-lingui-id: OjkRLQ
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "Enter your API key"
msgstr "הזן את מפתח ה-API שלך"
#. js-lingui-id: GpB8YV
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -6988,7 +7039,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
msgstr "הפעלת רישיון ה-Enterprise נכשלה. אנא בדוק את המפתח שלך או פנה לתמיכה."
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Failed to activate skill"
msgstr "הפעלת המיומנות נכשלה"
@@ -7007,11 +7058,6 @@ msgstr "הוספת הספק נכשלה"
msgid "Failed to create email handle. Email handles may not be configured on this server."
msgstr ""
#. js-lingui-id: WM7GKt
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Failed to create tool"
msgstr "יצירת הכלי נכשלה"
#. js-lingui-id: lWoewm
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Failed to delete email handle."
@@ -7023,7 +7069,7 @@ msgid "Failed to delete jobs. Please try again later."
msgstr "נכשל במחיקה של עבודות. נא לנסות שוב מאוחר יותר."
#. js-lingui-id: bmwWKk
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Failed to delete skill"
msgstr "מחיקת המיומנות נכשלה"
@@ -7126,7 +7172,7 @@ msgid "Failed to save role permissions: {errorMessage}"
msgstr ""
#. js-lingui-id: 9ryUyP
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Failed to save workspace instructions"
msgstr "אירע כשל בשמירת הנחיות סביבת העבודה"
@@ -7152,13 +7198,13 @@ msgid "Failed to update default model"
msgstr "עדכון מודל ברירת המחדל נכשל"
#. js-lingui-id: 1R13Ov
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
msgid "Failed to update model"
msgstr "העדכון של המודל נכשל"
#. js-lingui-id: W7Ff/4
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Failed to update model availability"
@@ -7175,7 +7221,7 @@ msgid "Failed to update model recommendations"
msgstr ""
#. js-lingui-id: rCUG3c
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
msgid "Failed to update model selection mode"
msgstr "העדכון של מצב בחירת המודל נכשל"
@@ -7334,6 +7380,7 @@ msgstr "שדות"
#. js-lingui-id: vF68cg
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
#: src/pages/settings/data-model/new-index/SettingsObjectNewIndex.tsx
@@ -7868,6 +7915,7 @@ msgid "Grants permission to perform all available actions without restriction"
msgstr "מעניק הרשאה לבצע את כל הפעולות הזמינות ללא הגבלות"
#. js-lingui-id: gBiL6J
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "GraphQL"
msgstr "GraphQL"
@@ -8550,6 +8598,7 @@ msgid "Insert a JSON input, then press \"Run Function\"."
msgstr ""
#. js-lingui-id: TKQ7K+
#: src/pages/settings/applications/SettingsApplications.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationRegistrationShareLinkButtons.tsx
msgid "Install"
@@ -8630,11 +8679,6 @@ msgstr "החלפת המרווחים בוטלה."
msgid "Invalid 2FA information."
msgstr "מידע אימות דו-שלבי שגוי."
#. js-lingui-id: GNRDhm
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "Invalid API key"
msgstr "מפתח API לא חוקי"
#. js-lingui-id: 9TgH9p
#: src/modules/settings/security/components/SettingsSecurityAuthBypassOptionsList.tsx
msgid "Invalid auth bypass provider"
@@ -8754,6 +8798,7 @@ msgstr "הזמנות"
#. js-lingui-id: MFKlMB
#: src/utils/title-utils.ts
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/modules/workspace/components/WorkspaceInviteTeam.tsx
msgid "Invite"
msgstr "הזמן"
@@ -9232,12 +9277,15 @@ msgid "Launch manually"
msgstr "הפעל ידנית"
#. js-lingui-id: rdU729
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -9693,6 +9741,11 @@ msgstr ""
msgid "Manage Members"
msgstr "ניהול חברים"
#. js-lingui-id: LNz5UW
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Manage objects, fields and relationships"
msgstr ""
#. js-lingui-id: eGGH1l
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Manage security policies"
@@ -9729,7 +9782,7 @@ msgid "Manage your internet accounts."
msgstr "נהל את חשבונות האינטרנט שלך."
#. js-lingui-id: waFx9W
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Managed"
msgstr ""
@@ -9807,12 +9860,23 @@ msgstr "מקסימום כתובות URL"
msgid "Maximum values"
msgstr "ערכים מרביים"
#. js-lingui-id: nA8kxD
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
msgid "MCP"
msgstr ""
#. js-lingui-id: 2jj0eo
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "MCP config copied to clipboard"
msgstr ""
#. js-lingui-id: NvQoNb
#: src/pages/settings/ai/components/SettingsAiMCP.tsx
msgid "MCP Configuration copied to clipboard"
msgstr "תצורת MCP הועתקה ללוח הגזירים"
#. js-lingui-id: 8CWirf
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiMCP.tsx
msgid "MCP Server"
msgstr "שרת MCP"
@@ -10019,6 +10083,7 @@ msgstr "נדרש מזהה מודל"
#. js-lingui-id: //nm2/
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Models"
msgstr "מודלים"
@@ -10086,7 +10151,6 @@ msgid "months"
msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
msgid "More"
msgstr "עוד"
@@ -10235,8 +10299,8 @@ msgstr ""
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTable.tsx
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
@@ -11417,6 +11481,7 @@ msgstr "אובייקטים"
#. js-lingui-id: B3toQF
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
@@ -11805,7 +11870,9 @@ msgid "Override Draft"
msgstr "עקוף טיוטה"
#. js-lingui-id: 6/dCYd
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Overview"
msgstr "סקירה כללית"
@@ -11879,6 +11946,11 @@ msgstr "הדף לא נמצא | Twenty"
msgid "Page Views"
msgstr "צפיות בעמוד"
#. js-lingui-id: wRR604
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Pages"
msgstr ""
#. js-lingui-id: ijBN4V
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "paragraph"
@@ -12592,18 +12664,18 @@ msgid "Read documentation"
msgstr "עיין/י בתיעוד"
#. js-lingui-id: U26cMX
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read system prompts"
msgstr ""
#. js-lingui-id: EKsFda
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read the system prompts to understand how the AI works"
msgstr ""
#. js-lingui-id: 0URVx8
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1, }, )
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1 }, )
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read the system prompts to understand how the AI works (~{0} tokens)"
msgstr ""
@@ -12732,6 +12804,11 @@ msgstr "תמונה של רישום"
msgid "Record label"
msgstr "תווית של רישום"
#. js-lingui-id: XueM/X
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Record page"
msgstr ""
#. js-lingui-id: mAHjRd
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutOpenInContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -12850,6 +12927,7 @@ msgid "Relation type"
msgstr "סוג יחס"
#. js-lingui-id: g87L9j
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
#: src/modules/activities/inline-cell/components/ActivityTargetsInlineCell.tsx
msgid "Relations"
@@ -13162,6 +13240,7 @@ msgid "Response Format"
msgstr ""
#. js-lingui-id: WHiaOl
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/playground/SettingsRestPlayground.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "REST"
@@ -13332,6 +13411,7 @@ msgstr ""
#. js-lingui-id: 5dJK4M
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
@@ -13551,7 +13631,7 @@ msgid "Search a role..."
msgstr "חפש תפקיד..."
#. js-lingui-id: lJNEce
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Search a skill..."
msgstr "חפש מיומנות..."
@@ -13567,7 +13647,7 @@ msgid "Search a team member..."
msgstr "חיפוש חבר צוות..."
#. js-lingui-id: VNmPqQ
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Search a tool..."
msgstr ""
@@ -13883,6 +13963,11 @@ msgstr ""
msgid "See Records on All Objects"
msgstr "צפייה ברשומות מכל הישויות"
#. js-lingui-id: eQ3co2
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "See your data structure as an interactive diagram"
msgstr ""
#. js-lingui-id: Hhnssf
#: src/pages/settings/applications/components/SettingsApplicationTableRow.tsx
msgid "Seeded"
@@ -14227,6 +14312,11 @@ msgstr "הגדר שדה בחירה ב{objectLabel} כדי ליצור קנבן"
msgid "Set up forwarding from the source address to this destination."
msgstr ""
#. js-lingui-id: dq5Wx1
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Set up MCP"
msgstr ""
#. js-lingui-id: 9HNKkV
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
msgid "Set your application configuration variables"
@@ -14387,6 +14477,16 @@ msgstr ""
msgid "Side Panel"
msgstr "לוח צדדי"
#. js-lingui-id: uWi2Q+
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Sidebar"
msgstr ""
#. js-lingui-id: 9k9PMD
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Sidebar items"
msgstr ""
#. js-lingui-id: 5lWFkC
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
msgid "Sign in"
@@ -14471,12 +14571,12 @@ msgid "Skill"
msgstr "מיומנות"
#. js-lingui-id: h4t38o
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skill activated"
msgstr "מיומנות הופעלה"
#. js-lingui-id: /IoK74
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skill deleted"
msgstr "מיומנות נמחקה"
@@ -14499,7 +14599,9 @@ msgstr ""
#. js-lingui-id: PCSkw2
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skills"
msgstr "מיומנויות"
@@ -14724,7 +14826,7 @@ msgid "Stages"
msgstr "שלבים"
#. js-lingui-id: TJBHlP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/applications/hooks/useApplicationChipData.ts
msgid "Standard"
@@ -15137,8 +15239,8 @@ msgstr ""
#: src/pages/settings/ai/SettingsAiPrompts.tsx
#: src/pages/settings/ai/SettingsAiPrompts.tsx
#: src/pages/settings/ai/forms/components/SettingsAiAgentForm.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
msgid "System Prompt"
msgstr "הנחיית מערכת"
@@ -15220,6 +15322,7 @@ msgstr "כותרת המשימה"
#. js-lingui-id: KM6m8p
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Team"
msgstr ""
@@ -15338,6 +15441,11 @@ msgid ""
"See the [Getting Started guide](https://twenty.com/developers/extend/apps/getting-started) for the full walkthrough, and [Building Apps](https://twenty.com/developers/extend/apps/building) for the `defineApplication` / `defineEntity` APIs."
msgstr ""
#. js-lingui-id: n+CCXl
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "The default AI model used for chats, agents, and workflows"
msgstr ""
#. js-lingui-id: 1xQkU9
#: src/modules/settings/data-model/fields/forms/phones/components/SettingsDataModelFieldPhonesForm.tsx
msgid "The default country code for new phone numbers."
@@ -15900,7 +16008,7 @@ msgid "Tool calls made"
msgstr "קריאות לכלים שבוצעו"
#. js-lingui-id: SrWh42
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/hooks/useCreateTool.ts
msgid "Tool created"
msgstr "הכלי נוצר"
@@ -15921,7 +16029,9 @@ msgstr "יצירת כלי"
#. js-lingui-id: xdA/+p
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Tools"
msgstr "כלים"
@@ -16067,11 +16177,10 @@ msgstr ""
msgid "True"
msgstr "נכון"
#. js-lingui-id: haaL9N
#. js-lingui-id: 64tOpZ
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Try our REST or GraphQL API playgrounds."
msgstr "נסו את אזורי המשחק של API מסוג REST או GraphQL."
msgid "Try our REST or GraphQL API playgrounds"
msgstr ""
#. js-lingui-id: 3WWUB9
#: src/pages/settings/updates/SettingsUpdates.tsx
@@ -16738,9 +16847,13 @@ msgstr "השתמש באפליקציות מאמת ובהרחבות דפדפן כ
msgid "Use best models only"
msgstr "השתמש רק במודלים הטובים ביותר"
#. js-lingui-id: 5ZehS/
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Use filter to see existing skills or create your own"
msgstr ""
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
@@ -17102,7 +17215,9 @@ msgstr "צפה ביומני פעילות סביבת העבודה"
#. js-lingui-id: 1I6UoR
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr "תצוגות"
@@ -17155,10 +17270,15 @@ msgid "Visible to you"
msgstr "גלוי עבורך"
#. js-lingui-id: 6n7jtr
#: src/modules/settings/data-model/objects/components/SettingsObjectCoverImage.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Visualize"
msgstr "המחשה"
#. js-lingui-id: VvM/Ty
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Visualize data model"
msgstr ""
#. js-lingui-id: uUehLT
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Waiting"
@@ -17194,6 +17314,41 @@ msgstr "נמחק על ידי"
msgid "was restored by"
msgstr "שוחזר על ידי"
#. js-lingui-id: 0WPnTI
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Watch AI demo"
msgstr ""
#. js-lingui-id: 5qU4Mu
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
msgid "Watch API demo"
msgstr ""
#. js-lingui-id: inpQ46
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Watch apps demo"
msgstr ""
#. js-lingui-id: uIrZTC
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Watch customization demo"
msgstr ""
#. js-lingui-id: syeoTg
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Watch data model demo"
msgstr ""
#. js-lingui-id: egkNh9
#: src/modules/settings/components/SettingsDiscoveryHeroCard.tsx
msgid "Watch demo"
msgstr ""
#. js-lingui-id: 6ZDYQy
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Watch members demo"
msgstr ""
#. js-lingui-id: 6eMAkI
#: src/modules/auth/sign-in-up/components/EmailVerificationSent.tsx
msgid "We encountered an issue verifying"
@@ -17281,6 +17436,7 @@ msgstr "נדרש מזהה Webhook לעדכונים"
#. js-lingui-id: v1kQyJ
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
@@ -17336,6 +17492,11 @@ msgstr "במה אוכל לעזור לך?"
msgid "What this API can do: Select a user role to define its permissions."
msgstr "מה API זה יכול לעשות: בחר תפקיד משתמש כדי להגדיר את ההרשאות שלו."
#. js-lingui-id: drC+Tq
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "What's installed and being used in your workspace"
msgstr ""
#. js-lingui-id: m7GziZ
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "When a deal's stage changes to Closed Won, create a task assigned to the deal owner, due 7 days after the close date, with title \"Post-sale check-in\" and the company name in the description."
@@ -17395,6 +17556,11 @@ msgstr "סוג ווידג'ט"
msgid "widgets"
msgstr ""
#. js-lingui-id: tL6W2K
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Widgets"
msgstr ""
#. js-lingui-id: j6ncOZ
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowEditActionIterator.tsx
msgid "Will continue to the next iteration even if the current one fails"
@@ -17464,6 +17630,7 @@ msgstr "זרימות עבודה"
#: src/pages/settings/members/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/layout/components/SettingsLayoutDetailScaffold.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
@@ -17473,7 +17640,6 @@ msgstr "זרימות עבודה"
#: src/pages/settings/developers/playground/SettingsGraphQLPlayground.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -17553,8 +17719,8 @@ msgid "Workspace Info"
msgstr "מידע על סביבת העבודה"
#. js-lingui-id: BYrMT0
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Workspace Instructions"
msgstr "הנחיות סביבת עבודה"
+247 -81
View File
@@ -954,7 +954,6 @@ msgstr "Aktív"
#. js-lingui-id: Mue4oc
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Active API keys created by you or your team."
msgstr "Aktív API kulcsok, amelyeket te vagy a csapatod hoztatok létre."
@@ -1051,11 +1050,6 @@ msgstr ""
msgid "Add custom endpoints, private gateways, or additional regions."
msgstr "Adjon hozzá egyéni végpontokat, privát átjárókat vagy további régiókat."
#. js-lingui-id: GuJvBr
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
msgid "Add custom instructions specific to your workspace (appended to system prompt)"
msgstr "Adjon hozzá a munkaterületére jellemző egyéni utasításokat (a rendszerprompthoz hozzáfűzve)"
#. js-lingui-id: 4JviOV
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
@@ -1293,6 +1287,11 @@ msgstr "Hozzáadás a tiltólistához"
msgid "Add to Favorite"
msgstr "Hozzáadás a Kedvencekhez"
#. js-lingui-id: VbareD
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Add Twenty as a Model Context Protocol (MCP) server. Paste this config into Claude Desktop, Cursor, Cline, Continue, Zed, or any other MCP-aware client."
msgstr ""
#. js-lingui-id: XnwceV
#: src/pages/settings/applications/components/SettingsApplicationRegistrationRedirectURIsInput.tsx
msgid "Add URI"
@@ -1775,6 +1774,11 @@ msgstr "Minden feladat megoldva. Tartsa a lendületet."
msgid "All the applications currently installed on this workspace"
msgstr ""
#. js-lingui-id: xP6s/m
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "All the layout items declared on your workspace"
msgstr ""
#. js-lingui-id: XuuWVF
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
msgid "All the standard objects"
@@ -1967,11 +1971,6 @@ msgstr "Belső hiba történt a változtatások ellenőrzése során. Kérjük,
msgid "An object with this name already exists"
msgstr "Már létezik ilyen nevű objektum"
#. js-lingui-id: lxentK
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "An unexpected error occurred"
msgstr "Váratlan hiba történt"
#. js-lingui-id: byKna+
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
msgid "An unexpected error occurred. Please try again."
@@ -2016,6 +2015,7 @@ msgid "Anyone with an email address at these domains is allowed to sign up for t
msgstr "Bárki, akinek van email címe ezekről a tartományokról, csatlakozhat ehhez a munkaterülethez."
#. js-lingui-id: OZtEcz
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "API"
msgstr "API"
@@ -2033,7 +2033,6 @@ msgstr "API & Webhooks"
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "API Key"
msgstr "API kulcs"
@@ -2063,7 +2062,6 @@ msgid "API key roles"
msgstr ""
#. js-lingui-id: 5h8ooz
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
msgid "API keys"
msgstr "API kulcsok"
@@ -2104,12 +2102,6 @@ msgstr "API Név (egyes szám)"
msgid "API values"
msgstr "API értékek"
#. js-lingui-id: JR6nY7
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "APIs"
msgstr "API-k"
#. js-lingui-id: ZZAOwb
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
@@ -2131,7 +2123,7 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
msgid "App"
msgstr "Alkalmazás"
@@ -2481,6 +2473,11 @@ msgstr "{remainingTimes} és {lastTime}"
msgid "at 1 minute past the hour"
msgstr "az 1. perccel az óra múltán"
#. js-lingui-id: ooA+hm
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "At a glance"
msgstr ""
#. js-lingui-id: vyXyF0
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
msgid "At a specific date or time"
@@ -2645,11 +2642,15 @@ msgid "Availability"
msgstr "Elérhetőség"
#. js-lingui-id: csDS2L
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
msgid "Available"
msgstr "Elérhető"
#. js-lingui-id: STA+22
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Available models"
msgstr ""
#. js-lingui-id: oD38t2
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Available tools"
@@ -2865,6 +2866,11 @@ msgstr "Bronz"
msgid "Brown"
msgstr "Barna"
#. js-lingui-id: O2UpM1
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Browse"
msgstr ""
#. js-lingui-id: GsXRxc
#: src/modules/settings/data-model/indexes/forms/components/SettingsObjectIndexOptionsForm.tsx
msgid "BTREE (default, good for sorting and equality)"
@@ -3615,6 +3621,11 @@ msgstr "A parancs vágólapra másolva"
msgid "Command Icon"
msgstr "Parancsikon"
#. js-lingui-id: V1zWD4
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Command menu"
msgstr ""
#. js-lingui-id: PUMdxH
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
msgid "Command Menu"
@@ -3642,6 +3653,11 @@ msgstr ""
msgid "commands"
msgstr ""
#. js-lingui-id: 45MZFs
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Commands"
msgstr ""
#. js-lingui-id: 4XlFx/
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Commands copied to clipboard"
@@ -3808,11 +3824,6 @@ msgstr "Konfigurálja ezeket a DNS-rekordokat a domain szolgáltatójával"
msgid "Configure this widget to display fields"
msgstr "Konfigurálja ezt a widgetet a mezők megjelenítéséhez"
#. js-lingui-id: hzDiM0
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Configure your default AI model"
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -3886,6 +3897,11 @@ msgstr ""
msgid "Connect a new account to your workspace"
msgstr "Új fiók csatlakoztatása a munkaterülethez"
#. js-lingui-id: vPCRNy
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Connect AI assistants like Claude or Cursor to your workspace via the Model Context Protocol"
msgstr ""
#. js-lingui-id: YLx3sC
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect via IMAP/SMTP"
@@ -3901,6 +3917,11 @@ msgstr "Csatlakozás Google-lel"
msgid "Connect with Microsoft"
msgstr "Csatlakozás Microsofttal"
#. js-lingui-id: iZWbGJ
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Connect your AI assistant"
msgstr ""
#. js-lingui-id: QHcLEN
#: src/pages/settings/applications/SettingsApplicationConnectionDetail.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationConnectionsSection.tsx
@@ -4066,6 +4087,11 @@ msgstr "Szabályozza, hogy milyen típusú entitásokhoz rendelhető ez a szerep
msgid "Conversation"
msgstr "Beszélgetés"
#. js-lingui-id: EnJuK0
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Conversations"
msgstr ""
#. js-lingui-id: HRGl1X
#: src/pages/onboarding/CreateProfile.tsx
#: src/modules/settings/profile/components/NameFields.tsx
@@ -4104,6 +4130,11 @@ msgstr "Parancs másolása"
msgid "Copy commands"
msgstr "Parancsok másolása"
#. js-lingui-id: eaZgIQ
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Copy config"
msgstr ""
#. js-lingui-id: 7eVkEH
#: src/pages/onboarding/InviteTeam.tsx
msgid "Copy invitation link"
@@ -4216,6 +4247,11 @@ msgstr "Nem sikerült megnyitni a számlázási portált. Ellenőrizze, hogy az
msgid "Could not open Stripe. Please contact support."
msgstr "Nem sikerült megnyitni a Stripe-ot. Kérjük, lépjen kapcsolatba a támogatással."
#. js-lingui-id: 6wi9Nf
#: src/modules/settings/playground/hooks/useOpenPlayground.ts
msgid "Could not open the API playground"
msgstr ""
#. js-lingui-id: wVw4Am
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not refresh validity token. Please contact support."
@@ -4340,7 +4376,6 @@ msgstr "MI ügynökök létrehozása és konfigurálása"
#. js-lingui-id: uXGLuq
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Create API key"
msgstr "API kulcs létrehozása"
@@ -4625,7 +4660,7 @@ msgstr "Nem található az aktuális munkaterület tagja."
#. js-lingui-id: 8Tg/JR
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/applications/hooks/useApplicationChipData.ts
@@ -4650,6 +4685,11 @@ msgstr "Egyéni Domain"
msgid "Custom domain updated"
msgstr "Egyéni domain frissítve"
#. js-lingui-id: c6P+Xe
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Custom instructions appended to every system prompt"
msgstr ""
#. js-lingui-id: 87ZNeX
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
msgid "Custom model ID"
@@ -4692,6 +4732,7 @@ msgid "Customization"
msgstr "Testreszabás"
#. js-lingui-id: srRMnJ
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectLayout.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
@@ -4788,6 +4829,11 @@ msgstr "Sötét"
msgid "Dashboard duplicated successfully"
msgstr "Irányítópult sikeresen duplikálva"
#. js-lingui-id: w6iIMm
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Dashboards"
msgstr ""
#. js-lingui-id: HKH+W+
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
@@ -4988,7 +5034,7 @@ msgstr "E mező deaktiválása"
#. js-lingui-id: yAT3be
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
@@ -5015,7 +5061,6 @@ msgstr ""
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
msgid "Default"
@@ -5031,6 +5076,11 @@ msgstr "Alapértelmezett ország"
msgid "Default Country Code"
msgstr "Alapértelmezett országkód"
#. js-lingui-id: OtTlfU
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Default model"
msgstr ""
#. js-lingui-id: hUWaAk
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
msgid "Default model for chats and complex reasoning"
@@ -5473,6 +5523,11 @@ msgstr "Részletek"
msgid "Detected application version running on this instance"
msgstr ""
#. js-lingui-id: QYXe1O
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Develop"
msgstr ""
#. js-lingui-id: 7aDnUb
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Developer"
@@ -5564,7 +5619,6 @@ msgstr "Ne importálja"
#. js-lingui-id: TvY/XA
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
msgid "Documentation"
@@ -5768,7 +5822,7 @@ msgid "e.g. OpenAI EU"
msgstr "pl. OpenAI EU"
#. js-lingui-id: p5P8NB
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
msgstr "Például: \"B2B SaaS vállalat vagyunk. Mindig használjon formális nyelvezetet...\""
@@ -6114,6 +6168,8 @@ msgstr "Alkalmazottak"
#. js-lingui-id: N2S1rs
#: src/modules/object-record/record-inline-cell/components/RecordInlineCellDisplayMode.tsx
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRelationFieldDiffValues.tsx
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRelationFieldDiffValues.tsx
#: src/modules/activities/timeline-activities/rows/main-object/components/EventFieldDiff.tsx
msgid "Empty"
msgstr "Üres"
@@ -6428,11 +6484,6 @@ msgstr "Érték megadása"
msgid "Enter values, comma-separated"
msgstr "Adja meg az értékeket, vesszővel elválasztva"
#. js-lingui-id: OjkRLQ
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "Enter your API key"
msgstr "Adja meg az API-kulcsát"
#. js-lingui-id: GpB8YV
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -6988,7 +7039,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
msgstr "Nem sikerült aktiválni az Enterprise licencet. Ellenőrizze a kulcsot, vagy lépjen kapcsolatba a támogatással."
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Failed to activate skill"
msgstr "Nem sikerült aktiválni a készséget"
@@ -7007,11 +7058,6 @@ msgstr "Nem sikerült hozzáadni a szolgáltatót"
msgid "Failed to create email handle. Email handles may not be configured on this server."
msgstr ""
#. js-lingui-id: WM7GKt
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Failed to create tool"
msgstr "Nem sikerült létrehozni az eszközt"
#. js-lingui-id: lWoewm
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Failed to delete email handle."
@@ -7023,7 +7069,7 @@ msgid "Failed to delete jobs. Please try again later."
msgstr "Nem sikerült törölni az állásokat. Kérjük, próbálja meg újra később."
#. js-lingui-id: bmwWKk
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Failed to delete skill"
msgstr "Nem sikerült törölni a készséget"
@@ -7126,7 +7172,7 @@ msgid "Failed to save role permissions: {errorMessage}"
msgstr ""
#. js-lingui-id: 9ryUyP
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Failed to save workspace instructions"
msgstr "Nem sikerült menteni a munkaterületre vonatkozó utasításokat"
@@ -7152,13 +7198,13 @@ msgid "Failed to update default model"
msgstr "Az alapértelmezett modell frissítése nem sikerült"
#. js-lingui-id: 1R13Ov
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
msgid "Failed to update model"
msgstr "Nem sikerült frissíteni a modellt"
#. js-lingui-id: W7Ff/4
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Failed to update model availability"
@@ -7175,7 +7221,7 @@ msgid "Failed to update model recommendations"
msgstr ""
#. js-lingui-id: rCUG3c
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
msgid "Failed to update model selection mode"
msgstr "Nem sikerült frissíteni a modell kiválasztási módját"
@@ -7334,6 +7380,7 @@ msgstr "mezők"
#. js-lingui-id: vF68cg
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
#: src/pages/settings/data-model/new-index/SettingsObjectNewIndex.tsx
@@ -7868,6 +7915,7 @@ msgid "Grants permission to perform all available actions without restriction"
msgstr "Megadja az engedélyt, hogy korlátozás nélkül végrehajtsa az összes elérhető műveletet"
#. js-lingui-id: gBiL6J
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "GraphQL"
msgstr "GraphQL"
@@ -8550,6 +8598,7 @@ msgid "Insert a JSON input, then press \"Run Function\"."
msgstr ""
#. js-lingui-id: TKQ7K+
#: src/pages/settings/applications/SettingsApplications.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationRegistrationShareLinkButtons.tsx
msgid "Install"
@@ -8630,11 +8679,6 @@ msgstr "Az intervallumváltás törlésre került."
msgid "Invalid 2FA information."
msgstr "Érvénytelen 2FA információ."
#. js-lingui-id: GNRDhm
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "Invalid API key"
msgstr "Érvénytelen API-kulcs"
#. js-lingui-id: 9TgH9p
#: src/modules/settings/security/components/SettingsSecurityAuthBypassOptionsList.tsx
msgid "Invalid auth bypass provider"
@@ -8754,6 +8798,7 @@ msgstr "Meghívók"
#. js-lingui-id: MFKlMB
#: src/utils/title-utils.ts
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/modules/workspace/components/WorkspaceInviteTeam.tsx
msgid "Invite"
msgstr "Meghívás"
@@ -9232,12 +9277,15 @@ msgid "Launch manually"
msgstr "Indítás manuálisan"
#. js-lingui-id: rdU729
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -9693,6 +9741,11 @@ msgstr ""
msgid "Manage Members"
msgstr "Tagok Kezelése"
#. js-lingui-id: LNz5UW
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Manage objects, fields and relationships"
msgstr ""
#. js-lingui-id: eGGH1l
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Manage security policies"
@@ -9729,7 +9782,7 @@ msgid "Manage your internet accounts."
msgstr "Kezeld az internetes fiókjaid."
#. js-lingui-id: waFx9W
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Managed"
msgstr ""
@@ -9807,12 +9860,23 @@ msgstr "Maximális URL-ek"
msgid "Maximum values"
msgstr "Maximális értékek"
#. js-lingui-id: nA8kxD
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
msgid "MCP"
msgstr ""
#. js-lingui-id: 2jj0eo
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "MCP config copied to clipboard"
msgstr ""
#. js-lingui-id: NvQoNb
#: src/pages/settings/ai/components/SettingsAiMCP.tsx
msgid "MCP Configuration copied to clipboard"
msgstr "MCP konfiguráció vágólapra másolva"
#. js-lingui-id: 8CWirf
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiMCP.tsx
msgid "MCP Server"
msgstr "MCP szerver"
@@ -10019,6 +10083,7 @@ msgstr "A modellazonosító megadása kötelező"
#. js-lingui-id: //nm2/
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Models"
msgstr "Modellek"
@@ -10086,7 +10151,6 @@ msgid "months"
msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
msgid "More"
msgstr "Több"
@@ -10235,8 +10299,8 @@ msgstr ""
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTable.tsx
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
@@ -11417,6 +11481,7 @@ msgstr "objektumok"
#. js-lingui-id: B3toQF
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
@@ -11805,7 +11870,9 @@ msgid "Override Draft"
msgstr "Vázlat felülírása"
#. js-lingui-id: 6/dCYd
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Overview"
msgstr "Áttekintés"
@@ -11879,6 +11946,11 @@ msgstr "Az oldal nem található | Twenty"
msgid "Page Views"
msgstr "Oldalmegtekintések"
#. js-lingui-id: wRR604
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Pages"
msgstr ""
#. js-lingui-id: ijBN4V
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "paragraph"
@@ -12592,18 +12664,18 @@ msgid "Read documentation"
msgstr "Dokumentáció olvasása"
#. js-lingui-id: U26cMX
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read system prompts"
msgstr ""
#. js-lingui-id: EKsFda
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read the system prompts to understand how the AI works"
msgstr ""
#. js-lingui-id: 0URVx8
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1, }, )
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1 }, )
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read the system prompts to understand how the AI works (~{0} tokens)"
msgstr ""
@@ -12732,6 +12804,11 @@ msgstr "Felvétel képe"
msgid "Record label"
msgstr "Felvétel címkéje"
#. js-lingui-id: XueM/X
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Record page"
msgstr ""
#. js-lingui-id: mAHjRd
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutOpenInContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -12850,6 +12927,7 @@ msgid "Relation type"
msgstr "Kapcsolati típus"
#. js-lingui-id: g87L9j
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
#: src/modules/activities/inline-cell/components/ActivityTargetsInlineCell.tsx
msgid "Relations"
@@ -13162,6 +13240,7 @@ msgid "Response Format"
msgstr ""
#. js-lingui-id: WHiaOl
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/playground/SettingsRestPlayground.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "REST"
@@ -13332,6 +13411,7 @@ msgstr ""
#. js-lingui-id: 5dJK4M
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
@@ -13551,7 +13631,7 @@ msgid "Search a role..."
msgstr "Szerepkör keresése..."
#. js-lingui-id: lJNEce
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Search a skill..."
msgstr "Készség keresése..."
@@ -13567,7 +13647,7 @@ msgid "Search a team member..."
msgstr "Csapattag keresése..."
#. js-lingui-id: VNmPqQ
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Search a tool..."
msgstr ""
@@ -13883,6 +13963,11 @@ msgstr ""
msgid "See Records on All Objects"
msgstr "Rekordok megtekintése minden objektumon"
#. js-lingui-id: eQ3co2
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "See your data structure as an interactive diagram"
msgstr ""
#. js-lingui-id: Hhnssf
#: src/pages/settings/applications/components/SettingsApplicationTableRow.tsx
msgid "Seeded"
@@ -14227,6 +14312,11 @@ msgstr "Állítson be egy Választó mezőt a(z) {objectLabel} objektumon egy Ka
msgid "Set up forwarding from the source address to this destination."
msgstr ""
#. js-lingui-id: dq5Wx1
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Set up MCP"
msgstr ""
#. js-lingui-id: 9HNKkV
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
msgid "Set your application configuration variables"
@@ -14387,6 +14477,16 @@ msgstr ""
msgid "Side Panel"
msgstr "Oldal Panel"
#. js-lingui-id: uWi2Q+
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Sidebar"
msgstr ""
#. js-lingui-id: 9k9PMD
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Sidebar items"
msgstr ""
#. js-lingui-id: 5lWFkC
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
msgid "Sign in"
@@ -14471,12 +14571,12 @@ msgid "Skill"
msgstr "Készség"
#. js-lingui-id: h4t38o
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skill activated"
msgstr "Készség aktiválva"
#. js-lingui-id: /IoK74
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skill deleted"
msgstr "Készség törölve"
@@ -14499,7 +14599,9 @@ msgstr ""
#. js-lingui-id: PCSkw2
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skills"
msgstr "Készségek"
@@ -14724,7 +14826,7 @@ msgid "Stages"
msgstr "Szakaszok"
#. js-lingui-id: TJBHlP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/applications/hooks/useApplicationChipData.ts
msgid "Standard"
@@ -15137,8 +15239,8 @@ msgstr ""
#: src/pages/settings/ai/SettingsAiPrompts.tsx
#: src/pages/settings/ai/SettingsAiPrompts.tsx
#: src/pages/settings/ai/forms/components/SettingsAiAgentForm.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
msgid "System Prompt"
msgstr "Rendszer parancs"
@@ -15220,6 +15322,7 @@ msgstr "Feladat címe"
#. js-lingui-id: KM6m8p
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Team"
msgstr ""
@@ -15338,6 +15441,11 @@ msgid ""
"See the [Getting Started guide](https://twenty.com/developers/extend/apps/getting-started) for the full walkthrough, and [Building Apps](https://twenty.com/developers/extend/apps/building) for the `defineApplication` / `defineEntity` APIs."
msgstr ""
#. js-lingui-id: n+CCXl
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "The default AI model used for chats, agents, and workflows"
msgstr ""
#. js-lingui-id: 1xQkU9
#: src/modules/settings/data-model/fields/forms/phones/components/SettingsDataModelFieldPhonesForm.tsx
msgid "The default country code for new phone numbers."
@@ -15900,7 +16008,7 @@ msgid "Tool calls made"
msgstr "Végrehajtott eszközhívások"
#. js-lingui-id: SrWh42
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/hooks/useCreateTool.ts
msgid "Tool created"
msgstr "Eszköz létrehozva"
@@ -15921,7 +16029,9 @@ msgstr "Eszköz generálása"
#. js-lingui-id: xdA/+p
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Tools"
msgstr "Eszközök"
@@ -16067,11 +16177,10 @@ msgstr ""
msgid "True"
msgstr "Igaz"
#. js-lingui-id: haaL9N
#. js-lingui-id: 64tOpZ
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Try our REST or GraphQL API playgrounds."
msgstr "Próbálja ki a REST vagy GraphQL API játszótereinket."
msgid "Try our REST or GraphQL API playgrounds"
msgstr ""
#. js-lingui-id: 3WWUB9
#: src/pages/settings/updates/SettingsUpdates.tsx
@@ -16738,9 +16847,13 @@ msgstr "Használjon hitelesítő alkalmazásokat és böngésző-kiegészítőke
msgid "Use best models only"
msgstr "Csak a legjobb modellek használata"
#. js-lingui-id: 5ZehS/
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Use filter to see existing skills or create your own"
msgstr ""
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
@@ -17102,7 +17215,9 @@ msgstr "Munkaterület aktivitási naplóinak megtekintése"
#. js-lingui-id: 1I6UoR
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr "Nézetek"
@@ -17155,10 +17270,15 @@ msgid "Visible to you"
msgstr "Számodra látható"
#. js-lingui-id: 6n7jtr
#: src/modules/settings/data-model/objects/components/SettingsObjectCoverImage.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Visualize"
msgstr "Vizualizál"
#. js-lingui-id: VvM/Ty
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Visualize data model"
msgstr ""
#. js-lingui-id: uUehLT
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Waiting"
@@ -17194,6 +17314,41 @@ msgstr "törölve lett általa"
msgid "was restored by"
msgstr "helyreállítva lett általa"
#. js-lingui-id: 0WPnTI
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Watch AI demo"
msgstr ""
#. js-lingui-id: 5qU4Mu
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
msgid "Watch API demo"
msgstr ""
#. js-lingui-id: inpQ46
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Watch apps demo"
msgstr ""
#. js-lingui-id: uIrZTC
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Watch customization demo"
msgstr ""
#. js-lingui-id: syeoTg
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Watch data model demo"
msgstr ""
#. js-lingui-id: egkNh9
#: src/modules/settings/components/SettingsDiscoveryHeroCard.tsx
msgid "Watch demo"
msgstr ""
#. js-lingui-id: 6ZDYQy
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Watch members demo"
msgstr ""
#. js-lingui-id: 6eMAkI
#: src/modules/auth/sign-in-up/components/EmailVerificationSent.tsx
msgid "We encountered an issue verifying"
@@ -17281,6 +17436,7 @@ msgstr "Webhook ID szükséges a frissítéshez"
#. js-lingui-id: v1kQyJ
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
@@ -17336,6 +17492,11 @@ msgstr "Miben segíthetek?"
msgid "What this API can do: Select a user role to define its permissions."
msgstr "Mit tehet ez az API: Válasszon ki egy felhasználói szerepkört, hogy meghatározza a jogosultságait."
#. js-lingui-id: drC+Tq
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "What's installed and being used in your workspace"
msgstr ""
#. js-lingui-id: m7GziZ
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "When a deal's stage changes to Closed Won, create a task assigned to the deal owner, due 7 days after the close date, with title \"Post-sale check-in\" and the company name in the description."
@@ -17395,6 +17556,11 @@ msgstr "Widget típus"
msgid "widgets"
msgstr ""
#. js-lingui-id: tL6W2K
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Widgets"
msgstr ""
#. js-lingui-id: j6ncOZ
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowEditActionIterator.tsx
msgid "Will continue to the next iteration even if the current one fails"
@@ -17464,6 +17630,7 @@ msgstr "Munkafolyamatok"
#: src/pages/settings/members/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/layout/components/SettingsLayoutDetailScaffold.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
@@ -17473,7 +17640,6 @@ msgstr "Munkafolyamatok"
#: src/pages/settings/developers/playground/SettingsGraphQLPlayground.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -17553,8 +17719,8 @@ msgid "Workspace Info"
msgstr "Munkaterület információ"
#. js-lingui-id: BYrMT0
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Workspace Instructions"
msgstr "Munkaterületre vonatkozó utasítások"
+247 -81
View File
@@ -954,7 +954,6 @@ msgstr "Attivo"
#. js-lingui-id: Mue4oc
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Active API keys created by you or your team."
msgstr "Chiavi API attive create da te o dal tuo team."
@@ -1051,11 +1050,6 @@ msgstr ""
msgid "Add custom endpoints, private gateways, or additional regions."
msgstr "Aggiungi endpoint personalizzati, gateway privati o regioni aggiuntive."
#. js-lingui-id: GuJvBr
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
msgid "Add custom instructions specific to your workspace (appended to system prompt)"
msgstr "Aggiungi istruzioni personalizzate specifiche per il tuo spazio di lavoro (aggiunte al prompt di sistema)"
#. js-lingui-id: 4JviOV
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
@@ -1293,6 +1287,11 @@ msgstr "Aggiungi alla lista di blocco"
msgid "Add to Favorite"
msgstr "Aggiungi ai Preferiti"
#. js-lingui-id: VbareD
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Add Twenty as a Model Context Protocol (MCP) server. Paste this config into Claude Desktop, Cursor, Cline, Continue, Zed, or any other MCP-aware client."
msgstr ""
#. js-lingui-id: XnwceV
#: src/pages/settings/applications/components/SettingsApplicationRegistrationRedirectURIsInput.tsx
msgid "Add URI"
@@ -1775,6 +1774,11 @@ msgstr "Tutte le attività completate. Mantieni lo slancio."
msgid "All the applications currently installed on this workspace"
msgstr ""
#. js-lingui-id: xP6s/m
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "All the layout items declared on your workspace"
msgstr ""
#. js-lingui-id: XuuWVF
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
msgid "All the standard objects"
@@ -1967,11 +1971,6 @@ msgstr "Si è verificato un errore interno durante la convalida delle modifiche.
msgid "An object with this name already exists"
msgstr "Esiste già un oggetto con questo nome"
#. js-lingui-id: lxentK
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "An unexpected error occurred"
msgstr "Si è verificato un errore imprevisto"
#. js-lingui-id: byKna+
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
msgid "An unexpected error occurred. Please try again."
@@ -2016,6 +2015,7 @@ msgid "Anyone with an email address at these domains is allowed to sign up for t
msgstr "Chiunque abbia un indirizzo email presso questi domini è autorizzato a registrarsi per questo spazio di lavoro."
#. js-lingui-id: OZtEcz
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "API"
msgstr "API"
@@ -2033,7 +2033,6 @@ msgstr "API e Webhook"
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "API Key"
msgstr "Chiave API"
@@ -2063,7 +2062,6 @@ msgid "API key roles"
msgstr ""
#. js-lingui-id: 5h8ooz
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
msgid "API keys"
msgstr "Chiavi API"
@@ -2104,12 +2102,6 @@ msgstr "Nome dell'API (Singolare)"
msgid "API values"
msgstr "Valori API"
#. js-lingui-id: JR6nY7
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "APIs"
msgstr "API"
#. js-lingui-id: ZZAOwb
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
@@ -2131,7 +2123,7 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
msgid "App"
msgstr "App"
@@ -2481,6 +2473,11 @@ msgstr "alle {remainingTimes} e {lastTime}"
msgid "at 1 minute past the hour"
msgstr "al 1 minuto passato l'ora"
#. js-lingui-id: ooA+hm
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "At a glance"
msgstr ""
#. js-lingui-id: vyXyF0
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
msgid "At a specific date or time"
@@ -2645,11 +2642,15 @@ msgid "Availability"
msgstr "Disponibilità"
#. js-lingui-id: csDS2L
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
msgid "Available"
msgstr "Disponibile"
#. js-lingui-id: STA+22
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Available models"
msgstr ""
#. js-lingui-id: oD38t2
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Available tools"
@@ -2865,6 +2866,11 @@ msgstr "Bronzo"
msgid "Brown"
msgstr "Marrone"
#. js-lingui-id: O2UpM1
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Browse"
msgstr ""
#. js-lingui-id: GsXRxc
#: src/modules/settings/data-model/indexes/forms/components/SettingsObjectIndexOptionsForm.tsx
msgid "BTREE (default, good for sorting and equality)"
@@ -3615,6 +3621,11 @@ msgstr "Comando copiato negli appunti"
msgid "Command Icon"
msgstr "Icona del comando"
#. js-lingui-id: V1zWD4
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Command menu"
msgstr ""
#. js-lingui-id: PUMdxH
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
msgid "Command Menu"
@@ -3642,6 +3653,11 @@ msgstr ""
msgid "commands"
msgstr ""
#. js-lingui-id: 45MZFs
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Commands"
msgstr ""
#. js-lingui-id: 4XlFx/
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Commands copied to clipboard"
@@ -3808,11 +3824,6 @@ msgstr "Configura questi record DNS con il tuo fornitore di dominio"
msgid "Configure this widget to display fields"
msgstr "Configura questo widget per visualizzare i campi"
#. js-lingui-id: hzDiM0
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Configure your default AI model"
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -3886,6 +3897,11 @@ msgstr ""
msgid "Connect a new account to your workspace"
msgstr "Collega un nuovo account al tuo workspace"
#. js-lingui-id: vPCRNy
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Connect AI assistants like Claude or Cursor to your workspace via the Model Context Protocol"
msgstr ""
#. js-lingui-id: YLx3sC
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect via IMAP/SMTP"
@@ -3901,6 +3917,11 @@ msgstr "Connettiti con Google"
msgid "Connect with Microsoft"
msgstr "Connettiti con Microsoft"
#. js-lingui-id: iZWbGJ
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Connect your AI assistant"
msgstr ""
#. js-lingui-id: QHcLEN
#: src/pages/settings/applications/SettingsApplicationConnectionDetail.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationConnectionsSection.tsx
@@ -4066,6 +4087,11 @@ msgstr "Controlla i tipi di entità a cui questo ruolo può essere assegnato"
msgid "Conversation"
msgstr "Conversazione"
#. js-lingui-id: EnJuK0
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Conversations"
msgstr ""
#. js-lingui-id: HRGl1X
#: src/pages/onboarding/CreateProfile.tsx
#: src/modules/settings/profile/components/NameFields.tsx
@@ -4104,6 +4130,11 @@ msgstr "Copia comando"
msgid "Copy commands"
msgstr "Copia comandi"
#. js-lingui-id: eaZgIQ
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Copy config"
msgstr ""
#. js-lingui-id: 7eVkEH
#: src/pages/onboarding/InviteTeam.tsx
msgid "Copy invitation link"
@@ -4216,6 +4247,11 @@ msgstr "Impossibile aprire il portale di fatturazione. Verifica che la tua chiav
msgid "Could not open Stripe. Please contact support."
msgstr "Impossibile aprire Stripe. Contatta l'assistenza."
#. js-lingui-id: 6wi9Nf
#: src/modules/settings/playground/hooks/useOpenPlayground.ts
msgid "Could not open the API playground"
msgstr ""
#. js-lingui-id: wVw4Am
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not refresh validity token. Please contact support."
@@ -4340,7 +4376,6 @@ msgstr "Crea e configura agenti AI"
#. js-lingui-id: uXGLuq
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Create API key"
msgstr "Crea chiave API"
@@ -4625,7 +4660,7 @@ msgstr "Membro corrente dello spazio di lavoro non trovato."
#. js-lingui-id: 8Tg/JR
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/applications/hooks/useApplicationChipData.ts
@@ -4650,6 +4685,11 @@ msgstr "Dominio personalizzato"
msgid "Custom domain updated"
msgstr "Dominio personalizzato aggiornato"
#. js-lingui-id: c6P+Xe
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Custom instructions appended to every system prompt"
msgstr ""
#. js-lingui-id: 87ZNeX
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
msgid "Custom model ID"
@@ -4692,6 +4732,7 @@ msgid "Customization"
msgstr "Personalizzazione"
#. js-lingui-id: srRMnJ
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectLayout.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
@@ -4788,6 +4829,11 @@ msgstr "Scuro"
msgid "Dashboard duplicated successfully"
msgstr "Cruscotto duplicato con successo"
#. js-lingui-id: w6iIMm
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Dashboards"
msgstr ""
#. js-lingui-id: HKH+W+
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
@@ -4988,7 +5034,7 @@ msgstr "Disattiva questo campo"
#. js-lingui-id: yAT3be
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
@@ -5015,7 +5061,6 @@ msgstr ""
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
msgid "Default"
@@ -5031,6 +5076,11 @@ msgstr "Paese predefinito"
msgid "Default Country Code"
msgstr "Prefisso internazionale predefinito"
#. js-lingui-id: OtTlfU
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Default model"
msgstr ""
#. js-lingui-id: hUWaAk
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
msgid "Default model for chats and complex reasoning"
@@ -5473,6 +5523,11 @@ msgstr "Dettagli"
msgid "Detected application version running on this instance"
msgstr ""
#. js-lingui-id: QYXe1O
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Develop"
msgstr ""
#. js-lingui-id: 7aDnUb
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Developer"
@@ -5564,7 +5619,6 @@ msgstr "Non importare"
#. js-lingui-id: TvY/XA
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
msgid "Documentation"
@@ -5768,7 +5822,7 @@ msgid "e.g. OpenAI EU"
msgstr "ad es. OpenAI EU"
#. js-lingui-id: p5P8NB
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
msgstr "Ad es., \"Siamo un'azienda SaaS B2B. Usa sempre un linguaggio formale...\""
@@ -6114,6 +6168,8 @@ msgstr "Dipendenti"
#. js-lingui-id: N2S1rs
#: src/modules/object-record/record-inline-cell/components/RecordInlineCellDisplayMode.tsx
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRelationFieldDiffValues.tsx
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRelationFieldDiffValues.tsx
#: src/modules/activities/timeline-activities/rows/main-object/components/EventFieldDiff.tsx
msgid "Empty"
msgstr "Vuoto"
@@ -6428,11 +6484,6 @@ msgstr "Inserisci valore"
msgid "Enter values, comma-separated"
msgstr "Inserisci i valori, separati da virgola"
#. js-lingui-id: OjkRLQ
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "Enter your API key"
msgstr "Inserisci la tua chiave API"
#. js-lingui-id: GpB8YV
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -6988,7 +7039,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
msgstr "Impossibile attivare la licenza Enterprise. Verifica la tua chiave oppure contatta l'assistenza."
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Failed to activate skill"
msgstr "Impossibile attivare l'abilità"
@@ -7007,11 +7058,6 @@ msgstr "Impossibile aggiungere il provider"
msgid "Failed to create email handle. Email handles may not be configured on this server."
msgstr ""
#. js-lingui-id: WM7GKt
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Failed to create tool"
msgstr "Impossibile creare lo strumento"
#. js-lingui-id: lWoewm
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Failed to delete email handle."
@@ -7023,7 +7069,7 @@ msgid "Failed to delete jobs. Please try again later."
msgstr "Impossibile eliminare i lavori. Per favore riprova più tardi."
#. js-lingui-id: bmwWKk
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Failed to delete skill"
msgstr "Impossibile eliminare l'abilità"
@@ -7126,7 +7172,7 @@ msgid "Failed to save role permissions: {errorMessage}"
msgstr ""
#. js-lingui-id: 9ryUyP
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Failed to save workspace instructions"
msgstr "Impossibile salvare le istruzioni dello spazio di lavoro"
@@ -7152,13 +7198,13 @@ msgid "Failed to update default model"
msgstr "Impossibile aggiornare il modello predefinito"
#. js-lingui-id: 1R13Ov
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
msgid "Failed to update model"
msgstr "Impossibile aggiornare il modello"
#. js-lingui-id: W7Ff/4
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Failed to update model availability"
@@ -7175,7 +7221,7 @@ msgid "Failed to update model recommendations"
msgstr ""
#. js-lingui-id: rCUG3c
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
msgid "Failed to update model selection mode"
msgstr "Impossibile aggiornare la modalità di selezione del modello"
@@ -7334,6 +7380,7 @@ msgstr "campi"
#. js-lingui-id: vF68cg
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
#: src/pages/settings/data-model/new-index/SettingsObjectNewIndex.tsx
@@ -7868,6 +7915,7 @@ msgid "Grants permission to perform all available actions without restriction"
msgstr "Concede il permesso di eseguire tutte le azioni disponibili senza restrizione"
#. js-lingui-id: gBiL6J
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "GraphQL"
msgstr "GraphQL"
@@ -8550,6 +8598,7 @@ msgid "Insert a JSON input, then press \"Run Function\"."
msgstr ""
#. js-lingui-id: TKQ7K+
#: src/pages/settings/applications/SettingsApplications.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationRegistrationShareLinkButtons.tsx
msgid "Install"
@@ -8630,11 +8679,6 @@ msgstr "Il cambio di intervallo è stato annullato."
msgid "Invalid 2FA information."
msgstr "Informazioni 2FA non valide."
#. js-lingui-id: GNRDhm
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "Invalid API key"
msgstr "API key non valido"
#. js-lingui-id: 9TgH9p
#: src/modules/settings/security/components/SettingsSecurityAuthBypassOptionsList.tsx
msgid "Invalid auth bypass provider"
@@ -8754,6 +8798,7 @@ msgstr "Inviti"
#. js-lingui-id: MFKlMB
#: src/utils/title-utils.ts
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/modules/workspace/components/WorkspaceInviteTeam.tsx
msgid "Invite"
msgstr "Invita"
@@ -9232,12 +9277,15 @@ msgid "Launch manually"
msgstr "Avvia manualmente"
#. js-lingui-id: rdU729
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -9693,6 +9741,11 @@ msgstr ""
msgid "Manage Members"
msgstr "Gestisci membri"
#. js-lingui-id: LNz5UW
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Manage objects, fields and relationships"
msgstr ""
#. js-lingui-id: eGGH1l
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Manage security policies"
@@ -9729,7 +9782,7 @@ msgid "Manage your internet accounts."
msgstr "Gestisci i tuoi account Internet."
#. js-lingui-id: waFx9W
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Managed"
msgstr ""
@@ -9807,12 +9860,23 @@ msgstr "URL massimi"
msgid "Maximum values"
msgstr "Valori massimi"
#. js-lingui-id: nA8kxD
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
msgid "MCP"
msgstr ""
#. js-lingui-id: 2jj0eo
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "MCP config copied to clipboard"
msgstr ""
#. js-lingui-id: NvQoNb
#: src/pages/settings/ai/components/SettingsAiMCP.tsx
msgid "MCP Configuration copied to clipboard"
msgstr "Configurazione MCP copiata negli appunti"
#. js-lingui-id: 8CWirf
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiMCP.tsx
msgid "MCP Server"
msgstr "Server MCP"
@@ -10019,6 +10083,7 @@ msgstr "L'ID del modello è obbligatorio"
#. js-lingui-id: //nm2/
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Models"
msgstr "Modelli"
@@ -10086,7 +10151,6 @@ msgid "months"
msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
msgid "More"
msgstr "Altro"
@@ -10235,8 +10299,8 @@ msgstr ""
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTable.tsx
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
@@ -11417,6 +11481,7 @@ msgstr "oggetti"
#. js-lingui-id: B3toQF
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
@@ -11805,7 +11870,9 @@ msgid "Override Draft"
msgstr "Sostituisci Bozza"
#. js-lingui-id: 6/dCYd
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Overview"
msgstr "Panoramica"
@@ -11879,6 +11946,11 @@ msgstr "Pagina non trovata | Twenty"
msgid "Page Views"
msgstr "Visualizzazioni di pagina"
#. js-lingui-id: wRR604
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Pages"
msgstr ""
#. js-lingui-id: ijBN4V
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "paragraph"
@@ -12592,18 +12664,18 @@ msgid "Read documentation"
msgstr "Leggi la documentazione"
#. js-lingui-id: U26cMX
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read system prompts"
msgstr ""
#. js-lingui-id: EKsFda
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read the system prompts to understand how the AI works"
msgstr ""
#. js-lingui-id: 0URVx8
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1, }, )
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1 }, )
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read the system prompts to understand how the AI works (~{0} tokens)"
msgstr ""
@@ -12732,6 +12804,11 @@ msgstr "Immagine del record"
msgid "Record label"
msgstr "Etichetta del record"
#. js-lingui-id: XueM/X
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Record page"
msgstr ""
#. js-lingui-id: mAHjRd
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutOpenInContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -12850,6 +12927,7 @@ msgid "Relation type"
msgstr "Tipo di relazione"
#. js-lingui-id: g87L9j
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
#: src/modules/activities/inline-cell/components/ActivityTargetsInlineCell.tsx
msgid "Relations"
@@ -13162,6 +13240,7 @@ msgid "Response Format"
msgstr ""
#. js-lingui-id: WHiaOl
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/playground/SettingsRestPlayground.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "REST"
@@ -13332,6 +13411,7 @@ msgstr ""
#. js-lingui-id: 5dJK4M
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
@@ -13551,7 +13631,7 @@ msgid "Search a role..."
msgstr "Cerca un ruolo..."
#. js-lingui-id: lJNEce
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Search a skill..."
msgstr "Cerca un'abilità..."
@@ -13567,7 +13647,7 @@ msgid "Search a team member..."
msgstr "Cerca un membro del team..."
#. js-lingui-id: VNmPqQ
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Search a tool..."
msgstr ""
@@ -13883,6 +13963,11 @@ msgstr ""
msgid "See Records on All Objects"
msgstr "Visualizzare record su tutti gli oggetti"
#. js-lingui-id: eQ3co2
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "See your data structure as an interactive diagram"
msgstr ""
#. js-lingui-id: Hhnssf
#: src/pages/settings/applications/components/SettingsApplicationTableRow.tsx
msgid "Seeded"
@@ -14227,6 +14312,11 @@ msgstr "Configura un campo Selezione su {objectLabel} per creare un Kanban"
msgid "Set up forwarding from the source address to this destination."
msgstr ""
#. js-lingui-id: dq5Wx1
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Set up MCP"
msgstr ""
#. js-lingui-id: 9HNKkV
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
msgid "Set your application configuration variables"
@@ -14387,6 +14477,16 @@ msgstr ""
msgid "Side Panel"
msgstr "Pannello laterale"
#. js-lingui-id: uWi2Q+
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Sidebar"
msgstr ""
#. js-lingui-id: 9k9PMD
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Sidebar items"
msgstr ""
#. js-lingui-id: 5lWFkC
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
msgid "Sign in"
@@ -14471,12 +14571,12 @@ msgid "Skill"
msgstr "Abilità"
#. js-lingui-id: h4t38o
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skill activated"
msgstr "Abilità attivata"
#. js-lingui-id: /IoK74
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skill deleted"
msgstr "Abilità eliminata"
@@ -14499,7 +14599,9 @@ msgstr ""
#. js-lingui-id: PCSkw2
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skills"
msgstr "Abilità"
@@ -14724,7 +14826,7 @@ msgid "Stages"
msgstr "Fasi"
#. js-lingui-id: TJBHlP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/applications/hooks/useApplicationChipData.ts
msgid "Standard"
@@ -15137,8 +15239,8 @@ msgstr ""
#: src/pages/settings/ai/SettingsAiPrompts.tsx
#: src/pages/settings/ai/SettingsAiPrompts.tsx
#: src/pages/settings/ai/forms/components/SettingsAiAgentForm.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
msgid "System Prompt"
msgstr "Prompt di Sistema"
@@ -15220,6 +15322,7 @@ msgstr "Titolo dell'attività"
#. js-lingui-id: KM6m8p
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Team"
msgstr ""
@@ -15338,6 +15441,11 @@ msgid ""
"See the [Getting Started guide](https://twenty.com/developers/extend/apps/getting-started) for the full walkthrough, and [Building Apps](https://twenty.com/developers/extend/apps/building) for the `defineApplication` / `defineEntity` APIs."
msgstr ""
#. js-lingui-id: n+CCXl
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "The default AI model used for chats, agents, and workflows"
msgstr ""
#. js-lingui-id: 1xQkU9
#: src/modules/settings/data-model/fields/forms/phones/components/SettingsDataModelFieldPhonesForm.tsx
msgid "The default country code for new phone numbers."
@@ -15902,7 +16010,7 @@ msgid "Tool calls made"
msgstr "Chiamate agli strumenti effettuate"
#. js-lingui-id: SrWh42
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/hooks/useCreateTool.ts
msgid "Tool created"
msgstr "Strumento creato"
@@ -15923,7 +16031,9 @@ msgstr "Generazione dello strumento"
#. js-lingui-id: xdA/+p
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Tools"
msgstr "Strumenti"
@@ -16069,11 +16179,10 @@ msgstr ""
msgid "True"
msgstr "Vero"
#. js-lingui-id: haaL9N
#. js-lingui-id: 64tOpZ
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Try our REST or GraphQL API playgrounds."
msgstr "Prova i nostri playground API REST o GraphQL."
msgid "Try our REST or GraphQL API playgrounds"
msgstr ""
#. js-lingui-id: 3WWUB9
#: src/pages/settings/updates/SettingsUpdates.tsx
@@ -16740,9 +16849,13 @@ msgstr "Usa app auth e estensioni del browser come 1Password, Authy, Microsoft A
msgid "Use best models only"
msgstr "Usa solo i modelli migliori"
#. js-lingui-id: 5ZehS/
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Use filter to see existing skills or create your own"
msgstr ""
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
@@ -17104,7 +17217,9 @@ msgstr "Visualizza i log delle attività dello spazio di lavoro"
#. js-lingui-id: 1I6UoR
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr "Viste"
@@ -17157,10 +17272,15 @@ msgid "Visible to you"
msgstr "Visibile a te"
#. js-lingui-id: 6n7jtr
#: src/modules/settings/data-model/objects/components/SettingsObjectCoverImage.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Visualize"
msgstr "Visualizza"
#. js-lingui-id: VvM/Ty
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Visualize data model"
msgstr ""
#. js-lingui-id: uUehLT
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Waiting"
@@ -17196,6 +17316,41 @@ msgstr "è stato eliminato da"
msgid "was restored by"
msgstr "è stato ripristinato da"
#. js-lingui-id: 0WPnTI
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Watch AI demo"
msgstr ""
#. js-lingui-id: 5qU4Mu
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
msgid "Watch API demo"
msgstr ""
#. js-lingui-id: inpQ46
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Watch apps demo"
msgstr ""
#. js-lingui-id: uIrZTC
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Watch customization demo"
msgstr ""
#. js-lingui-id: syeoTg
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Watch data model demo"
msgstr ""
#. js-lingui-id: egkNh9
#: src/modules/settings/components/SettingsDiscoveryHeroCard.tsx
msgid "Watch demo"
msgstr ""
#. js-lingui-id: 6ZDYQy
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Watch members demo"
msgstr ""
#. js-lingui-id: 6eMAkI
#: src/modules/auth/sign-in-up/components/EmailVerificationSent.tsx
msgid "We encountered an issue verifying"
@@ -17283,6 +17438,7 @@ msgstr "L'ID del webhook è necessario per gli aggiornamenti"
#. js-lingui-id: v1kQyJ
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
@@ -17338,6 +17494,11 @@ msgstr "In cosa posso aiutarti?"
msgid "What this API can do: Select a user role to define its permissions."
msgstr "Cosa può fare questa API: Seleziona un ruolo utente per definire le sue autorizzazioni."
#. js-lingui-id: drC+Tq
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "What's installed and being used in your workspace"
msgstr ""
#. js-lingui-id: m7GziZ
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "When a deal's stage changes to Closed Won, create a task assigned to the deal owner, due 7 days after the close date, with title \"Post-sale check-in\" and the company name in the description."
@@ -17397,6 +17558,11 @@ msgstr "Tipo di Widget"
msgid "widgets"
msgstr ""
#. js-lingui-id: tL6W2K
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Widgets"
msgstr ""
#. js-lingui-id: j6ncOZ
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowEditActionIterator.tsx
msgid "Will continue to the next iteration even if the current one fails"
@@ -17466,6 +17632,7 @@ msgstr "Workflows"
#: src/pages/settings/members/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/layout/components/SettingsLayoutDetailScaffold.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
@@ -17475,7 +17642,6 @@ msgstr "Workflows"
#: src/pages/settings/developers/playground/SettingsGraphQLPlayground.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -17555,8 +17721,8 @@ msgid "Workspace Info"
msgstr "Informazioni dello spazio di lavoro"
#. js-lingui-id: BYrMT0
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Workspace Instructions"
msgstr "Istruzioni dello spazio di lavoro"
+247 -81
View File
@@ -954,7 +954,6 @@ msgstr "アクティブ"
#. js-lingui-id: Mue4oc
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Active API keys created by you or your team."
msgstr "あなたまたはチームが作成したアクティブなAPIキー。"
@@ -1051,11 +1050,6 @@ msgstr ""
msgid "Add custom endpoints, private gateways, or additional regions."
msgstr "カスタムエンドポイント、プライベートゲートウェイ、または追加のリージョンを追加します。"
#. js-lingui-id: GuJvBr
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
msgid "Add custom instructions specific to your workspace (appended to system prompt)"
msgstr "ワークスペース固有のカスタム指示を追加(システムプロンプトに追記されます)"
#. js-lingui-id: 4JviOV
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
@@ -1293,6 +1287,11 @@ msgstr "ブロックリストに追加"
msgid "Add to Favorite"
msgstr "お気に入りに追加"
#. js-lingui-id: VbareD
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Add Twenty as a Model Context Protocol (MCP) server. Paste this config into Claude Desktop, Cursor, Cline, Continue, Zed, or any other MCP-aware client."
msgstr ""
#. js-lingui-id: XnwceV
#: src/pages/settings/applications/components/SettingsApplicationRegistrationRedirectURIsInput.tsx
msgid "Add URI"
@@ -1775,6 +1774,11 @@ msgstr "すべてのタスクに対応しました。勢いを維持しましょ
msgid "All the applications currently installed on this workspace"
msgstr ""
#. js-lingui-id: xP6s/m
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "All the layout items declared on your workspace"
msgstr ""
#. js-lingui-id: XuuWVF
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
msgid "All the standard objects"
@@ -1967,11 +1971,6 @@ msgstr "変更を検証中に内部エラーが発生しました。サポート
msgid "An object with this name already exists"
msgstr "この名前のオブジェクトはすでに存在します。"
#. js-lingui-id: lxentK
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "An unexpected error occurred"
msgstr "予期しないエラーが発生しました"
#. js-lingui-id: byKna+
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
msgid "An unexpected error occurred. Please try again."
@@ -2016,6 +2015,7 @@ msgid "Anyone with an email address at these domains is allowed to sign up for t
msgstr "これらのドメインのメールアドレスを持つ人はこのワークスペースにサインアップできます。"
#. js-lingui-id: OZtEcz
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "API"
msgstr "API"
@@ -2033,7 +2033,6 @@ msgstr "API & Webhooks"
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "API Key"
msgstr "APIキー"
@@ -2063,7 +2062,6 @@ msgid "API key roles"
msgstr ""
#. js-lingui-id: 5h8ooz
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
msgid "API keys"
msgstr "APIキー"
@@ -2104,12 +2102,6 @@ msgstr "API名<b></b>単数形<b></b>"
msgid "API values"
msgstr "APIの値"
#. js-lingui-id: JR6nY7
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "APIs"
msgstr "API"
#. js-lingui-id: ZZAOwb
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
@@ -2131,7 +2123,7 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
msgid "App"
msgstr "アプリ"
@@ -2481,6 +2473,11 @@ msgstr "{remainingTimes} と {lastTime}"
msgid "at 1 minute past the hour"
msgstr "毎時 1 分過ぎに"
#. js-lingui-id: ooA+hm
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "At a glance"
msgstr ""
#. js-lingui-id: vyXyF0
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
msgid "At a specific date or time"
@@ -2645,11 +2642,15 @@ msgid "Availability"
msgstr "利用可能"
#. js-lingui-id: csDS2L
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
msgid "Available"
msgstr "利用可能"
#. js-lingui-id: STA+22
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Available models"
msgstr ""
#. js-lingui-id: oD38t2
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Available tools"
@@ -2865,6 +2866,11 @@ msgstr "ブロンズ"
msgid "Brown"
msgstr "茶色"
#. js-lingui-id: O2UpM1
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Browse"
msgstr ""
#. js-lingui-id: GsXRxc
#: src/modules/settings/data-model/indexes/forms/components/SettingsObjectIndexOptionsForm.tsx
msgid "BTREE (default, good for sorting and equality)"
@@ -3615,6 +3621,11 @@ msgstr "コマンドがクリップボードにコピーされました"
msgid "Command Icon"
msgstr "コマンドメニューアイコン"
#. js-lingui-id: V1zWD4
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Command menu"
msgstr ""
#. js-lingui-id: PUMdxH
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
msgid "Command Menu"
@@ -3642,6 +3653,11 @@ msgstr ""
msgid "commands"
msgstr ""
#. js-lingui-id: 45MZFs
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Commands"
msgstr ""
#. js-lingui-id: 4XlFx/
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Commands copied to clipboard"
@@ -3808,11 +3824,6 @@ msgstr "ドメインプロバイダーでこれらのDNSレコードを設定す
msgid "Configure this widget to display fields"
msgstr "フィールドを表示するには、このウィジェットを設定してください"
#. js-lingui-id: hzDiM0
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Configure your default AI model"
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -3886,6 +3897,11 @@ msgstr ""
msgid "Connect a new account to your workspace"
msgstr "新しいアカウントをワークスペースに接続"
#. js-lingui-id: vPCRNy
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Connect AI assistants like Claude or Cursor to your workspace via the Model Context Protocol"
msgstr ""
#. js-lingui-id: YLx3sC
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect via IMAP/SMTP"
@@ -3901,6 +3917,11 @@ msgstr "Googleと接続"
msgid "Connect with Microsoft"
msgstr "Microsoftと接続"
#. js-lingui-id: iZWbGJ
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Connect your AI assistant"
msgstr ""
#. js-lingui-id: QHcLEN
#: src/pages/settings/applications/SettingsApplicationConnectionDetail.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationConnectionsSection.tsx
@@ -4066,6 +4087,11 @@ msgstr "この役割を割り当てることができるエンティティの種
msgid "Conversation"
msgstr "会話"
#. js-lingui-id: EnJuK0
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Conversations"
msgstr ""
#. js-lingui-id: HRGl1X
#: src/pages/onboarding/CreateProfile.tsx
#: src/modules/settings/profile/components/NameFields.tsx
@@ -4104,6 +4130,11 @@ msgstr "コマンドをコピー"
msgid "Copy commands"
msgstr "コマンドをコピー"
#. js-lingui-id: eaZgIQ
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Copy config"
msgstr ""
#. js-lingui-id: 7eVkEH
#: src/pages/onboarding/InviteTeam.tsx
msgid "Copy invitation link"
@@ -4216,6 +4247,11 @@ msgstr "請求ポータルを開けませんでした。Enterprise キーが設
msgid "Could not open Stripe. Please contact support."
msgstr "Stripe を開けませんでした。サポートに連絡してください。"
#. js-lingui-id: 6wi9Nf
#: src/modules/settings/playground/hooks/useOpenPlayground.ts
msgid "Could not open the API playground"
msgstr ""
#. js-lingui-id: wVw4Am
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not refresh validity token. Please contact support."
@@ -4340,7 +4376,6 @@ msgstr "AIエージェントを作成および設定する"
#. js-lingui-id: uXGLuq
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Create API key"
msgstr "APIキーを作成"
@@ -4625,7 +4660,7 @@ msgstr "現在のワークスペースメンバーが見つかりませんでし
#. js-lingui-id: 8Tg/JR
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/applications/hooks/useApplicationChipData.ts
@@ -4650,6 +4685,11 @@ msgstr "カスタムドメイン"
msgid "Custom domain updated"
msgstr "カスタムドメインが更新されました"
#. js-lingui-id: c6P+Xe
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Custom instructions appended to every system prompt"
msgstr ""
#. js-lingui-id: 87ZNeX
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
msgid "Custom model ID"
@@ -4692,6 +4732,7 @@ msgid "Customization"
msgstr "カスタマイズ"
#. js-lingui-id: srRMnJ
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectLayout.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
@@ -4788,6 +4829,11 @@ msgstr "\\ダ\\ー\\ク"
msgid "Dashboard duplicated successfully"
msgstr "ダッシュボードが正常に複製されました"
#. js-lingui-id: w6iIMm
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Dashboards"
msgstr ""
#. js-lingui-id: HKH+W+
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
@@ -4988,7 +5034,7 @@ msgstr "このフィールドを無効化"
#. js-lingui-id: yAT3be
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
@@ -5015,7 +5061,6 @@ msgstr ""
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
msgid "Default"
@@ -5031,6 +5076,11 @@ msgstr "デフォルトの国"
msgid "Default Country Code"
msgstr "デフォルトの国コード"
#. js-lingui-id: OtTlfU
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Default model"
msgstr ""
#. js-lingui-id: hUWaAk
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
msgid "Default model for chats and complex reasoning"
@@ -5473,6 +5523,11 @@ msgstr "詳細"
msgid "Detected application version running on this instance"
msgstr ""
#. js-lingui-id: QYXe1O
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Develop"
msgstr ""
#. js-lingui-id: 7aDnUb
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Developer"
@@ -5564,7 +5619,6 @@ msgstr "インポートしない"
#. js-lingui-id: TvY/XA
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
msgid "Documentation"
@@ -5768,7 +5822,7 @@ msgid "e.g. OpenAI EU"
msgstr "例: OpenAI EU"
#. js-lingui-id: p5P8NB
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
msgstr "例:\"当社は B2B SaaS 企業です。常にフォーマルな言葉遣いを使用してください...\""
@@ -6114,6 +6168,8 @@ msgstr "従業員"
#. js-lingui-id: N2S1rs
#: src/modules/object-record/record-inline-cell/components/RecordInlineCellDisplayMode.tsx
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRelationFieldDiffValues.tsx
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRelationFieldDiffValues.tsx
#: src/modules/activities/timeline-activities/rows/main-object/components/EventFieldDiff.tsx
msgid "Empty"
msgstr "空"
@@ -6428,11 +6484,6 @@ msgstr "値を入力してください"
msgid "Enter values, comma-separated"
msgstr "値をカンマ区切りで入力"
#. js-lingui-id: OjkRLQ
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "Enter your API key"
msgstr "API キーを入力"
#. js-lingui-id: GpB8YV
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -6988,7 +7039,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
msgstr "Enterprise ライセンスの有効化に失敗しました。キーを確認するか、サポートに連絡してください。"
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Failed to activate skill"
msgstr "スキルの有効化に失敗しました"
@@ -7007,11 +7058,6 @@ msgstr "プロバイダーの追加に失敗しました"
msgid "Failed to create email handle. Email handles may not be configured on this server."
msgstr ""
#. js-lingui-id: WM7GKt
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Failed to create tool"
msgstr "ツールの作成に失敗しました"
#. js-lingui-id: lWoewm
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Failed to delete email handle."
@@ -7023,7 +7069,7 @@ msgid "Failed to delete jobs. Please try again later."
msgstr "ジョブの削除に失敗しました。後でもう一度お試しください。"
#. js-lingui-id: bmwWKk
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Failed to delete skill"
msgstr "スキルの削除に失敗しました"
@@ -7126,7 +7172,7 @@ msgid "Failed to save role permissions: {errorMessage}"
msgstr ""
#. js-lingui-id: 9ryUyP
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Failed to save workspace instructions"
msgstr "ワークスペースの指示を保存できませんでした"
@@ -7152,13 +7198,13 @@ msgid "Failed to update default model"
msgstr "デフォルトモデルの更新に失敗しました"
#. js-lingui-id: 1R13Ov
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
msgid "Failed to update model"
msgstr "モデルの更新に失敗しました"
#. js-lingui-id: W7Ff/4
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Failed to update model availability"
@@ -7175,7 +7221,7 @@ msgid "Failed to update model recommendations"
msgstr ""
#. js-lingui-id: rCUG3c
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
msgid "Failed to update model selection mode"
msgstr "モデル選択モードの更新に失敗しました"
@@ -7334,6 +7380,7 @@ msgstr "フィールド"
#. js-lingui-id: vF68cg
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
#: src/pages/settings/data-model/new-index/SettingsObjectNewIndex.tsx
@@ -7868,6 +7915,7 @@ msgid "Grants permission to perform all available actions without restriction"
msgstr "制限なく利用可能なすべてのアクションを実行する権限を付与します。"
#. js-lingui-id: gBiL6J
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "GraphQL"
msgstr "GraphQL"
@@ -8550,6 +8598,7 @@ msgid "Insert a JSON input, then press \"Run Function\"."
msgstr ""
#. js-lingui-id: TKQ7K+
#: src/pages/settings/applications/SettingsApplications.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationRegistrationShareLinkButtons.tsx
msgid "Install"
@@ -8630,11 +8679,6 @@ msgstr "間隔切替がキャンセルされました。"
msgid "Invalid 2FA information."
msgstr "無効な2FA情報。"
#. js-lingui-id: GNRDhm
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "Invalid API key"
msgstr "無効なAPIキー"
#. js-lingui-id: 9TgH9p
#: src/modules/settings/security/components/SettingsSecurityAuthBypassOptionsList.tsx
msgid "Invalid auth bypass provider"
@@ -8754,6 +8798,7 @@ msgstr "招待状"
#. js-lingui-id: MFKlMB
#: src/utils/title-utils.ts
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/modules/workspace/components/WorkspaceInviteTeam.tsx
msgid "Invite"
msgstr "招待"
@@ -9232,12 +9277,15 @@ msgid "Launch manually"
msgstr "手動で起動"
#. js-lingui-id: rdU729
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -9693,6 +9741,11 @@ msgstr ""
msgid "Manage Members"
msgstr "メンバー管理"
#. js-lingui-id: LNz5UW
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Manage objects, fields and relationships"
msgstr ""
#. js-lingui-id: eGGH1l
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Manage security policies"
@@ -9729,7 +9782,7 @@ msgid "Manage your internet accounts."
msgstr "インターネットアカウントを管理"
#. js-lingui-id: waFx9W
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Managed"
msgstr ""
@@ -9807,12 +9860,23 @@ msgstr "最大URL数"
msgid "Maximum values"
msgstr "最大値数"
#. js-lingui-id: nA8kxD
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
msgid "MCP"
msgstr ""
#. js-lingui-id: 2jj0eo
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "MCP config copied to clipboard"
msgstr ""
#. js-lingui-id: NvQoNb
#: src/pages/settings/ai/components/SettingsAiMCP.tsx
msgid "MCP Configuration copied to clipboard"
msgstr "MCP構成がクリップボードにコピーされました"
#. js-lingui-id: 8CWirf
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiMCP.tsx
msgid "MCP Server"
msgstr "MCP サーバー"
@@ -10019,6 +10083,7 @@ msgstr "モデル ID は必須です"
#. js-lingui-id: //nm2/
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Models"
msgstr "モデル"
@@ -10086,7 +10151,6 @@ msgid "months"
msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
msgid "More"
msgstr "もっと"
@@ -10235,8 +10299,8 @@ msgstr ""
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTable.tsx
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
@@ -11417,6 +11481,7 @@ msgstr "オブジェクト"
#. js-lingui-id: B3toQF
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
@@ -11805,7 +11870,9 @@ msgid "Override Draft"
msgstr "下書きを上書き"
#. js-lingui-id: 6/dCYd
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Overview"
msgstr "概要"
@@ -11879,6 +11946,11 @@ msgstr "ページが見つかりません | Twenty"
msgid "Page Views"
msgstr "ページビュー"
#. js-lingui-id: wRR604
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Pages"
msgstr ""
#. js-lingui-id: ijBN4V
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "paragraph"
@@ -12592,18 +12664,18 @@ msgid "Read documentation"
msgstr "ドキュメントを読む"
#. js-lingui-id: U26cMX
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read system prompts"
msgstr ""
#. js-lingui-id: EKsFda
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read the system prompts to understand how the AI works"
msgstr ""
#. js-lingui-id: 0URVx8
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1, }, )
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1 }, )
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read the system prompts to understand how the AI works (~{0} tokens)"
msgstr ""
@@ -12732,6 +12804,11 @@ msgstr "レコード画像"
msgid "Record label"
msgstr "レコードラベル"
#. js-lingui-id: XueM/X
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Record page"
msgstr ""
#. js-lingui-id: mAHjRd
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutOpenInContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -12850,6 +12927,7 @@ msgid "Relation type"
msgstr "関係タイプ"
#. js-lingui-id: g87L9j
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
#: src/modules/activities/inline-cell/components/ActivityTargetsInlineCell.tsx
msgid "Relations"
@@ -13162,6 +13240,7 @@ msgid "Response Format"
msgstr ""
#. js-lingui-id: WHiaOl
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/playground/SettingsRestPlayground.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "REST"
@@ -13332,6 +13411,7 @@ msgstr ""
#. js-lingui-id: 5dJK4M
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
@@ -13551,7 +13631,7 @@ msgid "Search a role..."
msgstr "役割を検索..."
#. js-lingui-id: lJNEce
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Search a skill..."
msgstr "スキルを検索..."
@@ -13567,7 +13647,7 @@ msgid "Search a team member..."
msgstr "メンバーを検索…"
#. js-lingui-id: VNmPqQ
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Search a tool..."
msgstr ""
@@ -13883,6 +13963,11 @@ msgstr ""
msgid "See Records on All Objects"
msgstr "全オブジェクトでレコードを表示する"
#. js-lingui-id: eQ3co2
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "See your data structure as an interactive diagram"
msgstr ""
#. js-lingui-id: Hhnssf
#: src/pages/settings/applications/components/SettingsApplicationTableRow.tsx
msgid "Seeded"
@@ -14227,6 +14312,11 @@ msgstr "カンバンを作成するには、{objectLabel} に選択フィール
msgid "Set up forwarding from the source address to this destination."
msgstr ""
#. js-lingui-id: dq5Wx1
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Set up MCP"
msgstr ""
#. js-lingui-id: 9HNKkV
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
msgid "Set your application configuration variables"
@@ -14387,6 +14477,16 @@ msgstr ""
msgid "Side Panel"
msgstr "サイドパネル"
#. js-lingui-id: uWi2Q+
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Sidebar"
msgstr ""
#. js-lingui-id: 9k9PMD
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Sidebar items"
msgstr ""
#. js-lingui-id: 5lWFkC
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
msgid "Sign in"
@@ -14471,12 +14571,12 @@ msgid "Skill"
msgstr "スキル"
#. js-lingui-id: h4t38o
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skill activated"
msgstr "スキルを有効化しました"
#. js-lingui-id: /IoK74
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skill deleted"
msgstr "スキルを削除しました"
@@ -14499,7 +14599,9 @@ msgstr ""
#. js-lingui-id: PCSkw2
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skills"
msgstr "スキル"
@@ -14724,7 +14826,7 @@ msgid "Stages"
msgstr "ステージ"
#. js-lingui-id: TJBHlP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/applications/hooks/useApplicationChipData.ts
msgid "Standard"
@@ -15137,8 +15239,8 @@ msgstr ""
#: src/pages/settings/ai/SettingsAiPrompts.tsx
#: src/pages/settings/ai/SettingsAiPrompts.tsx
#: src/pages/settings/ai/forms/components/SettingsAiAgentForm.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
msgid "System Prompt"
msgstr "システムプロンプト"
@@ -15220,6 +15322,7 @@ msgstr "タスクのタイトル"
#. js-lingui-id: KM6m8p
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Team"
msgstr ""
@@ -15338,6 +15441,11 @@ msgid ""
"See the [Getting Started guide](https://twenty.com/developers/extend/apps/getting-started) for the full walkthrough, and [Building Apps](https://twenty.com/developers/extend/apps/building) for the `defineApplication` / `defineEntity` APIs."
msgstr ""
#. js-lingui-id: n+CCXl
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "The default AI model used for chats, agents, and workflows"
msgstr ""
#. js-lingui-id: 1xQkU9
#: src/modules/settings/data-model/fields/forms/phones/components/SettingsDataModelFieldPhonesForm.tsx
msgid "The default country code for new phone numbers."
@@ -15900,7 +16008,7 @@ msgid "Tool calls made"
msgstr "ツール呼び出しの回数"
#. js-lingui-id: SrWh42
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/hooks/useCreateTool.ts
msgid "Tool created"
msgstr "ツールが作成されました"
@@ -15921,7 +16029,9 @@ msgstr "ツール生成"
#. js-lingui-id: xdA/+p
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Tools"
msgstr "ツール"
@@ -16067,11 +16177,10 @@ msgstr ""
msgid "True"
msgstr "真"
#. js-lingui-id: haaL9N
#. js-lingui-id: 64tOpZ
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Try our REST or GraphQL API playgrounds."
msgstr "RESTまたはGraphQL APIプレイグラウンドをお試しください。"
msgid "Try our REST or GraphQL API playgrounds"
msgstr ""
#. js-lingui-id: 3WWUB9
#: src/pages/settings/updates/SettingsUpdates.tsx
@@ -16738,9 +16847,13 @@ msgstr "1Password、Authy、Microsoft Authenticatorなどの認証アプリや
msgid "Use best models only"
msgstr "最良のモデルのみを使用する"
#. js-lingui-id: 5ZehS/
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Use filter to see existing skills or create your own"
msgstr ""
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
@@ -17102,7 +17215,9 @@ msgstr "ワークスペースのアクティビティログを表示"
#. js-lingui-id: 1I6UoR
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr "ビュー"
@@ -17155,10 +17270,15 @@ msgid "Visible to you"
msgstr "あなたに表示される"
#. js-lingui-id: 6n7jtr
#: src/modules/settings/data-model/objects/components/SettingsObjectCoverImage.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Visualize"
msgstr "可視化"
#. js-lingui-id: VvM/Ty
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Visualize data model"
msgstr ""
#. js-lingui-id: uUehLT
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Waiting"
@@ -17194,6 +17314,41 @@ msgstr "によって削除されました"
msgid "was restored by"
msgstr "によって復元されました"
#. js-lingui-id: 0WPnTI
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Watch AI demo"
msgstr ""
#. js-lingui-id: 5qU4Mu
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
msgid "Watch API demo"
msgstr ""
#. js-lingui-id: inpQ46
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Watch apps demo"
msgstr ""
#. js-lingui-id: uIrZTC
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Watch customization demo"
msgstr ""
#. js-lingui-id: syeoTg
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Watch data model demo"
msgstr ""
#. js-lingui-id: egkNh9
#: src/modules/settings/components/SettingsDiscoveryHeroCard.tsx
msgid "Watch demo"
msgstr ""
#. js-lingui-id: 6ZDYQy
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Watch members demo"
msgstr ""
#. js-lingui-id: 6eMAkI
#: src/modules/auth/sign-in-up/components/EmailVerificationSent.tsx
msgid "We encountered an issue verifying"
@@ -17281,6 +17436,7 @@ msgstr "更新にはWebhook IDが必要です"
#. js-lingui-id: v1kQyJ
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
@@ -17336,6 +17492,11 @@ msgstr "何をお手伝いできますか?"
msgid "What this API can do: Select a user role to define its permissions."
msgstr "このAPIでできること:ユーザーのロールを選択して、その権限を定義します。"
#. js-lingui-id: drC+Tq
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "What's installed and being used in your workspace"
msgstr ""
#. js-lingui-id: m7GziZ
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "When a deal's stage changes to Closed Won, create a task assigned to the deal owner, due 7 days after the close date, with title \"Post-sale check-in\" and the company name in the description."
@@ -17395,6 +17556,11 @@ msgstr "ウィジェットタイプ"
msgid "widgets"
msgstr ""
#. js-lingui-id: tL6W2K
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Widgets"
msgstr ""
#. js-lingui-id: j6ncOZ
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowEditActionIterator.tsx
msgid "Will continue to the next iteration even if the current one fails"
@@ -17464,6 +17630,7 @@ msgstr "ワークフロー"
#: src/pages/settings/members/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/layout/components/SettingsLayoutDetailScaffold.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
@@ -17473,7 +17640,6 @@ msgstr "ワークフロー"
#: src/pages/settings/developers/playground/SettingsGraphQLPlayground.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -17553,8 +17719,8 @@ msgid "Workspace Info"
msgstr "ワークスペース情報"
#. js-lingui-id: BYrMT0
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Workspace Instructions"
msgstr "ワークスペースの指示"
+247 -81
View File
@@ -954,7 +954,6 @@ msgstr "활성"
#. js-lingui-id: Mue4oc
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Active API keys created by you or your team."
msgstr "본인 또는 팀이 생성한 활성 API 키입니다."
@@ -1051,11 +1050,6 @@ msgstr ""
msgid "Add custom endpoints, private gateways, or additional regions."
msgstr "사용자 지정 엔드포인트, 프라이빗 게이트웨이 또는 추가 리전을 추가하세요."
#. js-lingui-id: GuJvBr
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
msgid "Add custom instructions specific to your workspace (appended to system prompt)"
msgstr "워크스페이스에 특화된 맞춤 지침을 추가하세요 (시스템 프롬프트에 추가됨)"
#. js-lingui-id: 4JviOV
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
@@ -1293,6 +1287,11 @@ msgstr "차단 목록에 추가"
msgid "Add to Favorite"
msgstr "즐겨찾기에 추가"
#. js-lingui-id: VbareD
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Add Twenty as a Model Context Protocol (MCP) server. Paste this config into Claude Desktop, Cursor, Cline, Continue, Zed, or any other MCP-aware client."
msgstr ""
#. js-lingui-id: XnwceV
#: src/pages/settings/applications/components/SettingsApplicationRegistrationRedirectURIsInput.tsx
msgid "Add URI"
@@ -1775,6 +1774,11 @@ msgstr "모든 작업이 처리되었습니다. 이 기세를 유지하세요."
msgid "All the applications currently installed on this workspace"
msgstr ""
#. js-lingui-id: xP6s/m
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "All the layout items declared on your workspace"
msgstr ""
#. js-lingui-id: XuuWVF
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
msgid "All the standard objects"
@@ -1967,11 +1971,6 @@ msgstr "내부 오류가 발생하여 변경 사항을 검증할 수 없습니
msgid "An object with this name already exists"
msgstr "이 이름을 가진 객체가 이미 존재합니다"
#. js-lingui-id: lxentK
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "An unexpected error occurred"
msgstr "예상치 못한 오류가 발생했습니다"
#. js-lingui-id: byKna+
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
msgid "An unexpected error occurred. Please try again."
@@ -2016,6 +2015,7 @@ msgid "Anyone with an email address at these domains is allowed to sign up for t
msgstr "이 도메인의 이메일 주소를 가진 사람은 이 작업 공간에 가입할 수 있습니다."
#. js-lingui-id: OZtEcz
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "API"
msgstr "API"
@@ -2033,7 +2033,6 @@ msgstr "API 및 웹훅"
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "API Key"
msgstr "API 키"
@@ -2063,7 +2062,6 @@ msgid "API key roles"
msgstr ""
#. js-lingui-id: 5h8ooz
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
msgid "API keys"
msgstr "API 키"
@@ -2104,12 +2102,6 @@ msgstr "API 이름 (단수)"
msgid "API values"
msgstr "API 값"
#. js-lingui-id: JR6nY7
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "APIs"
msgstr "API"
#. js-lingui-id: ZZAOwb
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
@@ -2131,7 +2123,7 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
msgid "App"
msgstr "앱"
@@ -2481,6 +2473,11 @@ msgstr "{remainingTimes}와 {lastTime}에"
msgid "at 1 minute past the hour"
msgstr "매 시 정각 1분 후에"
#. js-lingui-id: ooA+hm
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "At a glance"
msgstr ""
#. js-lingui-id: vyXyF0
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
msgid "At a specific date or time"
@@ -2645,11 +2642,15 @@ msgid "Availability"
msgstr "사용 가능성"
#. js-lingui-id: csDS2L
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
msgid "Available"
msgstr "사용 가능"
#. js-lingui-id: STA+22
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Available models"
msgstr ""
#. js-lingui-id: oD38t2
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Available tools"
@@ -2865,6 +2866,11 @@ msgstr "브론즈"
msgid "Brown"
msgstr "갈색"
#. js-lingui-id: O2UpM1
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Browse"
msgstr ""
#. js-lingui-id: GsXRxc
#: src/modules/settings/data-model/indexes/forms/components/SettingsObjectIndexOptionsForm.tsx
msgid "BTREE (default, good for sorting and equality)"
@@ -3615,6 +3621,11 @@ msgstr "명령어가 클립보드에 복사되었습니다"
msgid "Command Icon"
msgstr "명령어 아이콘"
#. js-lingui-id: V1zWD4
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Command menu"
msgstr ""
#. js-lingui-id: PUMdxH
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
msgid "Command Menu"
@@ -3642,6 +3653,11 @@ msgstr ""
msgid "commands"
msgstr ""
#. js-lingui-id: 45MZFs
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Commands"
msgstr ""
#. js-lingui-id: 4XlFx/
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Commands copied to clipboard"
@@ -3808,11 +3824,6 @@ msgstr "도메인 제공업체와 함께 이 DNS 기록 구성하기"
msgid "Configure this widget to display fields"
msgstr "필드를 표시하도록 이 위젯을 구성하세요"
#. js-lingui-id: hzDiM0
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Configure your default AI model"
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -3886,6 +3897,11 @@ msgstr ""
msgid "Connect a new account to your workspace"
msgstr "새 계정을 워크스페이스에 연결"
#. js-lingui-id: vPCRNy
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Connect AI assistants like Claude or Cursor to your workspace via the Model Context Protocol"
msgstr ""
#. js-lingui-id: YLx3sC
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect via IMAP/SMTP"
@@ -3901,6 +3917,11 @@ msgstr "Google과 연결"
msgid "Connect with Microsoft"
msgstr "Microsoft와 연결"
#. js-lingui-id: iZWbGJ
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Connect your AI assistant"
msgstr ""
#. js-lingui-id: QHcLEN
#: src/pages/settings/applications/SettingsApplicationConnectionDetail.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationConnectionsSection.tsx
@@ -4066,6 +4087,11 @@ msgstr "이 역할을 할당할 수 있는 엔티티 유형 제어"
msgid "Conversation"
msgstr "대화"
#. js-lingui-id: EnJuK0
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Conversations"
msgstr ""
#. js-lingui-id: HRGl1X
#: src/pages/onboarding/CreateProfile.tsx
#: src/modules/settings/profile/components/NameFields.tsx
@@ -4104,6 +4130,11 @@ msgstr "명령어 복사"
msgid "Copy commands"
msgstr "명령어 복사"
#. js-lingui-id: eaZgIQ
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Copy config"
msgstr ""
#. js-lingui-id: 7eVkEH
#: src/pages/onboarding/InviteTeam.tsx
msgid "Copy invitation link"
@@ -4216,6 +4247,11 @@ msgstr "청구 포털을 열 수 없습니다. 엔터프라이즈 키가 있는
msgid "Could not open Stripe. Please contact support."
msgstr "Stripe를 열 수 없습니다. 지원팀에 문의하세요."
#. js-lingui-id: 6wi9Nf
#: src/modules/settings/playground/hooks/useOpenPlayground.ts
msgid "Could not open the API playground"
msgstr ""
#. js-lingui-id: wVw4Am
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not refresh validity token. Please contact support."
@@ -4340,7 +4376,6 @@ msgstr "AI 에이전트 생성 및 구성"
#. js-lingui-id: uXGLuq
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Create API key"
msgstr "API 키 생성"
@@ -4625,7 +4660,7 @@ msgstr "현재 워크스페이스 멤버를 찾을 수 없습니다."
#. js-lingui-id: 8Tg/JR
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/applications/hooks/useApplicationChipData.ts
@@ -4650,6 +4685,11 @@ msgstr "사용자 지정 도메인"
msgid "Custom domain updated"
msgstr "사용자 정의 도메인이 업데이트되었습니다"
#. js-lingui-id: c6P+Xe
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Custom instructions appended to every system prompt"
msgstr ""
#. js-lingui-id: 87ZNeX
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
msgid "Custom model ID"
@@ -4692,6 +4732,7 @@ msgid "Customization"
msgstr "사용자 지정"
#. js-lingui-id: srRMnJ
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectLayout.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
@@ -4788,6 +4829,11 @@ msgstr "다크"
msgid "Dashboard duplicated successfully"
msgstr "대시보드가 성공적으로 복제되었습니다"
#. js-lingui-id: w6iIMm
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Dashboards"
msgstr ""
#. js-lingui-id: HKH+W+
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
@@ -4988,7 +5034,7 @@ msgstr "이 필드 비활성화"
#. js-lingui-id: yAT3be
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
@@ -5015,7 +5061,6 @@ msgstr ""
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
msgid "Default"
@@ -5031,6 +5076,11 @@ msgstr "기본 국가"
msgid "Default Country Code"
msgstr "기본 국가 코드"
#. js-lingui-id: OtTlfU
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Default model"
msgstr ""
#. js-lingui-id: hUWaAk
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
msgid "Default model for chats and complex reasoning"
@@ -5473,6 +5523,11 @@ msgstr "세부정보"
msgid "Detected application version running on this instance"
msgstr ""
#. js-lingui-id: QYXe1O
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Develop"
msgstr ""
#. js-lingui-id: 7aDnUb
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Developer"
@@ -5564,7 +5619,6 @@ msgstr "가져오지 않음"
#. js-lingui-id: TvY/XA
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
msgid "Documentation"
@@ -5768,7 +5822,7 @@ msgid "e.g. OpenAI EU"
msgstr "예: OpenAI EU"
#. js-lingui-id: p5P8NB
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
msgstr "예: \"당사는 B2B SaaS 회사입니다. 항상 격식을 갖춘 언어를 사용하세요...\""
@@ -6114,6 +6168,8 @@ msgstr "직원"
#. js-lingui-id: N2S1rs
#: src/modules/object-record/record-inline-cell/components/RecordInlineCellDisplayMode.tsx
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRelationFieldDiffValues.tsx
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRelationFieldDiffValues.tsx
#: src/modules/activities/timeline-activities/rows/main-object/components/EventFieldDiff.tsx
msgid "Empty"
msgstr "비어 있음"
@@ -6428,11 +6484,6 @@ msgstr "값 입력"
msgid "Enter values, comma-separated"
msgstr "값을 쉼표로 구분하여 입력하세요"
#. js-lingui-id: OjkRLQ
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "Enter your API key"
msgstr "API 키를 입력하세요"
#. js-lingui-id: GpB8YV
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -6988,7 +7039,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
msgstr "엔터프라이즈 라이선스를 활성화하지 못했습니다. 키를 확인하거나 지원팀에 문의하세요."
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Failed to activate skill"
msgstr "스킬 활성화에 실패했습니다"
@@ -7007,11 +7058,6 @@ msgstr "공급자를 추가하지 못했습니다"
msgid "Failed to create email handle. Email handles may not be configured on this server."
msgstr ""
#. js-lingui-id: WM7GKt
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Failed to create tool"
msgstr "도구 생성 실패"
#. js-lingui-id: lWoewm
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Failed to delete email handle."
@@ -7023,7 +7069,7 @@ msgid "Failed to delete jobs. Please try again later."
msgstr "작업 삭제에 실패했습니다. 나중에 다시 시도하세요."
#. js-lingui-id: bmwWKk
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Failed to delete skill"
msgstr "스킬 삭제에 실패했습니다"
@@ -7126,7 +7172,7 @@ msgid "Failed to save role permissions: {errorMessage}"
msgstr ""
#. js-lingui-id: 9ryUyP
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Failed to save workspace instructions"
msgstr "워크스페이스 지침을 저장하지 못했습니다"
@@ -7152,13 +7198,13 @@ msgid "Failed to update default model"
msgstr "기본 모델 업데이트 실패"
#. js-lingui-id: 1R13Ov
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
msgid "Failed to update model"
msgstr "모델을 업데이트하지 못했습니다"
#. js-lingui-id: W7Ff/4
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Failed to update model availability"
@@ -7175,7 +7221,7 @@ msgid "Failed to update model recommendations"
msgstr ""
#. js-lingui-id: rCUG3c
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
msgid "Failed to update model selection mode"
msgstr "모델 선택 모드를 업데이트하지 못했습니다"
@@ -7334,6 +7380,7 @@ msgstr "필드"
#. js-lingui-id: vF68cg
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
#: src/pages/settings/data-model/new-index/SettingsObjectNewIndex.tsx
@@ -7868,6 +7915,7 @@ msgid "Grants permission to perform all available actions without restriction"
msgstr "모든 가능한 작업을 제한 없이 수행할 수 있는 권한을 부여합니다"
#. js-lingui-id: gBiL6J
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "GraphQL"
msgstr "GraphQL"
@@ -8550,6 +8598,7 @@ msgid "Insert a JSON input, then press \"Run Function\"."
msgstr ""
#. js-lingui-id: TKQ7K+
#: src/pages/settings/applications/SettingsApplications.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationRegistrationShareLinkButtons.tsx
msgid "Install"
@@ -8630,11 +8679,6 @@ msgstr "간격 전환이 취소되었습니다."
msgid "Invalid 2FA information."
msgstr "잘못된 이중 인증 정보입니다."
#. js-lingui-id: GNRDhm
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "Invalid API key"
msgstr "잘못된 API 키"
#. js-lingui-id: 9TgH9p
#: src/modules/settings/security/components/SettingsSecurityAuthBypassOptionsList.tsx
msgid "Invalid auth bypass provider"
@@ -8754,6 +8798,7 @@ msgstr "초대"
#. js-lingui-id: MFKlMB
#: src/utils/title-utils.ts
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/modules/workspace/components/WorkspaceInviteTeam.tsx
msgid "Invite"
msgstr "초대"
@@ -9232,12 +9277,15 @@ msgid "Launch manually"
msgstr "수동 실행"
#. js-lingui-id: rdU729
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -9693,6 +9741,11 @@ msgstr ""
msgid "Manage Members"
msgstr "회원 관리"
#. js-lingui-id: LNz5UW
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Manage objects, fields and relationships"
msgstr ""
#. js-lingui-id: eGGH1l
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Manage security policies"
@@ -9729,7 +9782,7 @@ msgid "Manage your internet accounts."
msgstr "인터넷 계정을 관리하세요."
#. js-lingui-id: waFx9W
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Managed"
msgstr ""
@@ -9807,12 +9860,23 @@ msgstr "최대 URL"
msgid "Maximum values"
msgstr "최대 값"
#. js-lingui-id: nA8kxD
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
msgid "MCP"
msgstr ""
#. js-lingui-id: 2jj0eo
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "MCP config copied to clipboard"
msgstr ""
#. js-lingui-id: NvQoNb
#: src/pages/settings/ai/components/SettingsAiMCP.tsx
msgid "MCP Configuration copied to clipboard"
msgstr "MCP 구성 복사됨"
#. js-lingui-id: 8CWirf
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiMCP.tsx
msgid "MCP Server"
msgstr "MCP 서버"
@@ -10019,6 +10083,7 @@ msgstr "모델 ID가 필요합니다"
#. js-lingui-id: //nm2/
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Models"
msgstr "모델"
@@ -10086,7 +10151,6 @@ msgid "months"
msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
msgid "More"
msgstr "더보기"
@@ -10235,8 +10299,8 @@ msgstr ""
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTable.tsx
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
@@ -11417,6 +11481,7 @@ msgstr "개체"
#. js-lingui-id: B3toQF
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
@@ -11805,7 +11870,9 @@ msgid "Override Draft"
msgstr "초안 덮어쓰기"
#. js-lingui-id: 6/dCYd
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Overview"
msgstr "개요"
@@ -11879,6 +11946,11 @@ msgstr "페이지를 찾을 수 없음 | Twenty"
msgid "Page Views"
msgstr "페이지 조회수"
#. js-lingui-id: wRR604
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Pages"
msgstr ""
#. js-lingui-id: ijBN4V
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "paragraph"
@@ -12592,18 +12664,18 @@ msgid "Read documentation"
msgstr "문서 읽기"
#. js-lingui-id: U26cMX
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read system prompts"
msgstr ""
#. js-lingui-id: EKsFda
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read the system prompts to understand how the AI works"
msgstr ""
#. js-lingui-id: 0URVx8
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1, }, )
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1 }, )
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read the system prompts to understand how the AI works (~{0} tokens)"
msgstr ""
@@ -12732,6 +12804,11 @@ msgstr "레코드 이미지"
msgid "Record label"
msgstr "레코드 레이블"
#. js-lingui-id: XueM/X
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Record page"
msgstr ""
#. js-lingui-id: mAHjRd
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutOpenInContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -12850,6 +12927,7 @@ msgid "Relation type"
msgstr "관계 유형"
#. js-lingui-id: g87L9j
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
#: src/modules/activities/inline-cell/components/ActivityTargetsInlineCell.tsx
msgid "Relations"
@@ -13162,6 +13240,7 @@ msgid "Response Format"
msgstr ""
#. js-lingui-id: WHiaOl
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/playground/SettingsRestPlayground.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "REST"
@@ -13332,6 +13411,7 @@ msgstr ""
#. js-lingui-id: 5dJK4M
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
@@ -13551,7 +13631,7 @@ msgid "Search a role..."
msgstr "역할 검색..."
#. js-lingui-id: lJNEce
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Search a skill..."
msgstr "스킬 검색..."
@@ -13567,7 +13647,7 @@ msgid "Search a team member..."
msgstr "팀원 검색..."
#. js-lingui-id: VNmPqQ
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Search a tool..."
msgstr ""
@@ -13883,6 +13963,11 @@ msgstr ""
msgid "See Records on All Objects"
msgstr "모든 객체의 기록 보기"
#. js-lingui-id: eQ3co2
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "See your data structure as an interactive diagram"
msgstr ""
#. js-lingui-id: Hhnssf
#: src/pages/settings/applications/components/SettingsApplicationTableRow.tsx
msgid "Seeded"
@@ -14227,6 +14312,11 @@ msgstr "칸반을 만들려면 {objectLabel}에 선택 필드를 설정하세요
msgid "Set up forwarding from the source address to this destination."
msgstr ""
#. js-lingui-id: dq5Wx1
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Set up MCP"
msgstr ""
#. js-lingui-id: 9HNKkV
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
msgid "Set your application configuration variables"
@@ -14387,6 +14477,16 @@ msgstr ""
msgid "Side Panel"
msgstr "사이드 패널"
#. js-lingui-id: uWi2Q+
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Sidebar"
msgstr ""
#. js-lingui-id: 9k9PMD
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Sidebar items"
msgstr ""
#. js-lingui-id: 5lWFkC
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
msgid "Sign in"
@@ -14471,12 +14571,12 @@ msgid "Skill"
msgstr "스킬"
#. js-lingui-id: h4t38o
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skill activated"
msgstr "스킬 활성화됨"
#. js-lingui-id: /IoK74
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skill deleted"
msgstr "스킬 삭제됨"
@@ -14499,7 +14599,9 @@ msgstr ""
#. js-lingui-id: PCSkw2
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skills"
msgstr "스킬"
@@ -14724,7 +14826,7 @@ msgid "Stages"
msgstr "단계"
#. js-lingui-id: TJBHlP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/applications/hooks/useApplicationChipData.ts
msgid "Standard"
@@ -15137,8 +15239,8 @@ msgstr ""
#: src/pages/settings/ai/SettingsAiPrompts.tsx
#: src/pages/settings/ai/SettingsAiPrompts.tsx
#: src/pages/settings/ai/forms/components/SettingsAiAgentForm.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
msgid "System Prompt"
msgstr "시스템 프롬프트"
@@ -15220,6 +15322,7 @@ msgstr "작업 제목"
#. js-lingui-id: KM6m8p
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Team"
msgstr ""
@@ -15338,6 +15441,11 @@ msgid ""
"See the [Getting Started guide](https://twenty.com/developers/extend/apps/getting-started) for the full walkthrough, and [Building Apps](https://twenty.com/developers/extend/apps/building) for the `defineApplication` / `defineEntity` APIs."
msgstr ""
#. js-lingui-id: n+CCXl
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "The default AI model used for chats, agents, and workflows"
msgstr ""
#. js-lingui-id: 1xQkU9
#: src/modules/settings/data-model/fields/forms/phones/components/SettingsDataModelFieldPhonesForm.tsx
msgid "The default country code for new phone numbers."
@@ -15900,7 +16008,7 @@ msgid "Tool calls made"
msgstr "실행된 도구 호출"
#. js-lingui-id: SrWh42
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/hooks/useCreateTool.ts
msgid "Tool created"
msgstr "도구 생성됨"
@@ -15921,7 +16029,9 @@ msgstr "도구 생성"
#. js-lingui-id: xdA/+p
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Tools"
msgstr "도구"
@@ -16067,11 +16177,10 @@ msgstr ""
msgid "True"
msgstr "참"
#. js-lingui-id: haaL9N
#. js-lingui-id: 64tOpZ
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Try our REST or GraphQL API playgrounds."
msgstr "REST 또는 GraphQL API 플레이그라운드를 사용해 보십시오."
msgid "Try our REST or GraphQL API playgrounds"
msgstr ""
#. js-lingui-id: 3WWUB9
#: src/pages/settings/updates/SettingsUpdates.tsx
@@ -16738,9 +16847,13 @@ msgstr "1Password, Authy, Microsoft Authenticator와 같은 인증 앱 및 브
msgid "Use best models only"
msgstr "최고의 모델만 사용"
#. js-lingui-id: 5ZehS/
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Use filter to see existing skills or create your own"
msgstr ""
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
@@ -17102,7 +17215,9 @@ msgstr "워크스페이스 활동 로그 보기"
#. js-lingui-id: 1I6UoR
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr "보기"
@@ -17155,10 +17270,15 @@ msgid "Visible to you"
msgstr "귀하에게 보임"
#. js-lingui-id: 6n7jtr
#: src/modules/settings/data-model/objects/components/SettingsObjectCoverImage.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Visualize"
msgstr "시각화"
#. js-lingui-id: VvM/Ty
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Visualize data model"
msgstr ""
#. js-lingui-id: uUehLT
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Waiting"
@@ -17194,6 +17314,41 @@ msgstr "에 의해 삭제되었습니다"
msgid "was restored by"
msgstr "에 의해 복원되었습니다"
#. js-lingui-id: 0WPnTI
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Watch AI demo"
msgstr ""
#. js-lingui-id: 5qU4Mu
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
msgid "Watch API demo"
msgstr ""
#. js-lingui-id: inpQ46
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Watch apps demo"
msgstr ""
#. js-lingui-id: uIrZTC
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Watch customization demo"
msgstr ""
#. js-lingui-id: syeoTg
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Watch data model demo"
msgstr ""
#. js-lingui-id: egkNh9
#: src/modules/settings/components/SettingsDiscoveryHeroCard.tsx
msgid "Watch demo"
msgstr ""
#. js-lingui-id: 6ZDYQy
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Watch members demo"
msgstr ""
#. js-lingui-id: 6eMAkI
#: src/modules/auth/sign-in-up/components/EmailVerificationSent.tsx
msgid "We encountered an issue verifying"
@@ -17281,6 +17436,7 @@ msgstr "업데이트를 위해서는 웹훅 ID가 필요합니다"
#. js-lingui-id: v1kQyJ
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
@@ -17336,6 +17492,11 @@ msgstr "무엇을 도와드릴까요?"
msgid "What this API can do: Select a user role to define its permissions."
msgstr "이 API가 할 수 있는 것: 사용자의 권한을 정의하기 위해 역할을 선택하세요."
#. js-lingui-id: drC+Tq
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "What's installed and being used in your workspace"
msgstr ""
#. js-lingui-id: m7GziZ
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "When a deal's stage changes to Closed Won, create a task assigned to the deal owner, due 7 days after the close date, with title \"Post-sale check-in\" and the company name in the description."
@@ -17395,6 +17556,11 @@ msgstr "위젯 유형"
msgid "widgets"
msgstr ""
#. js-lingui-id: tL6W2K
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Widgets"
msgstr ""
#. js-lingui-id: j6ncOZ
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowEditActionIterator.tsx
msgid "Will continue to the next iteration even if the current one fails"
@@ -17464,6 +17630,7 @@ msgstr "Workflows"
#: src/pages/settings/members/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/layout/components/SettingsLayoutDetailScaffold.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
@@ -17473,7 +17640,6 @@ msgstr "Workflows"
#: src/pages/settings/developers/playground/SettingsGraphQLPlayground.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -17553,8 +17719,8 @@ msgid "Workspace Info"
msgstr "워크스페이스 정보"
#. js-lingui-id: BYrMT0
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Workspace Instructions"
msgstr "워크스페이스 지침"
+247 -81
View File
@@ -954,7 +954,6 @@ msgstr "Actief"
#. js-lingui-id: Mue4oc
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Active API keys created by you or your team."
msgstr "Actieve API-sleutels gemaakt door u of uw team."
@@ -1051,11 +1050,6 @@ msgstr ""
msgid "Add custom endpoints, private gateways, or additional regions."
msgstr "Voeg aangepaste eindpunten, privé-gateways of extra regio's toe."
#. js-lingui-id: GuJvBr
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
msgid "Add custom instructions specific to your workspace (appended to system prompt)"
msgstr "Voeg aangepaste instructies toe die specifiek zijn voor je werkruimte (toegevoegd aan de systeemprompt)"
#. js-lingui-id: 4JviOV
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
@@ -1293,6 +1287,11 @@ msgstr "Toevoegen aan blokkeerlijst"
msgid "Add to Favorite"
msgstr "Toevoegen aan favoriet"
#. js-lingui-id: VbareD
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Add Twenty as a Model Context Protocol (MCP) server. Paste this config into Claude Desktop, Cursor, Cline, Continue, Zed, or any other MCP-aware client."
msgstr ""
#. js-lingui-id: XnwceV
#: src/pages/settings/applications/components/SettingsApplicationRegistrationRedirectURIsInput.tsx
msgid "Add URI"
@@ -1775,6 +1774,11 @@ msgstr "Alle taken opgepakt. Houd het momentum vast."
msgid "All the applications currently installed on this workspace"
msgstr ""
#. js-lingui-id: xP6s/m
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "All the layout items declared on your workspace"
msgstr ""
#. js-lingui-id: XuuWVF
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
msgid "All the standard objects"
@@ -1967,11 +1971,6 @@ msgstr "Er is een interne fout opgetreden bij het valideren van uw wijzigingen.
msgid "An object with this name already exists"
msgstr "Er bestaat al een object met deze naam"
#. js-lingui-id: lxentK
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "An unexpected error occurred"
msgstr "Er is een onverwachte fout opgetreden"
#. js-lingui-id: byKna+
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
msgid "An unexpected error occurred. Please try again."
@@ -2016,6 +2015,7 @@ msgid "Anyone with an email address at these domains is allowed to sign up for t
msgstr "Iedereen met een e-mailadres bij deze domeinen mag zich aanmelden voor deze werkruimte."
#. js-lingui-id: OZtEcz
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "API"
msgstr "API"
@@ -2033,7 +2033,6 @@ msgstr "API & Webhooks"
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "API Key"
msgstr "API-sleutel"
@@ -2063,7 +2062,6 @@ msgid "API key roles"
msgstr ""
#. js-lingui-id: 5h8ooz
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
msgid "API keys"
msgstr "API-sleutels"
@@ -2104,12 +2102,6 @@ msgstr "API-naam (enkelvoud)"
msgid "API values"
msgstr "API-waarden"
#. js-lingui-id: JR6nY7
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "APIs"
msgstr "API's"
#. js-lingui-id: ZZAOwb
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
@@ -2131,7 +2123,7 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
msgid "App"
msgstr "App"
@@ -2481,6 +2473,11 @@ msgstr "om {remainingTimes} en {lastTime}"
msgid "at 1 minute past the hour"
msgstr "om 1 minuut over het uur"
#. js-lingui-id: ooA+hm
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "At a glance"
msgstr ""
#. js-lingui-id: vyXyF0
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
msgid "At a specific date or time"
@@ -2645,11 +2642,15 @@ msgid "Availability"
msgstr "Beschikbaarheid"
#. js-lingui-id: csDS2L
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
msgid "Available"
msgstr "Beschikbaar"
#. js-lingui-id: STA+22
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Available models"
msgstr ""
#. js-lingui-id: oD38t2
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Available tools"
@@ -2865,6 +2866,11 @@ msgstr "Brons"
msgid "Brown"
msgstr "Bruin"
#. js-lingui-id: O2UpM1
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Browse"
msgstr ""
#. js-lingui-id: GsXRxc
#: src/modules/settings/data-model/indexes/forms/components/SettingsObjectIndexOptionsForm.tsx
msgid "BTREE (default, good for sorting and equality)"
@@ -3615,6 +3621,11 @@ msgstr "Commando gekopieerd naar klembord"
msgid "Command Icon"
msgstr "Opdrachticoon"
#. js-lingui-id: V1zWD4
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Command menu"
msgstr ""
#. js-lingui-id: PUMdxH
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
msgid "Command Menu"
@@ -3642,6 +3653,11 @@ msgstr ""
msgid "commands"
msgstr ""
#. js-lingui-id: 45MZFs
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Commands"
msgstr ""
#. js-lingui-id: 4XlFx/
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Commands copied to clipboard"
@@ -3808,11 +3824,6 @@ msgstr "Configureer deze DNS-records bij je domeinprovider"
msgid "Configure this widget to display fields"
msgstr "Configureer deze widget om velden weer te geven"
#. js-lingui-id: hzDiM0
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Configure your default AI model"
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -3886,6 +3897,11 @@ msgstr ""
msgid "Connect a new account to your workspace"
msgstr "Verbind een nieuw account met uw werkplek"
#. js-lingui-id: vPCRNy
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Connect AI assistants like Claude or Cursor to your workspace via the Model Context Protocol"
msgstr ""
#. js-lingui-id: YLx3sC
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect via IMAP/SMTP"
@@ -3901,6 +3917,11 @@ msgstr "Verbind met Google"
msgid "Connect with Microsoft"
msgstr "Verbind met Microsoft"
#. js-lingui-id: iZWbGJ
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Connect your AI assistant"
msgstr ""
#. js-lingui-id: QHcLEN
#: src/pages/settings/applications/SettingsApplicationConnectionDetail.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationConnectionsSection.tsx
@@ -4066,6 +4087,11 @@ msgstr "Bepaal welke typen entiteiten deze rol kan worden toegewezen"
msgid "Conversation"
msgstr "Gesprek"
#. js-lingui-id: EnJuK0
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Conversations"
msgstr ""
#. js-lingui-id: HRGl1X
#: src/pages/onboarding/CreateProfile.tsx
#: src/modules/settings/profile/components/NameFields.tsx
@@ -4104,6 +4130,11 @@ msgstr "Commando kopiëren"
msgid "Copy commands"
msgstr "Commando's kopiëren"
#. js-lingui-id: eaZgIQ
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Copy config"
msgstr ""
#. js-lingui-id: 7eVkEH
#: src/pages/onboarding/InviteTeam.tsx
msgid "Copy invitation link"
@@ -4216,6 +4247,11 @@ msgstr "Kan het factureringsportaal niet openen. Controleer of uw Enterprise-sle
msgid "Could not open Stripe. Please contact support."
msgstr "Stripe kon niet worden geopend. Neem contact op met support."
#. js-lingui-id: 6wi9Nf
#: src/modules/settings/playground/hooks/useOpenPlayground.ts
msgid "Could not open the API playground"
msgstr ""
#. js-lingui-id: wVw4Am
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not refresh validity token. Please contact support."
@@ -4340,7 +4376,6 @@ msgstr "Maak en configureer AI-agenten"
#. js-lingui-id: uXGLuq
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Create API key"
msgstr "API-sleutel aanmaken"
@@ -4625,7 +4660,7 @@ msgstr "Huidige werkruimte lid niet gevonden."
#. js-lingui-id: 8Tg/JR
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/applications/hooks/useApplicationChipData.ts
@@ -4650,6 +4685,11 @@ msgstr "Aangepast domein"
msgid "Custom domain updated"
msgstr "Aangepast domein bijgewerkt"
#. js-lingui-id: c6P+Xe
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Custom instructions appended to every system prompt"
msgstr ""
#. js-lingui-id: 87ZNeX
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
msgid "Custom model ID"
@@ -4692,6 +4732,7 @@ msgid "Customization"
msgstr "Aanpassen"
#. js-lingui-id: srRMnJ
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectLayout.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
@@ -4788,6 +4829,11 @@ msgstr "Donker"
msgid "Dashboard duplicated successfully"
msgstr "Dashboard succesvol gedupliceerd"
#. js-lingui-id: w6iIMm
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Dashboards"
msgstr ""
#. js-lingui-id: HKH+W+
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
@@ -4988,7 +5034,7 @@ msgstr "Dit veld deactiveren"
#. js-lingui-id: yAT3be
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
@@ -5015,7 +5061,6 @@ msgstr ""
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
msgid "Default"
@@ -5031,6 +5076,11 @@ msgstr "Standaardland"
msgid "Default Country Code"
msgstr "Standaard landcode"
#. js-lingui-id: OtTlfU
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Default model"
msgstr ""
#. js-lingui-id: hUWaAk
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
msgid "Default model for chats and complex reasoning"
@@ -5473,6 +5523,11 @@ msgstr "Details"
msgid "Detected application version running on this instance"
msgstr ""
#. js-lingui-id: QYXe1O
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Develop"
msgstr ""
#. js-lingui-id: 7aDnUb
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Developer"
@@ -5564,7 +5619,6 @@ msgstr "Niet importeren"
#. js-lingui-id: TvY/XA
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
msgid "Documentation"
@@ -5768,7 +5822,7 @@ msgid "e.g. OpenAI EU"
msgstr "bijv. OpenAI EU"
#. js-lingui-id: p5P8NB
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
msgstr "Bijv.: \"Wij zijn een B2B SaaS-bedrijf. Gebruik altijd formele taal...\""
@@ -6114,6 +6168,8 @@ msgstr "Werknemers"
#. js-lingui-id: N2S1rs
#: src/modules/object-record/record-inline-cell/components/RecordInlineCellDisplayMode.tsx
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRelationFieldDiffValues.tsx
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRelationFieldDiffValues.tsx
#: src/modules/activities/timeline-activities/rows/main-object/components/EventFieldDiff.tsx
msgid "Empty"
msgstr "Leeg"
@@ -6428,11 +6484,6 @@ msgstr "Voer waarde in"
msgid "Enter values, comma-separated"
msgstr "Voer waarden in, gescheiden door komma's"
#. js-lingui-id: OjkRLQ
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "Enter your API key"
msgstr "Voer je API-sleutel in"
#. js-lingui-id: GpB8YV
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -6988,7 +7039,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
msgstr "Activeren van Enterprise-licentie mislukt. Controleer uw Enterprise-sleutel of neem contact op met support."
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Failed to activate skill"
msgstr "Activeren van vaardigheid mislukt"
@@ -7007,11 +7058,6 @@ msgstr "Het toevoegen van de aanbieder is mislukt"
msgid "Failed to create email handle. Email handles may not be configured on this server."
msgstr ""
#. js-lingui-id: WM7GKt
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Failed to create tool"
msgstr "Aanmaken van tool mislukt"
#. js-lingui-id: lWoewm
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Failed to delete email handle."
@@ -7023,7 +7069,7 @@ msgid "Failed to delete jobs. Please try again later."
msgstr "Fout bij het verwijderen van taken. Probeer het later opnieuw."
#. js-lingui-id: bmwWKk
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Failed to delete skill"
msgstr "Verwijderen van vaardigheid mislukt"
@@ -7126,7 +7172,7 @@ msgid "Failed to save role permissions: {errorMessage}"
msgstr ""
#. js-lingui-id: 9ryUyP
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Failed to save workspace instructions"
msgstr "Het opslaan van werkruimte-instructies is mislukt"
@@ -7152,13 +7198,13 @@ msgid "Failed to update default model"
msgstr "Fout bij het bijwerken van het standaardmodel"
#. js-lingui-id: 1R13Ov
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
msgid "Failed to update model"
msgstr "Fout bij het bijwerken van het model"
#. js-lingui-id: W7Ff/4
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Failed to update model availability"
@@ -7175,7 +7221,7 @@ msgid "Failed to update model recommendations"
msgstr ""
#. js-lingui-id: rCUG3c
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
msgid "Failed to update model selection mode"
msgstr "Fout bij het bijwerken van de modus voor modelselectie"
@@ -7334,6 +7380,7 @@ msgstr "velden"
#. js-lingui-id: vF68cg
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
#: src/pages/settings/data-model/new-index/SettingsObjectNewIndex.tsx
@@ -7868,6 +7915,7 @@ msgid "Grants permission to perform all available actions without restriction"
msgstr "Verleent toestemming om alle beschikbare handelingen zonder beperking uit te voeren"
#. js-lingui-id: gBiL6J
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "GraphQL"
msgstr "GraphQL"
@@ -8550,6 +8598,7 @@ msgid "Insert a JSON input, then press \"Run Function\"."
msgstr ""
#. js-lingui-id: TKQ7K+
#: src/pages/settings/applications/SettingsApplications.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationRegistrationShareLinkButtons.tsx
msgid "Install"
@@ -8630,11 +8679,6 @@ msgstr "Intervalchange is geannuleerd."
msgid "Invalid 2FA information."
msgstr "Ongeldige 2FA-informatie."
#. js-lingui-id: GNRDhm
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "Invalid API key"
msgstr "Ongeldige API-sleutel"
#. js-lingui-id: 9TgH9p
#: src/modules/settings/security/components/SettingsSecurityAuthBypassOptionsList.tsx
msgid "Invalid auth bypass provider"
@@ -8754,6 +8798,7 @@ msgstr "Uitnodigingen"
#. js-lingui-id: MFKlMB
#: src/utils/title-utils.ts
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/modules/workspace/components/WorkspaceInviteTeam.tsx
msgid "Invite"
msgstr "Uitnodigen"
@@ -9232,12 +9277,15 @@ msgid "Launch manually"
msgstr "Handmatig starten"
#. js-lingui-id: rdU729
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -9693,6 +9741,11 @@ msgstr ""
msgid "Manage Members"
msgstr "Leden beheren"
#. js-lingui-id: LNz5UW
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Manage objects, fields and relationships"
msgstr ""
#. js-lingui-id: eGGH1l
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Manage security policies"
@@ -9729,7 +9782,7 @@ msgid "Manage your internet accounts."
msgstr "Beheer uw internetaccounts."
#. js-lingui-id: waFx9W
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Managed"
msgstr ""
@@ -9807,12 +9860,23 @@ msgstr "Maximaal aantal URL's"
msgid "Maximum values"
msgstr "Maximaal aantal waarden"
#. js-lingui-id: nA8kxD
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
msgid "MCP"
msgstr ""
#. js-lingui-id: 2jj0eo
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "MCP config copied to clipboard"
msgstr ""
#. js-lingui-id: NvQoNb
#: src/pages/settings/ai/components/SettingsAiMCP.tsx
msgid "MCP Configuration copied to clipboard"
msgstr "MCP-configuratie gekopieerd naar klembord"
#. js-lingui-id: 8CWirf
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiMCP.tsx
msgid "MCP Server"
msgstr "MCP Server"
@@ -10019,6 +10083,7 @@ msgstr "Model-ID is vereist"
#. js-lingui-id: //nm2/
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Models"
msgstr "Modellen"
@@ -10086,7 +10151,6 @@ msgid "months"
msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
msgid "More"
msgstr "Meer"
@@ -10235,8 +10299,8 @@ msgstr ""
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTable.tsx
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
@@ -11417,6 +11481,7 @@ msgstr "objecten"
#. js-lingui-id: B3toQF
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
@@ -11805,7 +11870,9 @@ msgid "Override Draft"
msgstr "Concept overschrijven"
#. js-lingui-id: 6/dCYd
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Overview"
msgstr "Overzicht"
@@ -11879,6 +11946,11 @@ msgstr "Pagina niet gevonden | Twenty"
msgid "Page Views"
msgstr "Paginaweergaven"
#. js-lingui-id: wRR604
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Pages"
msgstr ""
#. js-lingui-id: ijBN4V
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "paragraph"
@@ -12592,18 +12664,18 @@ msgid "Read documentation"
msgstr "Lees documentatie"
#. js-lingui-id: U26cMX
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read system prompts"
msgstr ""
#. js-lingui-id: EKsFda
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read the system prompts to understand how the AI works"
msgstr ""
#. js-lingui-id: 0URVx8
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1, }, )
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1 }, )
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read the system prompts to understand how the AI works (~{0} tokens)"
msgstr ""
@@ -12732,6 +12804,11 @@ msgstr "Afbeelding vastleggen"
msgid "Record label"
msgstr "Label vastleggen"
#. js-lingui-id: XueM/X
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Record page"
msgstr ""
#. js-lingui-id: mAHjRd
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutOpenInContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -12850,6 +12927,7 @@ msgid "Relation type"
msgstr "Relatie type"
#. js-lingui-id: g87L9j
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
#: src/modules/activities/inline-cell/components/ActivityTargetsInlineCell.tsx
msgid "Relations"
@@ -13162,6 +13240,7 @@ msgid "Response Format"
msgstr ""
#. js-lingui-id: WHiaOl
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/playground/SettingsRestPlayground.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "REST"
@@ -13332,6 +13411,7 @@ msgstr ""
#. js-lingui-id: 5dJK4M
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
@@ -13551,7 +13631,7 @@ msgid "Search a role..."
msgstr "Zoek een rol..."
#. js-lingui-id: lJNEce
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Search a skill..."
msgstr "Zoek een vaardigheid..."
@@ -13567,7 +13647,7 @@ msgid "Search a team member..."
msgstr "Zoek een teamlid..."
#. js-lingui-id: VNmPqQ
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Search a tool..."
msgstr ""
@@ -13883,6 +13963,11 @@ msgstr ""
msgid "See Records on All Objects"
msgstr "Bekijk gegevens op alle objecten"
#. js-lingui-id: eQ3co2
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "See your data structure as an interactive diagram"
msgstr ""
#. js-lingui-id: Hhnssf
#: src/pages/settings/applications/components/SettingsApplicationTableRow.tsx
msgid "Seeded"
@@ -14227,6 +14312,11 @@ msgstr "Stel een selectieveld in op {objectLabel} om een Kanban te maken"
msgid "Set up forwarding from the source address to this destination."
msgstr ""
#. js-lingui-id: dq5Wx1
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Set up MCP"
msgstr ""
#. js-lingui-id: 9HNKkV
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
msgid "Set your application configuration variables"
@@ -14387,6 +14477,16 @@ msgstr ""
msgid "Side Panel"
msgstr "Zijpaneel"
#. js-lingui-id: uWi2Q+
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Sidebar"
msgstr ""
#. js-lingui-id: 9k9PMD
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Sidebar items"
msgstr ""
#. js-lingui-id: 5lWFkC
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
msgid "Sign in"
@@ -14471,12 +14571,12 @@ msgid "Skill"
msgstr "Vaardigheid"
#. js-lingui-id: h4t38o
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skill activated"
msgstr "Vaardigheid geactiveerd"
#. js-lingui-id: /IoK74
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skill deleted"
msgstr "Vaardigheid verwijderd"
@@ -14499,7 +14599,9 @@ msgstr ""
#. js-lingui-id: PCSkw2
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skills"
msgstr "Vaardigheden"
@@ -14724,7 +14826,7 @@ msgid "Stages"
msgstr "Stadia"
#. js-lingui-id: TJBHlP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/applications/hooks/useApplicationChipData.ts
msgid "Standard"
@@ -15137,8 +15239,8 @@ msgstr ""
#: src/pages/settings/ai/SettingsAiPrompts.tsx
#: src/pages/settings/ai/SettingsAiPrompts.tsx
#: src/pages/settings/ai/forms/components/SettingsAiAgentForm.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
msgid "System Prompt"
msgstr "Systeemopdracht"
@@ -15220,6 +15322,7 @@ msgstr "Taaktitel"
#. js-lingui-id: KM6m8p
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Team"
msgstr ""
@@ -15338,6 +15441,11 @@ msgid ""
"See the [Getting Started guide](https://twenty.com/developers/extend/apps/getting-started) for the full walkthrough, and [Building Apps](https://twenty.com/developers/extend/apps/building) for the `defineApplication` / `defineEntity` APIs."
msgstr ""
#. js-lingui-id: n+CCXl
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "The default AI model used for chats, agents, and workflows"
msgstr ""
#. js-lingui-id: 1xQkU9
#: src/modules/settings/data-model/fields/forms/phones/components/SettingsDataModelFieldPhonesForm.tsx
msgid "The default country code for new phone numbers."
@@ -15902,7 +16010,7 @@ msgid "Tool calls made"
msgstr "Uitgevoerde toolaanroepen"
#. js-lingui-id: SrWh42
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/hooks/useCreateTool.ts
msgid "Tool created"
msgstr "Tool aangemaakt"
@@ -15923,7 +16031,9 @@ msgstr "Toolgeneratie"
#. js-lingui-id: xdA/+p
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Tools"
msgstr "Hulpmiddelen"
@@ -16069,11 +16179,10 @@ msgstr ""
msgid "True"
msgstr "Waar"
#. js-lingui-id: haaL9N
#. js-lingui-id: 64tOpZ
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Try our REST or GraphQL API playgrounds."
msgstr "Probeer onze REST- of GraphQL-API-speeltuinen."
msgid "Try our REST or GraphQL API playgrounds"
msgstr ""
#. js-lingui-id: 3WWUB9
#: src/pages/settings/updates/SettingsUpdates.tsx
@@ -16740,9 +16849,13 @@ msgstr "Gebruik authenticatore-apps en browserextensies zoals 1Password, Authy,
msgid "Use best models only"
msgstr "Alleen de beste modellen gebruiken"
#. js-lingui-id: 5ZehS/
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Use filter to see existing skills or create your own"
msgstr ""
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
@@ -17104,7 +17217,9 @@ msgstr "Activiteitslogs van de werkruimte bekijken"
#. js-lingui-id: 1I6UoR
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr "Weergaven"
@@ -17157,10 +17272,15 @@ msgid "Visible to you"
msgstr "Zichtbaar voor jou"
#. js-lingui-id: 6n7jtr
#: src/modules/settings/data-model/objects/components/SettingsObjectCoverImage.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Visualize"
msgstr "Visualiseren"
#. js-lingui-id: VvM/Ty
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Visualize data model"
msgstr ""
#. js-lingui-id: uUehLT
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Waiting"
@@ -17196,6 +17316,41 @@ msgstr "werd verwijderd door"
msgid "was restored by"
msgstr "werd hersteld door"
#. js-lingui-id: 0WPnTI
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Watch AI demo"
msgstr ""
#. js-lingui-id: 5qU4Mu
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
msgid "Watch API demo"
msgstr ""
#. js-lingui-id: inpQ46
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Watch apps demo"
msgstr ""
#. js-lingui-id: uIrZTC
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Watch customization demo"
msgstr ""
#. js-lingui-id: syeoTg
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Watch data model demo"
msgstr ""
#. js-lingui-id: egkNh9
#: src/modules/settings/components/SettingsDiscoveryHeroCard.tsx
msgid "Watch demo"
msgstr ""
#. js-lingui-id: 6ZDYQy
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Watch members demo"
msgstr ""
#. js-lingui-id: 6eMAkI
#: src/modules/auth/sign-in-up/components/EmailVerificationSent.tsx
msgid "We encountered an issue verifying"
@@ -17283,6 +17438,7 @@ msgstr "Webhook-ID is vereist voor updates"
#. js-lingui-id: v1kQyJ
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
@@ -17338,6 +17494,11 @@ msgstr "Waar kan ik je mee helpen?"
msgid "What this API can do: Select a user role to define its permissions."
msgstr "Wat deze API kan doen: Selecteer een gebruikersrol om de rechten te definiëren."
#. js-lingui-id: drC+Tq
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "What's installed and being used in your workspace"
msgstr ""
#. js-lingui-id: m7GziZ
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "When a deal's stage changes to Closed Won, create a task assigned to the deal owner, due 7 days after the close date, with title \"Post-sale check-in\" and the company name in the description."
@@ -17397,6 +17558,11 @@ msgstr "Widget type"
msgid "widgets"
msgstr ""
#. js-lingui-id: tL6W2K
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Widgets"
msgstr ""
#. js-lingui-id: j6ncOZ
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowEditActionIterator.tsx
msgid "Will continue to the next iteration even if the current one fails"
@@ -17466,6 +17632,7 @@ msgstr "Workstrooms"
#: src/pages/settings/members/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/layout/components/SettingsLayoutDetailScaffold.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
@@ -17475,7 +17642,6 @@ msgstr "Workstrooms"
#: src/pages/settings/developers/playground/SettingsGraphQLPlayground.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -17555,8 +17721,8 @@ msgid "Workspace Info"
msgstr "Werkruimte Info"
#. js-lingui-id: BYrMT0
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Workspace Instructions"
msgstr "Werkruimte-instructies"
+247 -81
View File
@@ -954,7 +954,6 @@ msgstr "Aktiv"
#. js-lingui-id: Mue4oc
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Active API keys created by you or your team."
msgstr "Aktive API-nøkler opprettet av deg eller teamet ditt."
@@ -1051,11 +1050,6 @@ msgstr ""
msgid "Add custom endpoints, private gateways, or additional regions."
msgstr "Legg til egendefinerte endepunkter, private gateways eller ekstra regioner."
#. js-lingui-id: GuJvBr
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
msgid "Add custom instructions specific to your workspace (appended to system prompt)"
msgstr "Legg til egendefinerte instruksjoner som er spesifikke for arbeidsområdet ditt (legges til systemprompten)"
#. js-lingui-id: 4JviOV
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
@@ -1293,6 +1287,11 @@ msgstr "Legg til i blokkeringsliste"
msgid "Add to Favorite"
msgstr "Legg til i Favoritter"
#. js-lingui-id: VbareD
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Add Twenty as a Model Context Protocol (MCP) server. Paste this config into Claude Desktop, Cursor, Cline, Continue, Zed, or any other MCP-aware client."
msgstr ""
#. js-lingui-id: XnwceV
#: src/pages/settings/applications/components/SettingsApplicationRegistrationRedirectURIsInput.tsx
msgid "Add URI"
@@ -1775,6 +1774,11 @@ msgstr "Alle oppgaver er håndtert. Hold momentumet oppe."
msgid "All the applications currently installed on this workspace"
msgstr ""
#. js-lingui-id: xP6s/m
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "All the layout items declared on your workspace"
msgstr ""
#. js-lingui-id: XuuWVF
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
msgid "All the standard objects"
@@ -1967,11 +1971,6 @@ msgstr "En intern feil oppsto mens endringene dine ble validert. Vennligst konta
msgid "An object with this name already exists"
msgstr "Et objekt med dette navnet finnes allerede"
#. js-lingui-id: lxentK
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "An unexpected error occurred"
msgstr "En uventet feil oppstod"
#. js-lingui-id: byKna+
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
msgid "An unexpected error occurred. Please try again."
@@ -2016,6 +2015,7 @@ msgid "Anyone with an email address at these domains is allowed to sign up for t
msgstr "Enhver med en e-postadresse på disse domenene kan registrere seg for dette arbeidsområdet."
#. js-lingui-id: OZtEcz
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "API"
msgstr "API"
@@ -2033,7 +2033,6 @@ msgstr "API og webhooks"
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "API Key"
msgstr "API-nøkkel"
@@ -2063,7 +2062,6 @@ msgid "API key roles"
msgstr ""
#. js-lingui-id: 5h8ooz
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
msgid "API keys"
msgstr "API-nøkler"
@@ -2104,12 +2102,6 @@ msgstr "API-navn (Entall)"
msgid "API values"
msgstr "API-verdier"
#. js-lingui-id: JR6nY7
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "APIs"
msgstr "API-er"
#. js-lingui-id: ZZAOwb
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
@@ -2131,7 +2123,7 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
msgid "App"
msgstr "App"
@@ -2481,6 +2473,11 @@ msgstr "kl. {remainingTimes} og {lastTime}"
msgid "at 1 minute past the hour"
msgstr "kl. 1 minutt over hel time"
#. js-lingui-id: ooA+hm
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "At a glance"
msgstr ""
#. js-lingui-id: vyXyF0
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
msgid "At a specific date or time"
@@ -2645,11 +2642,15 @@ msgid "Availability"
msgstr "Tilgjengelighet"
#. js-lingui-id: csDS2L
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
msgid "Available"
msgstr "Tilgjengelig"
#. js-lingui-id: STA+22
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Available models"
msgstr ""
#. js-lingui-id: oD38t2
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Available tools"
@@ -2865,6 +2866,11 @@ msgstr "Bronse"
msgid "Brown"
msgstr "Brun"
#. js-lingui-id: O2UpM1
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Browse"
msgstr ""
#. js-lingui-id: GsXRxc
#: src/modules/settings/data-model/indexes/forms/components/SettingsObjectIndexOptionsForm.tsx
msgid "BTREE (default, good for sorting and equality)"
@@ -3615,6 +3621,11 @@ msgstr "Kommando kopiert til utklippstavlen"
msgid "Command Icon"
msgstr "Kommandoikon"
#. js-lingui-id: V1zWD4
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Command menu"
msgstr ""
#. js-lingui-id: PUMdxH
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
msgid "Command Menu"
@@ -3642,6 +3653,11 @@ msgstr ""
msgid "commands"
msgstr ""
#. js-lingui-id: 45MZFs
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Commands"
msgstr ""
#. js-lingui-id: 4XlFx/
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Commands copied to clipboard"
@@ -3808,11 +3824,6 @@ msgstr "Konfigurer disse DNS-postene med domenetilbyderen din"
msgid "Configure this widget to display fields"
msgstr "Konfigurer denne widgeten for å vise felt"
#. js-lingui-id: hzDiM0
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Configure your default AI model"
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -3886,6 +3897,11 @@ msgstr ""
msgid "Connect a new account to your workspace"
msgstr "Koble en ny konto til arbeidsområdet ditt"
#. js-lingui-id: vPCRNy
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Connect AI assistants like Claude or Cursor to your workspace via the Model Context Protocol"
msgstr ""
#. js-lingui-id: YLx3sC
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect via IMAP/SMTP"
@@ -3901,6 +3917,11 @@ msgstr "Koble til med Google"
msgid "Connect with Microsoft"
msgstr "Koble til med Microsoft"
#. js-lingui-id: iZWbGJ
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Connect your AI assistant"
msgstr ""
#. js-lingui-id: QHcLEN
#: src/pages/settings/applications/SettingsApplicationConnectionDetail.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationConnectionsSection.tsx
@@ -4066,6 +4087,11 @@ msgstr "Kontroller hvilke typer enheter denne rollen kan tildeles til"
msgid "Conversation"
msgstr "Samtale"
#. js-lingui-id: EnJuK0
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Conversations"
msgstr ""
#. js-lingui-id: HRGl1X
#: src/pages/onboarding/CreateProfile.tsx
#: src/modules/settings/profile/components/NameFields.tsx
@@ -4104,6 +4130,11 @@ msgstr "Kopier kommando"
msgid "Copy commands"
msgstr "Kopier kommandoer"
#. js-lingui-id: eaZgIQ
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Copy config"
msgstr ""
#. js-lingui-id: 7eVkEH
#: src/pages/onboarding/InviteTeam.tsx
msgid "Copy invitation link"
@@ -4216,6 +4247,11 @@ msgstr "Kunne ikke åpne faktureringsportalen. Kontroller at Enterprise-nøkkele
msgid "Could not open Stripe. Please contact support."
msgstr "Kunne ikke åpne Stripe. Kontakt kundestøtte."
#. js-lingui-id: 6wi9Nf
#: src/modules/settings/playground/hooks/useOpenPlayground.ts
msgid "Could not open the API playground"
msgstr ""
#. js-lingui-id: wVw4Am
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not refresh validity token. Please contact support."
@@ -4340,7 +4376,6 @@ msgstr "Opprett og konfigurer AI-agenter"
#. js-lingui-id: uXGLuq
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Create API key"
msgstr "Opprett API-nøkkel"
@@ -4625,7 +4660,7 @@ msgstr "Nåværende arbeidsområdemedlem ikke funnet."
#. js-lingui-id: 8Tg/JR
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/applications/hooks/useApplicationChipData.ts
@@ -4650,6 +4685,11 @@ msgstr "Tilpasset domene"
msgid "Custom domain updated"
msgstr "Egendefinert domene oppdatert"
#. js-lingui-id: c6P+Xe
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Custom instructions appended to every system prompt"
msgstr ""
#. js-lingui-id: 87ZNeX
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
msgid "Custom model ID"
@@ -4692,6 +4732,7 @@ msgid "Customization"
msgstr "Tilpasning"
#. js-lingui-id: srRMnJ
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectLayout.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
@@ -4788,6 +4829,11 @@ msgstr "Mørk"
msgid "Dashboard duplicated successfully"
msgstr "Dashbordet ble duplisert"
#. js-lingui-id: w6iIMm
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Dashboards"
msgstr ""
#. js-lingui-id: HKH+W+
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
@@ -4988,7 +5034,7 @@ msgstr "Deaktiver dette feltet"
#. js-lingui-id: yAT3be
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
@@ -5015,7 +5061,6 @@ msgstr ""
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
msgid "Default"
@@ -5031,6 +5076,11 @@ msgstr "Standardland"
msgid "Default Country Code"
msgstr "Standardlandkode"
#. js-lingui-id: OtTlfU
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Default model"
msgstr ""
#. js-lingui-id: hUWaAk
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
msgid "Default model for chats and complex reasoning"
@@ -5473,6 +5523,11 @@ msgstr "Detaljer"
msgid "Detected application version running on this instance"
msgstr ""
#. js-lingui-id: QYXe1O
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Develop"
msgstr ""
#. js-lingui-id: 7aDnUb
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Developer"
@@ -5564,7 +5619,6 @@ msgstr "Ikke importer"
#. js-lingui-id: TvY/XA
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
msgid "Documentation"
@@ -5768,7 +5822,7 @@ msgid "e.g. OpenAI EU"
msgstr "f.eks. OpenAI EU"
#. js-lingui-id: p5P8NB
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
msgstr "F.eks. \"Vi er et B2B SaaS-selskap. Bruk alltid formelt språk...\""
@@ -6114,6 +6168,8 @@ msgstr "Ansatte"
#. js-lingui-id: N2S1rs
#: src/modules/object-record/record-inline-cell/components/RecordInlineCellDisplayMode.tsx
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRelationFieldDiffValues.tsx
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRelationFieldDiffValues.tsx
#: src/modules/activities/timeline-activities/rows/main-object/components/EventFieldDiff.tsx
msgid "Empty"
msgstr "Tom"
@@ -6428,11 +6484,6 @@ msgstr "Skriv inn verdi"
msgid "Enter values, comma-separated"
msgstr "Skriv inn verdier, separert med komma"
#. js-lingui-id: OjkRLQ
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "Enter your API key"
msgstr "Skriv inn API-nøkkelen din"
#. js-lingui-id: GpB8YV
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -6988,7 +7039,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
msgstr "Kunne ikke aktivere Enterprise-lisensen. Kontroller nøkkelen din eller kontakt kundestøtte."
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Failed to activate skill"
msgstr "Kunne ikke aktivere ferdighet"
@@ -7007,11 +7058,6 @@ msgstr "Kunne ikke legge til tilbyder"
msgid "Failed to create email handle. Email handles may not be configured on this server."
msgstr ""
#. js-lingui-id: WM7GKt
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Failed to create tool"
msgstr "Kunne ikke opprette verktøy"
#. js-lingui-id: lWoewm
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Failed to delete email handle."
@@ -7023,7 +7069,7 @@ msgid "Failed to delete jobs. Please try again later."
msgstr "Mislyktes å slette jobber. Vennligst prøv igjen senere."
#. js-lingui-id: bmwWKk
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Failed to delete skill"
msgstr "Kunne ikke slette ferdighet"
@@ -7126,7 +7172,7 @@ msgid "Failed to save role permissions: {errorMessage}"
msgstr ""
#. js-lingui-id: 9ryUyP
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Failed to save workspace instructions"
msgstr "Kunne ikke lagre instruksjoner for arbeidsområdet"
@@ -7152,13 +7198,13 @@ msgid "Failed to update default model"
msgstr "Kunne ikke oppdatere standardmodellen"
#. js-lingui-id: 1R13Ov
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
msgid "Failed to update model"
msgstr "Kunne ikke oppdatere modell"
#. js-lingui-id: W7Ff/4
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Failed to update model availability"
@@ -7175,7 +7221,7 @@ msgid "Failed to update model recommendations"
msgstr ""
#. js-lingui-id: rCUG3c
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
msgid "Failed to update model selection mode"
msgstr "Kunne ikke oppdatere modus for modellvalg"
@@ -7334,6 +7380,7 @@ msgstr "felter"
#. js-lingui-id: vF68cg
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
#: src/pages/settings/data-model/new-index/SettingsObjectNewIndex.tsx
@@ -7868,6 +7915,7 @@ msgid "Grants permission to perform all available actions without restriction"
msgstr "Gir tillatelse til å utføre alle tilgjengelige handlinger uten begrensninger"
#. js-lingui-id: gBiL6J
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "GraphQL"
msgstr "GraphQL"
@@ -8550,6 +8598,7 @@ msgid "Insert a JSON input, then press \"Run Function\"."
msgstr ""
#. js-lingui-id: TKQ7K+
#: src/pages/settings/applications/SettingsApplications.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationRegistrationShareLinkButtons.tsx
msgid "Install"
@@ -8630,11 +8679,6 @@ msgstr "Intervallbytte har blitt avbrutt."
msgid "Invalid 2FA information."
msgstr "Ugyldig 2FA-informasjon."
#. js-lingui-id: GNRDhm
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "Invalid API key"
msgstr "Ugyldig API-nøkkel"
#. js-lingui-id: 9TgH9p
#: src/modules/settings/security/components/SettingsSecurityAuthBypassOptionsList.tsx
msgid "Invalid auth bypass provider"
@@ -8754,6 +8798,7 @@ msgstr "Invitasjoner"
#. js-lingui-id: MFKlMB
#: src/utils/title-utils.ts
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/modules/workspace/components/WorkspaceInviteTeam.tsx
msgid "Invite"
msgstr "Inviter"
@@ -9232,12 +9277,15 @@ msgid "Launch manually"
msgstr "Start manuelt"
#. js-lingui-id: rdU729
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -9693,6 +9741,11 @@ msgstr ""
msgid "Manage Members"
msgstr "Administrer medlemmer"
#. js-lingui-id: LNz5UW
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Manage objects, fields and relationships"
msgstr ""
#. js-lingui-id: eGGH1l
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Manage security policies"
@@ -9729,7 +9782,7 @@ msgid "Manage your internet accounts."
msgstr "Administrer internett-kontoene dine."
#. js-lingui-id: waFx9W
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Managed"
msgstr ""
@@ -9807,12 +9860,23 @@ msgstr "Maksimalt antall URL-er"
msgid "Maximum values"
msgstr "Maksimalt antall verdier"
#. js-lingui-id: nA8kxD
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
msgid "MCP"
msgstr ""
#. js-lingui-id: 2jj0eo
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "MCP config copied to clipboard"
msgstr ""
#. js-lingui-id: NvQoNb
#: src/pages/settings/ai/components/SettingsAiMCP.tsx
msgid "MCP Configuration copied to clipboard"
msgstr "MCP-konfigurasjon kopiert til utklippstavlen"
#. js-lingui-id: 8CWirf
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiMCP.tsx
msgid "MCP Server"
msgstr "MCP Server"
@@ -10019,6 +10083,7 @@ msgstr "Modell-ID er påkrevd"
#. js-lingui-id: //nm2/
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Models"
msgstr "Modeller"
@@ -10086,7 +10151,6 @@ msgid "months"
msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
msgid "More"
msgstr "Mer"
@@ -10235,8 +10299,8 @@ msgstr ""
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTable.tsx
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
@@ -11417,6 +11481,7 @@ msgstr "objekter"
#. js-lingui-id: B3toQF
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
@@ -11805,7 +11870,9 @@ msgid "Override Draft"
msgstr "Erstatt utkast"
#. js-lingui-id: 6/dCYd
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Overview"
msgstr "Oversikt"
@@ -11879,6 +11946,11 @@ msgstr "Siden ble ikke funnet | Twenty"
msgid "Page Views"
msgstr "Sidevisninger"
#. js-lingui-id: wRR604
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Pages"
msgstr ""
#. js-lingui-id: ijBN4V
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "paragraph"
@@ -12592,18 +12664,18 @@ msgid "Read documentation"
msgstr "Les dokumentasjonen"
#. js-lingui-id: U26cMX
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read system prompts"
msgstr ""
#. js-lingui-id: EKsFda
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read the system prompts to understand how the AI works"
msgstr ""
#. js-lingui-id: 0URVx8
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1, }, )
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1 }, )
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read the system prompts to understand how the AI works (~{0} tokens)"
msgstr ""
@@ -12732,6 +12804,11 @@ msgstr "Opptak bilde"
msgid "Record label"
msgstr "Opptak etikett"
#. js-lingui-id: XueM/X
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Record page"
msgstr ""
#. js-lingui-id: mAHjRd
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutOpenInContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -12850,6 +12927,7 @@ msgid "Relation type"
msgstr "Relasjonstype"
#. js-lingui-id: g87L9j
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
#: src/modules/activities/inline-cell/components/ActivityTargetsInlineCell.tsx
msgid "Relations"
@@ -13162,6 +13240,7 @@ msgid "Response Format"
msgstr ""
#. js-lingui-id: WHiaOl
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/playground/SettingsRestPlayground.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "REST"
@@ -13332,6 +13411,7 @@ msgstr ""
#. js-lingui-id: 5dJK4M
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
@@ -13551,7 +13631,7 @@ msgid "Search a role..."
msgstr "Søk etter en rolle..."
#. js-lingui-id: lJNEce
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Search a skill..."
msgstr "Søk etter en ferdighet..."
@@ -13567,7 +13647,7 @@ msgid "Search a team member..."
msgstr "Søk etter et teammedlem..."
#. js-lingui-id: VNmPqQ
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Search a tool..."
msgstr ""
@@ -13883,6 +13963,11 @@ msgstr ""
msgid "See Records on All Objects"
msgstr "Se oppføringer på alle objekter"
#. js-lingui-id: eQ3co2
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "See your data structure as an interactive diagram"
msgstr ""
#. js-lingui-id: Hhnssf
#: src/pages/settings/applications/components/SettingsApplicationTableRow.tsx
msgid "Seeded"
@@ -14227,6 +14312,11 @@ msgstr "Sett opp et valgfelt på {objectLabel} for å opprette en Kanban"
msgid "Set up forwarding from the source address to this destination."
msgstr ""
#. js-lingui-id: dq5Wx1
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Set up MCP"
msgstr ""
#. js-lingui-id: 9HNKkV
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
msgid "Set your application configuration variables"
@@ -14387,6 +14477,16 @@ msgstr ""
msgid "Side Panel"
msgstr "Sidepanel"
#. js-lingui-id: uWi2Q+
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Sidebar"
msgstr ""
#. js-lingui-id: 9k9PMD
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Sidebar items"
msgstr ""
#. js-lingui-id: 5lWFkC
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
msgid "Sign in"
@@ -14471,12 +14571,12 @@ msgid "Skill"
msgstr "Ferdighet"
#. js-lingui-id: h4t38o
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skill activated"
msgstr "Ferdighet aktivert"
#. js-lingui-id: /IoK74
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skill deleted"
msgstr "Ferdighet slettet"
@@ -14499,7 +14599,9 @@ msgstr ""
#. js-lingui-id: PCSkw2
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skills"
msgstr "Ferdigheter"
@@ -14724,7 +14826,7 @@ msgid "Stages"
msgstr "Faser"
#. js-lingui-id: TJBHlP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/applications/hooks/useApplicationChipData.ts
msgid "Standard"
@@ -15137,8 +15239,8 @@ msgstr ""
#: src/pages/settings/ai/SettingsAiPrompts.tsx
#: src/pages/settings/ai/SettingsAiPrompts.tsx
#: src/pages/settings/ai/forms/components/SettingsAiAgentForm.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
msgid "System Prompt"
msgstr "Systemprompt"
@@ -15220,6 +15322,7 @@ msgstr "Oppgavetittel"
#. js-lingui-id: KM6m8p
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Team"
msgstr ""
@@ -15338,6 +15441,11 @@ msgid ""
"See the [Getting Started guide](https://twenty.com/developers/extend/apps/getting-started) for the full walkthrough, and [Building Apps](https://twenty.com/developers/extend/apps/building) for the `defineApplication` / `defineEntity` APIs."
msgstr ""
#. js-lingui-id: n+CCXl
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "The default AI model used for chats, agents, and workflows"
msgstr ""
#. js-lingui-id: 1xQkU9
#: src/modules/settings/data-model/fields/forms/phones/components/SettingsDataModelFieldPhonesForm.tsx
msgid "The default country code for new phone numbers."
@@ -15900,7 +16008,7 @@ msgid "Tool calls made"
msgstr "Verktøykall utført"
#. js-lingui-id: SrWh42
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/hooks/useCreateTool.ts
msgid "Tool created"
msgstr "Verktøy opprettet"
@@ -15921,7 +16029,9 @@ msgstr "Verktøygenerering"
#. js-lingui-id: xdA/+p
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Tools"
msgstr "Verktøy"
@@ -16067,11 +16177,10 @@ msgstr ""
msgid "True"
msgstr "Sant"
#. js-lingui-id: haaL9N
#. js-lingui-id: 64tOpZ
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Try our REST or GraphQL API playgrounds."
msgstr "Prøv våre REST- eller GraphQL API-sandkasser."
msgid "Try our REST or GraphQL API playgrounds"
msgstr ""
#. js-lingui-id: 3WWUB9
#: src/pages/settings/updates/SettingsUpdates.tsx
@@ -16738,9 +16847,13 @@ msgstr "Bruk autentiseringsapper og nettleserutvidelser som 1Password, Authy, Mi
msgid "Use best models only"
msgstr "Bruk kun de beste modellene"
#. js-lingui-id: 5ZehS/
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Use filter to see existing skills or create your own"
msgstr ""
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
@@ -17102,7 +17215,9 @@ msgstr "Vis aktivitetslogger for arbeidsområdet"
#. js-lingui-id: 1I6UoR
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr "Visninger"
@@ -17155,10 +17270,15 @@ msgid "Visible to you"
msgstr "Synlig for deg"
#. js-lingui-id: 6n7jtr
#: src/modules/settings/data-model/objects/components/SettingsObjectCoverImage.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Visualize"
msgstr "Visualiser"
#. js-lingui-id: VvM/Ty
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Visualize data model"
msgstr ""
#. js-lingui-id: uUehLT
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Waiting"
@@ -17194,6 +17314,41 @@ msgstr "ble slettet av"
msgid "was restored by"
msgstr "ble gjenopprettet av"
#. js-lingui-id: 0WPnTI
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Watch AI demo"
msgstr ""
#. js-lingui-id: 5qU4Mu
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
msgid "Watch API demo"
msgstr ""
#. js-lingui-id: inpQ46
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Watch apps demo"
msgstr ""
#. js-lingui-id: uIrZTC
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Watch customization demo"
msgstr ""
#. js-lingui-id: syeoTg
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Watch data model demo"
msgstr ""
#. js-lingui-id: egkNh9
#: src/modules/settings/components/SettingsDiscoveryHeroCard.tsx
msgid "Watch demo"
msgstr ""
#. js-lingui-id: 6ZDYQy
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Watch members demo"
msgstr ""
#. js-lingui-id: 6eMAkI
#: src/modules/auth/sign-in-up/components/EmailVerificationSent.tsx
msgid "We encountered an issue verifying"
@@ -17281,6 +17436,7 @@ msgstr "Webhook-ID er nødvendig for oppdateringer"
#. js-lingui-id: v1kQyJ
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
@@ -17336,6 +17492,11 @@ msgstr "Hva kan jeg hjelpe deg med?"
msgid "What this API can do: Select a user role to define its permissions."
msgstr "Hva denne API-en kan gjøre: Velg en brukerrolle for å definere dens tillatelser."
#. js-lingui-id: drC+Tq
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "What's installed and being used in your workspace"
msgstr ""
#. js-lingui-id: m7GziZ
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "When a deal's stage changes to Closed Won, create a task assigned to the deal owner, due 7 days after the close date, with title \"Post-sale check-in\" and the company name in the description."
@@ -17395,6 +17556,11 @@ msgstr "Widget-type"
msgid "widgets"
msgstr ""
#. js-lingui-id: tL6W2K
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Widgets"
msgstr ""
#. js-lingui-id: j6ncOZ
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowEditActionIterator.tsx
msgid "Will continue to the next iteration even if the current one fails"
@@ -17464,6 +17630,7 @@ msgstr "Arbeidsflyter"
#: src/pages/settings/members/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/layout/components/SettingsLayoutDetailScaffold.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
@@ -17473,7 +17640,6 @@ msgstr "Arbeidsflyter"
#: src/pages/settings/developers/playground/SettingsGraphQLPlayground.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -17553,8 +17719,8 @@ msgid "Workspace Info"
msgstr "Arbeidsområdeinfo"
#. js-lingui-id: BYrMT0
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Workspace Instructions"
msgstr "Instruksjoner for arbeidsområdet"
+247 -81
View File
@@ -954,7 +954,6 @@ msgstr "Aktywny"
#. js-lingui-id: Mue4oc
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Active API keys created by you or your team."
msgstr "Aktywne klucze API utworzone przez Ciebie lub Twój zespół."
@@ -1051,11 +1050,6 @@ msgstr ""
msgid "Add custom endpoints, private gateways, or additional regions."
msgstr "Dodaj niestandardowe punkty końcowe, prywatne bramy lub dodatkowe regiony."
#. js-lingui-id: GuJvBr
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
msgid "Add custom instructions specific to your workspace (appended to system prompt)"
msgstr "Dodaj niestandardowe instrukcje specyficzne dla Twojego obszaru roboczego (dołączane do podpowiedzi systemowej)"
#. js-lingui-id: 4JviOV
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
@@ -1293,6 +1287,11 @@ msgstr "Dodaj do listy blokowanych"
msgid "Add to Favorite"
msgstr "Dodaj do ulubionych"
#. js-lingui-id: VbareD
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Add Twenty as a Model Context Protocol (MCP) server. Paste this config into Claude Desktop, Cursor, Cline, Continue, Zed, or any other MCP-aware client."
msgstr ""
#. js-lingui-id: XnwceV
#: src/pages/settings/applications/components/SettingsApplicationRegistrationRedirectURIsInput.tsx
msgid "Add URI"
@@ -1775,6 +1774,11 @@ msgstr "Wszystkie zadania zostały wykonane. Utrzymaj tempo."
msgid "All the applications currently installed on this workspace"
msgstr ""
#. js-lingui-id: xP6s/m
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "All the layout items declared on your workspace"
msgstr ""
#. js-lingui-id: XuuWVF
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
msgid "All the standard objects"
@@ -1967,11 +1971,6 @@ msgstr "Wystąpił błąd wewnętrzny podczas walidacji zmian. Skontaktuj się z
msgid "An object with this name already exists"
msgstr "Obiekt o tej nazwie już istnieje"
#. js-lingui-id: lxentK
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "An unexpected error occurred"
msgstr "Wystąpił nieoczekiwany błąd"
#. js-lingui-id: byKna+
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
msgid "An unexpected error occurred. Please try again."
@@ -2016,6 +2015,7 @@ msgid "Anyone with an email address at these domains is allowed to sign up for t
msgstr "Każda osoba z adresem e-mail w tych domenach może się zarejestrować do tego miejsca pracy."
#. js-lingui-id: OZtEcz
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "API"
msgstr "API"
@@ -2033,7 +2033,6 @@ msgstr "API i Webhooks"
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "API Key"
msgstr "Klucz API"
@@ -2063,7 +2062,6 @@ msgid "API key roles"
msgstr ""
#. js-lingui-id: 5h8ooz
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
msgid "API keys"
msgstr "Klucze API"
@@ -2104,12 +2102,6 @@ msgstr "Nazwa API (pojedyncza)"
msgid "API values"
msgstr "Wartości API"
#. js-lingui-id: JR6nY7
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "APIs"
msgstr "API"
#. js-lingui-id: ZZAOwb
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
@@ -2131,7 +2123,7 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
msgid "App"
msgstr "Aplikacja"
@@ -2481,6 +2473,11 @@ msgstr "o {remainingTimes} i {lastTime}"
msgid "at 1 minute past the hour"
msgstr "o 1 minutę po godzinie"
#. js-lingui-id: ooA+hm
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "At a glance"
msgstr ""
#. js-lingui-id: vyXyF0
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
msgid "At a specific date or time"
@@ -2645,11 +2642,15 @@ msgid "Availability"
msgstr "Dostępność"
#. js-lingui-id: csDS2L
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
msgid "Available"
msgstr "Dostępne"
#. js-lingui-id: STA+22
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Available models"
msgstr ""
#. js-lingui-id: oD38t2
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Available tools"
@@ -2865,6 +2866,11 @@ msgstr "Brązowy"
msgid "Brown"
msgstr "Brązowy"
#. js-lingui-id: O2UpM1
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Browse"
msgstr ""
#. js-lingui-id: GsXRxc
#: src/modules/settings/data-model/indexes/forms/components/SettingsObjectIndexOptionsForm.tsx
msgid "BTREE (default, good for sorting and equality)"
@@ -3615,6 +3621,11 @@ msgstr "Polecenie zostało skopiowane do schowka"
msgid "Command Icon"
msgstr "Ikona poleceń"
#. js-lingui-id: V1zWD4
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Command menu"
msgstr ""
#. js-lingui-id: PUMdxH
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
msgid "Command Menu"
@@ -3642,6 +3653,11 @@ msgstr ""
msgid "commands"
msgstr ""
#. js-lingui-id: 45MZFs
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Commands"
msgstr ""
#. js-lingui-id: 4XlFx/
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Commands copied to clipboard"
@@ -3808,11 +3824,6 @@ msgstr "Skonfiguruj te rekody DNS u swojego dostawcy domeny"
msgid "Configure this widget to display fields"
msgstr "Skonfiguruj ten widżet, aby wyświetlał pola"
#. js-lingui-id: hzDiM0
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Configure your default AI model"
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -3886,6 +3897,11 @@ msgstr ""
msgid "Connect a new account to your workspace"
msgstr "Połącz nowe konto ze swoim miejscem pracy"
#. js-lingui-id: vPCRNy
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Connect AI assistants like Claude or Cursor to your workspace via the Model Context Protocol"
msgstr ""
#. js-lingui-id: YLx3sC
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect via IMAP/SMTP"
@@ -3901,6 +3917,11 @@ msgstr "Połącz z Google"
msgid "Connect with Microsoft"
msgstr "Połącz z Microsoft"
#. js-lingui-id: iZWbGJ
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Connect your AI assistant"
msgstr ""
#. js-lingui-id: QHcLEN
#: src/pages/settings/applications/SettingsApplicationConnectionDetail.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationConnectionsSection.tsx
@@ -4066,6 +4087,11 @@ msgstr "Kontroluj, do jakich typów podmiotów można przypisać tę rolę"
msgid "Conversation"
msgstr "Konwersacja"
#. js-lingui-id: EnJuK0
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Conversations"
msgstr ""
#. js-lingui-id: HRGl1X
#: src/pages/onboarding/CreateProfile.tsx
#: src/modules/settings/profile/components/NameFields.tsx
@@ -4104,6 +4130,11 @@ msgstr "Kopiuj polecenie"
msgid "Copy commands"
msgstr ""
#. js-lingui-id: eaZgIQ
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Copy config"
msgstr ""
#. js-lingui-id: 7eVkEH
#: src/pages/onboarding/InviteTeam.tsx
msgid "Copy invitation link"
@@ -4216,6 +4247,11 @@ msgstr "Nie można otworzyć portalu rozliczeń. Sprawdź, czy Twój klucz Enter
msgid "Could not open Stripe. Please contact support."
msgstr "Nie można otworzyć Stripe. Skontaktuj się ze wsparciem."
#. js-lingui-id: 6wi9Nf
#: src/modules/settings/playground/hooks/useOpenPlayground.ts
msgid "Could not open the API playground"
msgstr ""
#. js-lingui-id: wVw4Am
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not refresh validity token. Please contact support."
@@ -4340,7 +4376,6 @@ msgstr "Twórz i konfiguruj agentów AI"
#. js-lingui-id: uXGLuq
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Create API key"
msgstr "Stwórz klucz API"
@@ -4625,7 +4660,7 @@ msgstr "Nie znaleziono bieżącego członka przestrzeni roboczej."
#. js-lingui-id: 8Tg/JR
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/applications/hooks/useApplicationChipData.ts
@@ -4650,6 +4685,11 @@ msgstr "Domena niestandardowa"
msgid "Custom domain updated"
msgstr "Zaktualizowano domenę niestandardową"
#. js-lingui-id: c6P+Xe
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Custom instructions appended to every system prompt"
msgstr ""
#. js-lingui-id: 87ZNeX
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
msgid "Custom model ID"
@@ -4692,6 +4732,7 @@ msgid "Customization"
msgstr "Dostosowywanie"
#. js-lingui-id: srRMnJ
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectLayout.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
@@ -4788,6 +4829,11 @@ msgstr "Ciemne"
msgid "Dashboard duplicated successfully"
msgstr "Panel został zduplikowany pomyślnie"
#. js-lingui-id: w6iIMm
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Dashboards"
msgstr ""
#. js-lingui-id: HKH+W+
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
@@ -4988,7 +5034,7 @@ msgstr "Deaktywuj to pole"
#. js-lingui-id: yAT3be
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
@@ -5015,7 +5061,6 @@ msgstr ""
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
msgid "Default"
@@ -5031,6 +5076,11 @@ msgstr "Domyślny kraj"
msgid "Default Country Code"
msgstr "Domyślny kod kraju"
#. js-lingui-id: OtTlfU
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Default model"
msgstr ""
#. js-lingui-id: hUWaAk
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
msgid "Default model for chats and complex reasoning"
@@ -5473,6 +5523,11 @@ msgstr "Szczegóły"
msgid "Detected application version running on this instance"
msgstr ""
#. js-lingui-id: QYXe1O
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Develop"
msgstr ""
#. js-lingui-id: 7aDnUb
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Developer"
@@ -5564,7 +5619,6 @@ msgstr "Nie importuj"
#. js-lingui-id: TvY/XA
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
msgid "Documentation"
@@ -5768,7 +5822,7 @@ msgid "e.g. OpenAI EU"
msgstr "np. OpenAI EU"
#. js-lingui-id: p5P8NB
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
msgstr "Np.: \"Jesteśmy firmą B2B SaaS. Zawsze używaj języka formalnego...\""
@@ -6114,6 +6168,8 @@ msgstr "Pracownicy"
#. js-lingui-id: N2S1rs
#: src/modules/object-record/record-inline-cell/components/RecordInlineCellDisplayMode.tsx
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRelationFieldDiffValues.tsx
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRelationFieldDiffValues.tsx
#: src/modules/activities/timeline-activities/rows/main-object/components/EventFieldDiff.tsx
msgid "Empty"
msgstr "Puste"
@@ -6428,11 +6484,6 @@ msgstr "Wprowadź wartość"
msgid "Enter values, comma-separated"
msgstr "Wpisz wartości, oddzielone przecinkami"
#. js-lingui-id: OjkRLQ
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "Enter your API key"
msgstr "Wprowadź swój klucz API"
#. js-lingui-id: GpB8YV
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -6988,7 +7039,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
msgstr "Nie udało się aktywować licencji Enterprise. Sprawdź swój klucz lub skontaktuj się ze wsparciem."
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Failed to activate skill"
msgstr "Nie udało się aktywować umiejętności"
@@ -7007,11 +7058,6 @@ msgstr "Nie udało się dodać dostawcy"
msgid "Failed to create email handle. Email handles may not be configured on this server."
msgstr ""
#. js-lingui-id: WM7GKt
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Failed to create tool"
msgstr "Nie udało się utworzyć narzędzia"
#. js-lingui-id: lWoewm
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Failed to delete email handle."
@@ -7023,7 +7069,7 @@ msgid "Failed to delete jobs. Please try again later."
msgstr "Nie udało się usunąć zadań. Proszę spróbować ponownie później."
#. js-lingui-id: bmwWKk
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Failed to delete skill"
msgstr "Nie udało się usunąć umiejętności"
@@ -7126,7 +7172,7 @@ msgid "Failed to save role permissions: {errorMessage}"
msgstr ""
#. js-lingui-id: 9ryUyP
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Failed to save workspace instructions"
msgstr "Nie udało się zapisać instrukcji dla obszaru roboczego"
@@ -7152,13 +7198,13 @@ msgid "Failed to update default model"
msgstr "Nie udało się zaktualizować modelu domyślnego"
#. js-lingui-id: 1R13Ov
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
msgid "Failed to update model"
msgstr "Nie udało się zaktualizować modelu"
#. js-lingui-id: W7Ff/4
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Failed to update model availability"
@@ -7175,7 +7221,7 @@ msgid "Failed to update model recommendations"
msgstr ""
#. js-lingui-id: rCUG3c
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
msgid "Failed to update model selection mode"
msgstr "Nie udało się zaktualizować trybu wyboru modelu"
@@ -7334,6 +7380,7 @@ msgstr "pola"
#. js-lingui-id: vF68cg
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
#: src/pages/settings/data-model/new-index/SettingsObjectNewIndex.tsx
@@ -7868,6 +7915,7 @@ msgid "Grants permission to perform all available actions without restriction"
msgstr "Przyznaje uprawnienia do wykonywania wszystkich dostępnych działań bez ograniczeń"
#. js-lingui-id: gBiL6J
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "GraphQL"
msgstr "GraphQL"
@@ -8550,6 +8598,7 @@ msgid "Insert a JSON input, then press \"Run Function\"."
msgstr ""
#. js-lingui-id: TKQ7K+
#: src/pages/settings/applications/SettingsApplications.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationRegistrationShareLinkButtons.tsx
msgid "Install"
@@ -8630,11 +8679,6 @@ msgstr "Przełączanie interwałów zostało anulowane."
msgid "Invalid 2FA information."
msgstr "Nieprawidłowe informacje o 2FA."
#. js-lingui-id: GNRDhm
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "Invalid API key"
msgstr "Nieprawidłowy klucz API"
#. js-lingui-id: 9TgH9p
#: src/modules/settings/security/components/SettingsSecurityAuthBypassOptionsList.tsx
msgid "Invalid auth bypass provider"
@@ -8754,6 +8798,7 @@ msgstr "Zaproszenia"
#. js-lingui-id: MFKlMB
#: src/utils/title-utils.ts
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/modules/workspace/components/WorkspaceInviteTeam.tsx
msgid "Invite"
msgstr "Zaproś"
@@ -9232,12 +9277,15 @@ msgid "Launch manually"
msgstr "Uruchom ręcznie"
#. js-lingui-id: rdU729
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -9693,6 +9741,11 @@ msgstr ""
msgid "Manage Members"
msgstr "Zarządzaj Członkami"
#. js-lingui-id: LNz5UW
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Manage objects, fields and relationships"
msgstr ""
#. js-lingui-id: eGGH1l
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Manage security policies"
@@ -9729,7 +9782,7 @@ msgid "Manage your internet accounts."
msgstr "Zarządzaj swoimi internetowymi kontami."
#. js-lingui-id: waFx9W
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Managed"
msgstr ""
@@ -9807,12 +9860,23 @@ msgstr "Maksymalna liczba adresów URL"
msgid "Maximum values"
msgstr "Maksymalna liczba wartości"
#. js-lingui-id: nA8kxD
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
msgid "MCP"
msgstr ""
#. js-lingui-id: 2jj0eo
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "MCP config copied to clipboard"
msgstr ""
#. js-lingui-id: NvQoNb
#: src/pages/settings/ai/components/SettingsAiMCP.tsx
msgid "MCP Configuration copied to clipboard"
msgstr "Konfiguracja MCP został skopiowany do schowka"
#. js-lingui-id: 8CWirf
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiMCP.tsx
msgid "MCP Server"
msgstr "Serwer MCP"
@@ -10019,6 +10083,7 @@ msgstr "Identyfikator modelu jest wymagany"
#. js-lingui-id: //nm2/
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Models"
msgstr "Modele"
@@ -10086,7 +10151,6 @@ msgid "months"
msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
msgid "More"
msgstr "Więcej"
@@ -10235,8 +10299,8 @@ msgstr ""
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTable.tsx
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
@@ -11417,6 +11481,7 @@ msgstr "obiekty"
#. js-lingui-id: B3toQF
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
@@ -11805,7 +11870,9 @@ msgid "Override Draft"
msgstr "Nadpisz roboczy"
#. js-lingui-id: 6/dCYd
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Overview"
msgstr "Przegląd"
@@ -11879,6 +11946,11 @@ msgstr "Nie znaleziono strony | Twenty"
msgid "Page Views"
msgstr "Odsłony stron"
#. js-lingui-id: wRR604
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Pages"
msgstr ""
#. js-lingui-id: ijBN4V
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "paragraph"
@@ -12592,18 +12664,18 @@ msgid "Read documentation"
msgstr "Przeczytaj dokumentację"
#. js-lingui-id: U26cMX
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read system prompts"
msgstr ""
#. js-lingui-id: EKsFda
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read the system prompts to understand how the AI works"
msgstr ""
#. js-lingui-id: 0URVx8
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1, }, )
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1 }, )
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read the system prompts to understand how the AI works (~{0} tokens)"
msgstr ""
@@ -12732,6 +12804,11 @@ msgstr "Obraz rekordu"
msgid "Record label"
msgstr "Etykieta rekordu"
#. js-lingui-id: XueM/X
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Record page"
msgstr ""
#. js-lingui-id: mAHjRd
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutOpenInContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -12850,6 +12927,7 @@ msgid "Relation type"
msgstr "Typ relacji"
#. js-lingui-id: g87L9j
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
#: src/modules/activities/inline-cell/components/ActivityTargetsInlineCell.tsx
msgid "Relations"
@@ -13162,6 +13240,7 @@ msgid "Response Format"
msgstr ""
#. js-lingui-id: WHiaOl
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/playground/SettingsRestPlayground.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "REST"
@@ -13332,6 +13411,7 @@ msgstr ""
#. js-lingui-id: 5dJK4M
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
@@ -13551,7 +13631,7 @@ msgid "Search a role..."
msgstr "Szukaj roli..."
#. js-lingui-id: lJNEce
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Search a skill..."
msgstr "Szukaj umiejętności..."
@@ -13567,7 +13647,7 @@ msgid "Search a team member..."
msgstr "Szukaj członka zespołu..."
#. js-lingui-id: VNmPqQ
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Search a tool..."
msgstr ""
@@ -13883,6 +13963,11 @@ msgstr ""
msgid "See Records on All Objects"
msgstr "Zobacz rekordy na wszystkich obiektach"
#. js-lingui-id: eQ3co2
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "See your data structure as an interactive diagram"
msgstr ""
#. js-lingui-id: Hhnssf
#: src/pages/settings/applications/components/SettingsApplicationTableRow.tsx
msgid "Seeded"
@@ -14227,6 +14312,11 @@ msgstr "Skonfiguruj pole typu Wybór w {objectLabel}, aby utworzyć Kanban"
msgid "Set up forwarding from the source address to this destination."
msgstr ""
#. js-lingui-id: dq5Wx1
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Set up MCP"
msgstr ""
#. js-lingui-id: 9HNKkV
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
msgid "Set your application configuration variables"
@@ -14387,6 +14477,16 @@ msgstr ""
msgid "Side Panel"
msgstr "Panel boczny"
#. js-lingui-id: uWi2Q+
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Sidebar"
msgstr ""
#. js-lingui-id: 9k9PMD
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Sidebar items"
msgstr ""
#. js-lingui-id: 5lWFkC
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
msgid "Sign in"
@@ -14471,12 +14571,12 @@ msgid "Skill"
msgstr "Umiejętność"
#. js-lingui-id: h4t38o
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skill activated"
msgstr "Umiejętność aktywowana"
#. js-lingui-id: /IoK74
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skill deleted"
msgstr "Umiejętność usunięta"
@@ -14499,7 +14599,9 @@ msgstr ""
#. js-lingui-id: PCSkw2
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skills"
msgstr "Umiejętności"
@@ -14724,7 +14826,7 @@ msgid "Stages"
msgstr "Etapy"
#. js-lingui-id: TJBHlP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/applications/hooks/useApplicationChipData.ts
msgid "Standard"
@@ -15137,8 +15239,8 @@ msgstr ""
#: src/pages/settings/ai/SettingsAiPrompts.tsx
#: src/pages/settings/ai/SettingsAiPrompts.tsx
#: src/pages/settings/ai/forms/components/SettingsAiAgentForm.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
msgid "System Prompt"
msgstr "Polecenie Systemowe"
@@ -15220,6 +15322,7 @@ msgstr "Tytuł zadania"
#. js-lingui-id: KM6m8p
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Team"
msgstr ""
@@ -15338,6 +15441,11 @@ msgid ""
"See the [Getting Started guide](https://twenty.com/developers/extend/apps/getting-started) for the full walkthrough, and [Building Apps](https://twenty.com/developers/extend/apps/building) for the `defineApplication` / `defineEntity` APIs."
msgstr ""
#. js-lingui-id: n+CCXl
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "The default AI model used for chats, agents, and workflows"
msgstr ""
#. js-lingui-id: 1xQkU9
#: src/modules/settings/data-model/fields/forms/phones/components/SettingsDataModelFieldPhonesForm.tsx
msgid "The default country code for new phone numbers."
@@ -15900,7 +16008,7 @@ msgid "Tool calls made"
msgstr "Wykonane wywołania narzędzi"
#. js-lingui-id: SrWh42
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/hooks/useCreateTool.ts
msgid "Tool created"
msgstr "Utworzono narzędzie"
@@ -15921,7 +16029,9 @@ msgstr "Generowanie narzędzia"
#. js-lingui-id: xdA/+p
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Tools"
msgstr "Narzędzia"
@@ -16067,11 +16177,10 @@ msgstr ""
msgid "True"
msgstr "Prawda"
#. js-lingui-id: haaL9N
#. js-lingui-id: 64tOpZ
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Try our REST or GraphQL API playgrounds."
msgstr "Wypróbuj nasze place zabaw API REST lub GraphQL."
msgid "Try our REST or GraphQL API playgrounds"
msgstr ""
#. js-lingui-id: 3WWUB9
#: src/pages/settings/updates/SettingsUpdates.tsx
@@ -16738,9 +16847,13 @@ msgstr "Użyj aplikacji uwierzytelniających i rozszerzeń przeglądarki, takich
msgid "Use best models only"
msgstr "Używaj tylko najlepszych modeli"
#. js-lingui-id: 5ZehS/
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Use filter to see existing skills or create your own"
msgstr ""
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
@@ -17102,7 +17215,9 @@ msgstr "Wyświetl dzienniki aktywności przestrzeni roboczej"
#. js-lingui-id: 1I6UoR
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr "Widoki"
@@ -17155,10 +17270,15 @@ msgid "Visible to you"
msgstr "Widoczne dla Ciebie"
#. js-lingui-id: 6n7jtr
#: src/modules/settings/data-model/objects/components/SettingsObjectCoverImage.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Visualize"
msgstr "Wizualizuj"
#. js-lingui-id: VvM/Ty
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Visualize data model"
msgstr ""
#. js-lingui-id: uUehLT
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Waiting"
@@ -17194,6 +17314,41 @@ msgstr "został usunięty przez"
msgid "was restored by"
msgstr "został przywrócony przez"
#. js-lingui-id: 0WPnTI
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Watch AI demo"
msgstr ""
#. js-lingui-id: 5qU4Mu
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
msgid "Watch API demo"
msgstr ""
#. js-lingui-id: inpQ46
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Watch apps demo"
msgstr ""
#. js-lingui-id: uIrZTC
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Watch customization demo"
msgstr ""
#. js-lingui-id: syeoTg
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Watch data model demo"
msgstr ""
#. js-lingui-id: egkNh9
#: src/modules/settings/components/SettingsDiscoveryHeroCard.tsx
msgid "Watch demo"
msgstr ""
#. js-lingui-id: 6ZDYQy
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Watch members demo"
msgstr ""
#. js-lingui-id: 6eMAkI
#: src/modules/auth/sign-in-up/components/EmailVerificationSent.tsx
msgid "We encountered an issue verifying"
@@ -17281,6 +17436,7 @@ msgstr "ID webhooka jest wymagany do aktualizacji"
#. js-lingui-id: v1kQyJ
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
@@ -17336,6 +17492,11 @@ msgstr "W czym mogę pomóc?"
msgid "What this API can do: Select a user role to define its permissions."
msgstr "Do czego ten interfejs API może służyć: Wybierz rolę użytkownika, aby określić jej uprawnienia."
#. js-lingui-id: drC+Tq
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "What's installed and being used in your workspace"
msgstr ""
#. js-lingui-id: m7GziZ
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "When a deal's stage changes to Closed Won, create a task assigned to the deal owner, due 7 days after the close date, with title \"Post-sale check-in\" and the company name in the description."
@@ -17395,6 +17556,11 @@ msgstr "Typ widgetu"
msgid "widgets"
msgstr ""
#. js-lingui-id: tL6W2K
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Widgets"
msgstr ""
#. js-lingui-id: j6ncOZ
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowEditActionIterator.tsx
msgid "Will continue to the next iteration even if the current one fails"
@@ -17464,6 +17630,7 @@ msgstr "Przepływy pracy"
#: src/pages/settings/members/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/layout/components/SettingsLayoutDetailScaffold.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
@@ -17473,7 +17640,6 @@ msgstr "Przepływy pracy"
#: src/pages/settings/developers/playground/SettingsGraphQLPlayground.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -17553,8 +17719,8 @@ msgid "Workspace Info"
msgstr "Informacje o przestrzeni roboczej"
#. js-lingui-id: BYrMT0
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Workspace Instructions"
msgstr "Instrukcje obszaru roboczego"
+246 -80
View File
@@ -949,7 +949,6 @@ msgstr ""
#. js-lingui-id: Mue4oc
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Active API keys created by you or your team."
msgstr ""
@@ -1046,11 +1045,6 @@ msgstr ""
msgid "Add custom endpoints, private gateways, or additional regions."
msgstr ""
#. js-lingui-id: GuJvBr
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
msgid "Add custom instructions specific to your workspace (appended to system prompt)"
msgstr ""
#. js-lingui-id: 4JviOV
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
@@ -1288,6 +1282,11 @@ msgstr ""
msgid "Add to Favorite"
msgstr ""
#. js-lingui-id: VbareD
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Add Twenty as a Model Context Protocol (MCP) server. Paste this config into Claude Desktop, Cursor, Cline, Continue, Zed, or any other MCP-aware client."
msgstr ""
#. js-lingui-id: XnwceV
#: src/pages/settings/applications/components/SettingsApplicationRegistrationRedirectURIsInput.tsx
msgid "Add URI"
@@ -1770,6 +1769,11 @@ msgstr ""
msgid "All the applications currently installed on this workspace"
msgstr ""
#. js-lingui-id: xP6s/m
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "All the layout items declared on your workspace"
msgstr ""
#. js-lingui-id: XuuWVF
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
msgid "All the standard objects"
@@ -1962,11 +1966,6 @@ msgstr ""
msgid "An object with this name already exists"
msgstr ""
#. js-lingui-id: lxentK
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "An unexpected error occurred"
msgstr ""
#. js-lingui-id: byKna+
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
msgid "An unexpected error occurred. Please try again."
@@ -2011,6 +2010,7 @@ msgid "Anyone with an email address at these domains is allowed to sign up for t
msgstr ""
#. js-lingui-id: OZtEcz
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "API"
msgstr ""
@@ -2028,7 +2028,6 @@ msgstr ""
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "API Key"
msgstr ""
@@ -2058,7 +2057,6 @@ msgid "API key roles"
msgstr ""
#. js-lingui-id: 5h8ooz
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
msgid "API keys"
msgstr ""
@@ -2099,12 +2097,6 @@ msgstr ""
msgid "API values"
msgstr ""
#. js-lingui-id: JR6nY7
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "APIs"
msgstr ""
#. js-lingui-id: ZZAOwb
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
@@ -2126,7 +2118,7 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
msgid "App"
msgstr ""
@@ -2476,6 +2468,11 @@ msgstr ""
msgid "at 1 minute past the hour"
msgstr ""
#. js-lingui-id: ooA+hm
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "At a glance"
msgstr ""
#. js-lingui-id: vyXyF0
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
msgid "At a specific date or time"
@@ -2640,11 +2637,15 @@ msgid "Availability"
msgstr ""
#. js-lingui-id: csDS2L
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
msgid "Available"
msgstr ""
#. js-lingui-id: STA+22
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Available models"
msgstr ""
#. js-lingui-id: oD38t2
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Available tools"
@@ -2860,6 +2861,11 @@ msgstr ""
msgid "Brown"
msgstr ""
#. js-lingui-id: O2UpM1
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Browse"
msgstr ""
#. js-lingui-id: GsXRxc
#: src/modules/settings/data-model/indexes/forms/components/SettingsObjectIndexOptionsForm.tsx
msgid "BTREE (default, good for sorting and equality)"
@@ -3610,6 +3616,11 @@ msgstr ""
msgid "Command Icon"
msgstr ""
#. js-lingui-id: V1zWD4
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Command menu"
msgstr ""
#. js-lingui-id: PUMdxH
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
msgid "Command Menu"
@@ -3637,6 +3648,11 @@ msgstr ""
msgid "commands"
msgstr ""
#. js-lingui-id: 45MZFs
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Commands"
msgstr ""
#. js-lingui-id: 4XlFx/
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Commands copied to clipboard"
@@ -3803,11 +3819,6 @@ msgstr ""
msgid "Configure this widget to display fields"
msgstr ""
#. js-lingui-id: hzDiM0
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Configure your default AI model"
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -3881,6 +3892,11 @@ msgstr ""
msgid "Connect a new account to your workspace"
msgstr ""
#. js-lingui-id: vPCRNy
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Connect AI assistants like Claude or Cursor to your workspace via the Model Context Protocol"
msgstr ""
#. js-lingui-id: YLx3sC
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect via IMAP/SMTP"
@@ -3896,6 +3912,11 @@ msgstr ""
msgid "Connect with Microsoft"
msgstr ""
#. js-lingui-id: iZWbGJ
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Connect your AI assistant"
msgstr ""
#. js-lingui-id: QHcLEN
#: src/pages/settings/applications/SettingsApplicationConnectionDetail.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationConnectionsSection.tsx
@@ -4061,6 +4082,11 @@ msgstr ""
msgid "Conversation"
msgstr ""
#. js-lingui-id: EnJuK0
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Conversations"
msgstr ""
#. js-lingui-id: HRGl1X
#: src/pages/onboarding/CreateProfile.tsx
#: src/modules/settings/profile/components/NameFields.tsx
@@ -4099,6 +4125,11 @@ msgstr ""
msgid "Copy commands"
msgstr ""
#. js-lingui-id: eaZgIQ
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Copy config"
msgstr ""
#. js-lingui-id: 7eVkEH
#: src/pages/onboarding/InviteTeam.tsx
msgid "Copy invitation link"
@@ -4211,6 +4242,11 @@ msgstr ""
msgid "Could not open Stripe. Please contact support."
msgstr ""
#. js-lingui-id: 6wi9Nf
#: src/modules/settings/playground/hooks/useOpenPlayground.ts
msgid "Could not open the API playground"
msgstr ""
#. js-lingui-id: wVw4Am
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not refresh validity token. Please contact support."
@@ -4335,7 +4371,6 @@ msgstr ""
#. js-lingui-id: uXGLuq
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Create API key"
msgstr ""
@@ -4620,7 +4655,7 @@ msgstr ""
#. js-lingui-id: 8Tg/JR
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/applications/hooks/useApplicationChipData.ts
@@ -4645,6 +4680,11 @@ msgstr ""
msgid "Custom domain updated"
msgstr ""
#. js-lingui-id: c6P+Xe
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Custom instructions appended to every system prompt"
msgstr ""
#. js-lingui-id: 87ZNeX
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
msgid "Custom model ID"
@@ -4687,6 +4727,7 @@ msgid "Customization"
msgstr ""
#. js-lingui-id: srRMnJ
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectLayout.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
@@ -4783,6 +4824,11 @@ msgstr ""
msgid "Dashboard duplicated successfully"
msgstr ""
#. js-lingui-id: w6iIMm
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Dashboards"
msgstr ""
#. js-lingui-id: HKH+W+
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
@@ -4983,7 +5029,7 @@ msgstr ""
#. js-lingui-id: yAT3be
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
@@ -5010,7 +5056,6 @@ msgstr ""
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
msgid "Default"
@@ -5026,6 +5071,11 @@ msgstr ""
msgid "Default Country Code"
msgstr ""
#. js-lingui-id: OtTlfU
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Default model"
msgstr ""
#. js-lingui-id: hUWaAk
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
msgid "Default model for chats and complex reasoning"
@@ -5468,6 +5518,11 @@ msgstr ""
msgid "Detected application version running on this instance"
msgstr ""
#. js-lingui-id: QYXe1O
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Develop"
msgstr ""
#. js-lingui-id: 7aDnUb
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Developer"
@@ -5559,7 +5614,6 @@ msgstr ""
#. js-lingui-id: TvY/XA
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
msgid "Documentation"
@@ -5763,7 +5817,7 @@ msgid "e.g. OpenAI EU"
msgstr ""
#. js-lingui-id: p5P8NB
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
msgstr ""
@@ -6109,6 +6163,8 @@ msgstr ""
#. js-lingui-id: N2S1rs
#: src/modules/object-record/record-inline-cell/components/RecordInlineCellDisplayMode.tsx
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRelationFieldDiffValues.tsx
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRelationFieldDiffValues.tsx
#: src/modules/activities/timeline-activities/rows/main-object/components/EventFieldDiff.tsx
msgid "Empty"
msgstr ""
@@ -6423,11 +6479,6 @@ msgstr ""
msgid "Enter values, comma-separated"
msgstr ""
#. js-lingui-id: OjkRLQ
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "Enter your API key"
msgstr ""
#. js-lingui-id: GpB8YV
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -6983,7 +7034,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
msgstr ""
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Failed to activate skill"
msgstr ""
@@ -7002,11 +7053,6 @@ msgstr ""
msgid "Failed to create email handle. Email handles may not be configured on this server."
msgstr ""
#. js-lingui-id: WM7GKt
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Failed to create tool"
msgstr ""
#. js-lingui-id: lWoewm
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Failed to delete email handle."
@@ -7018,7 +7064,7 @@ msgid "Failed to delete jobs. Please try again later."
msgstr ""
#. js-lingui-id: bmwWKk
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Failed to delete skill"
msgstr ""
@@ -7121,7 +7167,7 @@ msgid "Failed to save role permissions: {errorMessage}"
msgstr ""
#. js-lingui-id: 9ryUyP
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Failed to save workspace instructions"
msgstr ""
@@ -7147,13 +7193,13 @@ msgid "Failed to update default model"
msgstr ""
#. js-lingui-id: 1R13Ov
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
msgid "Failed to update model"
msgstr ""
#. js-lingui-id: W7Ff/4
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Failed to update model availability"
@@ -7170,7 +7216,7 @@ msgid "Failed to update model recommendations"
msgstr ""
#. js-lingui-id: rCUG3c
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
msgid "Failed to update model selection mode"
msgstr ""
@@ -7329,6 +7375,7 @@ msgstr ""
#. js-lingui-id: vF68cg
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
#: src/pages/settings/data-model/new-index/SettingsObjectNewIndex.tsx
@@ -7863,6 +7910,7 @@ msgid "Grants permission to perform all available actions without restriction"
msgstr ""
#. js-lingui-id: gBiL6J
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "GraphQL"
msgstr ""
@@ -8545,6 +8593,7 @@ msgid "Insert a JSON input, then press \"Run Function\"."
msgstr ""
#. js-lingui-id: TKQ7K+
#: src/pages/settings/applications/SettingsApplications.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationRegistrationShareLinkButtons.tsx
msgid "Install"
@@ -8625,11 +8674,6 @@ msgstr ""
msgid "Invalid 2FA information."
msgstr ""
#. js-lingui-id: GNRDhm
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "Invalid API key"
msgstr ""
#. js-lingui-id: 9TgH9p
#: src/modules/settings/security/components/SettingsSecurityAuthBypassOptionsList.tsx
msgid "Invalid auth bypass provider"
@@ -8749,6 +8793,7 @@ msgstr ""
#. js-lingui-id: MFKlMB
#: src/utils/title-utils.ts
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/modules/workspace/components/WorkspaceInviteTeam.tsx
msgid "Invite"
msgstr ""
@@ -9227,12 +9272,15 @@ msgid "Launch manually"
msgstr ""
#. js-lingui-id: rdU729
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -9688,6 +9736,11 @@ msgstr ""
msgid "Manage Members"
msgstr ""
#. js-lingui-id: LNz5UW
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Manage objects, fields and relationships"
msgstr ""
#. js-lingui-id: eGGH1l
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Manage security policies"
@@ -9724,7 +9777,7 @@ msgid "Manage your internet accounts."
msgstr ""
#. js-lingui-id: waFx9W
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Managed"
msgstr ""
@@ -9802,12 +9855,23 @@ msgstr ""
msgid "Maximum values"
msgstr ""
#. js-lingui-id: nA8kxD
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
msgid "MCP"
msgstr ""
#. js-lingui-id: 2jj0eo
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "MCP config copied to clipboard"
msgstr ""
#. js-lingui-id: NvQoNb
#: src/pages/settings/ai/components/SettingsAiMCP.tsx
msgid "MCP Configuration copied to clipboard"
msgstr ""
#. js-lingui-id: 8CWirf
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiMCP.tsx
msgid "MCP Server"
msgstr ""
@@ -10014,6 +10078,7 @@ msgstr ""
#. js-lingui-id: //nm2/
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Models"
msgstr ""
@@ -10081,7 +10146,6 @@ msgid "months"
msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
msgid "More"
msgstr ""
@@ -10230,8 +10294,8 @@ msgstr ""
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTable.tsx
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
@@ -11412,6 +11476,7 @@ msgstr ""
#. js-lingui-id: B3toQF
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
@@ -11800,7 +11865,9 @@ msgid "Override Draft"
msgstr ""
#. js-lingui-id: 6/dCYd
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Overview"
msgstr ""
@@ -11874,6 +11941,11 @@ msgstr ""
msgid "Page Views"
msgstr ""
#. js-lingui-id: wRR604
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Pages"
msgstr ""
#. js-lingui-id: ijBN4V
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "paragraph"
@@ -12587,18 +12659,18 @@ msgid "Read documentation"
msgstr ""
#. js-lingui-id: U26cMX
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read system prompts"
msgstr ""
#. js-lingui-id: EKsFda
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read the system prompts to understand how the AI works"
msgstr ""
#. js-lingui-id: 0URVx8
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1, }, )
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1 }, )
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read the system prompts to understand how the AI works (~{0} tokens)"
msgstr ""
@@ -12727,6 +12799,11 @@ msgstr ""
msgid "Record label"
msgstr ""
#. js-lingui-id: XueM/X
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Record page"
msgstr ""
#. js-lingui-id: mAHjRd
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutOpenInContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -12845,6 +12922,7 @@ msgid "Relation type"
msgstr ""
#. js-lingui-id: g87L9j
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
#: src/modules/activities/inline-cell/components/ActivityTargetsInlineCell.tsx
msgid "Relations"
@@ -13157,6 +13235,7 @@ msgid "Response Format"
msgstr ""
#. js-lingui-id: WHiaOl
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/playground/SettingsRestPlayground.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "REST"
@@ -13327,6 +13406,7 @@ msgstr ""
#. js-lingui-id: 5dJK4M
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
@@ -13546,7 +13626,7 @@ msgid "Search a role..."
msgstr ""
#. js-lingui-id: lJNEce
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Search a skill..."
msgstr ""
@@ -13562,7 +13642,7 @@ msgid "Search a team member..."
msgstr ""
#. js-lingui-id: VNmPqQ
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Search a tool..."
msgstr ""
@@ -13878,6 +13958,11 @@ msgstr ""
msgid "See Records on All Objects"
msgstr ""
#. js-lingui-id: eQ3co2
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "See your data structure as an interactive diagram"
msgstr ""
#. js-lingui-id: Hhnssf
#: src/pages/settings/applications/components/SettingsApplicationTableRow.tsx
msgid "Seeded"
@@ -14222,6 +14307,11 @@ msgstr ""
msgid "Set up forwarding from the source address to this destination."
msgstr ""
#. js-lingui-id: dq5Wx1
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Set up MCP"
msgstr ""
#. js-lingui-id: 9HNKkV
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
msgid "Set your application configuration variables"
@@ -14382,6 +14472,16 @@ msgstr ""
msgid "Side Panel"
msgstr ""
#. js-lingui-id: uWi2Q+
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Sidebar"
msgstr ""
#. js-lingui-id: 9k9PMD
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Sidebar items"
msgstr ""
#. js-lingui-id: 5lWFkC
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
msgid "Sign in"
@@ -14466,12 +14566,12 @@ msgid "Skill"
msgstr ""
#. js-lingui-id: h4t38o
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skill activated"
msgstr ""
#. js-lingui-id: /IoK74
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skill deleted"
msgstr ""
@@ -14494,7 +14594,9 @@ msgstr ""
#. js-lingui-id: PCSkw2
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skills"
msgstr ""
@@ -14719,7 +14821,7 @@ msgid "Stages"
msgstr ""
#. js-lingui-id: TJBHlP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/applications/hooks/useApplicationChipData.ts
msgid "Standard"
@@ -15132,8 +15234,8 @@ msgstr ""
#: src/pages/settings/ai/SettingsAiPrompts.tsx
#: src/pages/settings/ai/SettingsAiPrompts.tsx
#: src/pages/settings/ai/forms/components/SettingsAiAgentForm.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
msgid "System Prompt"
msgstr ""
@@ -15215,6 +15317,7 @@ msgstr ""
#. js-lingui-id: KM6m8p
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Team"
msgstr ""
@@ -15333,6 +15436,11 @@ msgid ""
"See the [Getting Started guide](https://twenty.com/developers/extend/apps/getting-started) for the full walkthrough, and [Building Apps](https://twenty.com/developers/extend/apps/building) for the `defineApplication` / `defineEntity` APIs."
msgstr ""
#. js-lingui-id: n+CCXl
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "The default AI model used for chats, agents, and workflows"
msgstr ""
#. js-lingui-id: 1xQkU9
#: src/modules/settings/data-model/fields/forms/phones/components/SettingsDataModelFieldPhonesForm.tsx
msgid "The default country code for new phone numbers."
@@ -15895,7 +16003,7 @@ msgid "Tool calls made"
msgstr ""
#. js-lingui-id: SrWh42
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/hooks/useCreateTool.ts
msgid "Tool created"
msgstr ""
@@ -15916,7 +16024,9 @@ msgstr ""
#. js-lingui-id: xdA/+p
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Tools"
msgstr ""
@@ -16062,10 +16172,9 @@ msgstr ""
msgid "True"
msgstr ""
#. js-lingui-id: haaL9N
#. js-lingui-id: 64tOpZ
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Try our REST or GraphQL API playgrounds."
msgid "Try our REST or GraphQL API playgrounds"
msgstr ""
#. js-lingui-id: 3WWUB9
@@ -16733,9 +16842,13 @@ msgstr ""
msgid "Use best models only"
msgstr ""
#. js-lingui-id: 5ZehS/
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Use filter to see existing skills or create your own"
msgstr ""
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
@@ -17097,7 +17210,9 @@ msgstr ""
#. js-lingui-id: 1I6UoR
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr ""
@@ -17150,10 +17265,15 @@ msgid "Visible to you"
msgstr ""
#. js-lingui-id: 6n7jtr
#: src/modules/settings/data-model/objects/components/SettingsObjectCoverImage.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Visualize"
msgstr ""
#. js-lingui-id: VvM/Ty
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Visualize data model"
msgstr ""
#. js-lingui-id: uUehLT
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Waiting"
@@ -17189,6 +17309,41 @@ msgstr ""
msgid "was restored by"
msgstr ""
#. js-lingui-id: 0WPnTI
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Watch AI demo"
msgstr ""
#. js-lingui-id: 5qU4Mu
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
msgid "Watch API demo"
msgstr ""
#. js-lingui-id: inpQ46
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Watch apps demo"
msgstr ""
#. js-lingui-id: uIrZTC
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Watch customization demo"
msgstr ""
#. js-lingui-id: syeoTg
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Watch data model demo"
msgstr ""
#. js-lingui-id: egkNh9
#: src/modules/settings/components/SettingsDiscoveryHeroCard.tsx
msgid "Watch demo"
msgstr ""
#. js-lingui-id: 6ZDYQy
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Watch members demo"
msgstr ""
#. js-lingui-id: 6eMAkI
#: src/modules/auth/sign-in-up/components/EmailVerificationSent.tsx
msgid "We encountered an issue verifying"
@@ -17274,6 +17429,7 @@ msgstr ""
#. js-lingui-id: v1kQyJ
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
@@ -17329,6 +17485,11 @@ msgstr ""
msgid "What this API can do: Select a user role to define its permissions."
msgstr ""
#. js-lingui-id: drC+Tq
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "What's installed and being used in your workspace"
msgstr ""
#. js-lingui-id: m7GziZ
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "When a deal's stage changes to Closed Won, create a task assigned to the deal owner, due 7 days after the close date, with title \"Post-sale check-in\" and the company name in the description."
@@ -17388,6 +17549,11 @@ msgstr ""
msgid "widgets"
msgstr ""
#. js-lingui-id: tL6W2K
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Widgets"
msgstr ""
#. js-lingui-id: j6ncOZ
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowEditActionIterator.tsx
msgid "Will continue to the next iteration even if the current one fails"
@@ -17457,6 +17623,7 @@ msgstr ""
#: src/pages/settings/members/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/layout/components/SettingsLayoutDetailScaffold.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
@@ -17466,7 +17633,6 @@ msgstr ""
#: src/pages/settings/developers/playground/SettingsGraphQLPlayground.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -17546,8 +17712,8 @@ msgid "Workspace Info"
msgstr ""
#. js-lingui-id: BYrMT0
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Workspace Instructions"
msgstr ""
+247 -81
View File
@@ -954,7 +954,6 @@ msgstr "Ativo"
#. js-lingui-id: Mue4oc
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Active API keys created by you or your team."
msgstr "Chaves API ativas criadas por você ou sua equipe."
@@ -1051,11 +1050,6 @@ msgstr ""
msgid "Add custom endpoints, private gateways, or additional regions."
msgstr "Adicione endpoints personalizados, gateways privados ou regiões adicionais."
#. js-lingui-id: GuJvBr
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
msgid "Add custom instructions specific to your workspace (appended to system prompt)"
msgstr "Adicione instruções personalizadas específicas para o seu espaço de trabalho (acrescentadas ao prompt do sistema)"
#. js-lingui-id: 4JviOV
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
@@ -1293,6 +1287,11 @@ msgstr "Adicionar à Lista de Bloqueio"
msgid "Add to Favorite"
msgstr "Adicionar aos Favoritos"
#. js-lingui-id: VbareD
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Add Twenty as a Model Context Protocol (MCP) server. Paste this config into Claude Desktop, Cursor, Cline, Continue, Zed, or any other MCP-aware client."
msgstr ""
#. js-lingui-id: XnwceV
#: src/pages/settings/applications/components/SettingsApplicationRegistrationRedirectURIsInput.tsx
msgid "Add URI"
@@ -1775,6 +1774,11 @@ msgstr "Todas as tarefas concluídas. Mantenha o ritmo."
msgid "All the applications currently installed on this workspace"
msgstr ""
#. js-lingui-id: xP6s/m
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "All the layout items declared on your workspace"
msgstr ""
#. js-lingui-id: XuuWVF
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
msgid "All the standard objects"
@@ -1967,11 +1971,6 @@ msgstr "Ocorreu um erro interno ao validar suas mudanças. Por favor, entre em c
msgid "An object with this name already exists"
msgstr "Um objeto com o mesmo nome já existe"
#. js-lingui-id: lxentK
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "An unexpected error occurred"
msgstr "Ocorreu um erro inesperado"
#. js-lingui-id: byKna+
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
msgid "An unexpected error occurred. Please try again."
@@ -2016,6 +2015,7 @@ msgid "Anyone with an email address at these domains is allowed to sign up for t
msgstr "Qualquer pessoa com um endereço de email nesses domínios está autorizada a se inscrever neste espaço de trabalho."
#. js-lingui-id: OZtEcz
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "API"
msgstr "API"
@@ -2033,7 +2033,6 @@ msgstr "API e Webhooks"
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "API Key"
msgstr "Chave API"
@@ -2063,7 +2062,6 @@ msgid "API key roles"
msgstr "Funções de chave API"
#. js-lingui-id: 5h8ooz
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
msgid "API keys"
msgstr "Chaves API"
@@ -2104,12 +2102,6 @@ msgstr "Nome da API (Singular)"
msgid "API values"
msgstr "Valores da API"
#. js-lingui-id: JR6nY7
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "APIs"
msgstr "APIs"
#. js-lingui-id: ZZAOwb
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
@@ -2131,7 +2123,7 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
msgid "App"
msgstr "Aplicativo"
@@ -2481,6 +2473,11 @@ msgstr "às {remainingTimes} e {lastTime}"
msgid "at 1 minute past the hour"
msgstr "às 1 minuto após a hora"
#. js-lingui-id: ooA+hm
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "At a glance"
msgstr ""
#. js-lingui-id: vyXyF0
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
msgid "At a specific date or time"
@@ -2645,11 +2642,15 @@ msgid "Availability"
msgstr "Disponibilidade"
#. js-lingui-id: csDS2L
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
msgid "Available"
msgstr "Disponível"
#. js-lingui-id: STA+22
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Available models"
msgstr ""
#. js-lingui-id: oD38t2
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Available tools"
@@ -2865,6 +2866,11 @@ msgstr "Bronze"
msgid "Brown"
msgstr "Marrom"
#. js-lingui-id: O2UpM1
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Browse"
msgstr ""
#. js-lingui-id: GsXRxc
#: src/modules/settings/data-model/indexes/forms/components/SettingsObjectIndexOptionsForm.tsx
msgid "BTREE (default, good for sorting and equality)"
@@ -3615,6 +3621,11 @@ msgstr "Comando copiado para a área de transferência"
msgid "Command Icon"
msgstr "Ícone de Comando"
#. js-lingui-id: V1zWD4
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Command menu"
msgstr ""
#. js-lingui-id: PUMdxH
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
msgid "Command Menu"
@@ -3642,6 +3653,11 @@ msgstr ""
msgid "commands"
msgstr ""
#. js-lingui-id: 45MZFs
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Commands"
msgstr ""
#. js-lingui-id: 4XlFx/
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Commands copied to clipboard"
@@ -3808,11 +3824,6 @@ msgstr "Configure estes registros DNS com o provedor de domínio"
msgid "Configure this widget to display fields"
msgstr "Configure este widget para exibir campos"
#. js-lingui-id: hzDiM0
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Configure your default AI model"
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -3886,6 +3897,11 @@ msgstr ""
msgid "Connect a new account to your workspace"
msgstr "Conecte uma nova conta ao seu espaço de trabalho"
#. js-lingui-id: vPCRNy
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Connect AI assistants like Claude or Cursor to your workspace via the Model Context Protocol"
msgstr ""
#. js-lingui-id: YLx3sC
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect via IMAP/SMTP"
@@ -3901,6 +3917,11 @@ msgstr "Conectar com o Google"
msgid "Connect with Microsoft"
msgstr "Conectar com a Microsoft"
#. js-lingui-id: iZWbGJ
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Connect your AI assistant"
msgstr ""
#. js-lingui-id: QHcLEN
#: src/pages/settings/applications/SettingsApplicationConnectionDetail.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationConnectionsSection.tsx
@@ -4066,6 +4087,11 @@ msgstr "Controlar quais tipos de entidades esta função pode ser atribuída"
msgid "Conversation"
msgstr "Conversa"
#. js-lingui-id: EnJuK0
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Conversations"
msgstr ""
#. js-lingui-id: HRGl1X
#: src/pages/onboarding/CreateProfile.tsx
#: src/modules/settings/profile/components/NameFields.tsx
@@ -4104,6 +4130,11 @@ msgstr "Copiar comando"
msgid "Copy commands"
msgstr "Copiar comandos"
#. js-lingui-id: eaZgIQ
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Copy config"
msgstr ""
#. js-lingui-id: 7eVkEH
#: src/pages/onboarding/InviteTeam.tsx
msgid "Copy invitation link"
@@ -4216,6 +4247,11 @@ msgstr "Não foi possível abrir o portal de faturamento. Verifique se sua chave
msgid "Could not open Stripe. Please contact support."
msgstr "Não foi possível abrir o Stripe. Entre em contato com o suporte."
#. js-lingui-id: 6wi9Nf
#: src/modules/settings/playground/hooks/useOpenPlayground.ts
msgid "Could not open the API playground"
msgstr ""
#. js-lingui-id: wVw4Am
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not refresh validity token. Please contact support."
@@ -4340,7 +4376,6 @@ msgstr "Criar e configurar agentes de IA"
#. js-lingui-id: uXGLuq
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Create API key"
msgstr "Criar Chave API"
@@ -4625,7 +4660,7 @@ msgstr "Membro atual do espaço de trabalho não encontrado."
#. js-lingui-id: 8Tg/JR
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/applications/hooks/useApplicationChipData.ts
@@ -4650,6 +4685,11 @@ msgstr "Domínio Personalizado"
msgid "Custom domain updated"
msgstr "Domínio personalizado atualizado"
#. js-lingui-id: c6P+Xe
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Custom instructions appended to every system prompt"
msgstr ""
#. js-lingui-id: 87ZNeX
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
msgid "Custom model ID"
@@ -4692,6 +4732,7 @@ msgid "Customization"
msgstr "Personalização"
#. js-lingui-id: srRMnJ
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectLayout.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
@@ -4788,6 +4829,11 @@ msgstr "Escuro"
msgid "Dashboard duplicated successfully"
msgstr "Painel duplicado com sucesso"
#. js-lingui-id: w6iIMm
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Dashboards"
msgstr ""
#. js-lingui-id: HKH+W+
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
@@ -4988,7 +5034,7 @@ msgstr "Desativar este campo"
#. js-lingui-id: yAT3be
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
@@ -5015,7 +5061,6 @@ msgstr ""
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
msgid "Default"
@@ -5031,6 +5076,11 @@ msgstr "País Padrão"
msgid "Default Country Code"
msgstr "Código do País Padrão"
#. js-lingui-id: OtTlfU
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Default model"
msgstr ""
#. js-lingui-id: hUWaAk
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
msgid "Default model for chats and complex reasoning"
@@ -5473,6 +5523,11 @@ msgstr "Detalhes"
msgid "Detected application version running on this instance"
msgstr ""
#. js-lingui-id: QYXe1O
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Develop"
msgstr ""
#. js-lingui-id: 7aDnUb
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Developer"
@@ -5564,7 +5619,6 @@ msgstr "Não importar"
#. js-lingui-id: TvY/XA
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
msgid "Documentation"
@@ -5768,7 +5822,7 @@ msgid "e.g. OpenAI EU"
msgstr "ex.: OpenAI EU"
#. js-lingui-id: p5P8NB
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
msgstr "Ex.: \"Somos uma empresa B2B SaaS. Sempre use linguagem formal...\""
@@ -6114,6 +6168,8 @@ msgstr "Funcionários"
#. js-lingui-id: N2S1rs
#: src/modules/object-record/record-inline-cell/components/RecordInlineCellDisplayMode.tsx
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRelationFieldDiffValues.tsx
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRelationFieldDiffValues.tsx
#: src/modules/activities/timeline-activities/rows/main-object/components/EventFieldDiff.tsx
msgid "Empty"
msgstr "Vazio"
@@ -6428,11 +6484,6 @@ msgstr "Inserir valor"
msgid "Enter values, comma-separated"
msgstr "Digite os valores, separados por vírgula"
#. js-lingui-id: OjkRLQ
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "Enter your API key"
msgstr "Insira sua chave de API"
#. js-lingui-id: GpB8YV
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -6988,7 +7039,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
msgstr "Falha ao ativar a licença Enterprise. Verifique sua chave ou entre em contato com o suporte."
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Failed to activate skill"
msgstr "Falha ao ativar a habilidade"
@@ -7007,11 +7058,6 @@ msgstr "Falha ao adicionar o provedor"
msgid "Failed to create email handle. Email handles may not be configured on this server."
msgstr ""
#. js-lingui-id: WM7GKt
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Failed to create tool"
msgstr "Falha ao criar a ferramenta"
#. js-lingui-id: lWoewm
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Failed to delete email handle."
@@ -7023,7 +7069,7 @@ msgid "Failed to delete jobs. Please try again later."
msgstr "Falha ao excluir trabalhos. Por favor, tente novamente mais tarde."
#. js-lingui-id: bmwWKk
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Failed to delete skill"
msgstr "Falha ao excluir a habilidade"
@@ -7126,7 +7172,7 @@ msgid "Failed to save role permissions: {errorMessage}"
msgstr ""
#. js-lingui-id: 9ryUyP
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Failed to save workspace instructions"
msgstr "Falha ao salvar as instruções do espaço de trabalho"
@@ -7152,13 +7198,13 @@ msgid "Failed to update default model"
msgstr "Falha ao atualizar o modelo padrão"
#. js-lingui-id: 1R13Ov
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
msgid "Failed to update model"
msgstr "Falha ao atualizar o modelo"
#. js-lingui-id: W7Ff/4
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Failed to update model availability"
@@ -7175,7 +7221,7 @@ msgid "Failed to update model recommendations"
msgstr ""
#. js-lingui-id: rCUG3c
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
msgid "Failed to update model selection mode"
msgstr "Falha ao atualizar o modo de seleção de modelos"
@@ -7334,6 +7380,7 @@ msgstr "campos"
#. js-lingui-id: vF68cg
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
#: src/pages/settings/data-model/new-index/SettingsObjectNewIndex.tsx
@@ -7868,6 +7915,7 @@ msgid "Grants permission to perform all available actions without restriction"
msgstr "Concede permissão para realizar todas as ações disponíveis sem restrição"
#. js-lingui-id: gBiL6J
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "GraphQL"
msgstr "GraphQL"
@@ -8550,6 +8598,7 @@ msgid "Insert a JSON input, then press \"Run Function\"."
msgstr ""
#. js-lingui-id: TKQ7K+
#: src/pages/settings/applications/SettingsApplications.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationRegistrationShareLinkButtons.tsx
msgid "Install"
@@ -8630,11 +8679,6 @@ msgstr "Alternância de intervalo foi cancelada."
msgid "Invalid 2FA information."
msgstr "Informações de 2FA inválidas."
#. js-lingui-id: GNRDhm
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "Invalid API key"
msgstr "Chave API inválida"
#. js-lingui-id: 9TgH9p
#: src/modules/settings/security/components/SettingsSecurityAuthBypassOptionsList.tsx
msgid "Invalid auth bypass provider"
@@ -8754,6 +8798,7 @@ msgstr "Convites"
#. js-lingui-id: MFKlMB
#: src/utils/title-utils.ts
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/modules/workspace/components/WorkspaceInviteTeam.tsx
msgid "Invite"
msgstr "Convidar"
@@ -9232,12 +9277,15 @@ msgid "Launch manually"
msgstr "Executar manualmente"
#. js-lingui-id: rdU729
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -9693,6 +9741,11 @@ msgstr ""
msgid "Manage Members"
msgstr "Gerenciar Membros"
#. js-lingui-id: LNz5UW
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Manage objects, fields and relationships"
msgstr ""
#. js-lingui-id: eGGH1l
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Manage security policies"
@@ -9729,7 +9782,7 @@ msgid "Manage your internet accounts."
msgstr "Gerencie suas contas de internet."
#. js-lingui-id: waFx9W
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Managed"
msgstr ""
@@ -9807,12 +9860,23 @@ msgstr "Máximo de URLs"
msgid "Maximum values"
msgstr "Máximo de valores"
#. js-lingui-id: nA8kxD
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
msgid "MCP"
msgstr ""
#. js-lingui-id: 2jj0eo
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "MCP config copied to clipboard"
msgstr ""
#. js-lingui-id: NvQoNb
#: src/pages/settings/ai/components/SettingsAiMCP.tsx
msgid "MCP Configuration copied to clipboard"
msgstr "Configuração MCP copiada para a área de transferência"
#. js-lingui-id: 8CWirf
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiMCP.tsx
msgid "MCP Server"
msgstr "Servidor MCP"
@@ -10019,6 +10083,7 @@ msgstr "O ID do modelo é obrigatório"
#. js-lingui-id: //nm2/
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Models"
msgstr "Modelos"
@@ -10086,7 +10151,6 @@ msgid "months"
msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
msgid "More"
msgstr "Mais"
@@ -10235,8 +10299,8 @@ msgstr ""
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTable.tsx
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
@@ -11417,6 +11481,7 @@ msgstr "objetos"
#. js-lingui-id: B3toQF
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
@@ -11805,7 +11870,9 @@ msgid "Override Draft"
msgstr "Sobrescrever Rascunho"
#. js-lingui-id: 6/dCYd
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Overview"
msgstr "Visão geral"
@@ -11879,6 +11946,11 @@ msgstr "Página não encontrada | Twenty"
msgid "Page Views"
msgstr "Visualizações de página"
#. js-lingui-id: wRR604
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Pages"
msgstr ""
#. js-lingui-id: ijBN4V
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "paragraph"
@@ -12592,18 +12664,18 @@ msgid "Read documentation"
msgstr "Ler documentação"
#. js-lingui-id: U26cMX
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read system prompts"
msgstr ""
#. js-lingui-id: EKsFda
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read the system prompts to understand how the AI works"
msgstr ""
#. js-lingui-id: 0URVx8
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1, }, )
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1 }, )
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read the system prompts to understand how the AI works (~{0} tokens)"
msgstr ""
@@ -12732,6 +12804,11 @@ msgstr "Imagem do registro"
msgid "Record label"
msgstr "Rótulo do registro"
#. js-lingui-id: XueM/X
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Record page"
msgstr ""
#. js-lingui-id: mAHjRd
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutOpenInContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -12850,6 +12927,7 @@ msgid "Relation type"
msgstr "Tipo de relação"
#. js-lingui-id: g87L9j
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
#: src/modules/activities/inline-cell/components/ActivityTargetsInlineCell.tsx
msgid "Relations"
@@ -13162,6 +13240,7 @@ msgid "Response Format"
msgstr ""
#. js-lingui-id: WHiaOl
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/playground/SettingsRestPlayground.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "REST"
@@ -13332,6 +13411,7 @@ msgstr ""
#. js-lingui-id: 5dJK4M
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
@@ -13551,7 +13631,7 @@ msgid "Search a role..."
msgstr "Pesquise um papel..."
#. js-lingui-id: lJNEce
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Search a skill..."
msgstr "Pesquisar uma habilidade..."
@@ -13567,7 +13647,7 @@ msgid "Search a team member..."
msgstr "Pesquisar um membro da equipe..."
#. js-lingui-id: VNmPqQ
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Search a tool..."
msgstr ""
@@ -13883,6 +13963,11 @@ msgstr ""
msgid "See Records on All Objects"
msgstr "Visualizar Registros em Todos os Objetos"
#. js-lingui-id: eQ3co2
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "See your data structure as an interactive diagram"
msgstr ""
#. js-lingui-id: Hhnssf
#: src/pages/settings/applications/components/SettingsApplicationTableRow.tsx
msgid "Seeded"
@@ -14227,6 +14312,11 @@ msgstr "Configure um campo de seleção em {objectLabel} para criar um Kanban"
msgid "Set up forwarding from the source address to this destination."
msgstr ""
#. js-lingui-id: dq5Wx1
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Set up MCP"
msgstr ""
#. js-lingui-id: 9HNKkV
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
msgid "Set your application configuration variables"
@@ -14387,6 +14477,16 @@ msgstr ""
msgid "Side Panel"
msgstr "Painel Lateral"
#. js-lingui-id: uWi2Q+
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Sidebar"
msgstr ""
#. js-lingui-id: 9k9PMD
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Sidebar items"
msgstr ""
#. js-lingui-id: 5lWFkC
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
msgid "Sign in"
@@ -14471,12 +14571,12 @@ msgid "Skill"
msgstr "Habilidade"
#. js-lingui-id: h4t38o
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skill activated"
msgstr "Habilidade ativada"
#. js-lingui-id: /IoK74
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skill deleted"
msgstr "Habilidade excluída"
@@ -14499,7 +14599,9 @@ msgstr ""
#. js-lingui-id: PCSkw2
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skills"
msgstr "Habilidades"
@@ -14724,7 +14826,7 @@ msgid "Stages"
msgstr "Fases"
#. js-lingui-id: TJBHlP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/applications/hooks/useApplicationChipData.ts
msgid "Standard"
@@ -15137,8 +15239,8 @@ msgstr ""
#: src/pages/settings/ai/SettingsAiPrompts.tsx
#: src/pages/settings/ai/SettingsAiPrompts.tsx
#: src/pages/settings/ai/forms/components/SettingsAiAgentForm.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
msgid "System Prompt"
msgstr "Prompt do sistema"
@@ -15220,6 +15322,7 @@ msgstr "Título da tarefa"
#. js-lingui-id: KM6m8p
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Team"
msgstr ""
@@ -15338,6 +15441,11 @@ msgid ""
"See the [Getting Started guide](https://twenty.com/developers/extend/apps/getting-started) for the full walkthrough, and [Building Apps](https://twenty.com/developers/extend/apps/building) for the `defineApplication` / `defineEntity` APIs."
msgstr ""
#. js-lingui-id: n+CCXl
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "The default AI model used for chats, agents, and workflows"
msgstr ""
#. js-lingui-id: 1xQkU9
#: src/modules/settings/data-model/fields/forms/phones/components/SettingsDataModelFieldPhonesForm.tsx
msgid "The default country code for new phone numbers."
@@ -15900,7 +16008,7 @@ msgid "Tool calls made"
msgstr "Chamadas de ferramentas realizadas"
#. js-lingui-id: SrWh42
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/hooks/useCreateTool.ts
msgid "Tool created"
msgstr "Ferramenta criada"
@@ -15921,7 +16029,9 @@ msgstr "Geração de ferramenta"
#. js-lingui-id: xdA/+p
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Tools"
msgstr "Ferramentas"
@@ -16067,11 +16177,10 @@ msgstr ""
msgid "True"
msgstr "Verdadeiro"
#. js-lingui-id: haaL9N
#. js-lingui-id: 64tOpZ
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Try our REST or GraphQL API playgrounds."
msgstr "Experimente nossos playgrounds de API REST ou GraphQL."
msgid "Try our REST or GraphQL API playgrounds"
msgstr ""
#. js-lingui-id: 3WWUB9
#: src/pages/settings/updates/SettingsUpdates.tsx
@@ -16738,9 +16847,13 @@ msgstr "Use apps autenticadores e extensões de navegador como 1Password, Authy,
msgid "Use best models only"
msgstr "Usar apenas os melhores modelos"
#. js-lingui-id: 5ZehS/
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Use filter to see existing skills or create your own"
msgstr ""
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
@@ -17102,7 +17215,9 @@ msgstr "Ver logs de atividade do espaço de trabalho"
#. js-lingui-id: 1I6UoR
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr "Visualizações"
@@ -17155,10 +17270,15 @@ msgid "Visible to you"
msgstr "Visível para você"
#. js-lingui-id: 6n7jtr
#: src/modules/settings/data-model/objects/components/SettingsObjectCoverImage.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Visualize"
msgstr "Visualizar"
#. js-lingui-id: VvM/Ty
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Visualize data model"
msgstr ""
#. js-lingui-id: uUehLT
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Waiting"
@@ -17194,6 +17314,41 @@ msgstr "foi deletado por"
msgid "was restored by"
msgstr "foi restaurado por"
#. js-lingui-id: 0WPnTI
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Watch AI demo"
msgstr ""
#. js-lingui-id: 5qU4Mu
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
msgid "Watch API demo"
msgstr ""
#. js-lingui-id: inpQ46
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Watch apps demo"
msgstr ""
#. js-lingui-id: uIrZTC
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Watch customization demo"
msgstr ""
#. js-lingui-id: syeoTg
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Watch data model demo"
msgstr ""
#. js-lingui-id: egkNh9
#: src/modules/settings/components/SettingsDiscoveryHeroCard.tsx
msgid "Watch demo"
msgstr ""
#. js-lingui-id: 6ZDYQy
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Watch members demo"
msgstr ""
#. js-lingui-id: 6eMAkI
#: src/modules/auth/sign-in-up/components/EmailVerificationSent.tsx
msgid "We encountered an issue verifying"
@@ -17281,6 +17436,7 @@ msgstr "ID do Webhook é necessário para as atualizações"
#. js-lingui-id: v1kQyJ
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
@@ -17336,6 +17492,11 @@ msgstr "Com o que posso ajudar?"
msgid "What this API can do: Select a user role to define its permissions."
msgstr "O que esta API pode fazer: Selecione uma função de usuário para definir suas permissões."
#. js-lingui-id: drC+Tq
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "What's installed and being used in your workspace"
msgstr ""
#. js-lingui-id: m7GziZ
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "When a deal's stage changes to Closed Won, create a task assigned to the deal owner, due 7 days after the close date, with title \"Post-sale check-in\" and the company name in the description."
@@ -17395,6 +17556,11 @@ msgstr "Tipo de Widget"
msgid "widgets"
msgstr ""
#. js-lingui-id: tL6W2K
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Widgets"
msgstr ""
#. js-lingui-id: j6ncOZ
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowEditActionIterator.tsx
msgid "Will continue to the next iteration even if the current one fails"
@@ -17464,6 +17630,7 @@ msgstr "Workflows"
#: src/pages/settings/members/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/layout/components/SettingsLayoutDetailScaffold.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
@@ -17473,7 +17640,6 @@ msgstr "Workflows"
#: src/pages/settings/developers/playground/SettingsGraphQLPlayground.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -17553,8 +17719,8 @@ msgid "Workspace Info"
msgstr "Informações do espaço de trabalho"
#. js-lingui-id: BYrMT0
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Workspace Instructions"
msgstr "Instruções do espaço de trabalho"
+247 -81
View File
@@ -954,7 +954,6 @@ msgstr "Ativo"
#. js-lingui-id: Mue4oc
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Active API keys created by you or your team."
msgstr "Chaves API ativas criadas por si ou pela sua equipa."
@@ -1051,11 +1050,6 @@ msgstr ""
msgid "Add custom endpoints, private gateways, or additional regions."
msgstr "Adicione endpoints personalizados, gateways privados ou regiões adicionais."
#. js-lingui-id: GuJvBr
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
msgid "Add custom instructions specific to your workspace (appended to system prompt)"
msgstr "Adicionar instruções personalizadas específicas ao seu espaço de trabalho (acrescentadas ao prompt do sistema)"
#. js-lingui-id: 4JviOV
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
@@ -1293,6 +1287,11 @@ msgstr "Adicionar à lista de bloqueio"
msgid "Add to Favorite"
msgstr "Adicionar aos favoritos"
#. js-lingui-id: VbareD
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Add Twenty as a Model Context Protocol (MCP) server. Paste this config into Claude Desktop, Cursor, Cline, Continue, Zed, or any other MCP-aware client."
msgstr ""
#. js-lingui-id: XnwceV
#: src/pages/settings/applications/components/SettingsApplicationRegistrationRedirectURIsInput.tsx
msgid "Add URI"
@@ -1775,6 +1774,11 @@ msgstr "Todas as tarefas tratadas. Mantenha o ritmo."
msgid "All the applications currently installed on this workspace"
msgstr ""
#. js-lingui-id: xP6s/m
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "All the layout items declared on your workspace"
msgstr ""
#. js-lingui-id: XuuWVF
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
msgid "All the standard objects"
@@ -1967,11 +1971,6 @@ msgstr "Ocorreu um erro interno ao validar suas alterações. Por favor, entre e
msgid "An object with this name already exists"
msgstr "Um objeto com este nome já existe"
#. js-lingui-id: lxentK
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "An unexpected error occurred"
msgstr "Ocorreu um erro inesperado"
#. js-lingui-id: byKna+
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
msgid "An unexpected error occurred. Please try again."
@@ -2016,6 +2015,7 @@ msgid "Anyone with an email address at these domains is allowed to sign up for t
msgstr "Qualquer pessoa com um endereço de email nesses domínios pode inscrever-se neste espaço de trabalho."
#. js-lingui-id: OZtEcz
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "API"
msgstr "\"API\""
@@ -2033,7 +2033,6 @@ msgstr "API e Webhooks"
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "API Key"
msgstr "Chave API"
@@ -2063,7 +2062,6 @@ msgid "API key roles"
msgstr ""
#. js-lingui-id: 5h8ooz
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
msgid "API keys"
msgstr "Chaves API"
@@ -2104,12 +2102,6 @@ msgstr "Nome da API (Singular)"
msgid "API values"
msgstr "Valores de API"
#. js-lingui-id: JR6nY7
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "APIs"
msgstr "APIs"
#. js-lingui-id: ZZAOwb
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
@@ -2131,7 +2123,7 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
msgid "App"
msgstr "Aplicativo"
@@ -2481,6 +2473,11 @@ msgstr "às {remainingTimes} e {lastTime}"
msgid "at 1 minute past the hour"
msgstr "às 1 minuto após a hora"
#. js-lingui-id: ooA+hm
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "At a glance"
msgstr ""
#. js-lingui-id: vyXyF0
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
msgid "At a specific date or time"
@@ -2645,11 +2642,15 @@ msgid "Availability"
msgstr "Disponibilidade"
#. js-lingui-id: csDS2L
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
msgid "Available"
msgstr "Disponível"
#. js-lingui-id: STA+22
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Available models"
msgstr ""
#. js-lingui-id: oD38t2
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Available tools"
@@ -2865,6 +2866,11 @@ msgstr "Bronze"
msgid "Brown"
msgstr "Castanho"
#. js-lingui-id: O2UpM1
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Browse"
msgstr ""
#. js-lingui-id: GsXRxc
#: src/modules/settings/data-model/indexes/forms/components/SettingsObjectIndexOptionsForm.tsx
msgid "BTREE (default, good for sorting and equality)"
@@ -3615,6 +3621,11 @@ msgstr "Comando copiado para a área de transferência"
msgid "Command Icon"
msgstr "Ícone do Comando"
#. js-lingui-id: V1zWD4
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Command menu"
msgstr ""
#. js-lingui-id: PUMdxH
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
msgid "Command Menu"
@@ -3642,6 +3653,11 @@ msgstr ""
msgid "commands"
msgstr ""
#. js-lingui-id: 45MZFs
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Commands"
msgstr ""
#. js-lingui-id: 4XlFx/
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Commands copied to clipboard"
@@ -3808,11 +3824,6 @@ msgstr "Configure esses registros DNS com seu provedor de domínio"
msgid "Configure this widget to display fields"
msgstr "Configure este widget para exibir campos"
#. js-lingui-id: hzDiM0
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Configure your default AI model"
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -3886,6 +3897,11 @@ msgstr ""
msgid "Connect a new account to your workspace"
msgstr "Ligar uma nova conta ao seu espaço de trabalho"
#. js-lingui-id: vPCRNy
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Connect AI assistants like Claude or Cursor to your workspace via the Model Context Protocol"
msgstr ""
#. js-lingui-id: YLx3sC
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect via IMAP/SMTP"
@@ -3901,6 +3917,11 @@ msgstr "Ligar ao Google"
msgid "Connect with Microsoft"
msgstr "Ligar à Microsoft"
#. js-lingui-id: iZWbGJ
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Connect your AI assistant"
msgstr ""
#. js-lingui-id: QHcLEN
#: src/pages/settings/applications/SettingsApplicationConnectionDetail.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationConnectionsSection.tsx
@@ -4066,6 +4087,11 @@ msgstr "Controlar quais tipos de entidades este papel pode ser atribuído"
msgid "Conversation"
msgstr "Conversa"
#. js-lingui-id: EnJuK0
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Conversations"
msgstr ""
#. js-lingui-id: HRGl1X
#: src/pages/onboarding/CreateProfile.tsx
#: src/modules/settings/profile/components/NameFields.tsx
@@ -4104,6 +4130,11 @@ msgstr "Copiar comando"
msgid "Copy commands"
msgstr "Copiar comandos"
#. js-lingui-id: eaZgIQ
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Copy config"
msgstr ""
#. js-lingui-id: 7eVkEH
#: src/pages/onboarding/InviteTeam.tsx
msgid "Copy invitation link"
@@ -4216,6 +4247,11 @@ msgstr "Não foi possível abrir o portal de faturação. Verifique se a sua cha
msgid "Could not open Stripe. Please contact support."
msgstr "Não foi possível abrir o Stripe. Por favor, contacte o suporte."
#. js-lingui-id: 6wi9Nf
#: src/modules/settings/playground/hooks/useOpenPlayground.ts
msgid "Could not open the API playground"
msgstr ""
#. js-lingui-id: wVw4Am
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not refresh validity token. Please contact support."
@@ -4340,7 +4376,6 @@ msgstr "Criar e configurar agentes de IA"
#. js-lingui-id: uXGLuq
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Create API key"
msgstr "Criar chave API"
@@ -4625,7 +4660,7 @@ msgstr "Membro atual do espaço de trabalho não encontrado."
#. js-lingui-id: 8Tg/JR
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/applications/hooks/useApplicationChipData.ts
@@ -4650,6 +4685,11 @@ msgstr "Domínio Personalizado"
msgid "Custom domain updated"
msgstr "Domínio personalizado atualizado"
#. js-lingui-id: c6P+Xe
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Custom instructions appended to every system prompt"
msgstr ""
#. js-lingui-id: 87ZNeX
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
msgid "Custom model ID"
@@ -4692,6 +4732,7 @@ msgid "Customization"
msgstr "Personalização"
#. js-lingui-id: srRMnJ
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectLayout.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
@@ -4788,6 +4829,11 @@ msgstr "Escuro"
msgid "Dashboard duplicated successfully"
msgstr "Painel duplicado com sucesso"
#. js-lingui-id: w6iIMm
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Dashboards"
msgstr ""
#. js-lingui-id: HKH+W+
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
@@ -4988,7 +5034,7 @@ msgstr "Desativar este campo"
#. js-lingui-id: yAT3be
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
@@ -5015,7 +5061,6 @@ msgstr ""
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
msgid "Default"
@@ -5031,6 +5076,11 @@ msgstr "País padrão"
msgid "Default Country Code"
msgstr "Código de país padrão"
#. js-lingui-id: OtTlfU
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Default model"
msgstr ""
#. js-lingui-id: hUWaAk
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
msgid "Default model for chats and complex reasoning"
@@ -5473,6 +5523,11 @@ msgstr "Detalhes"
msgid "Detected application version running on this instance"
msgstr ""
#. js-lingui-id: QYXe1O
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Develop"
msgstr ""
#. js-lingui-id: 7aDnUb
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Developer"
@@ -5564,7 +5619,6 @@ msgstr "Não importar"
#. js-lingui-id: TvY/XA
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
msgid "Documentation"
@@ -5768,7 +5822,7 @@ msgid "e.g. OpenAI EU"
msgstr "por exemplo, OpenAI EU"
#. js-lingui-id: p5P8NB
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
msgstr "Por exemplo, \"Somos uma empresa SaaS B2B. Use sempre linguagem formal...\""
@@ -6114,6 +6168,8 @@ msgstr "Funcionários"
#. js-lingui-id: N2S1rs
#: src/modules/object-record/record-inline-cell/components/RecordInlineCellDisplayMode.tsx
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRelationFieldDiffValues.tsx
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRelationFieldDiffValues.tsx
#: src/modules/activities/timeline-activities/rows/main-object/components/EventFieldDiff.tsx
msgid "Empty"
msgstr "Vazio"
@@ -6428,11 +6484,6 @@ msgstr "Inserir valor"
msgid "Enter values, comma-separated"
msgstr "Introduza valores, separados por vírgulas"
#. js-lingui-id: OjkRLQ
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "Enter your API key"
msgstr "Introduza a sua chave de API"
#. js-lingui-id: GpB8YV
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -6988,7 +7039,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
msgstr "Falha ao ativar a licença Enterprise. Verifique a sua chave ou contacte o suporte."
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Failed to activate skill"
msgstr "Falha ao ativar a habilidade"
@@ -7007,11 +7058,6 @@ msgstr "Falha ao adicionar o provedor"
msgid "Failed to create email handle. Email handles may not be configured on this server."
msgstr ""
#. js-lingui-id: WM7GKt
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Failed to create tool"
msgstr "Falha ao criar ferramenta"
#. js-lingui-id: lWoewm
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Failed to delete email handle."
@@ -7023,7 +7069,7 @@ msgid "Failed to delete jobs. Please try again later."
msgstr "Falha ao deletar trabalhos. Por favor, tente novamente mais tarde."
#. js-lingui-id: bmwWKk
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Failed to delete skill"
msgstr "Falha ao excluir a habilidade"
@@ -7126,7 +7172,7 @@ msgid "Failed to save role permissions: {errorMessage}"
msgstr ""
#. js-lingui-id: 9ryUyP
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Failed to save workspace instructions"
msgstr "Falha ao guardar as instruções do espaço de trabalho"
@@ -7152,13 +7198,13 @@ msgid "Failed to update default model"
msgstr "Falha ao atualizar o modelo padrão"
#. js-lingui-id: 1R13Ov
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
msgid "Failed to update model"
msgstr "Falha ao atualizar o modelo"
#. js-lingui-id: W7Ff/4
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Failed to update model availability"
@@ -7175,7 +7221,7 @@ msgid "Failed to update model recommendations"
msgstr ""
#. js-lingui-id: rCUG3c
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
msgid "Failed to update model selection mode"
msgstr "Falha ao atualizar o modo de seleção de modelo"
@@ -7334,6 +7380,7 @@ msgstr "campos"
#. js-lingui-id: vF68cg
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
#: src/pages/settings/data-model/new-index/SettingsObjectNewIndex.tsx
@@ -7868,6 +7915,7 @@ msgid "Grants permission to perform all available actions without restriction"
msgstr "Concede permissão para realizar todas as ações disponíveis sem restrição"
#. js-lingui-id: gBiL6J
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "GraphQL"
msgstr "\"GraphQL\""
@@ -8550,6 +8598,7 @@ msgid "Insert a JSON input, then press \"Run Function\"."
msgstr ""
#. js-lingui-id: TKQ7K+
#: src/pages/settings/applications/SettingsApplications.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationRegistrationShareLinkButtons.tsx
msgid "Install"
@@ -8630,11 +8679,6 @@ msgstr "A mudança de intervalo foi cancelada."
msgid "Invalid 2FA information."
msgstr "Informações de 2FA inválidas."
#. js-lingui-id: GNRDhm
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "Invalid API key"
msgstr "Chave API inválida"
#. js-lingui-id: 9TgH9p
#: src/modules/settings/security/components/SettingsSecurityAuthBypassOptionsList.tsx
msgid "Invalid auth bypass provider"
@@ -8754,6 +8798,7 @@ msgstr "Convites"
#. js-lingui-id: MFKlMB
#: src/utils/title-utils.ts
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/modules/workspace/components/WorkspaceInviteTeam.tsx
msgid "Invite"
msgstr "Convidar"
@@ -9232,12 +9277,15 @@ msgid "Launch manually"
msgstr "Iniciar manualmente"
#. js-lingui-id: rdU729
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -9693,6 +9741,11 @@ msgstr ""
msgid "Manage Members"
msgstr "Gerir Membros"
#. js-lingui-id: LNz5UW
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Manage objects, fields and relationships"
msgstr ""
#. js-lingui-id: eGGH1l
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Manage security policies"
@@ -9729,7 +9782,7 @@ msgid "Manage your internet accounts."
msgstr "Gerir as suas contas de internet."
#. js-lingui-id: waFx9W
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Managed"
msgstr ""
@@ -9807,12 +9860,23 @@ msgstr "Máximo de URLs"
msgid "Maximum values"
msgstr "Máximo de valores"
#. js-lingui-id: nA8kxD
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
msgid "MCP"
msgstr ""
#. js-lingui-id: 2jj0eo
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "MCP config copied to clipboard"
msgstr ""
#. js-lingui-id: NvQoNb
#: src/pages/settings/ai/components/SettingsAiMCP.tsx
msgid "MCP Configuration copied to clipboard"
msgstr "Configuração MCP copiada para a área de transferência"
#. js-lingui-id: 8CWirf
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiMCP.tsx
msgid "MCP Server"
msgstr "Servidor MCP"
@@ -10019,6 +10083,7 @@ msgstr "O ID do modelo é obrigatório"
#. js-lingui-id: //nm2/
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Models"
msgstr "Modelos"
@@ -10086,7 +10151,6 @@ msgid "months"
msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
msgid "More"
msgstr "Mais"
@@ -10235,8 +10299,8 @@ msgstr ""
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTable.tsx
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
@@ -11417,6 +11481,7 @@ msgstr "objetos"
#. js-lingui-id: B3toQF
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
@@ -11805,7 +11870,9 @@ msgid "Override Draft"
msgstr "Sobrescrever Rascunho"
#. js-lingui-id: 6/dCYd
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Overview"
msgstr "Visão Geral"
@@ -11879,6 +11946,11 @@ msgstr "Página não encontrada | Twenty"
msgid "Page Views"
msgstr "Visualizações de página"
#. js-lingui-id: wRR604
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Pages"
msgstr ""
#. js-lingui-id: ijBN4V
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "paragraph"
@@ -12592,18 +12664,18 @@ msgid "Read documentation"
msgstr "Ler a documentação"
#. js-lingui-id: U26cMX
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read system prompts"
msgstr ""
#. js-lingui-id: EKsFda
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read the system prompts to understand how the AI works"
msgstr ""
#. js-lingui-id: 0URVx8
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1, }, )
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1 }, )
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read the system prompts to understand how the AI works (~{0} tokens)"
msgstr ""
@@ -12732,6 +12804,11 @@ msgstr "Imagem de registro"
msgid "Record label"
msgstr "Etiqueta de registro"
#. js-lingui-id: XueM/X
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Record page"
msgstr ""
#. js-lingui-id: mAHjRd
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutOpenInContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -12850,6 +12927,7 @@ msgid "Relation type"
msgstr "Tipo de relação"
#. js-lingui-id: g87L9j
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
#: src/modules/activities/inline-cell/components/ActivityTargetsInlineCell.tsx
msgid "Relations"
@@ -13162,6 +13240,7 @@ msgid "Response Format"
msgstr ""
#. js-lingui-id: WHiaOl
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/playground/SettingsRestPlayground.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "REST"
@@ -13332,6 +13411,7 @@ msgstr ""
#. js-lingui-id: 5dJK4M
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
@@ -13551,7 +13631,7 @@ msgid "Search a role..."
msgstr "Procure uma função..."
#. js-lingui-id: lJNEce
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Search a skill..."
msgstr "Pesquisar uma habilidade..."
@@ -13567,7 +13647,7 @@ msgid "Search a team member..."
msgstr "Pesquisar um membro da equipe..."
#. js-lingui-id: VNmPqQ
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Search a tool..."
msgstr ""
@@ -13883,6 +13963,11 @@ msgstr ""
msgid "See Records on All Objects"
msgstr "Ver registros em todos os objetos"
#. js-lingui-id: eQ3co2
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "See your data structure as an interactive diagram"
msgstr ""
#. js-lingui-id: Hhnssf
#: src/pages/settings/applications/components/SettingsApplicationTableRow.tsx
msgid "Seeded"
@@ -14227,6 +14312,11 @@ msgstr "Configure um campo Seleção em {objectLabel} para criar um Kanban"
msgid "Set up forwarding from the source address to this destination."
msgstr ""
#. js-lingui-id: dq5Wx1
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Set up MCP"
msgstr ""
#. js-lingui-id: 9HNKkV
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
msgid "Set your application configuration variables"
@@ -14387,6 +14477,16 @@ msgstr ""
msgid "Side Panel"
msgstr "Painel Lateral"
#. js-lingui-id: uWi2Q+
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Sidebar"
msgstr ""
#. js-lingui-id: 9k9PMD
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Sidebar items"
msgstr ""
#. js-lingui-id: 5lWFkC
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
msgid "Sign in"
@@ -14471,12 +14571,12 @@ msgid "Skill"
msgstr "Habilidade"
#. js-lingui-id: h4t38o
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skill activated"
msgstr "Habilidade ativada"
#. js-lingui-id: /IoK74
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skill deleted"
msgstr "Habilidade excluída"
@@ -14499,7 +14599,9 @@ msgstr ""
#. js-lingui-id: PCSkw2
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skills"
msgstr "Habilidades"
@@ -14724,7 +14826,7 @@ msgid "Stages"
msgstr "Fases"
#. js-lingui-id: TJBHlP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/applications/hooks/useApplicationChipData.ts
msgid "Standard"
@@ -15137,8 +15239,8 @@ msgstr ""
#: src/pages/settings/ai/SettingsAiPrompts.tsx
#: src/pages/settings/ai/SettingsAiPrompts.tsx
#: src/pages/settings/ai/forms/components/SettingsAiAgentForm.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
msgid "System Prompt"
msgstr "Prompt do Sistema"
@@ -15220,6 +15322,7 @@ msgstr "Título da Tarefa"
#. js-lingui-id: KM6m8p
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Team"
msgstr ""
@@ -15338,6 +15441,11 @@ msgid ""
"See the [Getting Started guide](https://twenty.com/developers/extend/apps/getting-started) for the full walkthrough, and [Building Apps](https://twenty.com/developers/extend/apps/building) for the `defineApplication` / `defineEntity` APIs."
msgstr ""
#. js-lingui-id: n+CCXl
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "The default AI model used for chats, agents, and workflows"
msgstr ""
#. js-lingui-id: 1xQkU9
#: src/modules/settings/data-model/fields/forms/phones/components/SettingsDataModelFieldPhonesForm.tsx
msgid "The default country code for new phone numbers."
@@ -15900,7 +16008,7 @@ msgid "Tool calls made"
msgstr "Chamadas de ferramentas efetuadas"
#. js-lingui-id: SrWh42
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/hooks/useCreateTool.ts
msgid "Tool created"
msgstr "Ferramenta criada"
@@ -15921,7 +16029,9 @@ msgstr "Geração de ferramenta"
#. js-lingui-id: xdA/+p
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Tools"
msgstr "Ferramentas"
@@ -16067,11 +16177,10 @@ msgstr ""
msgid "True"
msgstr "Verdadeiro"
#. js-lingui-id: haaL9N
#. js-lingui-id: 64tOpZ
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Try our REST or GraphQL API playgrounds."
msgstr "Experimente nossos playgrounds de API REST ou GraphQL."
msgid "Try our REST or GraphQL API playgrounds"
msgstr ""
#. js-lingui-id: 3WWUB9
#: src/pages/settings/updates/SettingsUpdates.tsx
@@ -16738,9 +16847,13 @@ msgstr "Use aplicativos autenticadores e extensões de navegador como 1Password,
msgid "Use best models only"
msgstr "Usar apenas os melhores modelos"
#. js-lingui-id: 5ZehS/
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Use filter to see existing skills or create your own"
msgstr ""
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
@@ -17102,7 +17215,9 @@ msgstr "Ver logs de atividade do espaço de trabalho"
#. js-lingui-id: 1I6UoR
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr "Visualizações"
@@ -17155,10 +17270,15 @@ msgid "Visible to you"
msgstr "Visível para você"
#. js-lingui-id: 6n7jtr
#: src/modules/settings/data-model/objects/components/SettingsObjectCoverImage.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Visualize"
msgstr "Visualizar"
#. js-lingui-id: VvM/Ty
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Visualize data model"
msgstr ""
#. js-lingui-id: uUehLT
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Waiting"
@@ -17194,6 +17314,41 @@ msgstr "foi excluído por"
msgid "was restored by"
msgstr "foi restaurado por"
#. js-lingui-id: 0WPnTI
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Watch AI demo"
msgstr ""
#. js-lingui-id: 5qU4Mu
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
msgid "Watch API demo"
msgstr ""
#. js-lingui-id: inpQ46
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Watch apps demo"
msgstr ""
#. js-lingui-id: uIrZTC
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Watch customization demo"
msgstr ""
#. js-lingui-id: syeoTg
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Watch data model demo"
msgstr ""
#. js-lingui-id: egkNh9
#: src/modules/settings/components/SettingsDiscoveryHeroCard.tsx
msgid "Watch demo"
msgstr ""
#. js-lingui-id: 6ZDYQy
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Watch members demo"
msgstr ""
#. js-lingui-id: 6eMAkI
#: src/modules/auth/sign-in-up/components/EmailVerificationSent.tsx
msgid "We encountered an issue verifying"
@@ -17281,6 +17436,7 @@ msgstr "ID do webhook é necessário para atualizações"
#. js-lingui-id: v1kQyJ
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
@@ -17336,6 +17492,11 @@ msgstr "Em que posso ajudar?"
msgid "What this API can do: Select a user role to define its permissions."
msgstr "O que esta API pode fazer: Selecione uma função de usuário para definir suas permissões."
#. js-lingui-id: drC+Tq
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "What's installed and being used in your workspace"
msgstr ""
#. js-lingui-id: m7GziZ
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "When a deal's stage changes to Closed Won, create a task assigned to the deal owner, due 7 days after the close date, with title \"Post-sale check-in\" and the company name in the description."
@@ -17395,6 +17556,11 @@ msgstr "Tipo de Widget"
msgid "widgets"
msgstr ""
#. js-lingui-id: tL6W2K
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Widgets"
msgstr ""
#. js-lingui-id: j6ncOZ
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowEditActionIterator.tsx
msgid "Will continue to the next iteration even if the current one fails"
@@ -17464,6 +17630,7 @@ msgstr "Workflows"
#: src/pages/settings/members/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/layout/components/SettingsLayoutDetailScaffold.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
@@ -17473,7 +17640,6 @@ msgstr "Workflows"
#: src/pages/settings/developers/playground/SettingsGraphQLPlayground.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -17553,8 +17719,8 @@ msgid "Workspace Info"
msgstr "Informações do espaço de trabalho"
#. js-lingui-id: BYrMT0
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Workspace Instructions"
msgstr "Instruções do Espaço de Trabalho"
+247 -81
View File
@@ -954,7 +954,6 @@ msgstr "Activ"
#. js-lingui-id: Mue4oc
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Active API keys created by you or your team."
msgstr "Chei API active create de tine sau echipa ta."
@@ -1051,11 +1050,6 @@ msgstr ""
msgid "Add custom endpoints, private gateways, or additional regions."
msgstr "Adăugați endpointuri personalizate, gateway-uri private sau regiuni suplimentare."
#. js-lingui-id: GuJvBr
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
msgid "Add custom instructions specific to your workspace (appended to system prompt)"
msgstr "Adăugați instrucțiuni personalizate specifice spațiului dvs. de lucru (adăugate la promptul de sistem)"
#. js-lingui-id: 4JviOV
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
@@ -1293,6 +1287,11 @@ msgstr "Adaugă la lista neagră"
msgid "Add to Favorite"
msgstr "Adaugă la favorite"
#. js-lingui-id: VbareD
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Add Twenty as a Model Context Protocol (MCP) server. Paste this config into Claude Desktop, Cursor, Cline, Continue, Zed, or any other MCP-aware client."
msgstr ""
#. js-lingui-id: XnwceV
#: src/pages/settings/applications/components/SettingsApplicationRegistrationRedirectURIsInput.tsx
msgid "Add URI"
@@ -1775,6 +1774,11 @@ msgstr "Toate sarcinile au fost rezolvate. Mențineți ritmul."
msgid "All the applications currently installed on this workspace"
msgstr ""
#. js-lingui-id: xP6s/m
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "All the layout items declared on your workspace"
msgstr ""
#. js-lingui-id: XuuWVF
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
msgid "All the standard objects"
@@ -1967,11 +1971,6 @@ msgstr "A apărut o eroare internă în timpul validării modificărilor. Vă ru
msgid "An object with this name already exists"
msgstr "Un obiect cu acest nume deja există"
#. js-lingui-id: lxentK
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "An unexpected error occurred"
msgstr "A apărut o eroare neașteptată"
#. js-lingui-id: byKna+
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
msgid "An unexpected error occurred. Please try again."
@@ -2016,6 +2015,7 @@ msgid "Anyone with an email address at these domains is allowed to sign up for t
msgstr "Oricine are o adresă de email la aceste domenii este permis să se înscrie pentru acest spațiu de lucru."
#. js-lingui-id: OZtEcz
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "API"
msgstr "API"
@@ -2033,7 +2033,6 @@ msgstr "API & Webhooks"
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "API Key"
msgstr "Cheie API"
@@ -2063,7 +2062,6 @@ msgid "API key roles"
msgstr ""
#. js-lingui-id: 5h8ooz
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
msgid "API keys"
msgstr "Chei API"
@@ -2104,12 +2102,6 @@ msgstr "Numele API (singular)"
msgid "API values"
msgstr "Valori API"
#. js-lingui-id: JR6nY7
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "APIs"
msgstr "API-uri"
#. js-lingui-id: ZZAOwb
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
@@ -2131,7 +2123,7 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
msgid "App"
msgstr ""
@@ -2481,6 +2473,11 @@ msgstr "la {remainingTimes} și {lastTime}"
msgid "at 1 minute past the hour"
msgstr "la ora 1 minut după oră"
#. js-lingui-id: ooA+hm
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "At a glance"
msgstr ""
#. js-lingui-id: vyXyF0
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
msgid "At a specific date or time"
@@ -2645,11 +2642,15 @@ msgid "Availability"
msgstr "Disponibilitate"
#. js-lingui-id: csDS2L
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
msgid "Available"
msgstr "Disponibil"
#. js-lingui-id: STA+22
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Available models"
msgstr ""
#. js-lingui-id: oD38t2
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Available tools"
@@ -2865,6 +2866,11 @@ msgstr "Bronz"
msgid "Brown"
msgstr "Maro"
#. js-lingui-id: O2UpM1
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Browse"
msgstr ""
#. js-lingui-id: GsXRxc
#: src/modules/settings/data-model/indexes/forms/components/SettingsObjectIndexOptionsForm.tsx
msgid "BTREE (default, good for sorting and equality)"
@@ -3615,6 +3621,11 @@ msgstr "Comandă copiată în clipboard"
msgid "Command Icon"
msgstr "Pictogramă Comandă"
#. js-lingui-id: V1zWD4
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Command menu"
msgstr ""
#. js-lingui-id: PUMdxH
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
msgid "Command Menu"
@@ -3642,6 +3653,11 @@ msgstr ""
msgid "commands"
msgstr ""
#. js-lingui-id: 45MZFs
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Commands"
msgstr ""
#. js-lingui-id: 4XlFx/
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Commands copied to clipboard"
@@ -3808,11 +3824,6 @@ msgstr "Configurați aceste înregistrări DNS cu furnizorul dvs. de domeniu"
msgid "Configure this widget to display fields"
msgstr "Configurați acest widget pentru a afișa câmpuri"
#. js-lingui-id: hzDiM0
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Configure your default AI model"
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -3886,6 +3897,11 @@ msgstr ""
msgid "Connect a new account to your workspace"
msgstr "Conectați un cont nou la spațiul dumneavoastră de lucru"
#. js-lingui-id: vPCRNy
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Connect AI assistants like Claude or Cursor to your workspace via the Model Context Protocol"
msgstr ""
#. js-lingui-id: YLx3sC
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect via IMAP/SMTP"
@@ -3901,6 +3917,11 @@ msgstr "Conectați-vă cu Google"
msgid "Connect with Microsoft"
msgstr "Conectați-vă cu Microsoft"
#. js-lingui-id: iZWbGJ
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Connect your AI assistant"
msgstr ""
#. js-lingui-id: QHcLEN
#: src/pages/settings/applications/SettingsApplicationConnectionDetail.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationConnectionsSection.tsx
@@ -4066,6 +4087,11 @@ msgstr "Controlează tipurile de entități cărora acest rol poate fi atribuit"
msgid "Conversation"
msgstr "Conversație"
#. js-lingui-id: EnJuK0
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Conversations"
msgstr ""
#. js-lingui-id: HRGl1X
#: src/pages/onboarding/CreateProfile.tsx
#: src/modules/settings/profile/components/NameFields.tsx
@@ -4104,6 +4130,11 @@ msgstr "Copiază comanda"
msgid "Copy commands"
msgstr "Copiază comenzile"
#. js-lingui-id: eaZgIQ
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Copy config"
msgstr ""
#. js-lingui-id: 7eVkEH
#: src/pages/onboarding/InviteTeam.tsx
msgid "Copy invitation link"
@@ -4216,6 +4247,11 @@ msgstr "Nu s-a putut deschide portalul de facturare. Verificați dacă cheia dvs
msgid "Could not open Stripe. Please contact support."
msgstr "Nu s-a putut deschide Stripe. Contactați asistența."
#. js-lingui-id: 6wi9Nf
#: src/modules/settings/playground/hooks/useOpenPlayground.ts
msgid "Could not open the API playground"
msgstr ""
#. js-lingui-id: wVw4Am
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not refresh validity token. Please contact support."
@@ -4340,7 +4376,6 @@ msgstr "Creează și configurează agenți AI"
#. js-lingui-id: uXGLuq
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Create API key"
msgstr "Creează cheie API"
@@ -4625,7 +4660,7 @@ msgstr "Membru curent al spațiului de lucru nu a fost găsit."
#. js-lingui-id: 8Tg/JR
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/applications/hooks/useApplicationChipData.ts
@@ -4650,6 +4685,11 @@ msgstr "Domeniu Personalizat"
msgid "Custom domain updated"
msgstr "Domeniu personalizat actualizat"
#. js-lingui-id: c6P+Xe
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Custom instructions appended to every system prompt"
msgstr ""
#. js-lingui-id: 87ZNeX
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
msgid "Custom model ID"
@@ -4692,6 +4732,7 @@ msgid "Customization"
msgstr "Personalizare"
#. js-lingui-id: srRMnJ
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectLayout.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
@@ -4788,6 +4829,11 @@ msgstr "Întunecat"
msgid "Dashboard duplicated successfully"
msgstr "Tabloul de bord a fost duplicat cu succes"
#. js-lingui-id: w6iIMm
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Dashboards"
msgstr ""
#. js-lingui-id: HKH+W+
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
@@ -4988,7 +5034,7 @@ msgstr "Dezactivează acest câmp"
#. js-lingui-id: yAT3be
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
@@ -5015,7 +5061,6 @@ msgstr ""
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
msgid "Default"
@@ -5031,6 +5076,11 @@ msgstr "Țară implicită"
msgid "Default Country Code"
msgstr "Codul de țară implicit"
#. js-lingui-id: OtTlfU
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Default model"
msgstr ""
#. js-lingui-id: hUWaAk
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
msgid "Default model for chats and complex reasoning"
@@ -5473,6 +5523,11 @@ msgstr "Detalii"
msgid "Detected application version running on this instance"
msgstr ""
#. js-lingui-id: QYXe1O
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Develop"
msgstr ""
#. js-lingui-id: 7aDnUb
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Developer"
@@ -5564,7 +5619,6 @@ msgstr "Nu importa"
#. js-lingui-id: TvY/XA
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
msgid "Documentation"
@@ -5768,7 +5822,7 @@ msgid "e.g. OpenAI EU"
msgstr "de ex. OpenAI EU"
#. js-lingui-id: p5P8NB
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
msgstr "De ex., \"Suntem o companie B2B SaaS. Folosiți întotdeauna un limbaj formal...\""
@@ -6114,6 +6168,8 @@ msgstr "Angajați"
#. js-lingui-id: N2S1rs
#: src/modules/object-record/record-inline-cell/components/RecordInlineCellDisplayMode.tsx
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRelationFieldDiffValues.tsx
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRelationFieldDiffValues.tsx
#: src/modules/activities/timeline-activities/rows/main-object/components/EventFieldDiff.tsx
msgid "Empty"
msgstr "Gol"
@@ -6428,11 +6484,6 @@ msgstr "Introduceți valoarea"
msgid "Enter values, comma-separated"
msgstr "Introdu valorile, separate prin virgule"
#. js-lingui-id: OjkRLQ
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "Enter your API key"
msgstr "Introduceți cheia dvs. API"
#. js-lingui-id: GpB8YV
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -6988,7 +7039,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
msgstr "Nu s-a putut activa licența Enterprise. Verificați cheia sau contactați asistența."
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Failed to activate skill"
msgstr "Activarea abilității a eșuat"
@@ -7007,11 +7058,6 @@ msgstr "Eroare la adăugarea furnizorului"
msgid "Failed to create email handle. Email handles may not be configured on this server."
msgstr ""
#. js-lingui-id: WM7GKt
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Failed to create tool"
msgstr "Crearea instrumentului a eșuat"
#. js-lingui-id: lWoewm
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Failed to delete email handle."
@@ -7023,7 +7069,7 @@ msgid "Failed to delete jobs. Please try again later."
msgstr "Eșuat la ștergerea locurilor de muncă. Încercați din nou mai târziu."
#. js-lingui-id: bmwWKk
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Failed to delete skill"
msgstr "Ștergerea abilității a eșuat"
@@ -7126,7 +7172,7 @@ msgid "Failed to save role permissions: {errorMessage}"
msgstr ""
#. js-lingui-id: 9ryUyP
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Failed to save workspace instructions"
msgstr "Nu s-au putut salva instrucțiunile spațiului de lucru"
@@ -7152,13 +7198,13 @@ msgid "Failed to update default model"
msgstr "Eroare la actualizarea modelului implicit"
#. js-lingui-id: 1R13Ov
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
msgid "Failed to update model"
msgstr "Eroare la actualizarea modelului"
#. js-lingui-id: W7Ff/4
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Failed to update model availability"
@@ -7175,7 +7221,7 @@ msgid "Failed to update model recommendations"
msgstr ""
#. js-lingui-id: rCUG3c
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
msgid "Failed to update model selection mode"
msgstr "Eroare la actualizarea modului de selecție a modelului"
@@ -7334,6 +7380,7 @@ msgstr "câmpuri"
#. js-lingui-id: vF68cg
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
#: src/pages/settings/data-model/new-index/SettingsObjectNewIndex.tsx
@@ -7868,6 +7915,7 @@ msgid "Grants permission to perform all available actions without restriction"
msgstr "Acordă permisiunea de a efectua toate acțiunile disponibile fără nicio restricție"
#. js-lingui-id: gBiL6J
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "GraphQL"
msgstr "GraphQL"
@@ -8550,6 +8598,7 @@ msgid "Insert a JSON input, then press \"Run Function\"."
msgstr ""
#. js-lingui-id: TKQ7K+
#: src/pages/settings/applications/SettingsApplications.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationRegistrationShareLinkButtons.tsx
msgid "Install"
@@ -8630,11 +8679,6 @@ msgstr "Schimbarea intervalului a fost anulată."
msgid "Invalid 2FA information."
msgstr "Informații 2FA invalide."
#. js-lingui-id: GNRDhm
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "Invalid API key"
msgstr "Cheie API nevalidă"
#. js-lingui-id: 9TgH9p
#: src/modules/settings/security/components/SettingsSecurityAuthBypassOptionsList.tsx
msgid "Invalid auth bypass provider"
@@ -8754,6 +8798,7 @@ msgstr "Invitații"
#. js-lingui-id: MFKlMB
#: src/utils/title-utils.ts
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/modules/workspace/components/WorkspaceInviteTeam.tsx
msgid "Invite"
msgstr "Invită"
@@ -9232,12 +9277,15 @@ msgid "Launch manually"
msgstr "Lansează manual"
#. js-lingui-id: rdU729
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -9693,6 +9741,11 @@ msgstr ""
msgid "Manage Members"
msgstr "Gestionează Membrii"
#. js-lingui-id: LNz5UW
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Manage objects, fields and relationships"
msgstr ""
#. js-lingui-id: eGGH1l
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Manage security policies"
@@ -9729,7 +9782,7 @@ msgid "Manage your internet accounts."
msgstr "Gestionează-ți conturile de internet."
#. js-lingui-id: waFx9W
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Managed"
msgstr ""
@@ -9807,12 +9860,23 @@ msgstr "URL-urile maxime"
msgid "Maximum values"
msgstr "Valorile maxime"
#. js-lingui-id: nA8kxD
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
msgid "MCP"
msgstr ""
#. js-lingui-id: 2jj0eo
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "MCP config copied to clipboard"
msgstr ""
#. js-lingui-id: NvQoNb
#: src/pages/settings/ai/components/SettingsAiMCP.tsx
msgid "MCP Configuration copied to clipboard"
msgstr "Configurarea MCP copiată în clipboard"
#. js-lingui-id: 8CWirf
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiMCP.tsx
msgid "MCP Server"
msgstr "Server MCP"
@@ -10019,6 +10083,7 @@ msgstr "ID-ul modelului este necesar"
#. js-lingui-id: //nm2/
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Models"
msgstr "Modele"
@@ -10086,7 +10151,6 @@ msgid "months"
msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
msgid "More"
msgstr "Mai mult"
@@ -10235,8 +10299,8 @@ msgstr ""
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTable.tsx
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
@@ -11417,6 +11481,7 @@ msgstr "obiecte"
#. js-lingui-id: B3toQF
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
@@ -11805,7 +11870,9 @@ msgid "Override Draft"
msgstr "Suprascrie Schița"
#. js-lingui-id: 6/dCYd
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Overview"
msgstr "Prezentare generală"
@@ -11879,6 +11946,11 @@ msgstr "Pagina nu a fost găsită | Twenty"
msgid "Page Views"
msgstr "Afișări de pagină"
#. js-lingui-id: wRR604
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Pages"
msgstr ""
#. js-lingui-id: ijBN4V
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "paragraph"
@@ -12592,18 +12664,18 @@ msgid "Read documentation"
msgstr "Citește documentația"
#. js-lingui-id: U26cMX
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read system prompts"
msgstr ""
#. js-lingui-id: EKsFda
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read the system prompts to understand how the AI works"
msgstr ""
#. js-lingui-id: 0URVx8
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1, }, )
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1 }, )
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read the system prompts to understand how the AI works (~{0} tokens)"
msgstr ""
@@ -12732,6 +12804,11 @@ msgstr "Imagine înregistrare"
msgid "Record label"
msgstr "Etichetă înregistrare"
#. js-lingui-id: XueM/X
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Record page"
msgstr ""
#. js-lingui-id: mAHjRd
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutOpenInContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -12850,6 +12927,7 @@ msgid "Relation type"
msgstr "Tip relație"
#. js-lingui-id: g87L9j
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
#: src/modules/activities/inline-cell/components/ActivityTargetsInlineCell.tsx
msgid "Relations"
@@ -13162,6 +13240,7 @@ msgid "Response Format"
msgstr ""
#. js-lingui-id: WHiaOl
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/playground/SettingsRestPlayground.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "REST"
@@ -13332,6 +13411,7 @@ msgstr ""
#. js-lingui-id: 5dJK4M
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
@@ -13551,7 +13631,7 @@ msgid "Search a role..."
msgstr "Căutați un rol..."
#. js-lingui-id: lJNEce
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Search a skill..."
msgstr "Căutați o abilitate..."
@@ -13567,7 +13647,7 @@ msgid "Search a team member..."
msgstr "Caută un membru al echipei..."
#. js-lingui-id: VNmPqQ
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Search a tool..."
msgstr ""
@@ -13883,6 +13963,11 @@ msgstr ""
msgid "See Records on All Objects"
msgstr "Vezi înregistrări pentru toate obiectele"
#. js-lingui-id: eQ3co2
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "See your data structure as an interactive diagram"
msgstr ""
#. js-lingui-id: Hhnssf
#: src/pages/settings/applications/components/SettingsApplicationTableRow.tsx
msgid "Seeded"
@@ -14227,6 +14312,11 @@ msgstr "Configurați un câmp de tip Select pe {objectLabel} pentru a crea un Ka
msgid "Set up forwarding from the source address to this destination."
msgstr ""
#. js-lingui-id: dq5Wx1
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Set up MCP"
msgstr ""
#. js-lingui-id: 9HNKkV
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
msgid "Set your application configuration variables"
@@ -14387,6 +14477,16 @@ msgstr ""
msgid "Side Panel"
msgstr "Panou lateral"
#. js-lingui-id: uWi2Q+
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Sidebar"
msgstr ""
#. js-lingui-id: 9k9PMD
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Sidebar items"
msgstr ""
#. js-lingui-id: 5lWFkC
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
msgid "Sign in"
@@ -14471,12 +14571,12 @@ msgid "Skill"
msgstr "Abilitate"
#. js-lingui-id: h4t38o
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skill activated"
msgstr "Abilitate activată"
#. js-lingui-id: /IoK74
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skill deleted"
msgstr "Abilitate ștearsă"
@@ -14499,7 +14599,9 @@ msgstr ""
#. js-lingui-id: PCSkw2
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skills"
msgstr "Abilități"
@@ -14724,7 +14826,7 @@ msgid "Stages"
msgstr "Etape"
#. js-lingui-id: TJBHlP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/applications/hooks/useApplicationChipData.ts
msgid "Standard"
@@ -15137,8 +15239,8 @@ msgstr ""
#: src/pages/settings/ai/SettingsAiPrompts.tsx
#: src/pages/settings/ai/SettingsAiPrompts.tsx
#: src/pages/settings/ai/forms/components/SettingsAiAgentForm.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
msgid "System Prompt"
msgstr "Prompt de Sistem"
@@ -15220,6 +15322,7 @@ msgstr "Titlul sarcinii"
#. js-lingui-id: KM6m8p
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Team"
msgstr ""
@@ -15338,6 +15441,11 @@ msgid ""
"See the [Getting Started guide](https://twenty.com/developers/extend/apps/getting-started) for the full walkthrough, and [Building Apps](https://twenty.com/developers/extend/apps/building) for the `defineApplication` / `defineEntity` APIs."
msgstr ""
#. js-lingui-id: n+CCXl
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "The default AI model used for chats, agents, and workflows"
msgstr ""
#. js-lingui-id: 1xQkU9
#: src/modules/settings/data-model/fields/forms/phones/components/SettingsDataModelFieldPhonesForm.tsx
msgid "The default country code for new phone numbers."
@@ -15900,7 +16008,7 @@ msgid "Tool calls made"
msgstr "Apeluri de instrumente efectuate"
#. js-lingui-id: SrWh42
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/hooks/useCreateTool.ts
msgid "Tool created"
msgstr "Instrument creat"
@@ -15921,7 +16029,9 @@ msgstr "Generarea instrumentului"
#. js-lingui-id: xdA/+p
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Tools"
msgstr "Instrumente"
@@ -16067,11 +16177,10 @@ msgstr ""
msgid "True"
msgstr "Adevărat"
#. js-lingui-id: haaL9N
#. js-lingui-id: 64tOpZ
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Try our REST or GraphQL API playgrounds."
msgstr "Încercați terenurile noastre de joc REST sau GraphQL API."
msgid "Try our REST or GraphQL API playgrounds"
msgstr ""
#. js-lingui-id: 3WWUB9
#: src/pages/settings/updates/SettingsUpdates.tsx
@@ -16738,9 +16847,13 @@ msgstr "Folosește aplicații de autentificare și extensii de browser precum 1P
msgid "Use best models only"
msgstr "Folosește doar cele mai bune modele"
#. js-lingui-id: 5ZehS/
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Use filter to see existing skills or create your own"
msgstr ""
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
@@ -17102,7 +17215,9 @@ msgstr "Vizualizați jurnalele de activitate ale spațiului de lucru"
#. js-lingui-id: 1I6UoR
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr "Vizualizări"
@@ -17155,10 +17270,15 @@ msgid "Visible to you"
msgstr "Vizibil pentru dumneavoastră"
#. js-lingui-id: 6n7jtr
#: src/modules/settings/data-model/objects/components/SettingsObjectCoverImage.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Visualize"
msgstr "Vizualizează"
#. js-lingui-id: VvM/Ty
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Visualize data model"
msgstr ""
#. js-lingui-id: uUehLT
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Waiting"
@@ -17194,6 +17314,41 @@ msgstr "a fost șters de"
msgid "was restored by"
msgstr "a fost restaurat de"
#. js-lingui-id: 0WPnTI
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Watch AI demo"
msgstr ""
#. js-lingui-id: 5qU4Mu
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
msgid "Watch API demo"
msgstr ""
#. js-lingui-id: inpQ46
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Watch apps demo"
msgstr ""
#. js-lingui-id: uIrZTC
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Watch customization demo"
msgstr ""
#. js-lingui-id: syeoTg
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Watch data model demo"
msgstr ""
#. js-lingui-id: egkNh9
#: src/modules/settings/components/SettingsDiscoveryHeroCard.tsx
msgid "Watch demo"
msgstr ""
#. js-lingui-id: 6ZDYQy
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Watch members demo"
msgstr ""
#. js-lingui-id: 6eMAkI
#: src/modules/auth/sign-in-up/components/EmailVerificationSent.tsx
msgid "We encountered an issue verifying"
@@ -17281,6 +17436,7 @@ msgstr "ID-ul Webhook este necesar pentru actualizări"
#. js-lingui-id: v1kQyJ
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
@@ -17336,6 +17492,11 @@ msgstr "Cu ce vă pot ajuta?"
msgid "What this API can do: Select a user role to define its permissions."
msgstr "Ce poate face acest API: Selectați un rol de utilizator pentru a defini permisiunile sale."
#. js-lingui-id: drC+Tq
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "What's installed and being used in your workspace"
msgstr ""
#. js-lingui-id: m7GziZ
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "When a deal's stage changes to Closed Won, create a task assigned to the deal owner, due 7 days after the close date, with title \"Post-sale check-in\" and the company name in the description."
@@ -17395,6 +17556,11 @@ msgstr "Tip widget"
msgid "widgets"
msgstr ""
#. js-lingui-id: tL6W2K
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Widgets"
msgstr ""
#. js-lingui-id: j6ncOZ
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowEditActionIterator.tsx
msgid "Will continue to the next iteration even if the current one fails"
@@ -17464,6 +17630,7 @@ msgstr "Fluxuri de lucru"
#: src/pages/settings/members/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/layout/components/SettingsLayoutDetailScaffold.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
@@ -17473,7 +17640,6 @@ msgstr "Fluxuri de lucru"
#: src/pages/settings/developers/playground/SettingsGraphQLPlayground.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -17553,8 +17719,8 @@ msgid "Workspace Info"
msgstr "Informații despre spațiul de lucru"
#. js-lingui-id: BYrMT0
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Workspace Instructions"
msgstr "Instrucțiuni pentru spațiul de lucru"
Binary file not shown.
+247 -81
View File
@@ -954,7 +954,6 @@ msgstr "Активни"
#. js-lingui-id: Mue4oc
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Active API keys created by you or your team."
msgstr "Активни API кључеви које сте креирали ви или ваш тим."
@@ -1051,11 +1050,6 @@ msgstr ""
msgid "Add custom endpoints, private gateways, or additional regions."
msgstr "Додајте прилагођене крајње тачке, приватне гејтвеје или додатне регионе."
#. js-lingui-id: GuJvBr
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
msgid "Add custom instructions specific to your workspace (appended to system prompt)"
msgstr "Додајте прилагођена упутства специфична за ваш радни простор (биће придодата системском промпту)"
#. js-lingui-id: 4JviOV
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
@@ -1293,6 +1287,11 @@ msgstr "Додајте на црну листу"
msgid "Add to Favorite"
msgstr "Додајте у омиљене"
#. js-lingui-id: VbareD
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Add Twenty as a Model Context Protocol (MCP) server. Paste this config into Claude Desktop, Cursor, Cline, Continue, Zed, or any other MCP-aware client."
msgstr ""
#. js-lingui-id: XnwceV
#: src/pages/settings/applications/components/SettingsApplicationRegistrationRedirectURIsInput.tsx
msgid "Add URI"
@@ -1775,6 +1774,11 @@ msgstr "Сви задаци су решени. Одржите замах."
msgid "All the applications currently installed on this workspace"
msgstr ""
#. js-lingui-id: xP6s/m
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "All the layout items declared on your workspace"
msgstr ""
#. js-lingui-id: XuuWVF
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
msgid "All the standard objects"
@@ -1967,11 +1971,6 @@ msgstr "Дошло је до унутрашње грешке приликом в
msgid "An object with this name already exists"
msgstr "Објекат са овим називом већ постоји"
#. js-lingui-id: lxentK
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "An unexpected error occurred"
msgstr "Дошло је до неочекиване грешке"
#. js-lingui-id: byKna+
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
msgid "An unexpected error occurred. Please try again."
@@ -2016,6 +2015,7 @@ msgid "Anyone with an email address at these domains is allowed to sign up for t
msgstr "Свако са имејл адресом на овим доменима може се пријавити за овај радни простор."
#. js-lingui-id: OZtEcz
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "API"
msgstr "АПИ"
@@ -2033,7 +2033,6 @@ msgstr "API и Вебхукси"
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "API Key"
msgstr "API кључ"
@@ -2063,7 +2062,6 @@ msgid "API key roles"
msgstr ""
#. js-lingui-id: 5h8ooz
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
msgid "API keys"
msgstr "API кључеви"
@@ -2104,12 +2102,6 @@ msgstr "Назив API-а (једнина)"
msgid "API values"
msgstr "АПИ вредности"
#. js-lingui-id: JR6nY7
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "APIs"
msgstr "АПИ-и"
#. js-lingui-id: ZZAOwb
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
@@ -2131,7 +2123,7 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
msgid "App"
msgstr "Апликација"
@@ -2481,6 +2473,11 @@ msgstr "у {remainingTimes} и {lastTime}"
msgid "at 1 minute past the hour"
msgstr "у 1 минута после сата"
#. js-lingui-id: ooA+hm
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "At a glance"
msgstr ""
#. js-lingui-id: vyXyF0
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
msgid "At a specific date or time"
@@ -2645,11 +2642,15 @@ msgid "Availability"
msgstr "Доступност"
#. js-lingui-id: csDS2L
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
msgid "Available"
msgstr "Доступно"
#. js-lingui-id: STA+22
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Available models"
msgstr ""
#. js-lingui-id: oD38t2
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Available tools"
@@ -2865,6 +2866,11 @@ msgstr "Бронзана"
msgid "Brown"
msgstr "Браон"
#. js-lingui-id: O2UpM1
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Browse"
msgstr ""
#. js-lingui-id: GsXRxc
#: src/modules/settings/data-model/indexes/forms/components/SettingsObjectIndexOptionsForm.tsx
msgid "BTREE (default, good for sorting and equality)"
@@ -3615,6 +3621,11 @@ msgstr "Команда копирана у клипборд"
msgid "Command Icon"
msgstr "Икона команде"
#. js-lingui-id: V1zWD4
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Command menu"
msgstr ""
#. js-lingui-id: PUMdxH
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
msgid "Command Menu"
@@ -3642,6 +3653,11 @@ msgstr ""
msgid "commands"
msgstr ""
#. js-lingui-id: 45MZFs
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Commands"
msgstr ""
#. js-lingui-id: 4XlFx/
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Commands copied to clipboard"
@@ -3808,11 +3824,6 @@ msgstr "Конфигуришите ове DNS записе код вашег п
msgid "Configure this widget to display fields"
msgstr "Подесите овај виџет за приказ поља"
#. js-lingui-id: hzDiM0
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Configure your default AI model"
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -3886,6 +3897,11 @@ msgstr ""
msgid "Connect a new account to your workspace"
msgstr "Повежите нови налог са својим простором за рад"
#. js-lingui-id: vPCRNy
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Connect AI assistants like Claude or Cursor to your workspace via the Model Context Protocol"
msgstr ""
#. js-lingui-id: YLx3sC
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect via IMAP/SMTP"
@@ -3901,6 +3917,11 @@ msgstr "Повежите се са Google"
msgid "Connect with Microsoft"
msgstr "Повежите се са Microsoft"
#. js-lingui-id: iZWbGJ
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Connect your AI assistant"
msgstr ""
#. js-lingui-id: QHcLEN
#: src/pages/settings/applications/SettingsApplicationConnectionDetail.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationConnectionsSection.tsx
@@ -4066,6 +4087,11 @@ msgstr "Контролишете које врсте ентитета могу
msgid "Conversation"
msgstr "Разговор"
#. js-lingui-id: EnJuK0
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Conversations"
msgstr ""
#. js-lingui-id: HRGl1X
#: src/pages/onboarding/CreateProfile.tsx
#: src/modules/settings/profile/components/NameFields.tsx
@@ -4104,6 +4130,11 @@ msgstr "Копирај команду"
msgid "Copy commands"
msgstr "Копирај команде"
#. js-lingui-id: eaZgIQ
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Copy config"
msgstr ""
#. js-lingui-id: 7eVkEH
#: src/pages/onboarding/InviteTeam.tsx
msgid "Copy invitation link"
@@ -4216,6 +4247,11 @@ msgstr "Није могуће отворити портал за наплату.
msgid "Could not open Stripe. Please contact support."
msgstr "Није могуће отворити Stripe. Контактирајте подршку."
#. js-lingui-id: 6wi9Nf
#: src/modules/settings/playground/hooks/useOpenPlayground.ts
msgid "Could not open the API playground"
msgstr ""
#. js-lingui-id: wVw4Am
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not refresh validity token. Please contact support."
@@ -4340,7 +4376,6 @@ msgstr "Направите и конфигуришите AI агенте"
#. js-lingui-id: uXGLuq
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Create API key"
msgstr "Креирај API кључ"
@@ -4625,7 +4660,7 @@ msgstr "Тренутни члан радног простора није про
#. js-lingui-id: 8Tg/JR
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/applications/hooks/useApplicationChipData.ts
@@ -4650,6 +4685,11 @@ msgstr "Кориснички домен"
msgid "Custom domain updated"
msgstr "Прилагођени домен ажуриран"
#. js-lingui-id: c6P+Xe
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Custom instructions appended to every system prompt"
msgstr ""
#. js-lingui-id: 87ZNeX
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
msgid "Custom model ID"
@@ -4692,6 +4732,7 @@ msgid "Customization"
msgstr "Прилагођавање"
#. js-lingui-id: srRMnJ
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectLayout.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
@@ -4788,6 +4829,11 @@ msgstr "Тамни"
msgid "Dashboard duplicated successfully"
msgstr "Контролна табла је успешно дуплирана"
#. js-lingui-id: w6iIMm
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Dashboards"
msgstr ""
#. js-lingui-id: HKH+W+
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
@@ -4988,7 +5034,7 @@ msgstr "Деактивирај ово поље"
#. js-lingui-id: yAT3be
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
@@ -5015,7 +5061,6 @@ msgstr ""
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
msgid "Default"
@@ -5031,6 +5076,11 @@ msgstr "Подразумевана земља"
msgid "Default Country Code"
msgstr "Подразумевани код земље"
#. js-lingui-id: OtTlfU
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Default model"
msgstr ""
#. js-lingui-id: hUWaAk
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
msgid "Default model for chats and complex reasoning"
@@ -5473,6 +5523,11 @@ msgstr "Детаљи"
msgid "Detected application version running on this instance"
msgstr ""
#. js-lingui-id: QYXe1O
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Develop"
msgstr ""
#. js-lingui-id: 7aDnUb
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Developer"
@@ -5564,7 +5619,6 @@ msgstr "Не увози"
#. js-lingui-id: TvY/XA
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
msgid "Documentation"
@@ -5768,7 +5822,7 @@ msgid "e.g. OpenAI EU"
msgstr "нпр. OpenAI EU"
#. js-lingui-id: p5P8NB
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
msgstr "На пример, \"Ми смо B2B SaaS компанија. Увек користите формалан језик...\""
@@ -6114,6 +6168,8 @@ msgstr "Запослени"
#. js-lingui-id: N2S1rs
#: src/modules/object-record/record-inline-cell/components/RecordInlineCellDisplayMode.tsx
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRelationFieldDiffValues.tsx
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRelationFieldDiffValues.tsx
#: src/modules/activities/timeline-activities/rows/main-object/components/EventFieldDiff.tsx
msgid "Empty"
msgstr "Празно"
@@ -6428,11 +6484,6 @@ msgstr "Унесите вредност"
msgid "Enter values, comma-separated"
msgstr ""
#. js-lingui-id: OjkRLQ
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "Enter your API key"
msgstr "Унесите свој API кључ"
#. js-lingui-id: GpB8YV
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -6988,7 +7039,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
msgstr "Неуспело активирање Enterprise лиценце. Проверите свој кључ или контактирајте подршку."
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Failed to activate skill"
msgstr "Није успело активирање вештине"
@@ -7007,11 +7058,6 @@ msgstr "Није успело додавање провајдера"
msgid "Failed to create email handle. Email handles may not be configured on this server."
msgstr ""
#. js-lingui-id: WM7GKt
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Failed to create tool"
msgstr "Није успело креирање алата"
#. js-lingui-id: lWoewm
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Failed to delete email handle."
@@ -7023,7 +7069,7 @@ msgid "Failed to delete jobs. Please try again later."
msgstr "Није успело брисање послова. Покушајте поново касније."
#. js-lingui-id: bmwWKk
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Failed to delete skill"
msgstr "Није успело брисање вештине"
@@ -7126,7 +7172,7 @@ msgid "Failed to save role permissions: {errorMessage}"
msgstr ""
#. js-lingui-id: 9ryUyP
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Failed to save workspace instructions"
msgstr "Није успело чување упутстава за радни простор"
@@ -7152,13 +7198,13 @@ msgid "Failed to update default model"
msgstr "Није успело ажурирање подразумеваног модела"
#. js-lingui-id: 1R13Ov
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
msgid "Failed to update model"
msgstr "Није успело ажурирање модела"
#. js-lingui-id: W7Ff/4
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Failed to update model availability"
@@ -7175,7 +7221,7 @@ msgid "Failed to update model recommendations"
msgstr ""
#. js-lingui-id: rCUG3c
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
msgid "Failed to update model selection mode"
msgstr "Није успело ажурирање режима избора модела"
@@ -7334,6 +7380,7 @@ msgstr "поља"
#. js-lingui-id: vF68cg
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
#: src/pages/settings/data-model/new-index/SettingsObjectNewIndex.tsx
@@ -7868,6 +7915,7 @@ msgid "Grants permission to perform all available actions without restriction"
msgstr "Дозвољава извршавање свих доступних радњи без ограничења"
#. js-lingui-id: gBiL6J
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "GraphQL"
msgstr "ГрафКуЕл"
@@ -8550,6 +8598,7 @@ msgid "Insert a JSON input, then press \"Run Function\"."
msgstr ""
#. js-lingui-id: TKQ7K+
#: src/pages/settings/applications/SettingsApplications.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationRegistrationShareLinkButtons.tsx
msgid "Install"
@@ -8630,11 +8679,6 @@ msgstr "Промена интервала је отказана."
msgid "Invalid 2FA information."
msgstr "Неправилна 2FA информација."
#. js-lingui-id: GNRDhm
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "Invalid API key"
msgstr "Неважећи API кључ"
#. js-lingui-id: 9TgH9p
#: src/modules/settings/security/components/SettingsSecurityAuthBypassOptionsList.tsx
msgid "Invalid auth bypass provider"
@@ -8754,6 +8798,7 @@ msgstr "Позивнице"
#. js-lingui-id: MFKlMB
#: src/utils/title-utils.ts
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/modules/workspace/components/WorkspaceInviteTeam.tsx
msgid "Invite"
msgstr "Позови"
@@ -9232,12 +9277,15 @@ msgid "Launch manually"
msgstr "Покрени ручно"
#. js-lingui-id: rdU729
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -9693,6 +9741,11 @@ msgstr ""
msgid "Manage Members"
msgstr "Управљање члановима"
#. js-lingui-id: LNz5UW
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Manage objects, fields and relationships"
msgstr ""
#. js-lingui-id: eGGH1l
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Manage security policies"
@@ -9729,7 +9782,7 @@ msgid "Manage your internet accounts."
msgstr "Управљање вашим интернетским налозима."
#. js-lingui-id: waFx9W
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Managed"
msgstr ""
@@ -9807,12 +9860,23 @@ msgstr "Максималан број URL-ова"
msgid "Maximum values"
msgstr "Максималне вредности"
#. js-lingui-id: nA8kxD
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
msgid "MCP"
msgstr ""
#. js-lingui-id: 2jj0eo
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "MCP config copied to clipboard"
msgstr ""
#. js-lingui-id: NvQoNb
#: src/pages/settings/ai/components/SettingsAiMCP.tsx
msgid "MCP Configuration copied to clipboard"
msgstr "MCP Конфигурација је копирана у клипборд"
#. js-lingui-id: 8CWirf
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiMCP.tsx
msgid "MCP Server"
msgstr "MCP сервер"
@@ -10019,6 +10083,7 @@ msgstr "ID модела је обавезан"
#. js-lingui-id: //nm2/
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Models"
msgstr "Модели"
@@ -10086,7 +10151,6 @@ msgid "months"
msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
msgid "More"
msgstr "Још"
@@ -10235,8 +10299,8 @@ msgstr ""
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTable.tsx
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
@@ -11417,6 +11481,7 @@ msgstr "објекти"
#. js-lingui-id: B3toQF
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
@@ -11805,7 +11870,9 @@ msgid "Override Draft"
msgstr "Замени нацрт"
#. js-lingui-id: 6/dCYd
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Overview"
msgstr "Преглед"
@@ -11879,6 +11946,11 @@ msgstr "Страница није пронађена | Twenty"
msgid "Page Views"
msgstr "Прегледи страница"
#. js-lingui-id: wRR604
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Pages"
msgstr ""
#. js-lingui-id: ijBN4V
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "paragraph"
@@ -12592,18 +12664,18 @@ msgid "Read documentation"
msgstr "Прочитајте документацију"
#. js-lingui-id: U26cMX
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read system prompts"
msgstr ""
#. js-lingui-id: EKsFda
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read the system prompts to understand how the AI works"
msgstr ""
#. js-lingui-id: 0URVx8
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1, }, )
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1 }, )
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read the system prompts to understand how the AI works (~{0} tokens)"
msgstr ""
@@ -12732,6 +12804,11 @@ msgstr "Сними слику"
msgid "Record label"
msgstr "Сними етикету"
#. js-lingui-id: XueM/X
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Record page"
msgstr ""
#. js-lingui-id: mAHjRd
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutOpenInContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -12850,6 +12927,7 @@ msgid "Relation type"
msgstr "Тип релације"
#. js-lingui-id: g87L9j
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
#: src/modules/activities/inline-cell/components/ActivityTargetsInlineCell.tsx
msgid "Relations"
@@ -13162,6 +13240,7 @@ msgid "Response Format"
msgstr ""
#. js-lingui-id: WHiaOl
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/playground/SettingsRestPlayground.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "REST"
@@ -13332,6 +13411,7 @@ msgstr ""
#. js-lingui-id: 5dJK4M
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
@@ -13551,7 +13631,7 @@ msgid "Search a role..."
msgstr "Претражите улогу..."
#. js-lingui-id: lJNEce
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Search a skill..."
msgstr "Претражите вештину..."
@@ -13567,7 +13647,7 @@ msgid "Search a team member..."
msgstr "Претражите члана тима..."
#. js-lingui-id: VNmPqQ
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Search a tool..."
msgstr ""
@@ -13883,6 +13963,11 @@ msgstr ""
msgid "See Records on All Objects"
msgstr "Погледај записе на свим објектима"
#. js-lingui-id: eQ3co2
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "See your data structure as an interactive diagram"
msgstr ""
#. js-lingui-id: Hhnssf
#: src/pages/settings/applications/components/SettingsApplicationTableRow.tsx
msgid "Seeded"
@@ -14227,6 +14312,11 @@ msgstr "Подесите поље Избор на {objectLabel} да бисте
msgid "Set up forwarding from the source address to this destination."
msgstr ""
#. js-lingui-id: dq5Wx1
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Set up MCP"
msgstr ""
#. js-lingui-id: 9HNKkV
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
msgid "Set your application configuration variables"
@@ -14387,6 +14477,16 @@ msgstr ""
msgid "Side Panel"
msgstr "Странични панел"
#. js-lingui-id: uWi2Q+
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Sidebar"
msgstr ""
#. js-lingui-id: 9k9PMD
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Sidebar items"
msgstr ""
#. js-lingui-id: 5lWFkC
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
msgid "Sign in"
@@ -14471,12 +14571,12 @@ msgid "Skill"
msgstr "Вештина"
#. js-lingui-id: h4t38o
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skill activated"
msgstr "Вештина је активирана"
#. js-lingui-id: /IoK74
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skill deleted"
msgstr "Вештина је обрисана"
@@ -14499,7 +14599,9 @@ msgstr ""
#. js-lingui-id: PCSkw2
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skills"
msgstr "Вештине"
@@ -14724,7 +14826,7 @@ msgid "Stages"
msgstr "Фазе"
#. js-lingui-id: TJBHlP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/applications/hooks/useApplicationChipData.ts
msgid "Standard"
@@ -15137,8 +15239,8 @@ msgstr ""
#: src/pages/settings/ai/SettingsAiPrompts.tsx
#: src/pages/settings/ai/SettingsAiPrompts.tsx
#: src/pages/settings/ai/forms/components/SettingsAiAgentForm.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
msgid "System Prompt"
msgstr "Системски упит"
@@ -15220,6 +15322,7 @@ msgstr "Наслов задатка"
#. js-lingui-id: KM6m8p
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Team"
msgstr ""
@@ -15338,6 +15441,11 @@ msgid ""
"See the [Getting Started guide](https://twenty.com/developers/extend/apps/getting-started) for the full walkthrough, and [Building Apps](https://twenty.com/developers/extend/apps/building) for the `defineApplication` / `defineEntity` APIs."
msgstr ""
#. js-lingui-id: n+CCXl
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "The default AI model used for chats, agents, and workflows"
msgstr ""
#. js-lingui-id: 1xQkU9
#: src/modules/settings/data-model/fields/forms/phones/components/SettingsDataModelFieldPhonesForm.tsx
msgid "The default country code for new phone numbers."
@@ -15900,7 +16008,7 @@ msgid "Tool calls made"
msgstr "Остварени позиви алата"
#. js-lingui-id: SrWh42
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/hooks/useCreateTool.ts
msgid "Tool created"
msgstr "Алат је креиран"
@@ -15921,7 +16029,9 @@ msgstr "Генерисање алата"
#. js-lingui-id: xdA/+p
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Tools"
msgstr "Алатке"
@@ -16067,11 +16177,10 @@ msgstr ""
msgid "True"
msgstr "Истина"
#. js-lingui-id: haaL9N
#. js-lingui-id: 64tOpZ
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Try our REST or GraphQL API playgrounds."
msgstr "Испробајте наше РЕСТ или GraphQL АПИ плејграундове."
msgid "Try our REST or GraphQL API playgrounds"
msgstr ""
#. js-lingui-id: 3WWUB9
#: src/pages/settings/updates/SettingsUpdates.tsx
@@ -16738,9 +16847,13 @@ msgstr "Користите апликације за аутентификаци
msgid "Use best models only"
msgstr "Користите само најбоље моделе"
#. js-lingui-id: 5ZehS/
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Use filter to see existing skills or create your own"
msgstr ""
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
@@ -17102,7 +17215,9 @@ msgstr "Прегледајте дневнике активности радно
#. js-lingui-id: 1I6UoR
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr "Прикази"
@@ -17155,10 +17270,15 @@ msgid "Visible to you"
msgstr "Видљиво вама"
#. js-lingui-id: 6n7jtr
#: src/modules/settings/data-model/objects/components/SettingsObjectCoverImage.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Visualize"
msgstr "Визуализуј"
#. js-lingui-id: VvM/Ty
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Visualize data model"
msgstr ""
#. js-lingui-id: uUehLT
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Waiting"
@@ -17194,6 +17314,41 @@ msgstr "је обрисан од стране"
msgid "was restored by"
msgstr "је враћен од стране"
#. js-lingui-id: 0WPnTI
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Watch AI demo"
msgstr ""
#. js-lingui-id: 5qU4Mu
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
msgid "Watch API demo"
msgstr ""
#. js-lingui-id: inpQ46
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Watch apps demo"
msgstr ""
#. js-lingui-id: uIrZTC
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Watch customization demo"
msgstr ""
#. js-lingui-id: syeoTg
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Watch data model demo"
msgstr ""
#. js-lingui-id: egkNh9
#: src/modules/settings/components/SettingsDiscoveryHeroCard.tsx
msgid "Watch demo"
msgstr ""
#. js-lingui-id: 6ZDYQy
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Watch members demo"
msgstr ""
#. js-lingui-id: 6eMAkI
#: src/modules/auth/sign-in-up/components/EmailVerificationSent.tsx
msgid "We encountered an issue verifying"
@@ -17281,6 +17436,7 @@ msgstr "Webhook ID је обавезан за ажурирање"
#. js-lingui-id: v1kQyJ
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
@@ -17336,6 +17492,11 @@ msgstr "Чиме могу да вам помогнем?"
msgid "What this API can do: Select a user role to define its permissions."
msgstr "Шта овај АПИ може: Изаберите корисничку улогу да дефинишете њене дозволе."
#. js-lingui-id: drC+Tq
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "What's installed and being used in your workspace"
msgstr ""
#. js-lingui-id: m7GziZ
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "When a deal's stage changes to Closed Won, create a task assigned to the deal owner, due 7 days after the close date, with title \"Post-sale check-in\" and the company name in the description."
@@ -17395,6 +17556,11 @@ msgstr "Тип виджета"
msgid "widgets"
msgstr ""
#. js-lingui-id: tL6W2K
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Widgets"
msgstr ""
#. js-lingui-id: j6ncOZ
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowEditActionIterator.tsx
msgid "Will continue to the next iteration even if the current one fails"
@@ -17464,6 +17630,7 @@ msgstr "Токови Рада"
#: src/pages/settings/members/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/layout/components/SettingsLayoutDetailScaffold.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
@@ -17473,7 +17640,6 @@ msgstr "Токови Рада"
#: src/pages/settings/developers/playground/SettingsGraphQLPlayground.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -17553,8 +17719,8 @@ msgid "Workspace Info"
msgstr "Информације о радном простору"
#. js-lingui-id: BYrMT0
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Workspace Instructions"
msgstr "Упутства за радни простор"
+247 -81
View File
@@ -954,7 +954,6 @@ msgstr "Aktiv"
#. js-lingui-id: Mue4oc
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Active API keys created by you or your team."
msgstr "Aktiva API-nycklar skapade av dig eller ditt team."
@@ -1051,11 +1050,6 @@ msgstr ""
msgid "Add custom endpoints, private gateways, or additional regions."
msgstr "Lägg till anpassade slutpunkter, privata gateways eller ytterligare regioner."
#. js-lingui-id: GuJvBr
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
msgid "Add custom instructions specific to your workspace (appended to system prompt)"
msgstr "Lägg till anpassade instruktioner specifika för din arbetsyta (läggs till i systemprompten)"
#. js-lingui-id: 4JviOV
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
@@ -1293,6 +1287,11 @@ msgstr "Lägg till i blocklistan"
msgid "Add to Favorite"
msgstr "Lägg till i favoriter"
#. js-lingui-id: VbareD
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Add Twenty as a Model Context Protocol (MCP) server. Paste this config into Claude Desktop, Cursor, Cline, Continue, Zed, or any other MCP-aware client."
msgstr ""
#. js-lingui-id: XnwceV
#: src/pages/settings/applications/components/SettingsApplicationRegistrationRedirectURIsInput.tsx
msgid "Add URI"
@@ -1775,6 +1774,11 @@ msgstr "Alla uppgifter åtgärdade. Behåll tempot."
msgid "All the applications currently installed on this workspace"
msgstr ""
#. js-lingui-id: xP6s/m
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "All the layout items declared on your workspace"
msgstr ""
#. js-lingui-id: XuuWVF
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
msgid "All the standard objects"
@@ -1967,11 +1971,6 @@ msgstr "Ett internt fel inträffade vid validering av dina ändringar. Vänligen
msgid "An object with this name already exists"
msgstr "Ett objekt med detta namn finns redan"
#. js-lingui-id: lxentK
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "An unexpected error occurred"
msgstr "Ett oväntat fel inträffade"
#. js-lingui-id: byKna+
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
msgid "An unexpected error occurred. Please try again."
@@ -2016,6 +2015,7 @@ msgid "Anyone with an email address at these domains is allowed to sign up for t
msgstr "Alla med en e-postadress på dessa domäner har tillåtelse att registrera sig för denna arbetsyta."
#. js-lingui-id: OZtEcz
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "API"
msgstr "API"
@@ -2033,7 +2033,6 @@ msgstr "API & Webhooks"
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "API Key"
msgstr "API-nyckel"
@@ -2063,7 +2062,6 @@ msgid "API key roles"
msgstr ""
#. js-lingui-id: 5h8ooz
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
msgid "API keys"
msgstr "API-nycklar"
@@ -2104,12 +2102,6 @@ msgstr "API-namn (singular)"
msgid "API values"
msgstr "API-värden"
#. js-lingui-id: JR6nY7
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "APIs"
msgstr "API:er"
#. js-lingui-id: ZZAOwb
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
@@ -2131,7 +2123,7 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
msgid "App"
msgstr "App"
@@ -2481,6 +2473,11 @@ msgstr "vid {remainingTimes} och {lastTime}"
msgid "at 1 minute past the hour"
msgstr "vid 1 minut över timmen"
#. js-lingui-id: ooA+hm
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "At a glance"
msgstr ""
#. js-lingui-id: vyXyF0
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
msgid "At a specific date or time"
@@ -2645,11 +2642,15 @@ msgid "Availability"
msgstr "Tillgänglighet"
#. js-lingui-id: csDS2L
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
msgid "Available"
msgstr "Tillgänglig"
#. js-lingui-id: STA+22
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Available models"
msgstr ""
#. js-lingui-id: oD38t2
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Available tools"
@@ -2865,6 +2866,11 @@ msgstr "Brons"
msgid "Brown"
msgstr "Brun"
#. js-lingui-id: O2UpM1
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Browse"
msgstr ""
#. js-lingui-id: GsXRxc
#: src/modules/settings/data-model/indexes/forms/components/SettingsObjectIndexOptionsForm.tsx
msgid "BTREE (default, good for sorting and equality)"
@@ -3615,6 +3621,11 @@ msgstr "Kommando kopierat till urklipp"
msgid "Command Icon"
msgstr "Kommandomenyikonen"
#. js-lingui-id: V1zWD4
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Command menu"
msgstr ""
#. js-lingui-id: PUMdxH
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
msgid "Command Menu"
@@ -3642,6 +3653,11 @@ msgstr ""
msgid "commands"
msgstr ""
#. js-lingui-id: 45MZFs
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Commands"
msgstr ""
#. js-lingui-id: 4XlFx/
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Commands copied to clipboard"
@@ -3808,11 +3824,6 @@ msgstr "Konfigurera dessa DNS-poster med din domänleverantör"
msgid "Configure this widget to display fields"
msgstr "Konfigurera den här widgeten för att visa fält"
#. js-lingui-id: hzDiM0
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Configure your default AI model"
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -3886,6 +3897,11 @@ msgstr ""
msgid "Connect a new account to your workspace"
msgstr "Anslut ett nytt konto till din arbetsyta"
#. js-lingui-id: vPCRNy
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Connect AI assistants like Claude or Cursor to your workspace via the Model Context Protocol"
msgstr ""
#. js-lingui-id: YLx3sC
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect via IMAP/SMTP"
@@ -3901,6 +3917,11 @@ msgstr "Anslut med Google"
msgid "Connect with Microsoft"
msgstr "Anslut med Microsoft"
#. js-lingui-id: iZWbGJ
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Connect your AI assistant"
msgstr ""
#. js-lingui-id: QHcLEN
#: src/pages/settings/applications/SettingsApplicationConnectionDetail.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationConnectionsSection.tsx
@@ -4066,6 +4087,11 @@ msgstr "Kontrollera vilka typer av enheter den här rollen kan tilldelas"
msgid "Conversation"
msgstr "Konversation"
#. js-lingui-id: EnJuK0
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Conversations"
msgstr ""
#. js-lingui-id: HRGl1X
#: src/pages/onboarding/CreateProfile.tsx
#: src/modules/settings/profile/components/NameFields.tsx
@@ -4104,6 +4130,11 @@ msgstr "Kopiera kommandot"
msgid "Copy commands"
msgstr "Kopiera kommandon"
#. js-lingui-id: eaZgIQ
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Copy config"
msgstr ""
#. js-lingui-id: 7eVkEH
#: src/pages/onboarding/InviteTeam.tsx
msgid "Copy invitation link"
@@ -4216,6 +4247,11 @@ msgstr "Det gick inte att öppna faktureringsportalen. Kontrollera att din Enter
msgid "Could not open Stripe. Please contact support."
msgstr "Det gick inte att öppna Stripe. Kontakta support."
#. js-lingui-id: 6wi9Nf
#: src/modules/settings/playground/hooks/useOpenPlayground.ts
msgid "Could not open the API playground"
msgstr ""
#. js-lingui-id: wVw4Am
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not refresh validity token. Please contact support."
@@ -4340,7 +4376,6 @@ msgstr "Skapa och konfigurera AI-agenter"
#. js-lingui-id: uXGLuq
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Create API key"
msgstr "Skapa API-nyckel"
@@ -4625,7 +4660,7 @@ msgstr "Nuvarande arbetsytemedlem inte hittad."
#. js-lingui-id: 8Tg/JR
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/applications/hooks/useApplicationChipData.ts
@@ -4650,6 +4685,11 @@ msgstr "Anpassad domän"
msgid "Custom domain updated"
msgstr "Anpassad domän uppdaterad"
#. js-lingui-id: c6P+Xe
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Custom instructions appended to every system prompt"
msgstr ""
#. js-lingui-id: 87ZNeX
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
msgid "Custom model ID"
@@ -4692,6 +4732,7 @@ msgid "Customization"
msgstr "Anpassning"
#. js-lingui-id: srRMnJ
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectLayout.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
@@ -4788,6 +4829,11 @@ msgstr "Mörkt"
msgid "Dashboard duplicated successfully"
msgstr "Instrumentpanelen duplicerades framgångsrikt"
#. js-lingui-id: w6iIMm
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Dashboards"
msgstr ""
#. js-lingui-id: HKH+W+
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
@@ -4988,7 +5034,7 @@ msgstr "Inaktivera detta fält"
#. js-lingui-id: yAT3be
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
@@ -5015,7 +5061,6 @@ msgstr ""
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
msgid "Default"
@@ -5031,6 +5076,11 @@ msgstr "Standardland"
msgid "Default Country Code"
msgstr "Standardlandskod"
#. js-lingui-id: OtTlfU
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Default model"
msgstr ""
#. js-lingui-id: hUWaAk
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
msgid "Default model for chats and complex reasoning"
@@ -5473,6 +5523,11 @@ msgstr "Detaljer"
msgid "Detected application version running on this instance"
msgstr ""
#. js-lingui-id: QYXe1O
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Develop"
msgstr ""
#. js-lingui-id: 7aDnUb
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Developer"
@@ -5564,7 +5619,6 @@ msgstr "Importera inte"
#. js-lingui-id: TvY/XA
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
msgid "Documentation"
@@ -5768,7 +5822,7 @@ msgid "e.g. OpenAI EU"
msgstr "t.ex. OpenAI EU"
#. js-lingui-id: p5P8NB
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
msgstr "T.ex. \"Vi är ett B2B SaaS-företag. Använd alltid formellt språk...\""
@@ -6114,6 +6168,8 @@ msgstr "Anställda"
#. js-lingui-id: N2S1rs
#: src/modules/object-record/record-inline-cell/components/RecordInlineCellDisplayMode.tsx
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRelationFieldDiffValues.tsx
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRelationFieldDiffValues.tsx
#: src/modules/activities/timeline-activities/rows/main-object/components/EventFieldDiff.tsx
msgid "Empty"
msgstr "Tom"
@@ -6428,11 +6484,6 @@ msgstr "Ange värde"
msgid "Enter values, comma-separated"
msgstr "Ange värden, separerade med kommatecken"
#. js-lingui-id: OjkRLQ
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "Enter your API key"
msgstr "Ange din API-nyckel"
#. js-lingui-id: GpB8YV
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -6988,7 +7039,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
msgstr "Det gick inte att aktivera Enterprise-licensen. Kontrollera din nyckel eller kontakta support."
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Failed to activate skill"
msgstr "Det gick inte att aktivera färdigheten"
@@ -7007,11 +7058,6 @@ msgstr "Det gick inte att lägga till leverantören"
msgid "Failed to create email handle. Email handles may not be configured on this server."
msgstr ""
#. js-lingui-id: WM7GKt
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Failed to create tool"
msgstr "Det gick inte att skapa verktyg"
#. js-lingui-id: lWoewm
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Failed to delete email handle."
@@ -7023,7 +7069,7 @@ msgid "Failed to delete jobs. Please try again later."
msgstr "Det gick inte att radera jobben. Försök igen senare."
#. js-lingui-id: bmwWKk
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Failed to delete skill"
msgstr "Det gick inte att ta bort färdigheten"
@@ -7126,7 +7172,7 @@ msgid "Failed to save role permissions: {errorMessage}"
msgstr ""
#. js-lingui-id: 9ryUyP
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Failed to save workspace instructions"
msgstr "Det gick inte att spara instruktionerna för arbetsytan"
@@ -7152,13 +7198,13 @@ msgid "Failed to update default model"
msgstr "Det gick inte att uppdatera standardmodellen"
#. js-lingui-id: 1R13Ov
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
msgid "Failed to update model"
msgstr ""
#. js-lingui-id: W7Ff/4
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Failed to update model availability"
@@ -7175,7 +7221,7 @@ msgid "Failed to update model recommendations"
msgstr ""
#. js-lingui-id: rCUG3c
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
msgid "Failed to update model selection mode"
msgstr ""
@@ -7334,6 +7380,7 @@ msgstr "fält"
#. js-lingui-id: vF68cg
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
#: src/pages/settings/data-model/new-index/SettingsObjectNewIndex.tsx
@@ -7868,6 +7915,7 @@ msgid "Grants permission to perform all available actions without restriction"
msgstr "Beviljar tillåtelse att utföra alla tillgängliga åtgärder utan begränsningar"
#. js-lingui-id: gBiL6J
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "GraphQL"
msgstr "GraphQL"
@@ -8550,6 +8598,7 @@ msgid "Insert a JSON input, then press \"Run Function\"."
msgstr ""
#. js-lingui-id: TKQ7K+
#: src/pages/settings/applications/SettingsApplications.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationRegistrationShareLinkButtons.tsx
msgid "Install"
@@ -8630,11 +8679,6 @@ msgstr "Intervallbyte har avbrutits."
msgid "Invalid 2FA information."
msgstr "Ogiltig 2FA-information."
#. js-lingui-id: GNRDhm
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "Invalid API key"
msgstr "Ogiltig API-nyckel"
#. js-lingui-id: 9TgH9p
#: src/modules/settings/security/components/SettingsSecurityAuthBypassOptionsList.tsx
msgid "Invalid auth bypass provider"
@@ -8754,6 +8798,7 @@ msgstr "Inbjudningar"
#. js-lingui-id: MFKlMB
#: src/utils/title-utils.ts
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/modules/workspace/components/WorkspaceInviteTeam.tsx
msgid "Invite"
msgstr "Bjud in"
@@ -9232,12 +9277,15 @@ msgid "Launch manually"
msgstr "Starta manuellt"
#. js-lingui-id: rdU729
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -9693,6 +9741,11 @@ msgstr ""
msgid "Manage Members"
msgstr "Hantera medlemmar"
#. js-lingui-id: LNz5UW
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Manage objects, fields and relationships"
msgstr ""
#. js-lingui-id: eGGH1l
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Manage security policies"
@@ -9729,7 +9782,7 @@ msgid "Manage your internet accounts."
msgstr "Hantera dina internetkonton."
#. js-lingui-id: waFx9W
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Managed"
msgstr ""
@@ -9807,12 +9860,23 @@ msgstr "Maximalt antal URL:er"
msgid "Maximum values"
msgstr "Maximalt antal värden"
#. js-lingui-id: nA8kxD
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
msgid "MCP"
msgstr ""
#. js-lingui-id: 2jj0eo
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "MCP config copied to clipboard"
msgstr ""
#. js-lingui-id: NvQoNb
#: src/pages/settings/ai/components/SettingsAiMCP.tsx
msgid "MCP Configuration copied to clipboard"
msgstr "MCP-konfiguration kopierad till urklipp"
#. js-lingui-id: 8CWirf
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiMCP.tsx
msgid "MCP Server"
msgstr "MCP Server"
@@ -10019,6 +10083,7 @@ msgstr "Modell-ID krävs"
#. js-lingui-id: //nm2/
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Models"
msgstr "Modeller"
@@ -10088,7 +10153,6 @@ msgid "months"
msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
msgid "More"
msgstr "Mer"
@@ -10237,8 +10301,8 @@ msgstr ""
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTable.tsx
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
@@ -11419,6 +11483,7 @@ msgstr "objekt"
#. js-lingui-id: B3toQF
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
@@ -11807,7 +11872,9 @@ msgid "Override Draft"
msgstr "Åsidosätt Utkast"
#. js-lingui-id: 6/dCYd
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Overview"
msgstr "Översikt"
@@ -11881,6 +11948,11 @@ msgstr "Sidan kunde inte hittas | Twenty"
msgid "Page Views"
msgstr "Sidvisningar"
#. js-lingui-id: wRR604
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Pages"
msgstr ""
#. js-lingui-id: ijBN4V
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "paragraph"
@@ -12594,18 +12666,18 @@ msgid "Read documentation"
msgstr "Läs dokumentationen"
#. js-lingui-id: U26cMX
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read system prompts"
msgstr ""
#. js-lingui-id: EKsFda
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read the system prompts to understand how the AI works"
msgstr ""
#. js-lingui-id: 0URVx8
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1, }, )
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1 }, )
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read the system prompts to understand how the AI works (~{0} tokens)"
msgstr ""
@@ -12734,6 +12806,11 @@ msgstr "Spela in bild"
msgid "Record label"
msgstr "Spela in etikett"
#. js-lingui-id: XueM/X
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Record page"
msgstr ""
#. js-lingui-id: mAHjRd
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutOpenInContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -12852,6 +12929,7 @@ msgid "Relation type"
msgstr "Relationstyp"
#. js-lingui-id: g87L9j
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
#: src/modules/activities/inline-cell/components/ActivityTargetsInlineCell.tsx
msgid "Relations"
@@ -13164,6 +13242,7 @@ msgid "Response Format"
msgstr ""
#. js-lingui-id: WHiaOl
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/playground/SettingsRestPlayground.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "REST"
@@ -13334,6 +13413,7 @@ msgstr ""
#. js-lingui-id: 5dJK4M
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
@@ -13555,7 +13635,7 @@ msgid "Search a role..."
msgstr "Sök en roll..."
#. js-lingui-id: lJNEce
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Search a skill..."
msgstr "Sök en färdighet..."
@@ -13571,7 +13651,7 @@ msgid "Search a team member..."
msgstr "Sök en teammedlem..."
#. js-lingui-id: VNmPqQ
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Search a tool..."
msgstr ""
@@ -13887,6 +13967,11 @@ msgstr ""
msgid "See Records on All Objects"
msgstr "Visa poster i alla objekt"
#. js-lingui-id: eQ3co2
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "See your data structure as an interactive diagram"
msgstr ""
#. js-lingui-id: Hhnssf
#: src/pages/settings/applications/components/SettingsApplicationTableRow.tsx
msgid "Seeded"
@@ -14231,6 +14316,11 @@ msgstr "Konfigurera ett valfält på {objectLabel} för att skapa en Kanban"
msgid "Set up forwarding from the source address to this destination."
msgstr ""
#. js-lingui-id: dq5Wx1
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Set up MCP"
msgstr ""
#. js-lingui-id: 9HNKkV
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
msgid "Set your application configuration variables"
@@ -14391,6 +14481,16 @@ msgstr ""
msgid "Side Panel"
msgstr "Sidopanel"
#. js-lingui-id: uWi2Q+
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Sidebar"
msgstr ""
#. js-lingui-id: 9k9PMD
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Sidebar items"
msgstr ""
#. js-lingui-id: 5lWFkC
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
msgid "Sign in"
@@ -14475,12 +14575,12 @@ msgid "Skill"
msgstr "Färdighet"
#. js-lingui-id: h4t38o
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skill activated"
msgstr "Färdighet aktiverad"
#. js-lingui-id: /IoK74
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skill deleted"
msgstr "Färdighet raderad"
@@ -14503,7 +14603,9 @@ msgstr ""
#. js-lingui-id: PCSkw2
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skills"
msgstr "Färdigheter"
@@ -14728,7 +14830,7 @@ msgid "Stages"
msgstr "Stadier"
#. js-lingui-id: TJBHlP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/applications/hooks/useApplicationChipData.ts
msgid "Standard"
@@ -15143,8 +15245,8 @@ msgstr ""
#: src/pages/settings/ai/SettingsAiPrompts.tsx
#: src/pages/settings/ai/SettingsAiPrompts.tsx
#: src/pages/settings/ai/forms/components/SettingsAiAgentForm.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
msgid "System Prompt"
msgstr "Systemuppmaning"
@@ -15226,6 +15328,7 @@ msgstr "Uppgiftstitel"
#. js-lingui-id: KM6m8p
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Team"
msgstr ""
@@ -15344,6 +15447,11 @@ msgid ""
"See the [Getting Started guide](https://twenty.com/developers/extend/apps/getting-started) for the full walkthrough, and [Building Apps](https://twenty.com/developers/extend/apps/building) for the `defineApplication` / `defineEntity` APIs."
msgstr ""
#. js-lingui-id: n+CCXl
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "The default AI model used for chats, agents, and workflows"
msgstr ""
#. js-lingui-id: 1xQkU9
#: src/modules/settings/data-model/fields/forms/phones/components/SettingsDataModelFieldPhonesForm.tsx
msgid "The default country code for new phone numbers."
@@ -15908,7 +16016,7 @@ msgid "Tool calls made"
msgstr "Verktygsanrop gjorda"
#. js-lingui-id: SrWh42
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/hooks/useCreateTool.ts
msgid "Tool created"
msgstr "Verktyg skapat"
@@ -15929,7 +16037,9 @@ msgstr "Verktygsgenerering"
#. js-lingui-id: xdA/+p
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Tools"
msgstr "Verktyg"
@@ -16075,11 +16185,10 @@ msgstr ""
msgid "True"
msgstr "Sant"
#. js-lingui-id: haaL9N
#. js-lingui-id: 64tOpZ
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Try our REST or GraphQL API playgrounds."
msgstr "Testa våra REST- eller GraphQL API-lekplatser."
msgid "Try our REST or GraphQL API playgrounds"
msgstr ""
#. js-lingui-id: 3WWUB9
#: src/pages/settings/updates/SettingsUpdates.tsx
@@ -16746,9 +16855,13 @@ msgstr "Använd autentiseringsappar och webbläsartillägg som 1Password, Authy,
msgid "Use best models only"
msgstr ""
#. js-lingui-id: 5ZehS/
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Use filter to see existing skills or create your own"
msgstr ""
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
@@ -17110,7 +17223,9 @@ msgstr "Visa aktivitetsloggar för arbetsytan"
#. js-lingui-id: 1I6UoR
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr "Visningar"
@@ -17163,10 +17278,15 @@ msgid "Visible to you"
msgstr "Synligt för dig"
#. js-lingui-id: 6n7jtr
#: src/modules/settings/data-model/objects/components/SettingsObjectCoverImage.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Visualize"
msgstr "Visualisera"
#. js-lingui-id: VvM/Ty
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Visualize data model"
msgstr ""
#. js-lingui-id: uUehLT
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Waiting"
@@ -17202,6 +17322,41 @@ msgstr "raderades av"
msgid "was restored by"
msgstr "återställdes av"
#. js-lingui-id: 0WPnTI
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Watch AI demo"
msgstr ""
#. js-lingui-id: 5qU4Mu
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
msgid "Watch API demo"
msgstr ""
#. js-lingui-id: inpQ46
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Watch apps demo"
msgstr ""
#. js-lingui-id: uIrZTC
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Watch customization demo"
msgstr ""
#. js-lingui-id: syeoTg
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Watch data model demo"
msgstr ""
#. js-lingui-id: egkNh9
#: src/modules/settings/components/SettingsDiscoveryHeroCard.tsx
msgid "Watch demo"
msgstr ""
#. js-lingui-id: 6ZDYQy
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Watch members demo"
msgstr ""
#. js-lingui-id: 6eMAkI
#: src/modules/auth/sign-in-up/components/EmailVerificationSent.tsx
msgid "We encountered an issue verifying"
@@ -17289,6 +17444,7 @@ msgstr "Webhook-ID krävs för uppdateringar"
#. js-lingui-id: v1kQyJ
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
@@ -17344,6 +17500,11 @@ msgstr "Vad kan jag hjälpa dig med?"
msgid "What this API can do: Select a user role to define its permissions."
msgstr "Vad denna API kan göra: Välj en användarroll för att definiera dess behörigheter."
#. js-lingui-id: drC+Tq
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "What's installed and being used in your workspace"
msgstr ""
#. js-lingui-id: m7GziZ
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "When a deal's stage changes to Closed Won, create a task assigned to the deal owner, due 7 days after the close date, with title \"Post-sale check-in\" and the company name in the description."
@@ -17403,6 +17564,11 @@ msgstr "Widgettyp"
msgid "widgets"
msgstr ""
#. js-lingui-id: tL6W2K
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Widgets"
msgstr ""
#. js-lingui-id: j6ncOZ
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowEditActionIterator.tsx
msgid "Will continue to the next iteration even if the current one fails"
@@ -17472,6 +17638,7 @@ msgstr "Arbetsflöden"
#: src/pages/settings/members/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/layout/components/SettingsLayoutDetailScaffold.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
@@ -17481,7 +17648,6 @@ msgstr "Arbetsflöden"
#: src/pages/settings/developers/playground/SettingsGraphQLPlayground.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -17561,8 +17727,8 @@ msgid "Workspace Info"
msgstr "Arbetsytans info"
#. js-lingui-id: BYrMT0
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Workspace Instructions"
msgstr "Instruktioner för arbetsytan"
+247 -81
View File
@@ -954,7 +954,6 @@ msgstr "Aktif"
#. js-lingui-id: Mue4oc
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Active API keys created by you or your team."
msgstr "Ekip arkadaşlarınız ya da sizin tarafınızdan oluşturulan etkin API anahtarları."
@@ -1051,11 +1050,6 @@ msgstr ""
msgid "Add custom endpoints, private gateways, or additional regions."
msgstr "Özel uç noktalar, özel ağ geçitleri veya ek bölgeler ekleyin."
#. js-lingui-id: GuJvBr
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
msgid "Add custom instructions specific to your workspace (appended to system prompt)"
msgstr "Çalışma alanınıza özgü talimatlar ekleyin (sistem istemine eklenir)"
#. js-lingui-id: 4JviOV
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
@@ -1293,6 +1287,11 @@ msgstr "Kara Listeye Ekle"
msgid "Add to Favorite"
msgstr "Sık Kullanılanlara Ekle"
#. js-lingui-id: VbareD
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Add Twenty as a Model Context Protocol (MCP) server. Paste this config into Claude Desktop, Cursor, Cline, Continue, Zed, or any other MCP-aware client."
msgstr ""
#. js-lingui-id: XnwceV
#: src/pages/settings/applications/components/SettingsApplicationRegistrationRedirectURIsInput.tsx
msgid "Add URI"
@@ -1775,6 +1774,11 @@ msgstr "Tüm görevler ele alındı. İvmeyi koruyun."
msgid "All the applications currently installed on this workspace"
msgstr ""
#. js-lingui-id: xP6s/m
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "All the layout items declared on your workspace"
msgstr ""
#. js-lingui-id: XuuWVF
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
msgid "All the standard objects"
@@ -1967,11 +1971,6 @@ msgstr "Değişikliklerinizi doğrularken bir dahili hata oluştu. Lütfen deste
msgid "An object with this name already exists"
msgstr "Bu isimle bir nesne zaten mevcut"
#. js-lingui-id: lxentK
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "An unexpected error occurred"
msgstr "Beklenmeyen bir hata oluştu"
#. js-lingui-id: byKna+
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
msgid "An unexpected error occurred. Please try again."
@@ -2016,6 +2015,7 @@ msgid "Anyone with an email address at these domains is allowed to sign up for t
msgstr "Bu alan adlarındaki bir e-posta adresine sahip olan herkes bu çalışma alanı için kayıt olabilir."
#. js-lingui-id: OZtEcz
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "API"
msgstr "API"
@@ -2033,7 +2033,6 @@ msgstr "API & Webhook'lar"
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "API Key"
msgstr "API Anahtar"
@@ -2063,7 +2062,6 @@ msgid "API key roles"
msgstr ""
#. js-lingui-id: 5h8ooz
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
msgid "API keys"
msgstr "API anahtarları"
@@ -2104,12 +2102,6 @@ msgstr "API Adı (Tekil)"
msgid "API values"
msgstr "API değerleri"
#. js-lingui-id: JR6nY7
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "APIs"
msgstr "API'ler"
#. js-lingui-id: ZZAOwb
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
@@ -2131,7 +2123,7 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
msgid "App"
msgstr "Uygulama"
@@ -2481,6 +2473,11 @@ msgstr "{remainingTimes} ve {lastTime} saatlerinde"
msgid "at 1 minute past the hour"
msgstr "saatin 1 dakikası geçe"
#. js-lingui-id: ooA+hm
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "At a glance"
msgstr ""
#. js-lingui-id: vyXyF0
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
msgid "At a specific date or time"
@@ -2645,11 +2642,15 @@ msgid "Availability"
msgstr "Mevcutluk"
#. js-lingui-id: csDS2L
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
msgid "Available"
msgstr "Mevcut"
#. js-lingui-id: STA+22
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Available models"
msgstr ""
#. js-lingui-id: oD38t2
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Available tools"
@@ -2865,6 +2866,11 @@ msgstr "Bronz"
msgid "Brown"
msgstr "Kahverengi"
#. js-lingui-id: O2UpM1
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Browse"
msgstr ""
#. js-lingui-id: GsXRxc
#: src/modules/settings/data-model/indexes/forms/components/SettingsObjectIndexOptionsForm.tsx
msgid "BTREE (default, good for sorting and equality)"
@@ -3615,6 +3621,11 @@ msgstr "Komut panoya kopyalandı"
msgid "Command Icon"
msgstr "Komut Simgesi"
#. js-lingui-id: V1zWD4
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Command menu"
msgstr ""
#. js-lingui-id: PUMdxH
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
msgid "Command Menu"
@@ -3642,6 +3653,11 @@ msgstr ""
msgid "commands"
msgstr ""
#. js-lingui-id: 45MZFs
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Commands"
msgstr ""
#. js-lingui-id: 4XlFx/
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Commands copied to clipboard"
@@ -3808,11 +3824,6 @@ msgstr "Bu DNS kayıtlarını alan sağlayıcınızla yapılandırın"
msgid "Configure this widget to display fields"
msgstr "Alanları görüntülemek için bu widget'ı yapılandırın."
#. js-lingui-id: hzDiM0
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Configure your default AI model"
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -3886,6 +3897,11 @@ msgstr ""
msgid "Connect a new account to your workspace"
msgstr "Çalışma alanınıza yeni bir hesap bağlayın"
#. js-lingui-id: vPCRNy
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Connect AI assistants like Claude or Cursor to your workspace via the Model Context Protocol"
msgstr ""
#. js-lingui-id: YLx3sC
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect via IMAP/SMTP"
@@ -3901,6 +3917,11 @@ msgstr "Google ile Bağlan"
msgid "Connect with Microsoft"
msgstr "Microsoft ile Bağlan"
#. js-lingui-id: iZWbGJ
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Connect your AI assistant"
msgstr ""
#. js-lingui-id: QHcLEN
#: src/pages/settings/applications/SettingsApplicationConnectionDetail.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationConnectionsSection.tsx
@@ -4066,6 +4087,11 @@ msgstr "Bu rolün hangi türde varlıklara atanabileceğini kontrol edin."
msgid "Conversation"
msgstr "Sohbet"
#. js-lingui-id: EnJuK0
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Conversations"
msgstr ""
#. js-lingui-id: HRGl1X
#: src/pages/onboarding/CreateProfile.tsx
#: src/modules/settings/profile/components/NameFields.tsx
@@ -4104,6 +4130,11 @@ msgstr "Komutu kopyala"
msgid "Copy commands"
msgstr "Komutları kopyala"
#. js-lingui-id: eaZgIQ
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Copy config"
msgstr ""
#. js-lingui-id: 7eVkEH
#: src/pages/onboarding/InviteTeam.tsx
msgid "Copy invitation link"
@@ -4216,6 +4247,11 @@ msgstr "Faturalandırma portalı açılamadı. Lütfen kurumsal anahtarınızın
msgid "Could not open Stripe. Please contact support."
msgstr "Stripe açılamadı. Lütfen destekle iletişime geçin."
#. js-lingui-id: 6wi9Nf
#: src/modules/settings/playground/hooks/useOpenPlayground.ts
msgid "Could not open the API playground"
msgstr ""
#. js-lingui-id: wVw4Am
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not refresh validity token. Please contact support."
@@ -4340,7 +4376,6 @@ msgstr "AI ajanları oluştur ve yapılandır"
#. js-lingui-id: uXGLuq
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Create API key"
msgstr "API anahtarı oluştur"
@@ -4625,7 +4660,7 @@ msgstr "Geçerli çalışma alanı üyesi bulunamadı."
#. js-lingui-id: 8Tg/JR
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/applications/hooks/useApplicationChipData.ts
@@ -4650,6 +4685,11 @@ msgstr "Özel Alan Adı"
msgid "Custom domain updated"
msgstr "Özel alan adı güncellendi"
#. js-lingui-id: c6P+Xe
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Custom instructions appended to every system prompt"
msgstr ""
#. js-lingui-id: 87ZNeX
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
msgid "Custom model ID"
@@ -4692,6 +4732,7 @@ msgid "Customization"
msgstr "Özelleştirme"
#. js-lingui-id: srRMnJ
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectLayout.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
@@ -4788,6 +4829,11 @@ msgstr "Karanlık"
msgid "Dashboard duplicated successfully"
msgstr "Gösterge paneli başarıyla çoğaltıldı"
#. js-lingui-id: w6iIMm
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Dashboards"
msgstr ""
#. js-lingui-id: HKH+W+
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
@@ -4988,7 +5034,7 @@ msgstr "Bu alanı devre dışı bırak"
#. js-lingui-id: yAT3be
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
@@ -5015,7 +5061,6 @@ msgstr ""
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
msgid "Default"
@@ -5031,6 +5076,11 @@ msgstr "Varsayılan Ülke"
msgid "Default Country Code"
msgstr "Varsayılan Ülke Kodu"
#. js-lingui-id: OtTlfU
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Default model"
msgstr ""
#. js-lingui-id: hUWaAk
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
msgid "Default model for chats and complex reasoning"
@@ -5473,6 +5523,11 @@ msgstr "Ayrıntılar"
msgid "Detected application version running on this instance"
msgstr ""
#. js-lingui-id: QYXe1O
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Develop"
msgstr ""
#. js-lingui-id: 7aDnUb
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Developer"
@@ -5564,7 +5619,6 @@ msgstr "İçeri aktarmayın"
#. js-lingui-id: TvY/XA
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
msgid "Documentation"
@@ -5768,7 +5822,7 @@ msgid "e.g. OpenAI EU"
msgstr "örn. OpenAI EU"
#. js-lingui-id: p5P8NB
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
msgstr "Örneğin, \"Biz bir B2B SaaS şirketiyiz. Her zaman resmî bir dil kullanın...\""
@@ -6114,6 +6168,8 @@ msgstr "Çalışanlar"
#. js-lingui-id: N2S1rs
#: src/modules/object-record/record-inline-cell/components/RecordInlineCellDisplayMode.tsx
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRelationFieldDiffValues.tsx
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRelationFieldDiffValues.tsx
#: src/modules/activities/timeline-activities/rows/main-object/components/EventFieldDiff.tsx
msgid "Empty"
msgstr "Boş"
@@ -6428,11 +6484,6 @@ msgstr "Değer gir"
msgid "Enter values, comma-separated"
msgstr "Virgülle ayrılmış değerleri girin"
#. js-lingui-id: OjkRLQ
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "Enter your API key"
msgstr "API anahtarınızı girin"
#. js-lingui-id: GpB8YV
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -6988,7 +7039,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
msgstr "Kurumsal lisans etkinleştirilemedi. Lütfen anahtarınızı kontrol edin veya destekle iletişime geçin."
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Failed to activate skill"
msgstr "Beceri etkinleştirilemedi"
@@ -7007,11 +7058,6 @@ msgstr "Sağlayıcı eklenemedi"
msgid "Failed to create email handle. Email handles may not be configured on this server."
msgstr ""
#. js-lingui-id: WM7GKt
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Failed to create tool"
msgstr "Araç oluşturulamadı"
#. js-lingui-id: lWoewm
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Failed to delete email handle."
@@ -7023,7 +7069,7 @@ msgid "Failed to delete jobs. Please try again later."
msgstr "İş silme başarısız oldu. Lütfen daha sonra tekrar deneyiniz."
#. js-lingui-id: bmwWKk
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Failed to delete skill"
msgstr "Beceri silinemedi"
@@ -7126,7 +7172,7 @@ msgid "Failed to save role permissions: {errorMessage}"
msgstr ""
#. js-lingui-id: 9ryUyP
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Failed to save workspace instructions"
msgstr "Çalışma alanı talimatları kaydedilemedi"
@@ -7152,13 +7198,13 @@ msgid "Failed to update default model"
msgstr "Varsayılan model güncellenemedi"
#. js-lingui-id: 1R13Ov
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
msgid "Failed to update model"
msgstr "Model güncellenemedi"
#. js-lingui-id: W7Ff/4
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Failed to update model availability"
@@ -7175,7 +7221,7 @@ msgid "Failed to update model recommendations"
msgstr ""
#. js-lingui-id: rCUG3c
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
msgid "Failed to update model selection mode"
msgstr "Model seçim modu güncellenemedi"
@@ -7334,6 +7380,7 @@ msgstr "alanlar"
#. js-lingui-id: vF68cg
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
#: src/pages/settings/data-model/new-index/SettingsObjectNewIndex.tsx
@@ -7868,6 +7915,7 @@ msgid "Grants permission to perform all available actions without restriction"
msgstr "Tüm mevcut eylemleri kısıtlama olmaksızın gerçekleştirme izni verir"
#. js-lingui-id: gBiL6J
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "GraphQL"
msgstr "GraphQL"
@@ -8550,6 +8598,7 @@ msgid "Insert a JSON input, then press \"Run Function\"."
msgstr ""
#. js-lingui-id: TKQ7K+
#: src/pages/settings/applications/SettingsApplications.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationRegistrationShareLinkButtons.tsx
msgid "Install"
@@ -8630,11 +8679,6 @@ msgstr "Aralık değişikliği iptal edildi."
msgid "Invalid 2FA information."
msgstr "Geçersiz 2FA bilgisi."
#. js-lingui-id: GNRDhm
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "Invalid API key"
msgstr "Geçersiz API anahtarı"
#. js-lingui-id: 9TgH9p
#: src/modules/settings/security/components/SettingsSecurityAuthBypassOptionsList.tsx
msgid "Invalid auth bypass provider"
@@ -8754,6 +8798,7 @@ msgstr "Davetiye"
#. js-lingui-id: MFKlMB
#: src/utils/title-utils.ts
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/modules/workspace/components/WorkspaceInviteTeam.tsx
msgid "Invite"
msgstr "Davet et"
@@ -9232,12 +9277,15 @@ msgid "Launch manually"
msgstr "Manuel olarak başlat"
#. js-lingui-id: rdU729
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -9693,6 +9741,11 @@ msgstr ""
msgid "Manage Members"
msgstr "Üyeleri Yönet"
#. js-lingui-id: LNz5UW
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Manage objects, fields and relationships"
msgstr ""
#. js-lingui-id: eGGH1l
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Manage security policies"
@@ -9729,7 +9782,7 @@ msgid "Manage your internet accounts."
msgstr "İnternet hesaplarınızı yönetin."
#. js-lingui-id: waFx9W
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Managed"
msgstr ""
@@ -9807,12 +9860,23 @@ msgstr "Maksimum URL'ler"
msgid "Maximum values"
msgstr "Maksimum değerler"
#. js-lingui-id: nA8kxD
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
msgid "MCP"
msgstr ""
#. js-lingui-id: 2jj0eo
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "MCP config copied to clipboard"
msgstr ""
#. js-lingui-id: NvQoNb
#: src/pages/settings/ai/components/SettingsAiMCP.tsx
msgid "MCP Configuration copied to clipboard"
msgstr "MCP Yapılandırması panoya kopyalandı"
#. js-lingui-id: 8CWirf
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiMCP.tsx
msgid "MCP Server"
msgstr "MCP Sunucusu"
@@ -10019,6 +10083,7 @@ msgstr "Model kimliği gerekli"
#. js-lingui-id: //nm2/
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Models"
msgstr "Modeller"
@@ -10086,7 +10151,6 @@ msgid "months"
msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
msgid "More"
msgstr "Daha Fazla"
@@ -10235,8 +10299,8 @@ msgstr ""
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTable.tsx
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
@@ -11417,6 +11481,7 @@ msgstr "nesneler"
#. js-lingui-id: B3toQF
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
@@ -11805,7 +11870,9 @@ msgid "Override Draft"
msgstr "Taslağı Geçersiz Kıl"
#. js-lingui-id: 6/dCYd
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Overview"
msgstr "Genel Bakış"
@@ -11879,6 +11946,11 @@ msgstr "Sayfa Bulunamadı | Twenty"
msgid "Page Views"
msgstr "Sayfa Görüntülemeleri"
#. js-lingui-id: wRR604
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Pages"
msgstr ""
#. js-lingui-id: ijBN4V
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "paragraph"
@@ -12592,18 +12664,18 @@ msgid "Read documentation"
msgstr "Dokümantasyonu oku"
#. js-lingui-id: U26cMX
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read system prompts"
msgstr ""
#. js-lingui-id: EKsFda
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read the system prompts to understand how the AI works"
msgstr ""
#. js-lingui-id: 0URVx8
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1, }, )
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1 }, )
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read the system prompts to understand how the AI works (~{0} tokens)"
msgstr ""
@@ -12732,6 +12804,11 @@ msgstr "Kayıt görüntüsü"
msgid "Record label"
msgstr "Kayıt etiketi"
#. js-lingui-id: XueM/X
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Record page"
msgstr ""
#. js-lingui-id: mAHjRd
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutOpenInContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -12850,6 +12927,7 @@ msgid "Relation type"
msgstr "İlişki türü"
#. js-lingui-id: g87L9j
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
#: src/modules/activities/inline-cell/components/ActivityTargetsInlineCell.tsx
msgid "Relations"
@@ -13162,6 +13240,7 @@ msgid "Response Format"
msgstr ""
#. js-lingui-id: WHiaOl
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/playground/SettingsRestPlayground.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "REST"
@@ -13332,6 +13411,7 @@ msgstr ""
#. js-lingui-id: 5dJK4M
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
@@ -13551,7 +13631,7 @@ msgid "Search a role..."
msgstr "Bir rol ara..."
#. js-lingui-id: lJNEce
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Search a skill..."
msgstr "Bir beceri arayın..."
@@ -13567,7 +13647,7 @@ msgid "Search a team member..."
msgstr "Bir ekip üyesi ara..."
#. js-lingui-id: VNmPqQ
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Search a tool..."
msgstr ""
@@ -13883,6 +13963,11 @@ msgstr ""
msgid "See Records on All Objects"
msgstr "Tüm Nesnelerdeki Kayıtları Görüntüle"
#. js-lingui-id: eQ3co2
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "See your data structure as an interactive diagram"
msgstr ""
#. js-lingui-id: Hhnssf
#: src/pages/settings/applications/components/SettingsApplicationTableRow.tsx
msgid "Seeded"
@@ -14227,6 +14312,11 @@ msgstr "Bir Kanban oluşturmak için {objectLabel} üzerinde bir Seçim alanı a
msgid "Set up forwarding from the source address to this destination."
msgstr ""
#. js-lingui-id: dq5Wx1
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Set up MCP"
msgstr ""
#. js-lingui-id: 9HNKkV
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
msgid "Set your application configuration variables"
@@ -14387,6 +14477,16 @@ msgstr ""
msgid "Side Panel"
msgstr "Yan Panel"
#. js-lingui-id: uWi2Q+
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Sidebar"
msgstr ""
#. js-lingui-id: 9k9PMD
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Sidebar items"
msgstr ""
#. js-lingui-id: 5lWFkC
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
msgid "Sign in"
@@ -14471,12 +14571,12 @@ msgid "Skill"
msgstr "Beceri"
#. js-lingui-id: h4t38o
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skill activated"
msgstr "Beceri etkinleştirildi"
#. js-lingui-id: /IoK74
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skill deleted"
msgstr "Beceri silindi"
@@ -14499,7 +14599,9 @@ msgstr ""
#. js-lingui-id: PCSkw2
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skills"
msgstr "Beceriler"
@@ -14724,7 +14826,7 @@ msgid "Stages"
msgstr "Aşamalar"
#. js-lingui-id: TJBHlP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/applications/hooks/useApplicationChipData.ts
msgid "Standard"
@@ -15137,8 +15239,8 @@ msgstr ""
#: src/pages/settings/ai/SettingsAiPrompts.tsx
#: src/pages/settings/ai/SettingsAiPrompts.tsx
#: src/pages/settings/ai/forms/components/SettingsAiAgentForm.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
msgid "System Prompt"
msgstr "Sistem İstemi"
@@ -15220,6 +15322,7 @@ msgstr "Görev Başlığı"
#. js-lingui-id: KM6m8p
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Team"
msgstr ""
@@ -15338,6 +15441,11 @@ msgid ""
"See the [Getting Started guide](https://twenty.com/developers/extend/apps/getting-started) for the full walkthrough, and [Building Apps](https://twenty.com/developers/extend/apps/building) for the `defineApplication` / `defineEntity` APIs."
msgstr ""
#. js-lingui-id: n+CCXl
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "The default AI model used for chats, agents, and workflows"
msgstr ""
#. js-lingui-id: 1xQkU9
#: src/modules/settings/data-model/fields/forms/phones/components/SettingsDataModelFieldPhonesForm.tsx
msgid "The default country code for new phone numbers."
@@ -15900,7 +16008,7 @@ msgid "Tool calls made"
msgstr "Gerçekleştirilen araç çağrıları"
#. js-lingui-id: SrWh42
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/hooks/useCreateTool.ts
msgid "Tool created"
msgstr "Araç oluşturuldu"
@@ -15921,7 +16029,9 @@ msgstr "Araç oluşturma"
#. js-lingui-id: xdA/+p
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Tools"
msgstr "Araçlar"
@@ -16067,11 +16177,10 @@ msgstr ""
msgid "True"
msgstr "Doğru"
#. js-lingui-id: haaL9N
#. js-lingui-id: 64tOpZ
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Try our REST or GraphQL API playgrounds."
msgstr "REST veya GraphQL API oyun alanlarımızı deneyin."
msgid "Try our REST or GraphQL API playgrounds"
msgstr ""
#. js-lingui-id: 3WWUB9
#: src/pages/settings/updates/SettingsUpdates.tsx
@@ -16738,9 +16847,13 @@ msgstr "1Password, Authy, Microsoft Authenticator gibi doğrulama uygulamaları
msgid "Use best models only"
msgstr "Yalnızca en iyi modelleri kullan"
#. js-lingui-id: 5ZehS/
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Use filter to see existing skills or create your own"
msgstr ""
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
@@ -17102,7 +17215,9 @@ msgstr "Çalışma alanı etkinlik günlüklerini görüntüleyin"
#. js-lingui-id: 1I6UoR
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr "Görünümler"
@@ -17155,10 +17270,15 @@ msgid "Visible to you"
msgstr "Sizin için Görünür"
#. js-lingui-id: 6n7jtr
#: src/modules/settings/data-model/objects/components/SettingsObjectCoverImage.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Visualize"
msgstr "Görselleştirme"
#. js-lingui-id: VvM/Ty
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Visualize data model"
msgstr ""
#. js-lingui-id: uUehLT
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Waiting"
@@ -17194,6 +17314,41 @@ msgstr "tarafından silindi"
msgid "was restored by"
msgstr "tarafından geri yüklendi"
#. js-lingui-id: 0WPnTI
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Watch AI demo"
msgstr ""
#. js-lingui-id: 5qU4Mu
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
msgid "Watch API demo"
msgstr ""
#. js-lingui-id: inpQ46
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Watch apps demo"
msgstr ""
#. js-lingui-id: uIrZTC
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Watch customization demo"
msgstr ""
#. js-lingui-id: syeoTg
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Watch data model demo"
msgstr ""
#. js-lingui-id: egkNh9
#: src/modules/settings/components/SettingsDiscoveryHeroCard.tsx
msgid "Watch demo"
msgstr ""
#. js-lingui-id: 6ZDYQy
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Watch members demo"
msgstr ""
#. js-lingui-id: 6eMAkI
#: src/modules/auth/sign-in-up/components/EmailVerificationSent.tsx
msgid "We encountered an issue verifying"
@@ -17281,6 +17436,7 @@ msgstr "Güncellemeler için Webhook kimliği gerekli"
#. js-lingui-id: v1kQyJ
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
@@ -17336,6 +17492,11 @@ msgstr "Size nasıl yardımcı olabilirim?"
msgid "What this API can do: Select a user role to define its permissions."
msgstr "Bu API'nin yapabilecekleri: İzinlerini tanımlamak için bir kullanıcı rolü seçin."
#. js-lingui-id: drC+Tq
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "What's installed and being used in your workspace"
msgstr ""
#. js-lingui-id: m7GziZ
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "When a deal's stage changes to Closed Won, create a task assigned to the deal owner, due 7 days after the close date, with title \"Post-sale check-in\" and the company name in the description."
@@ -17395,6 +17556,11 @@ msgstr "Araç tipi"
msgid "widgets"
msgstr ""
#. js-lingui-id: tL6W2K
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Widgets"
msgstr ""
#. js-lingui-id: j6ncOZ
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowEditActionIterator.tsx
msgid "Will continue to the next iteration even if the current one fails"
@@ -17464,6 +17630,7 @@ msgstr "İş Akışları"
#: src/pages/settings/members/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/layout/components/SettingsLayoutDetailScaffold.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
@@ -17473,7 +17640,6 @@ msgstr "İş Akışları"
#: src/pages/settings/developers/playground/SettingsGraphQLPlayground.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -17553,8 +17719,8 @@ msgid "Workspace Info"
msgstr "Çalışma Alanı Bilgisi"
#. js-lingui-id: BYrMT0
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Workspace Instructions"
msgstr "Çalışma Alanı Talimatları"
+247 -81
View File
@@ -954,7 +954,6 @@ msgstr "Активний"
#. js-lingui-id: Mue4oc
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Active API keys created by you or your team."
msgstr "Активні API-ключі, створені вами або вашою командою."
@@ -1051,11 +1050,6 @@ msgstr ""
msgid "Add custom endpoints, private gateways, or additional regions."
msgstr "Додайте власні кінцеві точки, приватні шлюзи або додаткові регіони."
#. js-lingui-id: GuJvBr
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
msgid "Add custom instructions specific to your workspace (appended to system prompt)"
msgstr "Додайте власні інструкції, специфічні для вашого робочого простору (додаються до системного промпту)"
#. js-lingui-id: 4JviOV
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
@@ -1293,6 +1287,11 @@ msgstr "Додати до чорного списку"
msgid "Add to Favorite"
msgstr "Додати до обраних"
#. js-lingui-id: VbareD
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Add Twenty as a Model Context Protocol (MCP) server. Paste this config into Claude Desktop, Cursor, Cline, Continue, Zed, or any other MCP-aware client."
msgstr ""
#. js-lingui-id: XnwceV
#: src/pages/settings/applications/components/SettingsApplicationRegistrationRedirectURIsInput.tsx
msgid "Add URI"
@@ -1775,6 +1774,11 @@ msgstr "Усі завдання виконано. Зберігайте темп.
msgid "All the applications currently installed on this workspace"
msgstr ""
#. js-lingui-id: xP6s/m
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "All the layout items declared on your workspace"
msgstr ""
#. js-lingui-id: XuuWVF
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
msgid "All the standard objects"
@@ -1967,11 +1971,6 @@ msgstr "Виникла внутрішня помилка під час пере
msgid "An object with this name already exists"
msgstr "Об'єкт з цією назвою уже існує"
#. js-lingui-id: lxentK
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "An unexpected error occurred"
msgstr "Сталася несподівана помилка"
#. js-lingui-id: byKna+
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
msgid "An unexpected error occurred. Please try again."
@@ -2016,6 +2015,7 @@ msgid "Anyone with an email address at these domains is allowed to sign up for t
msgstr "Будь-хто з електронною адресою в цих доменах може зареєструватися для цього робочого простору."
#. js-lingui-id: OZtEcz
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "API"
msgstr "API"
@@ -2033,7 +2033,6 @@ msgstr "API та Webhooks"
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "API Key"
msgstr "API-ключ"
@@ -2063,7 +2062,6 @@ msgid "API key roles"
msgstr ""
#. js-lingui-id: 5h8ooz
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
msgid "API keys"
msgstr "API-ключі"
@@ -2104,12 +2102,6 @@ msgstr "Назва API (однина)"
msgid "API values"
msgstr "Значення API"
#. js-lingui-id: JR6nY7
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "APIs"
msgstr "API"
#. js-lingui-id: ZZAOwb
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
@@ -2131,7 +2123,7 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
msgid "App"
msgstr "Додаток"
@@ -2481,6 +2473,11 @@ msgstr "о {remainingTimes} та {lastTime}"
msgid "at 1 minute past the hour"
msgstr "о 1 хвилину після години"
#. js-lingui-id: ooA+hm
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "At a glance"
msgstr ""
#. js-lingui-id: vyXyF0
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
msgid "At a specific date or time"
@@ -2645,11 +2642,15 @@ msgid "Availability"
msgstr "Доступність"
#. js-lingui-id: csDS2L
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
msgid "Available"
msgstr "Доступно"
#. js-lingui-id: STA+22
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Available models"
msgstr ""
#. js-lingui-id: oD38t2
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Available tools"
@@ -2865,6 +2866,11 @@ msgstr "Бронзовий"
msgid "Brown"
msgstr "Коричневий"
#. js-lingui-id: O2UpM1
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Browse"
msgstr ""
#. js-lingui-id: GsXRxc
#: src/modules/settings/data-model/indexes/forms/components/SettingsObjectIndexOptionsForm.tsx
msgid "BTREE (default, good for sorting and equality)"
@@ -3615,6 +3621,11 @@ msgstr "Команду скопійовано у буфер обміну"
msgid "Command Icon"
msgstr "Значок команди"
#. js-lingui-id: V1zWD4
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Command menu"
msgstr ""
#. js-lingui-id: PUMdxH
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
msgid "Command Menu"
@@ -3642,6 +3653,11 @@ msgstr ""
msgid "commands"
msgstr ""
#. js-lingui-id: 45MZFs
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Commands"
msgstr ""
#. js-lingui-id: 4XlFx/
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Commands copied to clipboard"
@@ -3808,11 +3824,6 @@ msgstr "Налаштуйте ці DNS записи у вашого постач
msgid "Configure this widget to display fields"
msgstr "Налаштуйте цей віджет для відображення полів"
#. js-lingui-id: hzDiM0
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Configure your default AI model"
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -3886,6 +3897,11 @@ msgstr ""
msgid "Connect a new account to your workspace"
msgstr "Під'єднайте новий обліковий запис до вашого робочого простору"
#. js-lingui-id: vPCRNy
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Connect AI assistants like Claude or Cursor to your workspace via the Model Context Protocol"
msgstr ""
#. js-lingui-id: YLx3sC
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect via IMAP/SMTP"
@@ -3901,6 +3917,11 @@ msgstr "Під'єднатися через Google"
msgid "Connect with Microsoft"
msgstr "Під'єднатися через Microsoft"
#. js-lingui-id: iZWbGJ
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Connect your AI assistant"
msgstr ""
#. js-lingui-id: QHcLEN
#: src/pages/settings/applications/SettingsApplicationConnectionDetail.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationConnectionsSection.tsx
@@ -4066,6 +4087,11 @@ msgstr "Контролювати, до яких типів суб'єктів м
msgid "Conversation"
msgstr "Розмова"
#. js-lingui-id: EnJuK0
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Conversations"
msgstr ""
#. js-lingui-id: HRGl1X
#: src/pages/onboarding/CreateProfile.tsx
#: src/modules/settings/profile/components/NameFields.tsx
@@ -4104,6 +4130,11 @@ msgstr "Копіювати команду"
msgid "Copy commands"
msgstr "Копіювати команди"
#. js-lingui-id: eaZgIQ
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Copy config"
msgstr ""
#. js-lingui-id: 7eVkEH
#: src/pages/onboarding/InviteTeam.tsx
msgid "Copy invitation link"
@@ -4216,6 +4247,11 @@ msgstr "Не вдалося відкрити портал виставлення
msgid "Could not open Stripe. Please contact support."
msgstr "Не вдалося відкрити Stripe. Зверніться до служби підтримки."
#. js-lingui-id: 6wi9Nf
#: src/modules/settings/playground/hooks/useOpenPlayground.ts
msgid "Could not open the API playground"
msgstr ""
#. js-lingui-id: wVw4Am
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not refresh validity token. Please contact support."
@@ -4340,7 +4376,6 @@ msgstr "Створіть та налаштуйте AI агентів"
#. js-lingui-id: uXGLuq
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Create API key"
msgstr "Створити ключ API"
@@ -4625,7 +4660,7 @@ msgstr "Поточний учасник робочого простору не
#. js-lingui-id: 8Tg/JR
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/applications/hooks/useApplicationChipData.ts
@@ -4650,6 +4685,11 @@ msgstr "Домашній домен"
msgid "Custom domain updated"
msgstr "Користувацький домен оновлено"
#. js-lingui-id: c6P+Xe
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Custom instructions appended to every system prompt"
msgstr ""
#. js-lingui-id: 87ZNeX
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
msgid "Custom model ID"
@@ -4692,6 +4732,7 @@ msgid "Customization"
msgstr "Налаштування"
#. js-lingui-id: srRMnJ
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectLayout.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
@@ -4788,6 +4829,11 @@ msgstr "Темна"
msgid "Dashboard duplicated successfully"
msgstr "Інформаційну панель успішно продубльовано"
#. js-lingui-id: w6iIMm
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Dashboards"
msgstr ""
#. js-lingui-id: HKH+W+
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
@@ -4988,7 +5034,7 @@ msgstr "Деактивувати це поле"
#. js-lingui-id: yAT3be
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
@@ -5015,7 +5061,6 @@ msgstr ""
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
msgid "Default"
@@ -5031,6 +5076,11 @@ msgstr "Країна за замовчуванням"
msgid "Default Country Code"
msgstr "Код країни за замовчуванням"
#. js-lingui-id: OtTlfU
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Default model"
msgstr ""
#. js-lingui-id: hUWaAk
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
msgid "Default model for chats and complex reasoning"
@@ -5473,6 +5523,11 @@ msgstr "Деталі"
msgid "Detected application version running on this instance"
msgstr ""
#. js-lingui-id: QYXe1O
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Develop"
msgstr ""
#. js-lingui-id: 7aDnUb
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Developer"
@@ -5564,7 +5619,6 @@ msgstr "Не імпортувати"
#. js-lingui-id: TvY/XA
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
msgid "Documentation"
@@ -5768,7 +5822,7 @@ msgid "e.g. OpenAI EU"
msgstr "наприклад, OpenAI EU"
#. js-lingui-id: p5P8NB
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
msgstr "Наприклад: \"Ми — B2B SaaS-компанія. Завжди використовуйте офіційну мову...\""
@@ -6114,6 +6168,8 @@ msgstr "Співробітники"
#. js-lingui-id: N2S1rs
#: src/modules/object-record/record-inline-cell/components/RecordInlineCellDisplayMode.tsx
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRelationFieldDiffValues.tsx
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRelationFieldDiffValues.tsx
#: src/modules/activities/timeline-activities/rows/main-object/components/EventFieldDiff.tsx
msgid "Empty"
msgstr "Порожньо"
@@ -6428,11 +6484,6 @@ msgstr "Введіть значення"
msgid "Enter values, comma-separated"
msgstr "Введіть значення, розділені комами"
#. js-lingui-id: OjkRLQ
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "Enter your API key"
msgstr "Введіть свій ключ API"
#. js-lingui-id: GpB8YV
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -6988,7 +7039,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
msgstr "Не вдалося активувати ліцензію Enterprise. Перевірте свій ключ або зверніться до служби підтримки."
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Failed to activate skill"
msgstr "Не вдалося активувати навичку"
@@ -7007,11 +7058,6 @@ msgstr "Не вдалося додати провайдера"
msgid "Failed to create email handle. Email handles may not be configured on this server."
msgstr ""
#. js-lingui-id: WM7GKt
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Failed to create tool"
msgstr "Не вдалося створити інструмент"
#. js-lingui-id: lWoewm
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Failed to delete email handle."
@@ -7023,7 +7069,7 @@ msgid "Failed to delete jobs. Please try again later."
msgstr "Не вдалося видалити завдання. Будь ласка, спробуйте пізніше."
#. js-lingui-id: bmwWKk
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Failed to delete skill"
msgstr "Не вдалося видалити навичку"
@@ -7126,7 +7172,7 @@ msgid "Failed to save role permissions: {errorMessage}"
msgstr ""
#. js-lingui-id: 9ryUyP
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Failed to save workspace instructions"
msgstr "Не вдалося зберегти інструкції робочого простору"
@@ -7152,13 +7198,13 @@ msgid "Failed to update default model"
msgstr "Не вдалося оновити модель за замовчуванням"
#. js-lingui-id: 1R13Ov
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
msgid "Failed to update model"
msgstr "Не вдалося оновити модель"
#. js-lingui-id: W7Ff/4
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Failed to update model availability"
@@ -7175,7 +7221,7 @@ msgid "Failed to update model recommendations"
msgstr ""
#. js-lingui-id: rCUG3c
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
msgid "Failed to update model selection mode"
msgstr "Не вдалося оновити режим вибору моделі"
@@ -7334,6 +7380,7 @@ msgstr "поля"
#. js-lingui-id: vF68cg
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
#: src/pages/settings/data-model/new-index/SettingsObjectNewIndex.tsx
@@ -7868,6 +7915,7 @@ msgid "Grants permission to perform all available actions without restriction"
msgstr "Надає дозвіл на виконання всіх доступних дій без обмежень"
#. js-lingui-id: gBiL6J
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "GraphQL"
msgstr "GraphQL"
@@ -8550,6 +8598,7 @@ msgid "Insert a JSON input, then press \"Run Function\"."
msgstr ""
#. js-lingui-id: TKQ7K+
#: src/pages/settings/applications/SettingsApplications.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationRegistrationShareLinkButtons.tsx
msgid "Install"
@@ -8630,11 +8679,6 @@ msgstr "Перемикання інтервалу скасовано."
msgid "Invalid 2FA information."
msgstr "Неправильна інформація 2FA."
#. js-lingui-id: GNRDhm
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "Invalid API key"
msgstr "Недійсний ключ API"
#. js-lingui-id: 9TgH9p
#: src/modules/settings/security/components/SettingsSecurityAuthBypassOptionsList.tsx
msgid "Invalid auth bypass provider"
@@ -8754,6 +8798,7 @@ msgstr "Запрошення"
#. js-lingui-id: MFKlMB
#: src/utils/title-utils.ts
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/modules/workspace/components/WorkspaceInviteTeam.tsx
msgid "Invite"
msgstr "Запросити"
@@ -9232,12 +9277,15 @@ msgid "Launch manually"
msgstr "Запустити вручну"
#. js-lingui-id: rdU729
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -9693,6 +9741,11 @@ msgstr ""
msgid "Manage Members"
msgstr "Управління членами"
#. js-lingui-id: LNz5UW
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Manage objects, fields and relationships"
msgstr ""
#. js-lingui-id: eGGH1l
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Manage security policies"
@@ -9729,7 +9782,7 @@ msgid "Manage your internet accounts."
msgstr "Управління своїми інтернет-акаунтами."
#. js-lingui-id: waFx9W
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Managed"
msgstr ""
@@ -9807,12 +9860,23 @@ msgstr "Максимальна кількість URL-адрес"
msgid "Maximum values"
msgstr "Максимальна кількість значень"
#. js-lingui-id: nA8kxD
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
msgid "MCP"
msgstr ""
#. js-lingui-id: 2jj0eo
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "MCP config copied to clipboard"
msgstr ""
#. js-lingui-id: NvQoNb
#: src/pages/settings/ai/components/SettingsAiMCP.tsx
msgid "MCP Configuration copied to clipboard"
msgstr "Конфігурацію MCP скопійовано в буфер обміну"
#. js-lingui-id: 8CWirf
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiMCP.tsx
msgid "MCP Server"
msgstr "Сервер MCP"
@@ -10019,6 +10083,7 @@ msgstr "Потрібно вказати ID моделі"
#. js-lingui-id: //nm2/
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Models"
msgstr "Моделі"
@@ -10086,7 +10151,6 @@ msgid "months"
msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
msgid "More"
msgstr "Більше"
@@ -10235,8 +10299,8 @@ msgstr ""
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTable.tsx
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
@@ -11417,6 +11481,7 @@ msgstr "об'єкти"
#. js-lingui-id: B3toQF
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
@@ -11805,7 +11870,9 @@ msgid "Override Draft"
msgstr "Перезаписати нарис"
#. js-lingui-id: 6/dCYd
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Overview"
msgstr "Огляд"
@@ -11879,6 +11946,11 @@ msgstr "Сторінку не знайдено | Twenty"
msgid "Page Views"
msgstr "Перегляди сторінок"
#. js-lingui-id: wRR604
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Pages"
msgstr ""
#. js-lingui-id: ijBN4V
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "paragraph"
@@ -12592,18 +12664,18 @@ msgid "Read documentation"
msgstr "Читати документацію"
#. js-lingui-id: U26cMX
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read system prompts"
msgstr ""
#. js-lingui-id: EKsFda
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read the system prompts to understand how the AI works"
msgstr ""
#. js-lingui-id: 0URVx8
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1, }, )
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1 }, )
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read the system prompts to understand how the AI works (~{0} tokens)"
msgstr ""
@@ -12732,6 +12804,11 @@ msgstr "Зображення запису"
msgid "Record label"
msgstr "Мітка запису"
#. js-lingui-id: XueM/X
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Record page"
msgstr ""
#. js-lingui-id: mAHjRd
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutOpenInContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -12850,6 +12927,7 @@ msgid "Relation type"
msgstr "Тип відносин"
#. js-lingui-id: g87L9j
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
#: src/modules/activities/inline-cell/components/ActivityTargetsInlineCell.tsx
msgid "Relations"
@@ -13162,6 +13240,7 @@ msgid "Response Format"
msgstr ""
#. js-lingui-id: WHiaOl
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/playground/SettingsRestPlayground.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "REST"
@@ -13332,6 +13411,7 @@ msgstr ""
#. js-lingui-id: 5dJK4M
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
@@ -13551,7 +13631,7 @@ msgid "Search a role..."
msgstr "Знайти роль..."
#. js-lingui-id: lJNEce
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Search a skill..."
msgstr "Пошук навички..."
@@ -13567,7 +13647,7 @@ msgid "Search a team member..."
msgstr "Шукати учасника команди..."
#. js-lingui-id: VNmPqQ
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Search a tool..."
msgstr ""
@@ -13883,6 +13963,11 @@ msgstr ""
msgid "See Records on All Objects"
msgstr "Переглянути записи на всіх об'єктах"
#. js-lingui-id: eQ3co2
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "See your data structure as an interactive diagram"
msgstr ""
#. js-lingui-id: Hhnssf
#: src/pages/settings/applications/components/SettingsApplicationTableRow.tsx
msgid "Seeded"
@@ -14227,6 +14312,11 @@ msgstr "Створіть поле «Вибір» у {objectLabel}, щоб ств
msgid "Set up forwarding from the source address to this destination."
msgstr ""
#. js-lingui-id: dq5Wx1
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Set up MCP"
msgstr ""
#. js-lingui-id: 9HNKkV
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
msgid "Set your application configuration variables"
@@ -14387,6 +14477,16 @@ msgstr ""
msgid "Side Panel"
msgstr "Бічна панель"
#. js-lingui-id: uWi2Q+
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Sidebar"
msgstr ""
#. js-lingui-id: 9k9PMD
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Sidebar items"
msgstr ""
#. js-lingui-id: 5lWFkC
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
msgid "Sign in"
@@ -14471,12 +14571,12 @@ msgid "Skill"
msgstr "Навичка"
#. js-lingui-id: h4t38o
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skill activated"
msgstr "Навичку активовано"
#. js-lingui-id: /IoK74
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skill deleted"
msgstr "Навичку видалено"
@@ -14499,7 +14599,9 @@ msgstr ""
#. js-lingui-id: PCSkw2
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skills"
msgstr "Навички"
@@ -14724,7 +14826,7 @@ msgid "Stages"
msgstr "Стадії"
#. js-lingui-id: TJBHlP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/applications/hooks/useApplicationChipData.ts
msgid "Standard"
@@ -15137,8 +15239,8 @@ msgstr ""
#: src/pages/settings/ai/SettingsAiPrompts.tsx
#: src/pages/settings/ai/SettingsAiPrompts.tsx
#: src/pages/settings/ai/forms/components/SettingsAiAgentForm.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
msgid "System Prompt"
msgstr "Системний запит"
@@ -15220,6 +15322,7 @@ msgstr "Назва завдання"
#. js-lingui-id: KM6m8p
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Team"
msgstr ""
@@ -15338,6 +15441,11 @@ msgid ""
"See the [Getting Started guide](https://twenty.com/developers/extend/apps/getting-started) for the full walkthrough, and [Building Apps](https://twenty.com/developers/extend/apps/building) for the `defineApplication` / `defineEntity` APIs."
msgstr ""
#. js-lingui-id: n+CCXl
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "The default AI model used for chats, agents, and workflows"
msgstr ""
#. js-lingui-id: 1xQkU9
#: src/modules/settings/data-model/fields/forms/phones/components/SettingsDataModelFieldPhonesForm.tsx
msgid "The default country code for new phone numbers."
@@ -15902,7 +16010,7 @@ msgid "Tool calls made"
msgstr "Здійснено викликів інструментів"
#. js-lingui-id: SrWh42
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/hooks/useCreateTool.ts
msgid "Tool created"
msgstr "Інструмент створено"
@@ -15923,7 +16031,9 @@ msgstr "Генерація інструмента"
#. js-lingui-id: xdA/+p
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Tools"
msgstr "Інструменти"
@@ -16069,11 +16179,10 @@ msgstr ""
msgid "True"
msgstr "Істинно"
#. js-lingui-id: haaL9N
#. js-lingui-id: 64tOpZ
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Try our REST or GraphQL API playgrounds."
msgstr "Спробуйте наші пісочниці REST або GraphQL API."
msgid "Try our REST or GraphQL API playgrounds"
msgstr ""
#. js-lingui-id: 3WWUB9
#: src/pages/settings/updates/SettingsUpdates.tsx
@@ -16740,9 +16849,13 @@ msgstr "Використовуйте додатки для аутентифік
msgid "Use best models only"
msgstr "Використовувати лише найкращі моделі"
#. js-lingui-id: 5ZehS/
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Use filter to see existing skills or create your own"
msgstr ""
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
@@ -17104,7 +17217,9 @@ msgstr "Переглянути журнали активності робочо
#. js-lingui-id: 1I6UoR
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr "Перегляди"
@@ -17157,10 +17272,15 @@ msgid "Visible to you"
msgstr "Видно тільки вам"
#. js-lingui-id: 6n7jtr
#: src/modules/settings/data-model/objects/components/SettingsObjectCoverImage.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Visualize"
msgstr "Візуалізувати"
#. js-lingui-id: VvM/Ty
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Visualize data model"
msgstr ""
#. js-lingui-id: uUehLT
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Waiting"
@@ -17196,6 +17316,41 @@ msgstr "було видалено"
msgid "was restored by"
msgstr "було відновлено"
#. js-lingui-id: 0WPnTI
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Watch AI demo"
msgstr ""
#. js-lingui-id: 5qU4Mu
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
msgid "Watch API demo"
msgstr ""
#. js-lingui-id: inpQ46
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Watch apps demo"
msgstr ""
#. js-lingui-id: uIrZTC
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Watch customization demo"
msgstr ""
#. js-lingui-id: syeoTg
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Watch data model demo"
msgstr ""
#. js-lingui-id: egkNh9
#: src/modules/settings/components/SettingsDiscoveryHeroCard.tsx
msgid "Watch demo"
msgstr ""
#. js-lingui-id: 6ZDYQy
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Watch members demo"
msgstr ""
#. js-lingui-id: 6eMAkI
#: src/modules/auth/sign-in-up/components/EmailVerificationSent.tsx
msgid "We encountered an issue verifying"
@@ -17283,6 +17438,7 @@ msgstr "Для оновлення потрібен ID Webhook"
#. js-lingui-id: v1kQyJ
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
@@ -17338,6 +17494,11 @@ msgstr "Чим я можу вам допомогти?"
msgid "What this API can do: Select a user role to define its permissions."
msgstr "Що може виконувати цей API: Виберіть роль користувача для визначення його прав доступу."
#. js-lingui-id: drC+Tq
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "What's installed and being used in your workspace"
msgstr ""
#. js-lingui-id: m7GziZ
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "When a deal's stage changes to Closed Won, create a task assigned to the deal owner, due 7 days after the close date, with title \"Post-sale check-in\" and the company name in the description."
@@ -17397,6 +17558,11 @@ msgstr "Тип віджету"
msgid "widgets"
msgstr ""
#. js-lingui-id: tL6W2K
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Widgets"
msgstr ""
#. js-lingui-id: j6ncOZ
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowEditActionIterator.tsx
msgid "Will continue to the next iteration even if the current one fails"
@@ -17466,6 +17632,7 @@ msgstr "Робочі процеси"
#: src/pages/settings/members/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/layout/components/SettingsLayoutDetailScaffold.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
@@ -17475,7 +17642,6 @@ msgstr "Робочі процеси"
#: src/pages/settings/developers/playground/SettingsGraphQLPlayground.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -17555,8 +17721,8 @@ msgid "Workspace Info"
msgstr "Інформація про робочий простір"
#. js-lingui-id: BYrMT0
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Workspace Instructions"
msgstr "Інструкції робочого простору"
+247 -81
View File
@@ -954,7 +954,6 @@ msgstr "Kích hoạt"
#. js-lingui-id: Mue4oc
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Active API keys created by you or your team."
msgstr "Các khóa API hoạt động đã được bạn hoặc đội ngũ của bạn tạo."
@@ -1051,11 +1050,6 @@ msgstr ""
msgid "Add custom endpoints, private gateways, or additional regions."
msgstr "Thêm điểm cuối tùy chỉnh, cổng riêng tư hoặc khu vực bổ sung."
#. js-lingui-id: GuJvBr
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
msgid "Add custom instructions specific to your workspace (appended to system prompt)"
msgstr "Thêm hướng dẫn tùy chỉnh dành riêng cho không gian làm việc của bạn (được nối thêm vào lời nhắc hệ thống)"
#. js-lingui-id: 4JviOV
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
@@ -1293,6 +1287,11 @@ msgstr "Thêm vào danh sách chặn"
msgid "Add to Favorite"
msgstr "Thêm vào mục yêu thích"
#. js-lingui-id: VbareD
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Add Twenty as a Model Context Protocol (MCP) server. Paste this config into Claude Desktop, Cursor, Cline, Continue, Zed, or any other MCP-aware client."
msgstr ""
#. js-lingui-id: XnwceV
#: src/pages/settings/applications/components/SettingsApplicationRegistrationRedirectURIsInput.tsx
msgid "Add URI"
@@ -1775,6 +1774,11 @@ msgstr "Tất cả nhiệm vụ đã được xử lý. Hãy duy trì đà này.
msgid "All the applications currently installed on this workspace"
msgstr ""
#. js-lingui-id: xP6s/m
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "All the layout items declared on your workspace"
msgstr ""
#. js-lingui-id: XuuWVF
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
msgid "All the standard objects"
@@ -1967,11 +1971,6 @@ msgstr "Đã xảy ra lỗi nội bộ khi xác nhận các thay đổi của b
msgid "An object with this name already exists"
msgstr "Đối tượng có tên này đã tồn tại"
#. js-lingui-id: lxentK
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "An unexpected error occurred"
msgstr "Đã xảy ra lỗi không mong muốn"
#. js-lingui-id: byKna+
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
msgid "An unexpected error occurred. Please try again."
@@ -2016,6 +2015,7 @@ msgid "Anyone with an email address at these domains is allowed to sign up for t
msgstr "Bất kỳ ai có địa chỉ email tại các miền này đều được phép đăng ký không gian làm việc này."
#. js-lingui-id: OZtEcz
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "API"
msgstr "API"
@@ -2033,7 +2033,6 @@ msgstr "API & Webhooks"
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "API Key"
msgstr "Khóa API"
@@ -2063,7 +2062,6 @@ msgid "API key roles"
msgstr ""
#. js-lingui-id: 5h8ooz
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
msgid "API keys"
msgstr "Khóa API"
@@ -2104,12 +2102,6 @@ msgstr "Tên API (Số ít)"
msgid "API values"
msgstr "Giá trị API"
#. js-lingui-id: JR6nY7
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "APIs"
msgstr "API"
#. js-lingui-id: ZZAOwb
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
@@ -2131,7 +2123,7 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
msgid "App"
msgstr "Ứng dụng"
@@ -2481,6 +2473,11 @@ msgstr "vào lúc {remainingTimes} và {lastTime}"
msgid "at 1 minute past the hour"
msgstr "vào phút thứ 1 của giờ"
#. js-lingui-id: ooA+hm
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "At a glance"
msgstr ""
#. js-lingui-id: vyXyF0
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
msgid "At a specific date or time"
@@ -2645,11 +2642,15 @@ msgid "Availability"
msgstr "Có sẵn"
#. js-lingui-id: csDS2L
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
msgid "Available"
msgstr "Có sẵn"
#. js-lingui-id: STA+22
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Available models"
msgstr ""
#. js-lingui-id: oD38t2
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Available tools"
@@ -2865,6 +2866,11 @@ msgstr "Đồng"
msgid "Brown"
msgstr "Nâu"
#. js-lingui-id: O2UpM1
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Browse"
msgstr ""
#. js-lingui-id: GsXRxc
#: src/modules/settings/data-model/indexes/forms/components/SettingsObjectIndexOptionsForm.tsx
msgid "BTREE (default, good for sorting and equality)"
@@ -3615,6 +3621,11 @@ msgstr "Đã sao chép lệnh vào bảng tạm"
msgid "Command Icon"
msgstr "Biểu tượng menu lệnh"
#. js-lingui-id: V1zWD4
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Command menu"
msgstr ""
#. js-lingui-id: PUMdxH
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
msgid "Command Menu"
@@ -3642,6 +3653,11 @@ msgstr ""
msgid "commands"
msgstr ""
#. js-lingui-id: 45MZFs
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Commands"
msgstr ""
#. js-lingui-id: 4XlFx/
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Commands copied to clipboard"
@@ -3808,11 +3824,6 @@ msgstr "Cấu hình các bản ghi DNS này với nhà cung cấp miền của b
msgid "Configure this widget to display fields"
msgstr "Cấu hình tiện ích này để hiển thị các trường"
#. js-lingui-id: hzDiM0
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Configure your default AI model"
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -3886,6 +3897,11 @@ msgstr ""
msgid "Connect a new account to your workspace"
msgstr "Kết nối tài khoản mới với không gian làm việc của bạn"
#. js-lingui-id: vPCRNy
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Connect AI assistants like Claude or Cursor to your workspace via the Model Context Protocol"
msgstr ""
#. js-lingui-id: YLx3sC
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect via IMAP/SMTP"
@@ -3901,6 +3917,11 @@ msgstr "Kết nối với Google"
msgid "Connect with Microsoft"
msgstr "Kết nối với Microsoft"
#. js-lingui-id: iZWbGJ
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Connect your AI assistant"
msgstr ""
#. js-lingui-id: QHcLEN
#: src/pages/settings/applications/SettingsApplicationConnectionDetail.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationConnectionsSection.tsx
@@ -4066,6 +4087,11 @@ msgstr "Kiểm soát loại thực thể nào mà vai trò này có thể đư
msgid "Conversation"
msgstr "Cuộc trò chuyện"
#. js-lingui-id: EnJuK0
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Conversations"
msgstr ""
#. js-lingui-id: HRGl1X
#: src/pages/onboarding/CreateProfile.tsx
#: src/modules/settings/profile/components/NameFields.tsx
@@ -4104,6 +4130,11 @@ msgstr "Sao chép lệnh"
msgid "Copy commands"
msgstr "Sao chép lệnh"
#. js-lingui-id: eaZgIQ
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Copy config"
msgstr ""
#. js-lingui-id: 7eVkEH
#: src/pages/onboarding/InviteTeam.tsx
msgid "Copy invitation link"
@@ -4216,6 +4247,11 @@ msgstr "Không thể mở cổng thanh toán. Vui lòng kiểm tra khóa Enterpr
msgid "Could not open Stripe. Please contact support."
msgstr "Không thể mở Stripe. Vui lòng liên hệ bộ phận hỗ trợ."
#. js-lingui-id: 6wi9Nf
#: src/modules/settings/playground/hooks/useOpenPlayground.ts
msgid "Could not open the API playground"
msgstr ""
#. js-lingui-id: wVw4Am
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not refresh validity token. Please contact support."
@@ -4340,7 +4376,6 @@ msgstr "Tạo và cấu hình tác nhân AI"
#. js-lingui-id: uXGLuq
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Create API key"
msgstr "Tạo khóa API"
@@ -4625,7 +4660,7 @@ msgstr "Không tìm thấy thành viên hiện tại của không gian làm vi
#. js-lingui-id: 8Tg/JR
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/applications/hooks/useApplicationChipData.ts
@@ -4650,6 +4685,11 @@ msgstr "Tên miền tùy chỉnh"
msgid "Custom domain updated"
msgstr "Tên miền tùy chỉnh đã được cập nhật"
#. js-lingui-id: c6P+Xe
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Custom instructions appended to every system prompt"
msgstr ""
#. js-lingui-id: 87ZNeX
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
msgid "Custom model ID"
@@ -4692,6 +4732,7 @@ msgid "Customization"
msgstr "Tùy chỉnh"
#. js-lingui-id: srRMnJ
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectLayout.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
@@ -4788,6 +4829,11 @@ msgstr "Giao diện tối"
msgid "Dashboard duplicated successfully"
msgstr "Nhân bản thành công bảng điều khiển"
#. js-lingui-id: w6iIMm
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Dashboards"
msgstr ""
#. js-lingui-id: HKH+W+
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
@@ -4988,7 +5034,7 @@ msgstr "Hủy kích hoạt trường này"
#. js-lingui-id: yAT3be
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
@@ -5015,7 +5061,6 @@ msgstr ""
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
msgid "Default"
@@ -5031,6 +5076,11 @@ msgstr "Quốc gia mặc định"
msgid "Default Country Code"
msgstr "Mã quốc gia mặc định"
#. js-lingui-id: OtTlfU
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Default model"
msgstr ""
#. js-lingui-id: hUWaAk
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
msgid "Default model for chats and complex reasoning"
@@ -5473,6 +5523,11 @@ msgstr "Chi tiết"
msgid "Detected application version running on this instance"
msgstr ""
#. js-lingui-id: QYXe1O
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Develop"
msgstr ""
#. js-lingui-id: 7aDnUb
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Developer"
@@ -5564,7 +5619,6 @@ msgstr "Không nhập"
#. js-lingui-id: TvY/XA
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
msgid "Documentation"
@@ -5768,7 +5822,7 @@ msgid "e.g. OpenAI EU"
msgstr "ví dụ: OpenAI EU"
#. js-lingui-id: p5P8NB
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
msgstr "Ví dụ: \"Chúng tôi là một công ty SaaS B2B. Luôn sử dụng ngôn ngữ trang trọng...\""
@@ -6114,6 +6168,8 @@ msgstr "Nhân viên"
#. js-lingui-id: N2S1rs
#: src/modules/object-record/record-inline-cell/components/RecordInlineCellDisplayMode.tsx
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRelationFieldDiffValues.tsx
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRelationFieldDiffValues.tsx
#: src/modules/activities/timeline-activities/rows/main-object/components/EventFieldDiff.tsx
msgid "Empty"
msgstr "Trống"
@@ -6428,11 +6484,6 @@ msgstr "Nhập giá trị"
msgid "Enter values, comma-separated"
msgstr "Nhập giá trị, phân tách bằng dấu phẩy"
#. js-lingui-id: OjkRLQ
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "Enter your API key"
msgstr "Nhập khóa API của bạn"
#. js-lingui-id: GpB8YV
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -6988,7 +7039,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
msgstr "Không thể kích hoạt giấy phép Enterprise. Vui lòng kiểm tra khóa của bạn hoặc liên hệ bộ phận hỗ trợ."
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Failed to activate skill"
msgstr "Kích hoạt kỹ năng thất bại"
@@ -7007,11 +7058,6 @@ msgstr "Thêm nhà cung cấp thất bại"
msgid "Failed to create email handle. Email handles may not be configured on this server."
msgstr ""
#. js-lingui-id: WM7GKt
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Failed to create tool"
msgstr "Tạo công cụ thất bại"
#. js-lingui-id: lWoewm
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Failed to delete email handle."
@@ -7023,7 +7069,7 @@ msgid "Failed to delete jobs. Please try again later."
msgstr "Không thể xóa các công việc. Vui lòng thử lại sau."
#. js-lingui-id: bmwWKk
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Failed to delete skill"
msgstr "Xóa kỹ năng thất bại"
@@ -7126,7 +7172,7 @@ msgid "Failed to save role permissions: {errorMessage}"
msgstr ""
#. js-lingui-id: 9ryUyP
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Failed to save workspace instructions"
msgstr "Không thể lưu hướng dẫn của không gian làm việc"
@@ -7152,13 +7198,13 @@ msgid "Failed to update default model"
msgstr "Cập nhật mô hình mặc định thất bại"
#. js-lingui-id: 1R13Ov
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
msgid "Failed to update model"
msgstr "Cập nhật mô hình thất bại"
#. js-lingui-id: W7Ff/4
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Failed to update model availability"
@@ -7175,7 +7221,7 @@ msgid "Failed to update model recommendations"
msgstr ""
#. js-lingui-id: rCUG3c
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
msgid "Failed to update model selection mode"
msgstr "Cập nhật chế độ chọn mô hình thất bại"
@@ -7334,6 +7380,7 @@ msgstr "trường"
#. js-lingui-id: vF68cg
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
#: src/pages/settings/data-model/new-index/SettingsObjectNewIndex.tsx
@@ -7868,6 +7915,7 @@ msgid "Grants permission to perform all available actions without restriction"
msgstr "Cấp quyền thực hiện tất cả các hành động có sẵn mà không bị hạn chế"
#. js-lingui-id: gBiL6J
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "GraphQL"
msgstr "GraphQL"
@@ -8550,6 +8598,7 @@ msgid "Insert a JSON input, then press \"Run Function\"."
msgstr ""
#. js-lingui-id: TKQ7K+
#: src/pages/settings/applications/SettingsApplications.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationRegistrationShareLinkButtons.tsx
msgid "Install"
@@ -8630,11 +8679,6 @@ msgstr "Chuyển đổi khoảng thời gian đã bị hủy."
msgid "Invalid 2FA information."
msgstr "Thông tin 2FA không hợp lệ."
#. js-lingui-id: GNRDhm
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "Invalid API key"
msgstr "Khóa API không hợp lệ"
#. js-lingui-id: 9TgH9p
#: src/modules/settings/security/components/SettingsSecurityAuthBypassOptionsList.tsx
msgid "Invalid auth bypass provider"
@@ -8754,6 +8798,7 @@ msgstr "Thư mời"
#. js-lingui-id: MFKlMB
#: src/utils/title-utils.ts
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/modules/workspace/components/WorkspaceInviteTeam.tsx
msgid "Invite"
msgstr "Mời"
@@ -9232,12 +9277,15 @@ msgid "Launch manually"
msgstr "Khởi chạy thủ công"
#. js-lingui-id: rdU729
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -9693,6 +9741,11 @@ msgstr ""
msgid "Manage Members"
msgstr "Quản lý Thành viên"
#. js-lingui-id: LNz5UW
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Manage objects, fields and relationships"
msgstr ""
#. js-lingui-id: eGGH1l
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Manage security policies"
@@ -9729,7 +9782,7 @@ msgid "Manage your internet accounts."
msgstr "Quản lý các tài khoản internet của bạn."
#. js-lingui-id: waFx9W
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Managed"
msgstr ""
@@ -9807,12 +9860,23 @@ msgstr "Số lượng URL tối đa"
msgid "Maximum values"
msgstr "Giá trị tối đa"
#. js-lingui-id: nA8kxD
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
msgid "MCP"
msgstr ""
#. js-lingui-id: 2jj0eo
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "MCP config copied to clipboard"
msgstr ""
#. js-lingui-id: NvQoNb
#: src/pages/settings/ai/components/SettingsAiMCP.tsx
msgid "MCP Configuration copied to clipboard"
msgstr "Đã sao chép cấu hình MCP vào bảng tạm"
#. js-lingui-id: 8CWirf
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiMCP.tsx
msgid "MCP Server"
msgstr "Máy chủ MCP"
@@ -10019,6 +10083,7 @@ msgstr "ID mô hình là bắt buộc"
#. js-lingui-id: //nm2/
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Models"
msgstr "Mô hình"
@@ -10086,7 +10151,6 @@ msgid "months"
msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
msgid "More"
msgstr "Thêm nữa"
@@ -10235,8 +10299,8 @@ msgstr ""
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTable.tsx
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
@@ -11417,6 +11481,7 @@ msgstr "đối tượng"
#. js-lingui-id: B3toQF
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
@@ -11805,7 +11870,9 @@ msgid "Override Draft"
msgstr "Ghi đè bản thảo"
#. js-lingui-id: 6/dCYd
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Overview"
msgstr "Tổng quan"
@@ -11879,6 +11946,11 @@ msgstr "Không tìm thấy trang | Twenty"
msgid "Page Views"
msgstr "Lượt xem trang"
#. js-lingui-id: wRR604
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Pages"
msgstr ""
#. js-lingui-id: ijBN4V
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "paragraph"
@@ -12592,18 +12664,18 @@ msgid "Read documentation"
msgstr "Đọc tài liệu"
#. js-lingui-id: U26cMX
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read system prompts"
msgstr ""
#. js-lingui-id: EKsFda
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read the system prompts to understand how the AI works"
msgstr ""
#. js-lingui-id: 0URVx8
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1, }, )
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1 }, )
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read the system prompts to understand how the AI works (~{0} tokens)"
msgstr ""
@@ -12732,6 +12804,11 @@ msgstr "Ảnh hồ sơ"
msgid "Record label"
msgstr "Nhãn hồ sơ"
#. js-lingui-id: XueM/X
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Record page"
msgstr ""
#. js-lingui-id: mAHjRd
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutOpenInContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -12850,6 +12927,7 @@ msgid "Relation type"
msgstr "Loại quan hệ"
#. js-lingui-id: g87L9j
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
#: src/modules/activities/inline-cell/components/ActivityTargetsInlineCell.tsx
msgid "Relations"
@@ -13162,6 +13240,7 @@ msgid "Response Format"
msgstr ""
#. js-lingui-id: WHiaOl
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/playground/SettingsRestPlayground.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "REST"
@@ -13332,6 +13411,7 @@ msgstr ""
#. js-lingui-id: 5dJK4M
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
@@ -13551,7 +13631,7 @@ msgid "Search a role..."
msgstr "Tìm kiếm một vai trò..."
#. js-lingui-id: lJNEce
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Search a skill..."
msgstr "Tìm một kỹ năng..."
@@ -13567,7 +13647,7 @@ msgid "Search a team member..."
msgstr "Tìm kiếm một thành viên..."
#. js-lingui-id: VNmPqQ
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Search a tool..."
msgstr ""
@@ -13883,6 +13963,11 @@ msgstr ""
msgid "See Records on All Objects"
msgstr "Xem bản ghi trên tất cả các đối tượng"
#. js-lingui-id: eQ3co2
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "See your data structure as an interactive diagram"
msgstr ""
#. js-lingui-id: Hhnssf
#: src/pages/settings/applications/components/SettingsApplicationTableRow.tsx
msgid "Seeded"
@@ -14227,6 +14312,11 @@ msgstr "Thiết lập một trường Chọn trên {objectLabel} để tạo Kan
msgid "Set up forwarding from the source address to this destination."
msgstr ""
#. js-lingui-id: dq5Wx1
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Set up MCP"
msgstr ""
#. js-lingui-id: 9HNKkV
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
msgid "Set your application configuration variables"
@@ -14387,6 +14477,16 @@ msgstr ""
msgid "Side Panel"
msgstr "Bảng điều khiển bên"
#. js-lingui-id: uWi2Q+
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Sidebar"
msgstr ""
#. js-lingui-id: 9k9PMD
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Sidebar items"
msgstr ""
#. js-lingui-id: 5lWFkC
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
msgid "Sign in"
@@ -14471,12 +14571,12 @@ msgid "Skill"
msgstr "Kỹ năng"
#. js-lingui-id: h4t38o
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skill activated"
msgstr "Đã kích hoạt kỹ năng"
#. js-lingui-id: /IoK74
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skill deleted"
msgstr "Đã xóa kỹ năng"
@@ -14499,7 +14599,9 @@ msgstr ""
#. js-lingui-id: PCSkw2
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skills"
msgstr "Kỹ năng"
@@ -14724,7 +14826,7 @@ msgid "Stages"
msgstr "Giai đoạn"
#. js-lingui-id: TJBHlP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/applications/hooks/useApplicationChipData.ts
msgid "Standard"
@@ -15137,8 +15239,8 @@ msgstr ""
#: src/pages/settings/ai/SettingsAiPrompts.tsx
#: src/pages/settings/ai/SettingsAiPrompts.tsx
#: src/pages/settings/ai/forms/components/SettingsAiAgentForm.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
msgid "System Prompt"
msgstr "Lời Nhắc Hệ Thống"
@@ -15220,6 +15322,7 @@ msgstr "Tiêu đề nhiệm vụ"
#. js-lingui-id: KM6m8p
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Team"
msgstr ""
@@ -15338,6 +15441,11 @@ msgid ""
"See the [Getting Started guide](https://twenty.com/developers/extend/apps/getting-started) for the full walkthrough, and [Building Apps](https://twenty.com/developers/extend/apps/building) for the `defineApplication` / `defineEntity` APIs."
msgstr ""
#. js-lingui-id: n+CCXl
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "The default AI model used for chats, agents, and workflows"
msgstr ""
#. js-lingui-id: 1xQkU9
#: src/modules/settings/data-model/fields/forms/phones/components/SettingsDataModelFieldPhonesForm.tsx
msgid "The default country code for new phone numbers."
@@ -15900,7 +16008,7 @@ msgid "Tool calls made"
msgstr "Số lần gọi công cụ"
#. js-lingui-id: SrWh42
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/hooks/useCreateTool.ts
msgid "Tool created"
msgstr "Đã tạo công cụ"
@@ -15921,7 +16029,9 @@ msgstr "Tạo công cụ"
#. js-lingui-id: xdA/+p
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Tools"
msgstr "Công cụ"
@@ -16067,11 +16177,10 @@ msgstr ""
msgid "True"
msgstr "Đúng"
#. js-lingui-id: haaL9N
#. js-lingui-id: 64tOpZ
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Try our REST or GraphQL API playgrounds."
msgstr "Thử các sân chơi API REST hoặc GraphQL của chúng tôi."
msgid "Try our REST or GraphQL API playgrounds"
msgstr ""
#. js-lingui-id: 3WWUB9
#: src/pages/settings/updates/SettingsUpdates.tsx
@@ -16738,9 +16847,13 @@ msgstr "Sử dụng ứng dụng xác thực và tiện ích mở rộng trình
msgid "Use best models only"
msgstr "Chỉ sử dụng các mô hình tốt nhất"
#. js-lingui-id: 5ZehS/
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Use filter to see existing skills or create your own"
msgstr ""
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
@@ -17102,7 +17215,9 @@ msgstr "Xem nhật ký hoạt động của không gian làm việc"
#. js-lingui-id: 1I6UoR
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr "Các chế độ xem"
@@ -17155,10 +17270,15 @@ msgid "Visible to you"
msgstr "Có thể xem được bởi bạn"
#. js-lingui-id: 6n7jtr
#: src/modules/settings/data-model/objects/components/SettingsObjectCoverImage.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Visualize"
msgstr "Trực quan hóa"
#. js-lingui-id: VvM/Ty
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Visualize data model"
msgstr ""
#. js-lingui-id: uUehLT
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Waiting"
@@ -17194,6 +17314,41 @@ msgstr "đã bị xóa bởi"
msgid "was restored by"
msgstr "đã được khôi phục bởi"
#. js-lingui-id: 0WPnTI
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Watch AI demo"
msgstr ""
#. js-lingui-id: 5qU4Mu
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
msgid "Watch API demo"
msgstr ""
#. js-lingui-id: inpQ46
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Watch apps demo"
msgstr ""
#. js-lingui-id: uIrZTC
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Watch customization demo"
msgstr ""
#. js-lingui-id: syeoTg
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Watch data model demo"
msgstr ""
#. js-lingui-id: egkNh9
#: src/modules/settings/components/SettingsDiscoveryHeroCard.tsx
msgid "Watch demo"
msgstr ""
#. js-lingui-id: 6ZDYQy
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Watch members demo"
msgstr ""
#. js-lingui-id: 6eMAkI
#: src/modules/auth/sign-in-up/components/EmailVerificationSent.tsx
msgid "We encountered an issue verifying"
@@ -17281,6 +17436,7 @@ msgstr "Webhook ID cần thiết để cập nhật"
#. js-lingui-id: v1kQyJ
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
@@ -17336,6 +17492,11 @@ msgstr "Tôi có thể giúp gì cho bạn?"
msgid "What this API can do: Select a user role to define its permissions."
msgstr "Những gì API này có thể làm: Chọn một vai trò người dùng để xác định quyền của nó."
#. js-lingui-id: drC+Tq
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "What's installed and being used in your workspace"
msgstr ""
#. js-lingui-id: m7GziZ
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "When a deal's stage changes to Closed Won, create a task assigned to the deal owner, due 7 days after the close date, with title \"Post-sale check-in\" and the company name in the description."
@@ -17395,6 +17556,11 @@ msgstr "Loại tiện ích"
msgid "widgets"
msgstr ""
#. js-lingui-id: tL6W2K
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Widgets"
msgstr ""
#. js-lingui-id: j6ncOZ
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowEditActionIterator.tsx
msgid "Will continue to the next iteration even if the current one fails"
@@ -17464,6 +17630,7 @@ msgstr "Quy Trình Làm Việc"
#: src/pages/settings/members/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/layout/components/SettingsLayoutDetailScaffold.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
@@ -17473,7 +17640,6 @@ msgstr "Quy Trình Làm Việc"
#: src/pages/settings/developers/playground/SettingsGraphQLPlayground.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -17553,8 +17719,8 @@ msgid "Workspace Info"
msgstr "Thông tin không gian làm việc"
#. js-lingui-id: BYrMT0
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Workspace Instructions"
msgstr "Hướng dẫn của không gian làm việc"
+247 -81
View File
@@ -954,7 +954,6 @@ msgstr "活跃"
#. js-lingui-id: Mue4oc
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Active API keys created by you or your team."
msgstr "由您或您的团队创建的活跃 API 密钥。"
@@ -1051,11 +1050,6 @@ msgstr ""
msgid "Add custom endpoints, private gateways, or additional regions."
msgstr "添加自定义端点、私有网关或其他区域。"
#. js-lingui-id: GuJvBr
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
msgid "Add custom instructions specific to your workspace (appended to system prompt)"
msgstr "添加特定于您工作区的自定义说明 (附加到系统提示词)"
#. js-lingui-id: 4JviOV
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
@@ -1293,6 +1287,11 @@ msgstr "添加到拦截列表"
msgid "Add to Favorite"
msgstr "添加到收藏夹"
#. js-lingui-id: VbareD
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Add Twenty as a Model Context Protocol (MCP) server. Paste this config into Claude Desktop, Cursor, Cline, Continue, Zed, or any other MCP-aware client."
msgstr ""
#. js-lingui-id: XnwceV
#: src/pages/settings/applications/components/SettingsApplicationRegistrationRedirectURIsInput.tsx
msgid "Add URI"
@@ -1775,6 +1774,11 @@ msgstr "所有任务都已处理。继续保持势头。"
msgid "All the applications currently installed on this workspace"
msgstr ""
#. js-lingui-id: xP6s/m
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "All the layout items declared on your workspace"
msgstr ""
#. js-lingui-id: XuuWVF
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
msgid "All the standard objects"
@@ -1967,11 +1971,6 @@ msgstr "验证更改时发生内部错误。请联系支持。"
msgid "An object with this name already exists"
msgstr "带有此名称的对象已存在"
#. js-lingui-id: lxentK
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "An unexpected error occurred"
msgstr "发生意外错误"
#. js-lingui-id: byKna+
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
msgid "An unexpected error occurred. Please try again."
@@ -2016,6 +2015,7 @@ msgid "Anyone with an email address at these domains is allowed to sign up for t
msgstr "拥有这些域中的电子邮件地址的任何人都可以注册此工作空间。"
#. js-lingui-id: OZtEcz
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "API"
msgstr "接口"
@@ -2033,7 +2033,6 @@ msgstr "API 和 Webhooks"
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "API Key"
msgstr "API 密钥"
@@ -2063,7 +2062,6 @@ msgid "API key roles"
msgstr ""
#. js-lingui-id: 5h8ooz
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
msgid "API keys"
msgstr "API 密钥"
@@ -2104,12 +2102,6 @@ msgstr "API 名称(单数)"
msgid "API values"
msgstr "API 值"
#. js-lingui-id: JR6nY7
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "APIs"
msgstr "接口"
#. js-lingui-id: ZZAOwb
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
@@ -2131,7 +2123,7 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
msgid "App"
msgstr "应用"
@@ -2481,6 +2473,11 @@ msgstr "在 {remainingTimes} 和 {lastTime}"
msgid "at 1 minute past the hour"
msgstr "在每小时的第 1 分钟"
#. js-lingui-id: ooA+hm
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "At a glance"
msgstr ""
#. js-lingui-id: vyXyF0
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
msgid "At a specific date or time"
@@ -2645,11 +2642,15 @@ msgid "Availability"
msgstr "可用性"
#. js-lingui-id: csDS2L
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
msgid "Available"
msgstr "可用"
#. js-lingui-id: STA+22
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Available models"
msgstr ""
#. js-lingui-id: oD38t2
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Available tools"
@@ -2865,6 +2866,11 @@ msgstr "青铜色"
msgid "Brown"
msgstr "棕色"
#. js-lingui-id: O2UpM1
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Browse"
msgstr ""
#. js-lingui-id: GsXRxc
#: src/modules/settings/data-model/indexes/forms/components/SettingsObjectIndexOptionsForm.tsx
msgid "BTREE (default, good for sorting and equality)"
@@ -3615,6 +3621,11 @@ msgstr "命令已复制到剪贴板"
msgid "Command Icon"
msgstr "命令图标"
#. js-lingui-id: V1zWD4
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Command menu"
msgstr ""
#. js-lingui-id: PUMdxH
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
msgid "Command Menu"
@@ -3642,6 +3653,11 @@ msgstr ""
msgid "commands"
msgstr ""
#. js-lingui-id: 45MZFs
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Commands"
msgstr ""
#. js-lingui-id: 4XlFx/
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Commands copied to clipboard"
@@ -3808,11 +3824,6 @@ msgstr "在您的域提供商处配置这些 DNS 记录"
msgid "Configure this widget to display fields"
msgstr "配置此小部件以显示字段"
#. js-lingui-id: hzDiM0
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Configure your default AI model"
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -3886,6 +3897,11 @@ msgstr ""
msgid "Connect a new account to your workspace"
msgstr "将新账户连接到工作区"
#. js-lingui-id: vPCRNy
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Connect AI assistants like Claude or Cursor to your workspace via the Model Context Protocol"
msgstr ""
#. js-lingui-id: YLx3sC
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect via IMAP/SMTP"
@@ -3901,6 +3917,11 @@ msgstr "连接 Google"
msgid "Connect with Microsoft"
msgstr "连接 Microsoft"
#. js-lingui-id: iZWbGJ
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Connect your AI assistant"
msgstr ""
#. js-lingui-id: QHcLEN
#: src/pages/settings/applications/SettingsApplicationConnectionDetail.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationConnectionsSection.tsx
@@ -4066,6 +4087,11 @@ msgstr "控制此角色可分配的实体类型"
msgid "Conversation"
msgstr "会话"
#. js-lingui-id: EnJuK0
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Conversations"
msgstr ""
#. js-lingui-id: HRGl1X
#: src/pages/onboarding/CreateProfile.tsx
#: src/modules/settings/profile/components/NameFields.tsx
@@ -4104,6 +4130,11 @@ msgstr "复制命令"
msgid "Copy commands"
msgstr "复制命令"
#. js-lingui-id: eaZgIQ
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Copy config"
msgstr ""
#. js-lingui-id: 7eVkEH
#: src/pages/onboarding/InviteTeam.tsx
msgid "Copy invitation link"
@@ -4216,6 +4247,11 @@ msgstr "无法打开账单门户。请检查是否存在企业密钥,或联系
msgid "Could not open Stripe. Please contact support."
msgstr "无法打开 Stripe。请联系支持。"
#. js-lingui-id: 6wi9Nf
#: src/modules/settings/playground/hooks/useOpenPlayground.ts
msgid "Could not open the API playground"
msgstr ""
#. js-lingui-id: wVw4Am
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not refresh validity token. Please contact support."
@@ -4340,7 +4376,6 @@ msgstr "创建和配置 AI 代理"
#. js-lingui-id: uXGLuq
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Create API key"
msgstr "创建 API 密钥"
@@ -4625,7 +4660,7 @@ msgstr "未找到当前工作区成员。"
#. js-lingui-id: 8Tg/JR
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/applications/hooks/useApplicationChipData.ts
@@ -4650,6 +4685,11 @@ msgstr "自定义域名"
msgid "Custom domain updated"
msgstr "自定义域已更新"
#. js-lingui-id: c6P+Xe
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Custom instructions appended to every system prompt"
msgstr ""
#. js-lingui-id: 87ZNeX
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
msgid "Custom model ID"
@@ -4692,6 +4732,7 @@ msgid "Customization"
msgstr "自定义"
#. js-lingui-id: srRMnJ
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectLayout.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
@@ -4788,6 +4829,11 @@ msgstr "深色"
msgid "Dashboard duplicated successfully"
msgstr "仪表板复制成功"
#. js-lingui-id: w6iIMm
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Dashboards"
msgstr ""
#. js-lingui-id: HKH+W+
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
@@ -4988,7 +5034,7 @@ msgstr "停用该字段"
#. js-lingui-id: yAT3be
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
@@ -5015,7 +5061,6 @@ msgstr ""
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
msgid "Default"
@@ -5031,6 +5076,11 @@ msgstr "默认国家"
msgid "Default Country Code"
msgstr "默认国家代码"
#. js-lingui-id: OtTlfU
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Default model"
msgstr ""
#. js-lingui-id: hUWaAk
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
msgid "Default model for chats and complex reasoning"
@@ -5473,6 +5523,11 @@ msgstr "详情"
msgid "Detected application version running on this instance"
msgstr ""
#. js-lingui-id: QYXe1O
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Develop"
msgstr ""
#. js-lingui-id: 7aDnUb
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Developer"
@@ -5564,7 +5619,6 @@ msgstr "不导入"
#. js-lingui-id: TvY/XA
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
msgid "Documentation"
@@ -5768,7 +5822,7 @@ msgid "e.g. OpenAI EU"
msgstr "例如:OpenAI EU"
#. js-lingui-id: p5P8NB
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
msgstr "例如,\"我们是一家 B2B SaaS 公司。始终使用正式语言...\""
@@ -6114,6 +6168,8 @@ msgstr "员工"
#. js-lingui-id: N2S1rs
#: src/modules/object-record/record-inline-cell/components/RecordInlineCellDisplayMode.tsx
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRelationFieldDiffValues.tsx
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRelationFieldDiffValues.tsx
#: src/modules/activities/timeline-activities/rows/main-object/components/EventFieldDiff.tsx
msgid "Empty"
msgstr "空"
@@ -6428,11 +6484,6 @@ msgstr "输入值"
msgid "Enter values, comma-separated"
msgstr "输入值,用逗号分隔"
#. js-lingui-id: OjkRLQ
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "Enter your API key"
msgstr "输入您的 API 密钥"
#. js-lingui-id: GpB8YV
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -6988,7 +7039,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
msgstr "激活企业许可证失败。请检查您的密钥或联系支持。"
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Failed to activate skill"
msgstr "启用技能失败。"
@@ -7007,11 +7058,6 @@ msgstr "添加提供商失败"
msgid "Failed to create email handle. Email handles may not be configured on this server."
msgstr ""
#. js-lingui-id: WM7GKt
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Failed to create tool"
msgstr "创建工具失败"
#. js-lingui-id: lWoewm
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Failed to delete email handle."
@@ -7023,7 +7069,7 @@ msgid "Failed to delete jobs. Please try again later."
msgstr "删除任务失败。请稍后再试。"
#. js-lingui-id: bmwWKk
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Failed to delete skill"
msgstr "删除技能失败。"
@@ -7126,7 +7172,7 @@ msgid "Failed to save role permissions: {errorMessage}"
msgstr ""
#. js-lingui-id: 9ryUyP
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Failed to save workspace instructions"
msgstr "保存工作区说明失败"
@@ -7152,13 +7198,13 @@ msgid "Failed to update default model"
msgstr "更新默认模型失败"
#. js-lingui-id: 1R13Ov
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
msgid "Failed to update model"
msgstr "更新模型失败"
#. js-lingui-id: W7Ff/4
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Failed to update model availability"
@@ -7175,7 +7221,7 @@ msgid "Failed to update model recommendations"
msgstr ""
#. js-lingui-id: rCUG3c
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
msgid "Failed to update model selection mode"
msgstr "更新模型选择模式失败"
@@ -7334,6 +7380,7 @@ msgstr "字段"
#. js-lingui-id: vF68cg
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
#: src/pages/settings/data-model/new-index/SettingsObjectNewIndex.tsx
@@ -7868,6 +7915,7 @@ msgid "Grants permission to perform all available actions without restriction"
msgstr "授予执行所有可用操作而无任何限制的许可。"
#. js-lingui-id: gBiL6J
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "GraphQL"
msgstr "GraphQL"
@@ -8550,6 +8598,7 @@ msgid "Insert a JSON input, then press \"Run Function\"."
msgstr ""
#. js-lingui-id: TKQ7K+
#: src/pages/settings/applications/SettingsApplications.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationRegistrationShareLinkButtons.tsx
msgid "Install"
@@ -8630,11 +8679,6 @@ msgstr "周期切换已取消。"
msgid "Invalid 2FA information."
msgstr "无效的 2FA 信息。"
#. js-lingui-id: GNRDhm
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "Invalid API key"
msgstr "无效的 API 密钥"
#. js-lingui-id: 9TgH9p
#: src/modules/settings/security/components/SettingsSecurityAuthBypassOptionsList.tsx
msgid "Invalid auth bypass provider"
@@ -8754,6 +8798,7 @@ msgstr "邀请函"
#. js-lingui-id: MFKlMB
#: src/utils/title-utils.ts
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/modules/workspace/components/WorkspaceInviteTeam.tsx
msgid "Invite"
msgstr "邀请"
@@ -9232,12 +9277,15 @@ msgid "Launch manually"
msgstr "手动启动"
#. js-lingui-id: rdU729
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -9693,6 +9741,11 @@ msgstr ""
msgid "Manage Members"
msgstr "管理成员"
#. js-lingui-id: LNz5UW
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Manage objects, fields and relationships"
msgstr ""
#. js-lingui-id: eGGH1l
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Manage security policies"
@@ -9729,7 +9782,7 @@ msgid "Manage your internet accounts."
msgstr "管理您的互联网账户。"
#. js-lingui-id: waFx9W
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Managed"
msgstr ""
@@ -9807,12 +9860,23 @@ msgstr "最大网址数量"
msgid "Maximum values"
msgstr "最大值"
#. js-lingui-id: nA8kxD
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
msgid "MCP"
msgstr ""
#. js-lingui-id: 2jj0eo
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "MCP config copied to clipboard"
msgstr ""
#. js-lingui-id: NvQoNb
#: src/pages/settings/ai/components/SettingsAiMCP.tsx
msgid "MCP Configuration copied to clipboard"
msgstr "MCP配置已复制到剪贴板"
#. js-lingui-id: 8CWirf
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiMCP.tsx
msgid "MCP Server"
msgstr "MCP服务器"
@@ -10019,6 +10083,7 @@ msgstr "模型 ID 为必填项"
#. js-lingui-id: //nm2/
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Models"
msgstr "模型"
@@ -10086,7 +10151,6 @@ msgid "months"
msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
msgid "More"
msgstr "更多"
@@ -10235,8 +10299,8 @@ msgstr ""
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTable.tsx
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
@@ -11417,6 +11481,7 @@ msgstr "对象"
#. js-lingui-id: B3toQF
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
@@ -11805,7 +11870,9 @@ msgid "Override Draft"
msgstr "覆盖草稿"
#. js-lingui-id: 6/dCYd
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Overview"
msgstr "概览"
@@ -11879,6 +11946,11 @@ msgstr "页面未找到 | Twenty"
msgid "Page Views"
msgstr "页面浏览量"
#. js-lingui-id: wRR604
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Pages"
msgstr ""
#. js-lingui-id: ijBN4V
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "paragraph"
@@ -12592,18 +12664,18 @@ msgid "Read documentation"
msgstr "阅读文档"
#. js-lingui-id: U26cMX
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read system prompts"
msgstr ""
#. js-lingui-id: EKsFda
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read the system prompts to understand how the AI works"
msgstr ""
#. js-lingui-id: 0URVx8
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1, }, )
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1 }, )
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read the system prompts to understand how the AI works (~{0} tokens)"
msgstr ""
@@ -12732,6 +12804,11 @@ msgstr "记录图像"
msgid "Record label"
msgstr "记录标签"
#. js-lingui-id: XueM/X
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Record page"
msgstr ""
#. js-lingui-id: mAHjRd
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutOpenInContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -12850,6 +12927,7 @@ msgid "Relation type"
msgstr "关系类型"
#. js-lingui-id: g87L9j
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
#: src/modules/activities/inline-cell/components/ActivityTargetsInlineCell.tsx
msgid "Relations"
@@ -13162,6 +13240,7 @@ msgid "Response Format"
msgstr ""
#. js-lingui-id: WHiaOl
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/playground/SettingsRestPlayground.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "REST"
@@ -13332,6 +13411,7 @@ msgstr ""
#. js-lingui-id: 5dJK4M
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
@@ -13551,7 +13631,7 @@ msgid "Search a role..."
msgstr "搜索角色..."
#. js-lingui-id: lJNEce
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Search a skill..."
msgstr "搜索技能..."
@@ -13567,7 +13647,7 @@ msgid "Search a team member..."
msgstr "搜索一个团队成员……"
#. js-lingui-id: VNmPqQ
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Search a tool..."
msgstr ""
@@ -13883,6 +13963,11 @@ msgstr ""
msgid "See Records on All Objects"
msgstr "查看所有对象上的记录"
#. js-lingui-id: eQ3co2
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "See your data structure as an interactive diagram"
msgstr ""
#. js-lingui-id: Hhnssf
#: src/pages/settings/applications/components/SettingsApplicationTableRow.tsx
msgid "Seeded"
@@ -14227,6 +14312,11 @@ msgstr "在 {objectLabel} 上设置一个选择字段以创建看板"
msgid "Set up forwarding from the source address to this destination."
msgstr ""
#. js-lingui-id: dq5Wx1
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Set up MCP"
msgstr ""
#. js-lingui-id: 9HNKkV
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
msgid "Set your application configuration variables"
@@ -14387,6 +14477,16 @@ msgstr ""
msgid "Side Panel"
msgstr "侧边栏"
#. js-lingui-id: uWi2Q+
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Sidebar"
msgstr ""
#. js-lingui-id: 9k9PMD
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Sidebar items"
msgstr ""
#. js-lingui-id: 5lWFkC
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
msgid "Sign in"
@@ -14471,12 +14571,12 @@ msgid "Skill"
msgstr "技能"
#. js-lingui-id: h4t38o
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skill activated"
msgstr "技能已启用"
#. js-lingui-id: /IoK74
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skill deleted"
msgstr "技能已删除"
@@ -14499,7 +14599,9 @@ msgstr ""
#. js-lingui-id: PCSkw2
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skills"
msgstr "技能"
@@ -14724,7 +14826,7 @@ msgid "Stages"
msgstr "阶段"
#. js-lingui-id: TJBHlP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/applications/hooks/useApplicationChipData.ts
msgid "Standard"
@@ -15137,8 +15239,8 @@ msgstr ""
#: src/pages/settings/ai/SettingsAiPrompts.tsx
#: src/pages/settings/ai/SettingsAiPrompts.tsx
#: src/pages/settings/ai/forms/components/SettingsAiAgentForm.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
msgid "System Prompt"
msgstr "系统提示"
@@ -15220,6 +15322,7 @@ msgstr "任务标题"
#. js-lingui-id: KM6m8p
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Team"
msgstr ""
@@ -15338,6 +15441,11 @@ msgid ""
"See the [Getting Started guide](https://twenty.com/developers/extend/apps/getting-started) for the full walkthrough, and [Building Apps](https://twenty.com/developers/extend/apps/building) for the `defineApplication` / `defineEntity` APIs."
msgstr ""
#. js-lingui-id: n+CCXl
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "The default AI model used for chats, agents, and workflows"
msgstr ""
#. js-lingui-id: 1xQkU9
#: src/modules/settings/data-model/fields/forms/phones/components/SettingsDataModelFieldPhonesForm.tsx
msgid "The default country code for new phone numbers."
@@ -15900,7 +16008,7 @@ msgid "Tool calls made"
msgstr "工具调用次数"
#. js-lingui-id: SrWh42
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/hooks/useCreateTool.ts
msgid "Tool created"
msgstr "工具已创建"
@@ -15921,7 +16029,9 @@ msgstr "工具生成"
#. js-lingui-id: xdA/+p
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Tools"
msgstr "工具"
@@ -16067,11 +16177,10 @@ msgstr ""
msgid "True"
msgstr "真"
#. js-lingui-id: haaL9N
#. js-lingui-id: 64tOpZ
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Try our REST or GraphQL API playgrounds."
msgstr "试用我们的REST或GraphQL API操场。"
msgid "Try our REST or GraphQL API playgrounds"
msgstr ""
#. js-lingui-id: 3WWUB9
#: src/pages/settings/updates/SettingsUpdates.tsx
@@ -16738,9 +16847,13 @@ msgstr "使用类似于 1Password、Authy、Microsoft Authenticator 的身份验
msgid "Use best models only"
msgstr "仅使用最佳模型"
#. js-lingui-id: 5ZehS/
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Use filter to see existing skills or create your own"
msgstr ""
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
@@ -17102,7 +17215,9 @@ msgstr "查看工作区活动日志"
#. js-lingui-id: 1I6UoR
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr "视图"
@@ -17155,10 +17270,15 @@ msgid "Visible to you"
msgstr "对您可见"
#. js-lingui-id: 6n7jtr
#: src/modules/settings/data-model/objects/components/SettingsObjectCoverImage.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Visualize"
msgstr "可视化"
#. js-lingui-id: VvM/Ty
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Visualize data model"
msgstr ""
#. js-lingui-id: uUehLT
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Waiting"
@@ -17194,6 +17314,41 @@ msgstr "被删除"
msgid "was restored by"
msgstr "被恢复"
#. js-lingui-id: 0WPnTI
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Watch AI demo"
msgstr ""
#. js-lingui-id: 5qU4Mu
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
msgid "Watch API demo"
msgstr ""
#. js-lingui-id: inpQ46
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Watch apps demo"
msgstr ""
#. js-lingui-id: uIrZTC
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Watch customization demo"
msgstr ""
#. js-lingui-id: syeoTg
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Watch data model demo"
msgstr ""
#. js-lingui-id: egkNh9
#: src/modules/settings/components/SettingsDiscoveryHeroCard.tsx
msgid "Watch demo"
msgstr ""
#. js-lingui-id: 6ZDYQy
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Watch members demo"
msgstr ""
#. js-lingui-id: 6eMAkI
#: src/modules/auth/sign-in-up/components/EmailVerificationSent.tsx
msgid "We encountered an issue verifying"
@@ -17281,6 +17436,7 @@ msgstr "更新时需要 Webhook ID"
#. js-lingui-id: v1kQyJ
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
@@ -17336,6 +17492,11 @@ msgstr "我能帮您做什么?"
msgid "What this API can do: Select a user role to define its permissions."
msgstr "此 API 的功能:选择用户角色以定义其权限。"
#. js-lingui-id: drC+Tq
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "What's installed and being used in your workspace"
msgstr ""
#. js-lingui-id: m7GziZ
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "When a deal's stage changes to Closed Won, create a task assigned to the deal owner, due 7 days after the close date, with title \"Post-sale check-in\" and the company name in the description."
@@ -17395,6 +17556,11 @@ msgstr "组件类型"
msgid "widgets"
msgstr ""
#. js-lingui-id: tL6W2K
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Widgets"
msgstr ""
#. js-lingui-id: j6ncOZ
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowEditActionIterator.tsx
msgid "Will continue to the next iteration even if the current one fails"
@@ -17464,6 +17630,7 @@ msgstr "工作流"
#: src/pages/settings/members/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/layout/components/SettingsLayoutDetailScaffold.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
@@ -17473,7 +17640,6 @@ msgstr "工作流"
#: src/pages/settings/developers/playground/SettingsGraphQLPlayground.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -17553,8 +17719,8 @@ msgid "Workspace Info"
msgstr "工作区信息"
#. js-lingui-id: BYrMT0
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Workspace Instructions"
msgstr "工作区说明"
+247 -81
View File
@@ -954,7 +954,6 @@ msgstr "啟用"
#. js-lingui-id: Mue4oc
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Active API keys created by you or your team."
msgstr "由您或您的團隊創建的啟用 API 密鑰。"
@@ -1051,11 +1050,6 @@ msgstr ""
msgid "Add custom endpoints, private gateways, or additional regions."
msgstr "新增自訂端點、私有閘道,或其他區域。"
#. js-lingui-id: GuJvBr
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
msgid "Add custom instructions specific to your workspace (appended to system prompt)"
msgstr "新增針對您的工作區的自訂指示(附加到系統提示詞)"
#. js-lingui-id: 4JviOV
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
@@ -1293,6 +1287,11 @@ msgstr "添加到阻止列表"
msgid "Add to Favorite"
msgstr "添加到收藏夾"
#. js-lingui-id: VbareD
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Add Twenty as a Model Context Protocol (MCP) server. Paste this config into Claude Desktop, Cursor, Cline, Continue, Zed, or any other MCP-aware client."
msgstr ""
#. js-lingui-id: XnwceV
#: src/pages/settings/applications/components/SettingsApplicationRegistrationRedirectURIsInput.tsx
msgid "Add URI"
@@ -1775,6 +1774,11 @@ msgstr "所有任務已處理。請繼續保持。"
msgid "All the applications currently installed on this workspace"
msgstr ""
#. js-lingui-id: xP6s/m
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "All the layout items declared on your workspace"
msgstr ""
#. js-lingui-id: XuuWVF
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
msgid "All the standard objects"
@@ -1967,11 +1971,6 @@ msgstr "驗證更改時發生了內部錯誤。請聯繫支持。"
msgid "An object with this name already exists"
msgstr "此名稱的物件已存在"
#. js-lingui-id: lxentK
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "An unexpected error occurred"
msgstr "發生意外錯誤"
#. js-lingui-id: byKna+
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
msgid "An unexpected error occurred. Please try again."
@@ -2016,6 +2015,7 @@ msgid "Anyone with an email address at these domains is allowed to sign up for t
msgstr "具有這些域電子郵件地址的任何人都可以註冊此工作區。"
#. js-lingui-id: OZtEcz
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "API"
msgstr "API"
@@ -2033,7 +2033,6 @@ msgstr "API 和 Webhooks"
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "API Key"
msgstr "API 密鑰"
@@ -2063,7 +2062,6 @@ msgid "API key roles"
msgstr ""
#. js-lingui-id: 5h8ooz
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
msgid "API keys"
msgstr "API 密鑰"
@@ -2104,12 +2102,6 @@ msgstr "API 名稱(單數)"
msgid "API values"
msgstr "API 值"
#. js-lingui-id: JR6nY7
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "APIs"
msgstr "API"
#. js-lingui-id: ZZAOwb
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
@@ -2131,7 +2123,7 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
msgid "App"
msgstr "應用程式"
@@ -2481,6 +2473,11 @@ msgstr "在 {remainingTimes} 和 {lastTime}"
msgid "at 1 minute past the hour"
msgstr "在每小時過 1 分鐘時"
#. js-lingui-id: ooA+hm
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "At a glance"
msgstr ""
#. js-lingui-id: vyXyF0
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
msgid "At a specific date or time"
@@ -2645,11 +2642,15 @@ msgid "Availability"
msgstr "可用性"
#. js-lingui-id: csDS2L
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
msgid "Available"
msgstr "可用"
#. js-lingui-id: STA+22
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Available models"
msgstr ""
#. js-lingui-id: oD38t2
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Available tools"
@@ -2865,6 +2866,11 @@ msgstr "青銅色"
msgid "Brown"
msgstr "棕色"
#. js-lingui-id: O2UpM1
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Browse"
msgstr ""
#. js-lingui-id: GsXRxc
#: src/modules/settings/data-model/indexes/forms/components/SettingsObjectIndexOptionsForm.tsx
msgid "BTREE (default, good for sorting and equality)"
@@ -3615,6 +3621,11 @@ msgstr "命令已複製到剪貼板"
msgid "Command Icon"
msgstr "指令圖標"
#. js-lingui-id: V1zWD4
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Command menu"
msgstr ""
#. js-lingui-id: PUMdxH
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
msgid "Command Menu"
@@ -3642,6 +3653,11 @@ msgstr ""
msgid "commands"
msgstr ""
#. js-lingui-id: 45MZFs
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Commands"
msgstr ""
#. js-lingui-id: 4XlFx/
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Commands copied to clipboard"
@@ -3808,11 +3824,6 @@ msgstr "在您的域名提供商處配置這些 DNS 記錄"
msgid "Configure this widget to display fields"
msgstr "設定此小工具以顯示欄位"
#. js-lingui-id: hzDiM0
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Configure your default AI model"
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -3886,6 +3897,11 @@ msgstr ""
msgid "Connect a new account to your workspace"
msgstr "將新帳戶連接到工作區"
#. js-lingui-id: vPCRNy
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Connect AI assistants like Claude or Cursor to your workspace via the Model Context Protocol"
msgstr ""
#. js-lingui-id: YLx3sC
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect via IMAP/SMTP"
@@ -3901,6 +3917,11 @@ msgstr "連接到 Google"
msgid "Connect with Microsoft"
msgstr "連接到 Microsoft"
#. js-lingui-id: iZWbGJ
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Connect your AI assistant"
msgstr ""
#. js-lingui-id: QHcLEN
#: src/pages/settings/applications/SettingsApplicationConnectionDetail.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationConnectionsSection.tsx
@@ -4066,6 +4087,11 @@ msgstr "控制此角色可指派於哪些實體類型"
msgid "Conversation"
msgstr "對話"
#. js-lingui-id: EnJuK0
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Conversations"
msgstr ""
#. js-lingui-id: HRGl1X
#: src/pages/onboarding/CreateProfile.tsx
#: src/modules/settings/profile/components/NameFields.tsx
@@ -4104,6 +4130,11 @@ msgstr "複製命令"
msgid "Copy commands"
msgstr "複製命令"
#. js-lingui-id: eaZgIQ
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "Copy config"
msgstr ""
#. js-lingui-id: 7eVkEH
#: src/pages/onboarding/InviteTeam.tsx
msgid "Copy invitation link"
@@ -4216,6 +4247,11 @@ msgstr "無法開啟帳單入口網站。請檢查是否已提供企業授權金
msgid "Could not open Stripe. Please contact support."
msgstr "無法開啟 Stripe。請聯絡支援。"
#. js-lingui-id: 6wi9Nf
#: src/modules/settings/playground/hooks/useOpenPlayground.ts
msgid "Could not open the API playground"
msgstr ""
#. js-lingui-id: wVw4Am
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not refresh validity token. Please contact support."
@@ -4340,7 +4376,6 @@ msgstr "創建和配置 AI 代理"
#. js-lingui-id: uXGLuq
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Create API key"
msgstr "創建 API 密鑰"
@@ -4625,7 +4660,7 @@ msgstr "找不到當前工作區成員。"
#. js-lingui-id: 8Tg/JR
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/applications/hooks/useApplicationChipData.ts
@@ -4650,6 +4685,11 @@ msgstr "自定義域名"
msgid "Custom domain updated"
msgstr "自訂網域已更新"
#. js-lingui-id: c6P+Xe
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Custom instructions appended to every system prompt"
msgstr ""
#. js-lingui-id: 87ZNeX
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
msgid "Custom model ID"
@@ -4692,6 +4732,7 @@ msgid "Customization"
msgstr "自定義"
#. js-lingui-id: srRMnJ
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectLayout.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
@@ -4788,6 +4829,11 @@ msgstr "深色模式"
msgid "Dashboard duplicated successfully"
msgstr "儀表板複製成功"
#. js-lingui-id: w6iIMm
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Dashboards"
msgstr ""
#. js-lingui-id: HKH+W+
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
@@ -4988,7 +5034,7 @@ msgstr "停用此字段"
#. js-lingui-id: yAT3be
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
@@ -5015,7 +5061,6 @@ msgstr ""
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
msgid "Default"
@@ -5031,6 +5076,11 @@ msgstr "默認國家"
msgid "Default Country Code"
msgstr "默認國際冠碼"
#. js-lingui-id: OtTlfU
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Default model"
msgstr ""
#. js-lingui-id: hUWaAk
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
msgid "Default model for chats and complex reasoning"
@@ -5473,6 +5523,11 @@ msgstr "詳細資訊"
msgid "Detected application version running on this instance"
msgstr ""
#. js-lingui-id: QYXe1O
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Develop"
msgstr ""
#. js-lingui-id: 7aDnUb
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Developer"
@@ -5564,7 +5619,6 @@ msgstr "不導入"
#. js-lingui-id: TvY/XA
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
msgid "Documentation"
@@ -5768,7 +5822,7 @@ msgid "e.g. OpenAI EU"
msgstr "例如 OpenAI EU"
#. js-lingui-id: p5P8NB
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
msgstr "例如,\"我們是一家 B2B SaaS 公司。請始終使用正式語言...\""
@@ -6114,6 +6168,8 @@ msgstr "員工"
#. js-lingui-id: N2S1rs
#: src/modules/object-record/record-inline-cell/components/RecordInlineCellDisplayMode.tsx
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRelationFieldDiffValues.tsx
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRelationFieldDiffValues.tsx
#: src/modules/activities/timeline-activities/rows/main-object/components/EventFieldDiff.tsx
msgid "Empty"
msgstr "空"
@@ -6428,11 +6484,6 @@ msgstr "輸入值"
msgid "Enter values, comma-separated"
msgstr "輸入值,以逗號分隔"
#. js-lingui-id: OjkRLQ
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "Enter your API key"
msgstr "輸入您的 API 金鑰"
#. js-lingui-id: GpB8YV
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -6988,7 +7039,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
msgstr "無法啟用企業授權。請檢查您的金鑰或聯絡支援。"
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Failed to activate skill"
msgstr ""
@@ -7007,11 +7058,6 @@ msgstr "新增供應商失敗"
msgid "Failed to create email handle. Email handles may not be configured on this server."
msgstr ""
#. js-lingui-id: WM7GKt
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Failed to create tool"
msgstr "建立工具失敗"
#. js-lingui-id: lWoewm
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Failed to delete email handle."
@@ -7023,7 +7069,7 @@ msgid "Failed to delete jobs. Please try again later."
msgstr "無法刪除工作。請稍後重試。"
#. js-lingui-id: bmwWKk
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Failed to delete skill"
msgstr ""
@@ -7126,7 +7172,7 @@ msgid "Failed to save role permissions: {errorMessage}"
msgstr ""
#. js-lingui-id: 9ryUyP
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Failed to save workspace instructions"
msgstr "儲存工作區指示失敗"
@@ -7152,13 +7198,13 @@ msgid "Failed to update default model"
msgstr "更新預設模型失敗"
#. js-lingui-id: 1R13Ov
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
msgid "Failed to update model"
msgstr "更新模型失敗"
#. js-lingui-id: W7Ff/4
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Failed to update model availability"
@@ -7175,7 +7221,7 @@ msgid "Failed to update model recommendations"
msgstr ""
#. js-lingui-id: rCUG3c
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/hooks/useSettingsAiModelsActions.ts
msgid "Failed to update model selection mode"
msgstr "更新模型選擇模式失敗"
@@ -7334,6 +7380,7 @@ msgstr "字段"
#. js-lingui-id: vF68cg
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
#: src/pages/settings/data-model/new-index/SettingsObjectNewIndex.tsx
@@ -7868,6 +7915,7 @@ msgid "Grants permission to perform all available actions without restriction"
msgstr "授予執行所有可用操作的許可權,無任何限制。"
#. js-lingui-id: gBiL6J
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "GraphQL"
msgstr "GraphQL"
@@ -8550,6 +8598,7 @@ msgid "Insert a JSON input, then press \"Run Function\"."
msgstr ""
#. js-lingui-id: TKQ7K+
#: src/pages/settings/applications/SettingsApplications.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationRegistrationShareLinkButtons.tsx
msgid "Install"
@@ -8630,11 +8679,6 @@ msgstr "時間間隔切換已取消。"
msgid "Invalid 2FA information."
msgstr "無效的 2FA 資訊。"
#. js-lingui-id: GNRDhm
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "Invalid API key"
msgstr "無效的 API 密鑰"
#. js-lingui-id: 9TgH9p
#: src/modules/settings/security/components/SettingsSecurityAuthBypassOptionsList.tsx
msgid "Invalid auth bypass provider"
@@ -8754,6 +8798,7 @@ msgstr "邀請函"
#. js-lingui-id: MFKlMB
#: src/utils/title-utils.ts
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/modules/workspace/components/WorkspaceInviteTeam.tsx
msgid "Invite"
msgstr "邀請"
@@ -9232,12 +9277,15 @@ msgid "Launch manually"
msgstr "手動啟動"
#. js-lingui-id: rdU729
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -9693,6 +9741,11 @@ msgstr ""
msgid "Manage Members"
msgstr "管理成員"
#. js-lingui-id: LNz5UW
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Manage objects, fields and relationships"
msgstr ""
#. js-lingui-id: eGGH1l
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Manage security policies"
@@ -9729,7 +9782,7 @@ msgid "Manage your internet accounts."
msgstr "管理您的互聯網帳戶"
#. js-lingui-id: waFx9W
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Managed"
msgstr ""
@@ -9807,12 +9860,23 @@ msgstr "最大URL"
msgid "Maximum values"
msgstr "最大值"
#. js-lingui-id: nA8kxD
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
msgid "MCP"
msgstr ""
#. js-lingui-id: 2jj0eo
#: src/modules/settings/playground/components/SettingsMcpSetup.tsx
msgid "MCP config copied to clipboard"
msgstr ""
#. js-lingui-id: NvQoNb
#: src/pages/settings/ai/components/SettingsAiMCP.tsx
msgid "MCP Configuration copied to clipboard"
msgstr "MCP配置已複製到剪貼板"
#. js-lingui-id: 8CWirf
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiMCP.tsx
msgid "MCP Server"
msgstr "MCP伺服器"
@@ -10019,6 +10083,7 @@ msgstr "需要提供模型 ID"
#. js-lingui-id: //nm2/
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Models"
msgstr "模型"
@@ -10086,7 +10151,6 @@ msgid "months"
msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
msgid "More"
msgstr "更多"
@@ -10235,8 +10299,8 @@ msgstr ""
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTable.tsx
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
@@ -11417,6 +11481,7 @@ msgstr "對象"
#. js-lingui-id: B3toQF
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
@@ -11805,7 +11870,9 @@ msgid "Override Draft"
msgstr "覆寫草稿"
#. js-lingui-id: 6/dCYd
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Overview"
msgstr "概覽"
@@ -11879,6 +11946,11 @@ msgstr "找不到頁面 | Twenty"
msgid "Page Views"
msgstr "頁面瀏覽"
#. js-lingui-id: wRR604
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Pages"
msgstr ""
#. js-lingui-id: ijBN4V
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "paragraph"
@@ -12592,18 +12664,18 @@ msgid "Read documentation"
msgstr "閱讀說明文件"
#. js-lingui-id: U26cMX
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read system prompts"
msgstr ""
#. js-lingui-id: EKsFda
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read the system prompts to understand how the AI works"
msgstr ""
#. js-lingui-id: 0URVx8
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1, }, )
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1 }, )
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "Read the system prompts to understand how the AI works (~{0} tokens)"
msgstr ""
@@ -12732,6 +12804,11 @@ msgstr "記錄圖像"
msgid "Record label"
msgstr "記錄標籤"
#. js-lingui-id: XueM/X
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Record page"
msgstr ""
#. js-lingui-id: mAHjRd
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutOpenInContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -12850,6 +12927,7 @@ msgid "Relation type"
msgstr "關係類型"
#. js-lingui-id: g87L9j
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
#: src/modules/activities/inline-cell/components/ActivityTargetsInlineCell.tsx
msgid "Relations"
@@ -13162,6 +13240,7 @@ msgid "Response Format"
msgstr ""
#. js-lingui-id: WHiaOl
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/playground/SettingsRestPlayground.tsx
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
msgid "REST"
@@ -13332,6 +13411,7 @@ msgstr ""
#. js-lingui-id: 5dJK4M
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
@@ -13551,7 +13631,7 @@ msgid "Search a role..."
msgstr "搜尋角色..."
#. js-lingui-id: lJNEce
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Search a skill..."
msgstr ""
@@ -13567,7 +13647,7 @@ msgid "Search a team member..."
msgstr "搜索團隊成員……"
#. js-lingui-id: VNmPqQ
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Search a tool..."
msgstr ""
@@ -13883,6 +13963,11 @@ msgstr ""
msgid "See Records on All Objects"
msgstr "查看所有物件的記錄"
#. js-lingui-id: eQ3co2
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "See your data structure as an interactive diagram"
msgstr ""
#. js-lingui-id: Hhnssf
#: src/pages/settings/applications/components/SettingsApplicationTableRow.tsx
msgid "Seeded"
@@ -14227,6 +14312,11 @@ msgstr "在 {objectLabel} 上設定一個選擇欄位以建立看板"
msgid "Set up forwarding from the source address to this destination."
msgstr ""
#. js-lingui-id: dq5Wx1
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Set up MCP"
msgstr ""
#. js-lingui-id: 9HNKkV
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
msgid "Set your application configuration variables"
@@ -14387,6 +14477,16 @@ msgstr ""
msgid "Side Panel"
msgstr "側邊面板"
#. js-lingui-id: uWi2Q+
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Sidebar"
msgstr ""
#. js-lingui-id: 9k9PMD
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Sidebar items"
msgstr ""
#. js-lingui-id: 5lWFkC
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
msgid "Sign in"
@@ -14471,12 +14571,12 @@ msgid "Skill"
msgstr ""
#. js-lingui-id: h4t38o
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skill activated"
msgstr ""
#. js-lingui-id: /IoK74
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skill deleted"
msgstr ""
@@ -14499,7 +14599,9 @@ msgstr ""
#. js-lingui-id: PCSkw2
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Skills"
msgstr ""
@@ -14724,7 +14826,7 @@ msgid "Stages"
msgstr "階段"
#. js-lingui-id: TJBHlP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/applications/hooks/useApplicationChipData.ts
msgid "Standard"
@@ -15137,8 +15239,8 @@ msgstr ""
#: src/pages/settings/ai/SettingsAiPrompts.tsx
#: src/pages/settings/ai/SettingsAiPrompts.tsx
#: src/pages/settings/ai/forms/components/SettingsAiAgentForm.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
msgid "System Prompt"
msgstr "系統提示"
@@ -15220,6 +15322,7 @@ msgstr "任務標題"
#. js-lingui-id: KM6m8p
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Team"
msgstr ""
@@ -15338,6 +15441,11 @@ msgid ""
"See the [Getting Started guide](https://twenty.com/developers/extend/apps/getting-started) for the full walkthrough, and [Building Apps](https://twenty.com/developers/extend/apps/building) for the `defineApplication` / `defineEntity` APIs."
msgstr ""
#. js-lingui-id: n+CCXl
#: src/pages/settings/ai/components/SettingsAiModelsTab.tsx
msgid "The default AI model used for chats, agents, and workflows"
msgstr ""
#. js-lingui-id: 1xQkU9
#: src/modules/settings/data-model/fields/forms/phones/components/SettingsDataModelFieldPhonesForm.tsx
msgid "The default country code for new phone numbers."
@@ -15900,7 +16008,7 @@ msgid "Tool calls made"
msgstr "已進行的工具呼叫"
#. js-lingui-id: SrWh42
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/hooks/useCreateTool.ts
msgid "Tool created"
msgstr "工具已建立"
@@ -15921,7 +16029,9 @@ msgstr "工具產生"
#. js-lingui-id: xdA/+p
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Tools"
msgstr "工具"
@@ -16067,11 +16177,10 @@ msgstr ""
msgid "True"
msgstr "真"
#. js-lingui-id: haaL9N
#. js-lingui-id: 64tOpZ
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
msgid "Try our REST or GraphQL API playgrounds."
msgstr "試試我們的REST或GraphQL API操場。"
msgid "Try our REST or GraphQL API playgrounds"
msgstr ""
#. js-lingui-id: 3WWUB9
#: src/pages/settings/updates/SettingsUpdates.tsx
@@ -16738,9 +16847,13 @@ msgstr "使用 authenticator 應用和瀏覽器擴充功能,如 1Password、Au
msgid "Use best models only"
msgstr "僅使用最佳模型"
#. js-lingui-id: 5ZehS/
#: src/pages/settings/ai/components/SettingsAgentSkillsTab.tsx
msgid "Use filter to see existing skills or create your own"
msgstr ""
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsAgentToolsTab.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
@@ -17102,7 +17215,9 @@ msgstr "查看工作區活動日誌"
#. js-lingui-id: 1I6UoR
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr "檢視"
@@ -17155,10 +17270,15 @@ msgid "Visible to you"
msgstr "僅您可見"
#. js-lingui-id: 6n7jtr
#: src/modules/settings/data-model/objects/components/SettingsObjectCoverImage.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Visualize"
msgstr "可視化"
#. js-lingui-id: VvM/Ty
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Visualize data model"
msgstr ""
#. js-lingui-id: uUehLT
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Waiting"
@@ -17194,6 +17314,41 @@ msgstr "被刪除的使用者"
msgid "was restored by"
msgstr "被恢復的使用者"
#. js-lingui-id: 0WPnTI
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Watch AI demo"
msgstr ""
#. js-lingui-id: 5qU4Mu
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
msgid "Watch API demo"
msgstr ""
#. js-lingui-id: inpQ46
#: src/pages/settings/applications/SettingsApplications.tsx
msgid "Watch apps demo"
msgstr ""
#. js-lingui-id: uIrZTC
#: src/pages/settings/layout/SettingsLayout.tsx
msgid "Watch customization demo"
msgstr ""
#. js-lingui-id: syeoTg
#: src/pages/settings/data-model/SettingsObjects.tsx
msgid "Watch data model demo"
msgstr ""
#. js-lingui-id: egkNh9
#: src/modules/settings/components/SettingsDiscoveryHeroCard.tsx
msgid "Watch demo"
msgstr ""
#. js-lingui-id: 6ZDYQy
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Watch members demo"
msgstr ""
#. js-lingui-id: 6eMAkI
#: src/modules/auth/sign-in-up/components/EmailVerificationSent.tsx
msgid "We encountered an issue verifying"
@@ -17281,6 +17436,7 @@ msgstr "更新所需的 Webhook ID"
#. js-lingui-id: v1kQyJ
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
#: src/pages/settings/developers/webhooks/components/SettingsWebhooks.tsx
@@ -17336,6 +17492,11 @@ msgstr "我可以為您提供什麼協助?"
msgid "What this API can do: Select a user role to define its permissions."
msgstr "此 API 能做什麼:選擇用戶角色以定義其權限。"
#. js-lingui-id: drC+Tq
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "What's installed and being used in your workspace"
msgstr ""
#. js-lingui-id: m7GziZ
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "When a deal's stage changes to Closed Won, create a task assigned to the deal owner, due 7 days after the close date, with title \"Post-sale check-in\" and the company name in the description."
@@ -17395,6 +17556,11 @@ msgstr "小部件類型"
msgid "widgets"
msgstr ""
#. js-lingui-id: tL6W2K
#: src/modules/settings/layout/components/SettingsLayoutItemsStats.tsx
msgid "Widgets"
msgstr ""
#. js-lingui-id: j6ncOZ
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowEditActionIterator.tsx
msgid "Will continue to the next iteration even if the current one fails"
@@ -17464,6 +17630,7 @@ msgstr "Workflow"
#: src/pages/settings/members/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/layout/SettingsLayout.tsx
#: src/pages/settings/layout/components/SettingsLayoutDetailScaffold.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
@@ -17473,7 +17640,6 @@ msgstr "Workflow"
#: src/pages/settings/developers/playground/SettingsGraphQLPlayground.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsApiKeys.tsx
#: src/pages/settings/data-model/SettingsObjects.tsx
#: src/pages/settings/data-model/SettingsObjectOverview.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -17553,8 +17719,8 @@ msgid "Workspace Info"
msgstr "工作區資訊"
#. js-lingui-id: BYrMT0
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiMoreTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
#: src/pages/settings/ai/components/SettingsAiOverviewTab.tsx
msgid "Workspace Instructions"
msgstr "工作區指示"
@@ -1,10 +1,17 @@
import { useCallback, useMemo } from 'react';
import { useLinkedObjectsTitle } from '@/activities/timeline-activities/hooks/useLinkedObjectsTitle';
import { type TimelineActivity } from '@/activities/timeline-activities/types/TimelineActivity';
import { type ActivityTargetableObject } from '@/activities/types/ActivityTargetableEntity';
import { useListenToObjectRecordOperationBrowserEvent } from '@/browser-event/hooks/useListenToObjectRecordOperationBrowserEvent';
import { useObjectMetadataItem } from '@/object-metadata/hooks/useObjectMetadataItem';
import { useGenerateDepthRecordGqlFieldsFromObject } from '@/object-record/graphql/record-gql-fields/hooks/useGenerateDepthRecordGqlFieldsFromObject';
import { useFindManyRecords } from '@/object-record/hooks/useFindManyRecords';
import { CoreObjectNameSingular } from 'twenty-shared/types';
import { useListenToEventsForQuery } from '@/sse-db-event/hooks/useListenToEventsForQuery';
import {
CoreObjectNameSingular,
type RecordGqlOperationFilter,
} from 'twenty-shared/types';
import { capitalize, isDefined } from 'twenty-shared/utils';
// do we need to test this?
@@ -13,6 +20,15 @@ export const useTimelineActivities = (
) => {
const targetableObjectFieldIdName = `target${capitalize(targetableObject.targetObjectNameSingular)}Id`;
const filter: RecordGqlOperationFilter = useMemo(
() => ({
[targetableObjectFieldIdName]: {
eq: targetableObject.id,
},
}),
[targetableObjectFieldIdName, targetableObject.id],
);
const { objectMetadataItem: timelineActivityMetadata } =
useObjectMetadataItem({
objectNameSingular: CoreObjectNameSingular.TimelineActivity,
@@ -38,14 +54,11 @@ export const useTimelineActivities = (
records: timelineActivities,
loading: loadingTimelineActivities,
fetchMoreRecords,
refetch,
} = useFindManyRecords<TimelineActivity>({
skip: !hasTimelineActivityField,
objectNameSingular: CoreObjectNameSingular.TimelineActivity,
filter: {
[targetableObjectFieldIdName]: {
eq: targetableObject.id,
},
},
filter,
orderBy: [
{
createdAt: 'DescNullsFirst',
@@ -55,6 +68,35 @@ export const useTimelineActivities = (
fetchPolicy: 'cache-and-network',
});
const operationSignature = useMemo(
() => ({
objectNameSingular: CoreObjectNameSingular.TimelineActivity,
variables: {
filter,
},
}),
[filter],
);
useListenToEventsForQuery({
queryId: `timeline-activities-${targetableObject.targetObjectNameSingular}-${targetableObject.id}`,
operationSignature,
skip: !hasTimelineActivityField,
});
const handleTimelineActivityOperation = useCallback(() => {
if (!hasTimelineActivityField) {
return;
}
refetch();
}, [hasTimelineActivityField, refetch]);
useListenToObjectRecordOperationBrowserEvent({
onObjectRecordOperationBrowserEvent: handleTimelineActivityOperation,
objectMetadataItemId: timelineActivityMetadata.id,
});
const activityIds = timelineActivities
.filter((timelineActivity) => timelineActivity.name.match(/note|task/i))
.map((timelineActivity) => timelineActivity.linkedRecordId)
@@ -3,13 +3,16 @@ import { styled } from '@linaria/react';
import { EventFieldDiffLabel } from '@/activities/timeline-activities/rows/main-object/components/EventFieldDiffLabel';
import { EventFieldDiffValue } from '@/activities/timeline-activities/rows/main-object/components/EventFieldDiffValue';
import { EventFieldDiffValueEffect } from '@/activities/timeline-activities/rows/main-object/components/EventFieldDiffValueEffect';
import { EventRelationFieldDiffValues } from '@/activities/timeline-activities/rows/main-object/components/EventRelationFieldDiffValues';
import { isRelationFieldChangeValue } from '@/activities/timeline-activities/utils/relationFieldChangeValue';
import { type FieldMetadataItem } from '@/object-metadata/types/FieldMetadataItem';
import { type EnrichedObjectMetadataItem } from '@/object-metadata/types/EnrichedObjectMetadataItem';
import { Trans } from '@lingui/react/macro';
import { FieldMetadataType } from 'twenty-shared/types';
import { themeCssVariables } from 'twenty-ui/theme-constants';
type EventFieldDiffProps = {
diffRecord: Record<string, any>;
fieldDiff: { before: unknown; after: unknown };
mainObjectMetadataItem: EnrichedObjectMetadataItem;
fieldMetadataItem: FieldMetadataItem | undefined;
diffArtificialRecordStoreId: string;
@@ -31,8 +34,12 @@ const StyledEmptyValue = styled.div`
color: ${themeCssVariables.font.color.tertiary};
`;
const StyledArrowContainer = styled.span`
color: ${themeCssVariables.font.color.secondary};
`;
export const EventFieldDiff = ({
diffRecord,
fieldDiff,
mainObjectMetadataItem,
fieldMetadataItem,
diffArtificialRecordStoreId,
@@ -41,11 +48,31 @@ export const EventFieldDiff = ({
throw new Error('fieldMetadataItem is required');
}
const isRelationFieldDiff =
fieldMetadataItem.type === FieldMetadataType.RELATION &&
(isRelationFieldChangeValue(fieldDiff.before) ||
isRelationFieldChangeValue(fieldDiff.after));
if (isRelationFieldDiff) {
return (
<StyledEventFieldDiffContainer>
<EventFieldDiffLabel fieldMetadataItem={fieldMetadataItem} />
<StyledArrowContainer></StyledArrowContainer>
<EventRelationFieldDiffValues
fieldDiff={fieldDiff}
fieldMetadataItem={fieldMetadataItem}
/>
</StyledEventFieldDiffContainer>
);
}
const diffRecord = fieldDiff.after as Record<string, unknown> | undefined;
const isValueEmpty = (value: unknown): boolean =>
value === null || value === undefined || value === '';
const isObjectEmpty = (obj: Record<string, unknown>): boolean =>
Object.values(obj).every(isValueEmpty);
const isObjectEmpty = (objectValue: Record<string, unknown>): boolean =>
Object.values(objectValue).every(isValueEmpty);
const isUpdatedToEmpty =
isValueEmpty(diffRecord) ||
@@ -55,7 +82,8 @@ export const EventFieldDiff = ({
return (
<StyledEventFieldDiffContainer>
<EventFieldDiffLabel fieldMetadataItem={fieldMetadataItem} />
<EventFieldDiffLabel fieldMetadataItem={fieldMetadataItem} />
<StyledArrowContainer></StyledArrowContainer>
{isUpdatedToEmpty ? (
<StyledEmptyValue>
<Trans>Empty</Trans>
@@ -1,24 +1,25 @@
import { EventFieldDiff } from '@/activities/timeline-activities/rows/main-object/components/EventFieldDiff';
import { findFieldMetadataItemByDiffKey } from '@/activities/timeline-activities/utils/findFieldMetadataItemByDiffKey';
import { isDefined } from 'twenty-shared/utils';
import { type FieldMetadataItem } from '@/object-metadata/types/FieldMetadataItem';
import { type EnrichedObjectMetadataItem } from '@/object-metadata/types/EnrichedObjectMetadataItem';
type EventFieldDiffContainerProps = {
mainObjectMetadataItem: EnrichedObjectMetadataItem;
diffKey: string;
diffValue: any;
fieldDiff: { before: unknown; after: unknown };
eventId: string;
fieldMetadataItemMap: Record<string, FieldMetadataItem>;
};
export const EventFieldDiffContainer = ({
mainObjectMetadataItem,
diffKey,
diffValue,
fieldDiff,
eventId,
fieldMetadataItemMap,
}: EventFieldDiffContainerProps) => {
const fieldMetadataItem = fieldMetadataItemMap[diffKey];
const fieldMetadataItem = findFieldMetadataItemByDiffKey(
mainObjectMetadataItem.fields,
diffKey,
);
if (!isDefined(fieldMetadataItem)) {
throw new Error(
@@ -31,7 +32,7 @@ export const EventFieldDiffContainer = ({
return (
<EventFieldDiff
key={diffArtificialRecordStoreId}
diffRecord={diffValue}
fieldDiff={fieldDiff}
fieldMetadataItem={fieldMetadataItem}
mainObjectMetadataItem={mainObjectMetadataItem}
diffArtificialRecordStoreId={diffArtificialRecordStoreId}
@@ -0,0 +1,191 @@
import { styled } from '@linaria/react';
import { useId, useMemo } from 'react';
import { isRelationFieldChangeValue } from '@/activities/timeline-activities/utils/relationFieldChangeValue';
import { useObjectMetadataItem } from '@/object-metadata/hooks/useObjectMetadataItem';
import { type FieldMetadataItem } from '@/object-metadata/types/FieldMetadataItem';
import { getObjectRecordIdentifier } from '@/object-metadata/utils/getObjectRecordIdentifier';
import { useFindManyRecords } from '@/object-record/hooks/useFindManyRecords';
import { Trans, useLingui } from '@lingui/react/macro';
import { isDefined } from 'twenty-shared/utils';
import { AppTooltip, TooltipDelay, TooltipPosition } from 'twenty-ui/display';
import { themeCssVariables } from 'twenty-ui/theme-constants';
type EventRelationFieldDiffValuesProps = {
fieldDiff: { before: unknown; after: unknown };
fieldMetadataItem: FieldMetadataItem;
};
const StyledRelationValue = styled.div`
color: ${themeCssVariables.font.color.primary};
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
`;
const StyledEmptyValue = styled.div`
color: ${themeCssVariables.font.color.tertiary};
`;
const getRelationRecordId = (value: unknown): string | null => {
if (!isRelationFieldChangeValue(value)) {
return null;
}
if (!isDefined(value.id) || value.id === '') {
return null;
}
return value.id;
};
const EventRelationFieldDiffValuesWithFetch = ({
fieldDiff,
relationTargetObjectMetadataNameSingular,
}: {
fieldDiff: { before: unknown; after: unknown };
relationTargetObjectMetadataNameSingular: string;
}) => {
const relationRecordIds = useMemo(() => {
const recordIds = new Set<string>();
for (const relationFieldChangeValue of [
fieldDiff.before,
fieldDiff.after,
]) {
const relationRecordId = getRelationRecordId(relationFieldChangeValue);
if (isDefined(relationRecordId)) {
recordIds.add(relationRecordId);
}
}
return Array.from(recordIds);
}, [fieldDiff.after, fieldDiff.before]);
const { objectMetadataItem: relationTargetObjectMetadataItem } =
useObjectMetadataItem({
objectNameSingular: relationTargetObjectMetadataNameSingular,
});
const { records, loading } = useFindManyRecords({
objectNameSingular: relationTargetObjectMetadataNameSingular,
filter: {
id: {
in: relationRecordIds,
},
},
skip: relationRecordIds.length === 0,
});
const recordsById = useMemo(
() => new Map(records.map((record) => [record.id, record])),
[records],
);
const resolveDisplayName = (value: unknown): string | null => {
const relationRecordId = getRelationRecordId(value);
if (!isDefined(relationRecordId)) {
return null;
}
const relatedRecord = recordsById.get(relationRecordId);
if (isDefined(relatedRecord)) {
return getObjectRecordIdentifier({
objectMetadataItem: relationTargetObjectMetadataItem,
record: relatedRecord,
allowRequestsToTwentyIcons: false,
}).name;
}
if (loading) {
return null;
}
return relationRecordId;
};
const beforeDisplayName = resolveDisplayName(fieldDiff.before);
const afterDisplayName = resolveDisplayName(fieldDiff.after);
return (
<RelationFieldDiffValue
beforeDisplayName={beforeDisplayName}
afterDisplayName={afterDisplayName}
/>
);
};
const RelationFieldDiffValue = ({
beforeDisplayName,
afterDisplayName,
}: {
beforeDisplayName: string | null;
afterDisplayName: string | null;
}) => {
const { t } = useLingui();
const instanceId = useId();
// react-tooltip anchors via a CSS selector, so the id must be selector-safe
const tooltipAnchorId = `relation-field-diff-${instanceId.replace(
/[^a-zA-Z0-9-_]/g,
'-',
)}`;
const emptyLabel = t`Empty`;
const tooltipContent = `${beforeDisplayName ?? emptyLabel}${
afterDisplayName ?? emptyLabel
}`;
return (
<>
{afterDisplayName !== null ? (
<StyledRelationValue id={tooltipAnchorId}>
{afterDisplayName}
</StyledRelationValue>
) : (
<StyledEmptyValue id={tooltipAnchorId}>
<Trans>Empty</Trans>
</StyledEmptyValue>
)}
<AppTooltip
anchorSelect={`#${tooltipAnchorId}`}
content={tooltipContent}
delay={TooltipDelay.shortDelay}
place={TooltipPosition.Bottom}
positionStrategy="fixed"
/>
</>
);
};
export const EventRelationFieldDiffValues = ({
fieldDiff,
fieldMetadataItem,
}: EventRelationFieldDiffValuesProps) => {
const relationTargetObjectMetadataNameSingular =
fieldMetadataItem.relation?.targetObjectMetadata.nameSingular;
if (!isDefined(relationTargetObjectMetadataNameSingular)) {
const beforeDisplayName = getRelationRecordId(fieldDiff.before);
const afterDisplayName = getRelationRecordId(fieldDiff.after);
return (
<RelationFieldDiffValue
beforeDisplayName={beforeDisplayName}
afterDisplayName={afterDisplayName}
/>
);
}
return (
<EventRelationFieldDiffValuesWithFetch
fieldDiff={fieldDiff}
relationTargetObjectMetadataNameSingular={
relationTargetObjectMetadataNameSingular
}
/>
);
};
@@ -7,7 +7,6 @@ import { EventCardToggleButton } from '@/activities/timeline-activities/rows/com
import { EventRowItem } from '@/activities/timeline-activities/rows/components/EventRowItem';
import { EventFieldDiffContainer } from '@/activities/timeline-activities/rows/main-object/components/EventFieldDiffContainer';
import { type TimelineActivity } from '@/activities/timeline-activities/types/TimelineActivity';
import { type FieldMetadataItem } from '@/object-metadata/types/FieldMetadataItem';
import { type EnrichedObjectMetadataItem } from '@/object-metadata/types/EnrichedObjectMetadataItem';
import { MOBILE_VIEWPORT, themeCssVariables } from 'twenty-ui/theme-constants';
@@ -61,12 +60,6 @@ export const EventRowMainObjectUpdated = ({
const [isOpen, setIsOpen] = useState(true);
const fieldMetadataItemMap: Record<string, FieldMetadataItem> =
mainObjectMetadataItem.fields.reduce(
(acc, field) => ({ ...acc, [field.name]: field }),
{},
);
const diffEntries = Object.entries(diff);
if (diffEntries.length === 0) {
throw new Error('Cannot render update description without changes');
@@ -85,9 +78,8 @@ export const EventRowMainObjectUpdated = ({
<EventFieldDiffContainer
mainObjectMetadataItem={mainObjectMetadataItem}
diffKey={diffEntries[0][0]}
diffValue={diffEntries[0][1].after}
fieldDiff={diffEntries[0][1]}
eventId={event.id}
fieldMetadataItemMap={fieldMetadataItemMap}
/>
)}
{diffEntries.length > 1 && (
@@ -106,9 +98,8 @@ export const EventRowMainObjectUpdated = ({
key={diffKey}
mainObjectMetadataItem={mainObjectMetadataItem}
diffKey={diffKey}
diffValue={diffValue.after}
fieldDiff={diffValue}
eventId={event.id}
fieldMetadataItemMap={fieldMetadataItemMap}
/>
))}
</EventCard>
@@ -0,0 +1,208 @@
import { i18n } from '@lingui/core';
import { I18nProvider } from '@lingui/react';
import { fireEvent, render, screen } from '@testing-library/react';
import { type ReactNode } from 'react';
import { FieldMetadataType } from 'twenty-shared/types';
import { EventRelationFieldDiffValues } from '@/activities/timeline-activities/rows/main-object/components/EventRelationFieldDiffValues';
import { type FieldMetadataItem } from '@/object-metadata/types/FieldMetadataItem';
jest.mock('@/object-record/hooks/useFindManyRecords', () => ({
useFindManyRecords: jest.fn(),
}));
jest.mock('@/object-metadata/hooks/useObjectMetadataItem', () => ({
useObjectMetadataItem: jest.fn(),
}));
// getObjectRecordIdentifier depends on label-identifier metadata; mocking it to
// echo the record name keeps these tests focused on the diff rendering logic.
jest.mock('@/object-metadata/utils/getObjectRecordIdentifier', () => ({
getObjectRecordIdentifier: jest.fn(),
}));
const { useFindManyRecords } = jest.requireMock(
'@/object-record/hooks/useFindManyRecords',
);
const { useObjectMetadataItem } = jest.requireMock(
'@/object-metadata/hooks/useObjectMetadataItem',
);
const { getObjectRecordIdentifier } = jest.requireMock(
'@/object-metadata/utils/getObjectRecordIdentifier',
);
const WORKSPACE_MEMBER_RECORDS = [
{ id: 'before-id', name: 'Tim A' },
{ id: 'after-id', name: 'Tim Apple' },
];
const relationFieldMetadataItem = {
id: 'field-account-owner',
name: 'accountOwner',
type: FieldMetadataType.RELATION,
relation: {
targetObjectMetadata: { nameSingular: 'workspaceMember' },
},
} as unknown as FieldMetadataItem;
const renderWithI18n = (node: ReactNode) =>
render(<I18nProvider i18n={i18n}>{node}</I18nProvider>);
// react-tooltip relies on floating-ui, which needs ResizeObserver; jsdom does
// not provide one, so we stub it for the hover-tooltip assertions.
class ResizeObserverMock {
observe(): void {}
unobserve(): void {}
disconnect(): void {}
}
describe('EventRelationFieldDiffValues', () => {
beforeAll(() => {
global.ResizeObserver =
ResizeObserverMock as unknown as typeof ResizeObserver;
});
beforeEach(() => {
useObjectMetadataItem.mockReturnValue({
objectMetadataItem: { nameSingular: 'workspaceMember' },
});
useFindManyRecords.mockReturnValue({
records: WORKSPACE_MEMBER_RECORDS,
loading: false,
});
getObjectRecordIdentifier.mockImplementation(
({ record }: { record: { name: string } }) => ({ name: record.name }),
);
});
afterEach(() => {
jest.clearAllMocks();
});
// Regression test: clearing a relation must show "Empty", not the stale
// previous value. value -> null is the only transition where `after` is null
// while `before` is set, so it is the one that previously rendered the old
// value as if nothing had changed.
it('renders "Empty" when a relation is changed from a value to null', () => {
renderWithI18n(
<EventRelationFieldDiffValues
fieldDiff={{ before: { id: 'before-id' }, after: { id: null } }}
fieldMetadataItem={relationFieldMetadataItem}
/>,
);
expect(screen.getByText('Empty')).toBeInTheDocument();
expect(screen.queryByText('Tim A')).not.toBeInTheDocument();
});
it('renders the new record name when a relation is set from null to a value', () => {
renderWithI18n(
<EventRelationFieldDiffValues
fieldDiff={{ before: { id: null }, after: { id: 'after-id' } }}
fieldMetadataItem={relationFieldMetadataItem}
/>,
);
expect(screen.getByText('Tim Apple')).toBeInTheDocument();
expect(screen.queryByText('Empty')).not.toBeInTheDocument();
});
it('renders only the after record name when a relation changes from one value to another', () => {
renderWithI18n(
<EventRelationFieldDiffValues
fieldDiff={{ before: { id: 'before-id' }, after: { id: 'after-id' } }}
fieldMetadataItem={relationFieldMetadataItem}
/>,
);
expect(screen.getByText('Tim Apple')).toBeInTheDocument();
expect(screen.queryByText('Tim A')).not.toBeInTheDocument();
expect(screen.queryByText('Empty')).not.toBeInTheDocument();
});
// Hovering the value reveals a tooltip with the full before -> after change,
// even though only the after value is shown inline.
describe('before -> after tooltip on hover', () => {
it('does not render the tooltip until the value is hovered', () => {
renderWithI18n(
<EventRelationFieldDiffValues
fieldDiff={{ before: { id: 'before-id' }, after: { id: null } }}
fieldMetadataItem={relationFieldMetadataItem}
/>,
);
expect(screen.queryByText('Tim A → Empty')).not.toBeInTheDocument();
});
it('shows "before → Empty" when a relation is cleared', async () => {
renderWithI18n(
<EventRelationFieldDiffValues
fieldDiff={{ before: { id: 'before-id' }, after: { id: null } }}
fieldMetadataItem={relationFieldMetadataItem}
/>,
);
fireEvent.mouseEnter(screen.getByText('Empty'));
expect(await screen.findByText('Tim A → Empty')).toBeInTheDocument();
});
it('shows "Empty → after" when a relation is set from null', async () => {
renderWithI18n(
<EventRelationFieldDiffValues
fieldDiff={{ before: { id: null }, after: { id: 'after-id' } }}
fieldMetadataItem={relationFieldMetadataItem}
/>,
);
fireEvent.mouseEnter(screen.getByText('Tim Apple'));
expect(await screen.findByText('Empty → Tim Apple')).toBeInTheDocument();
});
it('shows "before → after" when a relation changes between two values', async () => {
renderWithI18n(
<EventRelationFieldDiffValues
fieldDiff={{ before: { id: 'before-id' }, after: { id: 'after-id' } }}
fieldMetadataItem={relationFieldMetadataItem}
/>,
);
fireEvent.mouseEnter(screen.getByText('Tim Apple'));
expect(await screen.findByText('Tim A → Tim Apple')).toBeInTheDocument();
});
});
// Fallback branch: when the relation has no target object metadata, the
// component skips the fetch and renders directly from the raw id.
describe('without a relation target object metadata', () => {
const fieldMetadataItemWithoutTarget = {
id: 'field-account-owner',
name: 'accountOwner',
type: FieldMetadataType.RELATION,
} as unknown as FieldMetadataItem;
it('renders "Empty" when changed from a value to null', () => {
renderWithI18n(
<EventRelationFieldDiffValues
fieldDiff={{ before: { id: 'before-id' }, after: { id: null } }}
fieldMetadataItem={fieldMetadataItemWithoutTarget}
/>,
);
expect(screen.getByText('Empty')).toBeInTheDocument();
});
it('renders the raw record id when set to a value', () => {
renderWithI18n(
<EventRelationFieldDiffValues
fieldDiff={{ before: { id: null }, after: { id: 'after-id' } }}
fieldMetadataItem={fieldMetadataItemWithoutTarget}
/>,
);
expect(screen.getByText('after-id')).toBeInTheDocument();
});
});
});
@@ -1,6 +1,8 @@
import { type TimelineActivity } from '@/activities/timeline-activities/types/TimelineActivity';
import { CoreObjectNameSingular } from 'twenty-shared/types';
import { findFieldMetadataItemByDiffKey } from '@/activities/timeline-activities/utils/findFieldMetadataItemByDiffKey';
import { type EnrichedObjectMetadataItem } from '@/object-metadata/types/EnrichedObjectMetadataItem';
import { CoreObjectNameSingular } from 'twenty-shared/types';
import { isDefined } from 'twenty-shared/utils';
export const filterOutInvalidTimelineActivities = (
timelineActivities: TimelineActivity[],
@@ -21,14 +23,6 @@ export const filterOutInvalidTimelineActivities = (
throw new Error('Object metadata items not found');
}
const fieldMetadataItemMap = new Map(
mainObjectMetadataItem.readableFields.map((field) => [field.name, field]),
);
const noteFieldMetadataItemMap = new Map(
noteObjectMetadataItem.readableFields.map((field) => [field.name, field]),
);
return timelineActivities.filter((timelineActivity) => {
const diff = timelineActivity.properties?.diff;
const canSkipValidation = !diff;
@@ -41,11 +35,14 @@ export const filterOutInvalidTimelineActivities = (
timelineActivity.name.startsWith('linked-note') ||
timelineActivity.name.startsWith('linked-task');
const fieldsToValidateAgainst = isNoteOrTask
? noteObjectMetadataItem.readableFields
: mainObjectMetadataItem.readableFields;
const validDiffEntries = Object.entries(diff).filter(([diffKey]) =>
isNoteOrTask
? // Note and Task objects have the same field metadata
noteFieldMetadataItemMap.has(diffKey)
: fieldMetadataItemMap.has(diffKey),
isDefined(
findFieldMetadataItemByDiffKey(fieldsToValidateAgainst, diffKey),
),
);
if (validDiffEntries.length === 0) {
@@ -0,0 +1,23 @@
import { type FieldMetadataItem } from '@/object-metadata/types/FieldMetadataItem';
import { computeRelationGqlFieldJoinColumnName } from 'twenty-shared/utils';
export const findFieldMetadataItemByDiffKey = (
fieldMetadataItems: FieldMetadataItem[],
diffKey: string,
): FieldMetadataItem | undefined => {
const fieldMetadataItemByName = fieldMetadataItems.find(
(fieldMetadataItem) => fieldMetadataItem.name === diffKey,
);
if (fieldMetadataItemByName) {
return fieldMetadataItemByName;
}
return fieldMetadataItems.find((fieldMetadataItem) => {
const joinColumnName =
fieldMetadataItem.settings?.joinColumnName ??
computeRelationGqlFieldJoinColumnName({ name: fieldMetadataItem.name });
return joinColumnName === diffKey;
});
};
@@ -0,0 +1,16 @@
import { isDefined } from 'twenty-shared/utils';
export type RelationFieldChangeValue = {
id: string | null;
};
export const isRelationFieldChangeValue = (
value: unknown,
): value is RelationFieldChangeValue => {
return (
isDefined(value) &&
typeof value === 'object' &&
value !== null &&
'id' in value
);
};
@@ -0,0 +1,11 @@
import { gql } from '@apollo/client';
export const FIND_WORKSPACE_AI_STATS = gql`
query FindWorkspaceAiStats {
findWorkspaceAiStats {
conversationsCount
skillsCount
toolsCount
}
}
`;
@@ -220,6 +220,12 @@ const SettingsApplicationCommandMenuItemDetail = lazy(() =>
),
);
const SettingsLayout = lazy(() =>
import('~/pages/settings/layout/SettingsLayout').then((module) => ({
default: module.SettingsLayout,
})),
);
const SettingsLayoutViewDetail = lazy(() =>
import('~/pages/settings/layout/SettingsLayoutViewDetail').then((module) => ({
default: module.SettingsLayoutViewDetail,
@@ -666,6 +672,40 @@ export const SettingsRoutes = ({ isAdminPageEnabled }: SettingsRoutesProps) => (
path={SettingsPath.ApiWebhooks}
element={<SettingsApiWebhooks />}
/>
<Route path={SettingsPath.Billing} element={<SettingsBilling />} />
<Route path={SettingsPath.Usage} element={<SettingsUsage />} />
<Route
path={SettingsPath.UsageUserDetail}
element={<SettingsUsageUserDetail />}
/>
<Route
path={SettingsPath.Subdomain}
element={<SettingsSubdomainPage />}
/>
<Route
path={SettingsPath.CustomDomain}
element={<SettingsCustomDomainPage />}
/>
<Route
path={SettingsPath.NewEmailingDomain}
element={<SettingsNewEmailingDomain />}
/>
<Route
path={SettingsPath.EmailingDomainDetail}
element={<SettingsEmailingDomainDetail />}
/>
<Route
path={SettingsPath.PublicDomain}
element={<SettingPublicDomain />}
/>
</Route>
<Route
element={
<SettingsProtectedRouteWrapper
settingsPermission={PermissionFlagType.AI}
/>
}
>
<Route path={SettingsPath.AI} element={<SettingsAI />} />
<Route path={SettingsPath.AiPrompts} element={<SettingsAiPrompts />} />
<Route
@@ -700,32 +740,15 @@ export const SettingsRoutes = ({ isAdminPageEnabled }: SettingsRoutesProps) => (
path={SettingsPath.LogicFunctionDetail}
element={<SettingsLogicFunctionDetail />}
/>
<Route path={SettingsPath.Billing} element={<SettingsBilling />} />
<Route path={SettingsPath.Usage} element={<SettingsUsage />} />
<Route
path={SettingsPath.UsageUserDetail}
element={<SettingsUsageUserDetail />}
/>
<Route
path={SettingsPath.Subdomain}
element={<SettingsSubdomainPage />}
/>
<Route
path={SettingsPath.CustomDomain}
element={<SettingsCustomDomainPage />}
/>
<Route
path={SettingsPath.NewEmailingDomain}
element={<SettingsNewEmailingDomain />}
/>
<Route
path={SettingsPath.EmailingDomainDetail}
element={<SettingsEmailingDomainDetail />}
/>
<Route
path={SettingsPath.PublicDomain}
element={<SettingPublicDomain />}
/>
</Route>
<Route
element={
<SettingsProtectedRouteWrapper
settingsPermission={PermissionFlagType.LAYOUTS}
/>
}
>
<Route path={SettingsPath.Layout} element={<SettingsLayout />} />
</Route>
<Route
element={
@@ -0,0 +1,10 @@
import { gql } from '@apollo/client';
export const GENERATE_PLAYGROUND_TOKEN = gql`
mutation GeneratePlaygroundToken {
generatePlaygroundToken {
token
expiresAt
}
}
`;
@@ -3,7 +3,6 @@ import { safeRemoveLocalStorageItems } from '@/auth/utils/safeRemoveLocalStorage
const SESSION_KEYS_TO_CLEAR = [
'lastVisitedObjectMetadataItemIdState',
'lastVisitedViewPerObjectMetadataItemState',
'playgroundApiKeyState',
'ai/agentChatDraftsByThreadIdState',
'locale',
];
@@ -0,0 +1,14 @@
import { metadataStoreState } from '@/metadata-store/states/metadataStoreState';
import { type FlatFrontComponent } from '@/metadata-store/types/FlatFrontComponent';
import { createAtomSelector } from '@/ui/utilities/state/jotai/utils/createAtomSelector';
export const frontComponentsSelector = createAtomSelector<FlatFrontComponent[]>(
{
key: 'frontComponentsSelector',
get: ({ get }) => {
const storeItem = get(metadataStoreState, 'frontComponents');
return storeItem.current as FlatFrontComponent[];
},
},
);
@@ -24,13 +24,13 @@ export const useEnterLayoutCustomizationMode = () => {
const { navigateSidePanel } = useNavigateSidePanel();
const { enqueueWarningSnackBar } = useSnackBar();
const enterLayoutCustomizationMode = useCallback(() => {
const enterLayoutCustomizationMode = useCallback((): boolean => {
const isLayoutCustomizationModeAlreadyEnabled = store.get(
isLayoutCustomizationModeEnabledState.atom,
);
if (isLayoutCustomizationModeAlreadyEnabled) {
return;
return true;
}
const dashboardPageLayoutIdInEditMode = store.get(
@@ -49,7 +49,7 @@ export const useEnterLayoutCustomizationMode = () => {
message: t`Save or cancel dashboard changes before editing the layout.`,
});
return;
return false;
}
}
@@ -82,6 +82,8 @@ export const useEnterLayoutCustomizationMode = () => {
resetNavigationStack: true,
});
}
return true;
}, [enqueueWarningSnackBar, navigateSidePanel, store]);
return { enterLayoutCustomizationMode };
@@ -116,7 +116,7 @@ const NavigationMenuItemFolderReadOnlyContent = ({
const { theme } = useContext(ThemeContext);
const FolderIcon = getIcon(folderIconKey ?? FOLDER_ICON_DEFAULT);
const { isOpen, handleToggle, hasActiveChild } =
const { isOpen, handleToggle, hasActiveChild, activeChildIndex } =
useNavigationMenuItemFolderOpenState({
folderId,
folderChildrenNavigationMenuItems: navigationMenuItems,
@@ -165,6 +165,7 @@ const NavigationMenuItemFolderReadOnlyContent = ({
navigationMenuItem={navigationMenuItem}
index={index}
arrayLength={navigationMenuItems.length}
selectedIndex={activeChildIndex}
isDragging={false}
/>
))}
@@ -116,7 +116,7 @@ export const NavigationMenuItemFolderDnd = ({
? NavigationSections.FAVORITES
: NavigationSections.WORKSPACE;
const { isOpen, handleToggle, hasActiveChild } =
const { isOpen, handleToggle, hasActiveChild, activeChildIndex } =
useNavigationMenuItemFolderOpenState({
folderId,
folderChildrenNavigationMenuItems: navigationMenuItems,
@@ -351,6 +351,7 @@ export const NavigationMenuItemFolderDnd = ({
navigationMenuItem={navigationMenuItem}
index={index}
arrayLength={folderContentLength}
selectedIndex={activeChildIndex}
isDragging={isDragging}
rightOptions={
isEditInPlace ? (
@@ -26,6 +26,7 @@ type NavigationMenuItemFolderSubItemProps = {
navigationMenuItem: NavigationMenuItem;
index: number;
arrayLength: number;
selectedIndex: number;
isDragging: boolean;
rightOptions?: ReactNode;
onClick?: () => void;
@@ -39,6 +40,7 @@ export const NavigationMenuItemFolderSubItem = ({
navigationMenuItem,
index,
arrayLength,
selectedIndex,
isDragging,
rightOptions,
onClick,
@@ -128,7 +130,7 @@ export const NavigationMenuItemFolderSubItem = ({
subItemState={getNavigationSubItemLeftAdornment({
index,
arrayLength,
selectedIndex: isActive ? index : -1,
selectedIndex,
})}
rightOptions={rightOptions}
isDragging={isDragging}
@@ -46,9 +46,10 @@ export const useNavigationMenuItemFolderOpenState = ({
const [isManuallyClosed, setIsManuallyClosed] = useState(false);
const isExplicitlyOpen = openNavigationMenuItemFolderIds.includes(folderId);
const hasActiveChild = folderChildrenNavigationMenuItems.some((item) =>
const activeChildIndex = folderChildrenNavigationMenuItems.findIndex((item) =>
activeNavigationMenuItemIds.includes(item.id),
);
const hasActiveChild = activeChildIndex !== -1;
const isOpen = isExplicitlyOpen || (hasActiveChild && !isManuallyClosed);
const handleToggle = () => {
@@ -99,5 +100,6 @@ export const useNavigationMenuItemFolderOpenState = ({
isOpen,
handleToggle,
hasActiveChild,
activeChildIndex,
};
};
@@ -1,11 +1,28 @@
import { NavigationDrawerAiChatContent } from '@/ai/components/NavigationDrawerAiChatContent';
import { MainNavigationDrawerTabsRow } from '@/navigation/components/MainNavigationDrawerTabsRow';
import { useHasPermissionFlag } from '@/settings/roles/hooks/useHasPermissionFlag';
import { SettingsNavigationDrawerItems } from '@/settings/components/SettingsNavigationDrawerItems';
import { NavigationDrawer } from '@/ui/navigation/navigation-drawer/components/NavigationDrawer';
import { NavigationDrawerFixedContent } from '@/ui/navigation/navigation-drawer/components/NavigationDrawerFixedContent';
import { NavigationDrawerScrollableContent } from '@/ui/navigation/navigation-drawer/components/NavigationDrawerScrollableContent';
import { isAdvancedModeEnabledState } from '@/ui/navigation/navigation-drawer/states/isAdvancedModeEnabledState';
import { navigationDrawerActiveTabState } from '@/ui/navigation/states/navigationDrawerActiveTabState';
import { NAVIGATION_DRAWER_TABS } from '@/ui/navigation/states/navigationDrawerTabs';
import { useAtomState } from '@/ui/utilities/state/jotai/hooks/useAtomState';
import { useAtomStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomStateValue';
import { styled } from '@linaria/react';
import { useLingui } from '@lingui/react/macro';
import { useIsMobile } from 'twenty-ui/utilities';
import { AdvancedSettingsToggle } from 'twenty-ui/navigation';
import { themeCssVariables } from 'twenty-ui/theme-constants';
import { PermissionFlagType } from '~/generated-metadata/graphql';
const StyledAdvancedToggleWrapper = styled.div<{ isMobile: boolean }>`
padding-left: ${({ isMobile }) =>
isMobile ? '0' : themeCssVariables.spacing[5]};
padding-right: ${({ isMobile }) =>
isMobile ? '0' : themeCssVariables.spacing[8]};
`;
export const SettingsNavigationDrawer = ({
className,
@@ -13,23 +30,46 @@ export const SettingsNavigationDrawer = ({
className?: string;
}) => {
const { t } = useLingui();
const isMobile = useIsMobile();
const [isAdvancedModeEnabled, setIsAdvancedModeEnabled] = useAtomState(
isAdvancedModeEnabledState,
);
const navigationDrawerActiveTab = useAtomStateValue(
navigationDrawerActiveTabState,
);
const hasAiPermission = useHasPermissionFlag(PermissionFlagType.AI);
const showAiChatContent =
hasAiPermission &&
navigationDrawerActiveTab === NAVIGATION_DRAWER_TABS.AI_CHAT_HISTORY;
return (
<NavigationDrawer className={className} title={t`Exit Settings`}>
{hasAiPermission && (
<NavigationDrawerFixedContent>
<MainNavigationDrawerTabsRow />
</NavigationDrawerFixedContent>
)}
<NavigationDrawerScrollableContent>
<SettingsNavigationDrawerItems />
{showAiChatContent ? (
<NavigationDrawerAiChatContent />
) : (
<SettingsNavigationDrawerItems />
)}
</NavigationDrawerScrollableContent>
<NavigationDrawerFixedContent>
<AdvancedSettingsToggle
isAdvancedModeEnabled={isAdvancedModeEnabled}
setIsAdvancedModeEnabled={setIsAdvancedModeEnabled}
label={t`Advanced:`}
/>
</NavigationDrawerFixedContent>
{!showAiChatContent && (
<NavigationDrawerFixedContent>
<StyledAdvancedToggleWrapper isMobile={isMobile}>
<AdvancedSettingsToggle
isAdvancedModeEnabled={isAdvancedModeEnabled}
setIsAdvancedModeEnabled={setIsAdvancedModeEnabled}
label={t`Advanced:`}
/>
</StyledAdvancedToggleWrapper>
</NavigationDrawerFixedContent>
)}
</NavigationDrawer>
);
};
@@ -37,8 +37,10 @@ const StyledBoardCard = styled.div<{
}
.checkbox-container {
flex-shrink: 0;
max-width: 0;
opacity: 0;
overflow: hidden;
pointer-events: none;
transition: all ease-in-out 160ms;
}
@@ -31,16 +31,26 @@ const RichTextFieldEditor = lazy(() =>
);
const StyledContainer = styled.div`
align-items: flex-start;
background-color: ${themeCssVariables.background.primary};
box-sizing: border-box;
display: flex;
margin: 0 0 0 calc(-1 * ${themeCssVariables.spacing[5]});
max-height: min(60vh, 500px);
overflow: hidden;
padding: ${themeCssVariables.spacing[2]} ${themeCssVariables.spacing[2]}
${themeCssVariables.spacing[2]} ${themeCssVariables.spacing[12]};
position: relative;
width: 480px;
`;
const StyledEditorScroll = styled.div`
align-self: stretch;
flex: 1;
min-height: 0;
overflow-y: auto;
`;
const StyledCollapseButton = styled.div`
border-radius: ${themeCssVariables.border.radius.md};
color: ${themeCssVariables.font.color.light};
@@ -104,20 +114,22 @@ export const RichTextFieldInput = () => {
return (
<StyledContainer ref={containerRef}>
<Suspense fallback={<LoadingSkeleton />}>
{isActivityObject(objectNameSingular) ? (
<ActivityRichTextEditor
activityId={recordId}
activityObjectNameSingular={objectNameSingular}
/>
) : (
<RichTextFieldEditor
recordId={recordId}
objectNameSingular={objectNameSingular}
fieldName={fieldName}
/>
)}
</Suspense>
<StyledEditorScroll>
<Suspense fallback={<LoadingSkeleton />}>
{isActivityObject(objectNameSingular) ? (
<ActivityRichTextEditor
activityId={recordId}
activityObjectNameSingular={objectNameSingular}
/>
) : (
<RichTextFieldEditor
recordId={recordId}
objectNameSingular={objectNameSingular}
fieldName={fieldName}
/>
)}
</Suspense>
</StyledEditorScroll>
<StyledCollapseButton>
<FloatingIconButton
Icon={IconLayoutSidebarLeftCollapse}
@@ -12,6 +12,7 @@ import {
autoUpdate,
flip,
offset,
shift,
useFloating,
type MiddlewareState,
} from '@floating-ui/react';
@@ -82,6 +83,7 @@ export const RecordInlineCellEditMode = ({
crossAxis: -5,
},
),
shift({ padding: 8 }),
setFieldInputLayoutDirectionMiddleware,
],
whileElementsMounted: autoUpdate,
@@ -19,11 +19,16 @@ const StyledCardsContainer = styled.div`
gap: ${themeCssVariables.spacing[4]};
margin-top: ${themeCssVariables.spacing[6]};
@media (max-width: ${MOBILE_VIEWPORT}pxF) {
@media (max-width: ${MOBILE_VIEWPORT}px) {
flex-direction: column;
}
`;
const StyledCardLinkSlot = styled.div`
flex: 1 1 0;
min-width: 0;
`;
export const SettingsAccountsSettingsSection = () => {
const { theme } = useContext(ThemeContext);
const { t } = useLingui();
@@ -34,30 +39,34 @@ export const SettingsAccountsSettingsSection = () => {
description={t`Configure your emails and calendar settings.`}
/>
<StyledCardsContainer>
<UndecoratedLink to={getSettingsPath(SettingsPath.AccountsEmails)}>
<SettingsCard
Icon={
<IconMailCog
size={theme.icon.size.lg}
stroke={theme.icon.stroke.sm}
/>
}
title={t`Emails`}
description={t`Set email visibility, manage your blocklist and more.`}
/>
</UndecoratedLink>
<UndecoratedLink to={getSettingsPath(SettingsPath.AccountsCalendars)}>
<SettingsCard
Icon={
<IconCalendarEvent
size={theme.icon.size.lg}
stroke={theme.icon.stroke.sm}
/>
}
title={t`Calendar`}
description={t`Configure and customize your calendar preferences.`}
/>
</UndecoratedLink>
<StyledCardLinkSlot>
<UndecoratedLink to={getSettingsPath(SettingsPath.AccountsEmails)}>
<SettingsCard
Icon={
<IconMailCog
size={theme.icon.size.lg}
stroke={theme.icon.stroke.sm}
/>
}
title={t`Emails`}
description={t`Set email visibility, manage your blocklist and more.`}
/>
</UndecoratedLink>
</StyledCardLinkSlot>
<StyledCardLinkSlot>
<UndecoratedLink to={getSettingsPath(SettingsPath.AccountsCalendars)}>
<SettingsCard
Icon={
<IconCalendarEvent
size={theme.icon.size.lg}
stroke={theme.icon.stroke.sm}
/>
}
title={t`Calendar`}
description={t`Configure and customize your calendar preferences.`}
/>
</UndecoratedLink>
</StyledCardLinkSlot>
</StyledCardsContainer>
</Section>
);
@@ -0,0 +1,103 @@
import { ModalStatefulWrapper } from '@/ui/layout/modal/components/ModalStatefulWrapper';
import { useModal } from '@/ui/layout/modal/hooks/useModal';
import { TabList } from '@/ui/layout/tab-list/components/TabList';
import { styled } from '@linaria/react';
import { useState } from 'react';
import { type IconComponent, IconX } from 'twenty-ui/display';
import { IconButton } from 'twenty-ui/input';
import { themeCssVariables } from 'twenty-ui/theme-constants';
export type SettingsCustomizeVideoModalTab = {
id: string;
title: string;
Icon: IconComponent;
vimeoId: string;
};
type SettingsCustomizeVideoModalProps = {
modalInstanceId: string;
tabsInstanceId: string;
tabs: SettingsCustomizeVideoModalTab[];
};
const StyledHeader = styled.div`
align-items: center;
display: flex;
gap: ${themeCssVariables.spacing[2]};
height: 48px;
justify-content: space-between;
padding-right: ${themeCssVariables.spacing[3]};
`;
const StyledTabsContainer = styled.div`
flex: 1 1 auto;
min-width: 0;
padding-left: ${themeCssVariables.spacing[3]};
`;
const StyledVideoContainer = styled.div`
display: flex;
justify-content: center;
padding: ${themeCssVariables.spacing[6]};
`;
const StyledVideoIframe = styled.iframe`
aspect-ratio: 1440 / 900;
border: 0;
border-radius: ${themeCssVariables.border.radius.md};
box-shadow: ${themeCssVariables.boxShadow.strong};
display: block;
height: auto;
max-width: 100%;
width: 960px;
`;
export const SettingsCustomizeVideoModal = ({
modalInstanceId,
tabsInstanceId,
tabs,
}: SettingsCustomizeVideoModalProps) => {
const { closeModal } = useModal();
const [activeTabId, setActiveTabId] = useState<string>(tabs[0]?.id ?? '');
if (tabs.length === 0) {
return null;
}
const activeTab = tabs.find((tab) => tab.id === activeTabId) ?? tabs[0];
const handleClose = () => {
closeModal(modalInstanceId);
};
return (
<ModalStatefulWrapper
modalInstanceId={modalInstanceId}
size="large"
padding="none"
isClosable
onClose={handleClose}
renderInDocumentBody
>
<StyledHeader>
<StyledTabsContainer>
<TabList
tabs={tabs}
behaveAsLinks={false}
componentInstanceId={tabsInstanceId}
onChangeTab={(tabId) => setActiveTabId(tabId)}
/>
</StyledTabsContainer>
<IconButton Icon={IconX} onClick={handleClose} size="small" />
</StyledHeader>
<StyledVideoContainer>
<StyledVideoIframe
key={activeTab.id}
src={`https://player.vimeo.com/video/${activeTab.vimeoId}?autoplay=1&loop=1&autopause=0&background=1&muted=1`}
allow="autoplay; fullscreen; picture-in-picture"
title={activeTab.title}
/>
</StyledVideoContainer>
</ModalStatefulWrapper>
);
};
@@ -0,0 +1,94 @@
import {
SettingsCustomizeVideoModal,
type SettingsCustomizeVideoModalTab,
} from '@/settings/components/SettingsCustomizeVideoModal';
import { HeroPlayButton } from '@/ui/layout/hero/components/HeroPlayButton';
import { useModal } from '@/ui/layout/modal/hooks/useModal';
import { useIsFeatureEnabled } from '@/workspace/hooks/useIsFeatureEnabled';
import { styled } from '@linaria/react';
import { useLingui } from '@lingui/react/macro';
import { useContext } from 'react';
import { Card } from 'twenty-ui/layout';
import { ThemeContext, themeCssVariables } from 'twenty-ui/theme-constants';
import { FeatureFlagKey } from '~/generated-metadata/graphql';
const COVER_HEIGHT = 150;
const StyledCoverContainer = styled.div`
background: ${themeCssVariables.background.secondary};
box-sizing: border-box;
height: ${COVER_HEIGHT}px;
overflow: hidden;
position: relative;
`;
const StyledImage = styled.img`
display: block;
height: 100%;
inset: 0;
object-fit: cover;
object-position: center top;
position: absolute;
width: 100%;
`;
const StyledOverlay = styled.div`
align-items: center;
display: flex;
inset: 0;
justify-content: center;
position: absolute;
`;
type SettingsDiscoveryHeroCardProps = {
lightSrc: string;
darkSrc: string;
instanceIdPrefix: string;
tabs: SettingsCustomizeVideoModalTab[];
playButtonAriaLabel?: string;
};
export const SettingsDiscoveryHeroCard = ({
lightSrc,
darkSrc,
instanceIdPrefix,
tabs,
playButtonAriaLabel,
}: SettingsDiscoveryHeroCardProps) => {
const { t } = useLingui();
const { colorScheme } = useContext(ThemeContext);
const { openModal } = useModal();
const isDiscoveryVideoEnabled = useIsFeatureEnabled(
FeatureFlagKey.IS_SETTINGS_DISCOVERY_HERO_ENABLED,
);
const modalInstanceId = `${instanceIdPrefix}-modal`;
const tabsInstanceId = `${instanceIdPrefix}-tabs`;
const src = colorScheme === 'light' ? lightSrc : darkSrc;
return (
<>
<Card rounded>
<StyledCoverContainer>
<StyledImage src={src} alt="" aria-hidden />
{isDiscoveryVideoEnabled && (
<StyledOverlay>
<HeroPlayButton
onClick={() => openModal(modalInstanceId)}
ariaLabel={playButtonAriaLabel ?? t`Watch demo`}
/>
</StyledOverlay>
)}
</StyledCoverContainer>
</Card>
{isDiscoveryVideoEnabled && (
<SettingsCustomizeVideoModal
modalInstanceId={modalInstanceId}
tabsInstanceId={tabsInstanceId}
tabs={tabs}
/>
)}
</>
);
};
@@ -39,6 +39,7 @@ export const SettingsNavigationDrawerItem = ({
label={item.label}
to={href}
Icon={item.Icon}
withIconBackground
active={isActive}
modifier={item.modifier}
onClick={item.onClick}
@@ -54,6 +55,7 @@ export const SettingsNavigationDrawerItem = ({
label={item.label}
to={href || undefined}
Icon={item.Icon}
withIconBackground
active={isActive}
modifier={item.modifier}
onClick={item.onClick}
@@ -5,13 +5,81 @@ import {
type SettingsNavigationSection,
useSettingsNavigationItems,
} from '@/settings/hooks/useSettingsNavigationItems';
import { CollapsibleNavigationDrawerSection } from '@/ui/navigation/navigation-drawer/components/CollapsibleNavigationDrawerSection';
import { NavigationDrawerItemGroup } from '@/ui/navigation/navigation-drawer/components/NavigationDrawerItemGroup';
import { NavigationDrawerSection } from '@/ui/navigation/navigation-drawer/components/NavigationDrawerSection';
import { NavigationDrawerSectionTitle } from '@/ui/navigation/navigation-drawer/components/NavigationDrawerSectionTitle';
import { getNavigationSubItemLeftAdornment } from '@/ui/navigation/navigation-drawer/utils/getNavigationSubItemLeftAdornment';
import { styled } from '@linaria/react';
import { matchPath, resolvePath, useLocation } from 'react-router-dom';
import { themeCssVariables } from 'twenty-ui/theme-constants';
import { getSettingsPath } from 'twenty-shared/utils';
const StyledSectionsContainer = styled.div`
display: flex;
flex-direction: column;
gap: ${themeCssVariables.spacing[3]};
`;
const renderSectionItem = (
item: SettingsNavigationItem,
index: number,
section: SettingsNavigationSection,
getSelectedIndexForSubItems: (subItems: SettingsNavigationItem[]) => number,
) => {
const subItems = item.subItems;
if (Array.isArray(subItems) && subItems.length > 0) {
const selectedSubItemIndex = getSelectedIndexForSubItems(subItems);
const hasActiveSubItem = selectedSubItemIndex !== -1;
return (
<NavigationDrawerItemGroup key={item.path || `group-${index}`}>
<SettingsNavigationDrawerItem
item={item}
hasActiveSubItem={hasActiveSubItem}
subItemState={
item.indentationLevel
? getNavigationSubItemLeftAdornment({
arrayLength: section.items.length,
index,
selectedIndex: selectedSubItemIndex,
})
: undefined
}
/>
{subItems.map((subItem, subIndex) => (
<SettingsNavigationDrawerItem
key={subItem.path || `subitem-${subIndex}`}
item={subItem}
subItemState={
subItem.indentationLevel
? getNavigationSubItemLeftAdornment({
arrayLength: subItems.length,
index: subIndex,
selectedIndex: selectedSubItemIndex,
})
: undefined
}
/>
))}
</NavigationDrawerItemGroup>
);
}
return (
<SettingsNavigationDrawerItem
key={item.path || `item-${index}`}
item={item}
subItemState={
item.indentationLevel
? getNavigationSubItemLeftAdornment({
arrayLength: section.items.length,
index,
selectedIndex: index,
})
: undefined
}
/>
);
};
export const SettingsNavigationDrawerItems = () => {
const settingsNavigationItems: SettingsNavigationSection[] =
useSettingsNavigationItems();
@@ -34,7 +102,7 @@ export const SettingsNavigationDrawerItems = () => {
};
return (
<>
<StyledSectionsContainer>
{settingsNavigationItems.map((section) => {
const allItemsHidden = section.items.every((item) => item.isHidden);
if (allItemsHidden) {
@@ -42,75 +110,31 @@ export const SettingsNavigationDrawerItems = () => {
}
return (
<NavigationDrawerSection key={section.label}>
{section.isAdvanced ? (
<AdvancedSettingsWrapper hideDot>
<NavigationDrawerSectionTitle label={section.label} />
</AdvancedSettingsWrapper>
) : (
<NavigationDrawerSectionTitle label={section.label} />
<CollapsibleNavigationDrawerSection
key={section.label}
sectionId={`settings/${section.label}`}
label={section.label}
wrapTitle={
section.isAdvanced
? (titleNode) => (
<AdvancedSettingsWrapper hideDot>
{titleNode}
</AdvancedSettingsWrapper>
)
: undefined
}
>
{section.items.map((item, index) =>
renderSectionItem(
item,
index,
section,
getSelectedIndexForSubItems,
),
)}
{section.items.map((item, index) => {
const subItems = item.subItems;
if (Array.isArray(subItems) && subItems.length > 0) {
const selectedSubItemIndex =
getSelectedIndexForSubItems(subItems);
const hasActiveSubItem = selectedSubItemIndex !== -1;
return (
<NavigationDrawerItemGroup
key={item.path || `group-${index}`}
>
<SettingsNavigationDrawerItem
item={item}
hasActiveSubItem={hasActiveSubItem}
subItemState={
item.indentationLevel
? getNavigationSubItemLeftAdornment({
arrayLength: section.items.length,
index,
selectedIndex: selectedSubItemIndex,
})
: undefined
}
/>
{subItems.map((subItem, subIndex) => (
<SettingsNavigationDrawerItem
key={subItem.path || `subitem-${subIndex}`}
item={subItem}
subItemState={
subItem.indentationLevel
? getNavigationSubItemLeftAdornment({
arrayLength: subItems.length,
index: subIndex,
selectedIndex: selectedSubItemIndex,
})
: undefined
}
/>
))}
</NavigationDrawerItemGroup>
);
}
return (
<SettingsNavigationDrawerItem
key={item.path || `item-${index}`}
item={item}
subItemState={
item.indentationLevel
? getNavigationSubItemLeftAdornment({
arrayLength: section.items.length,
index,
selectedIndex: index,
})
: undefined
}
/>
);
})}
</NavigationDrawerSection>
</CollapsibleNavigationDrawerSection>
);
})}
</>
</StyledSectionsContainer>
);
};

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