Compare commits

...
Author SHA1 Message Date
fc90b4ba8b i18n - docs translations (#21064)
Created by Github action

Co-authored-by: github-actions <github-actions@twenty.com>
2026-05-29 19:30:26 +02:00
88b77cb699 feat(server): opt-in FRONT_AUTO_BASE_URL for hostname-relative API URL (#20504)
## Problem

`generateFrontConfig()` writes `window._env_.REACT_APP_SERVER_BASE_URL =
process.env.SERVER_URL` unconditionally. The frontend then pins to that
absolute URL. For self-hosted deployments reachable from multiple
hostnames (Tailscale IP, LAN IP, internal DNS, SSH tunnel to localhost,
public DNS), only the one matching `SERVER_URL` works — others hit CORS
errors or unreachable hosts because the frontend tries to call the API
at the configured URL, not the one the user came in via.

The frontend already supports the right fallback:
`packages/twenty-front/src/config/index.ts:20-21` reads
`window._env_?.REACT_APP_SERVER_BASE_URL` and falls back to
`getDefaultUrl()` (which uses `window.location`) when the env var is
absent. But the server-side `generateFrontConfig` always populates
`_env_`, so the fallback never runs.

## Fix

One file: `packages/twenty-server/src/utils/generate-front-config.ts`.
Add a `FRONT_AUTO_BASE_URL=true` opt-in (also triggered when
`SERVER_URL` is unset entirely). When the toggle is on, inject
`window._env_ = {}` so the frontend's existing `getDefaultUrl()`
fallback resolves the origin from `window.location` at runtime.

## Backwards compatibility

When `SERVER_URL` is set AND `FRONT_AUTO_BASE_URL` is unset (or anything
other than `'true'`): unchanged — `REACT_APP_SERVER_BASE_URL:
process.env.SERVER_URL` is injected exactly as before.

The toggle is strictly additive. Existing single-hostname deployments
are not affected.

## Use case

Self-hosted Twenty reachable via:
- `http://100.115.12.29` over Tailscale
- `http://localhost:4440` over SSH tunnel
- `http://twenty.internal` over LAN DNS
- `http://crm.example.com` public

With `FRONT_AUTO_BASE_URL=true`, all four paths work without rebuilds or
per-hostname server processes.

## Test plan

- [ ] `SERVER_URL=http://x.com` (toggle unset) → `<script>window._env_ =
{"REACT_APP_SERVER_BASE_URL":"http://x.com"};</script>` (unchanged from
main)
- [ ] `SERVER_URL` unset → `<script>window._env_ = {};</script>` (new
fallback path)
- [ ] `SERVER_URL=http://x.com FRONT_AUTO_BASE_URL=true` →
`<script>window._env_ = {};</script>` (toggle wins)
- [ ] `FRONT_AUTO_BASE_URL=false SERVER_URL=http://x.com` → unchanged
(only `'true'` triggers the toggle)

---------

Co-authored-by: martmull <martmull@hotmail.fr>
2026-05-29 16:26:43 +00:00
Raphaël BosiandGitHub 0ed2e9d82d Docs: clarify numberOfSelectedRecords usage for RECORD_SELECTION items (#21059)
Add a note to the command menu items docs explaining that
RECORD_SELECTION already guarantees a non-empty selection, so
numberOfSelectedRecords > 0 is redundant in
conditionalAvailabilityExpression.
2026-05-29 17:59:14 +02:00
643cfe9b13 i18n - docs translations (#21062)
Created by Github action

Co-authored-by: github-actions <github-actions@twenty.com>
2026-05-29 17:29:40 +02:00
Thomas TrompetteandGitHub bc1b7f6fdf fix: resolve workflow form step auto-open race condition (#21053)
## Summary
- Fix intermittent failure where the Quick Lead workflow form step did
not auto-open
- Root cause: race conditions between SSE events, Apollo cache writes,
and the `runWorkflowVersion` mutation timing
- Add generic monotonicity guard in the SSE handler that drops stale
updates for all records (not just WorkflowRun)

## Changes
- **`useTriggerOptimisticEffectFromSseUpdateEvents.ts`**: Compare
incoming `updatedAt` with cached record before writing — skip if stale.
Moved `upsertRecordsInStore` after the guard so neither Apollo cache nor
Jotai store receive stale data.
- **`useRunWorkflowVersion.tsx`**: Await mutation before opening side
panel; register SSE listener eagerly before mutation
- **`useWorkflowRun.ts`**: Simplified back to plain `useFindOneRecord` +
schema parse (no extra state needed)
- **`generateWorkflowRunDiagram.ts`**: `shouldOpenStep` matches both
PENDING and RUNNING for form steps (backend RUNNING means "waiting for
user input")
- **`WorkflowRunVisualizerEffect.tsx`**: Pass `runStatus` directly
without status mapping
- **`WorkflowRunStepNodeDetail.tsx`**: Form is interactive when step is
PENDING or RUNNING
- **Deleted `latestWorkflowRunFamilyState.ts`**: No longer needed — the
generic SSE guard replaces it

## Test plan
- [x] Hard refresh, run Quick Lead workflow 10+ times — form should
always auto-open
- [x] Complete the form and verify all subsequent steps execute without
getting stuck
- [x] Verify the workflow diagram is always visible (never disappears)
- [x] Verify other record types still update correctly via SSE (e.g.
edit a person in another tab)
2026-05-29 14:18:24 +00:00
Raphaël BosiandGitHub 57118a868f Docs update: Calling a logic function from a front component (#21057)
Documents how a headless front component calls a server-side logic
function over HTTP via the /s/ route, so AI agents have a clear
reference for implementing this pattern.
2026-05-29 14:04:19 +00:00
93f848fd2f i18n - translations (#21055)
Created by Github action

---------

Co-authored-by: github-actions <github-actions@twenty.com>
2026-05-29 15:30:31 +02:00
Félix MalfaitandGitHub 667cb95730 fix(sso): accept HTTP-POST binding and surface descriptive parser errors (#21051)
Fixes https://github.com/twentyhq/twenty/issues/21044

## Summary
- Closes [#490](https://github.com/twentyhq/private-issues/issues/490) —
JumpCloud customers (and anyone else whose IdP only advertises
`HTTP-POST` for `SingleSignOnService`) could not upload their SAML
metadata; the parser silently rejected them with a generic `Invalid
file` toast.
- The SAML IdP metadata parser now falls back to `HTTP-POST` when
`HTTP-Redirect` is not advertised. Both are valid SAML 2.0 bindings.
- The parser now returns a descriptive `reason` string (Zod issues +
custom errors) instead of an opaque `error: unknown`, and the upload
snack bar surfaces it so the customer can self-diagnose (e.g. `entityID:
entityID is not a valid URL` if they forgot to fill in their IdP Entity
ID).
- Added unit tests for HTTP-POST-only metadata, HTTP-Redirect
preference, and each descriptive-error path.

## Test plan
- [x] `npx jest parseSAMLMetadataFromXMLFile
--config=packages/twenty-front/jest.config.mjs` — 8/8 pass
- [x] `npx oxlint -c packages/twenty-front/.oxlintrc.json` on changed
files — clean
- [x] `npx oxfmt --check` on changed files — clean
- [ ] Manual: upload the customer's JumpCloud metadata (HTTP-POST only,
placeholder `entityID`) and confirm the error now says `Invalid file:
entityID: entityID is not a valid URL` instead of `Invalid file`
- [ ] Manual: upload metadata with a real `entityID` and HTTP-POST-only
binding, confirm the form populates correctly
2026-05-29 15:22:50 +02:00
martmullandGitHub 4e5d47168c 2439 improve command menu item display in right panel (#21020)
## Before

<img width="1512" height="389" alt="image"
src="https://github.com/user-attachments/assets/33274356-fb99-4a02-baa7-c324e6d151c6"
/>


## After

<img width="1512" height="357" alt="image"
src="https://github.com/user-attachments/assets/c0affb71-e920-4d64-b2f0-1bed53209ea5"
/>
2026-05-29 11:37:27 +00:00
neo773andGitHub 10c0bed462 fix: harden email-group SES provisioning, cleanup, and inbound replay (#21046)
## Changes

**Provisioning idempotent** (`aws-ses-register-domain.service.ts`)
- Each SES create call (`CreateConfigurationSet`, event destination,
contact list, tenant association) now swallow `AlreadyExistsException`
via `.send().catch()`.
- Retry after partial failure re-run every step, no blow up on "already
exists". Before: one existing resource kill whole provision.

**Workspace delete clean up cloud** (`workspace.service.ts`,
`emailing-domain-workspace-cleanup.job.ts`,
`emailing-domain.service.ts`)
- On workspace delete, fetch domain list first, pass domains to cleanup
job.
- Cleanup now loop `driver.cleanupDomain(domain)` per domain +
`deprovisionWorkspace`. Tear down SES identity/tenant/config-set, not
just delete DB rows.
- Before: DB rows gone, SES resources orphaned forever. Now: cloud match
DB.

**Inbound replay dedupe** (`ses-inbound-mail-handler.service.ts`)
- Use `snsMessageId` as job id. SNS deliver same message twice → second
is no-op. No duplicate inbound email import.
2026-05-29 10:31:03 +00:00
08b1c5738d i18n - translations (#21050)
Created by Github action

---------

Co-authored-by: github-actions <github-actions@twenty.com>
2026-05-29 12:12:35 +02:00
martmullandGitHub c2df39405c Fix admin pannel server variable config tab (#21017)
## Before

<img width="1046" height="490" alt="image"
src="https://github.com/user-attachments/assets/450557de-fcf5-4b51-afdb-36c0c36e43d8"
/>


## After

<img width="1040" height="414" alt="image"
src="https://github.com/user-attachments/assets/4a5fe2ab-85d6-4431-9397-6f81ae24055d"
/>
2026-05-29 09:55:11 +00:00
3e2c50c6cf i18n - translations (#21048)
Created by Github action

---------

Co-authored-by: github-actions <github-actions@twenty.com>
2026-05-29 11:21:23 +02:00
f67db8d8b2 i18n - translations (#21047)
Created by Github action

---------

Co-authored-by: github-actions <github-actions@twenty.com>
2026-05-29 11:17:19 +02:00
3cd2458fdf i18n - website translations (#21045)
Created by Github action

---------

Co-authored-by: github-actions <github-actions@twenty.com>
2026-05-29 11:12:31 +02:00
nitinandGitHub 13f09d8946 [Dashboards] Remove gauge chart types and code (#20410)
Follow-up cleanup to #20172.
2026-05-29 11:08:50 +02:00
martmullandGitHub 961745e9ba Fix latency spike on application lookup (#21042)
Fixes
https://discord.com/channels/1130383047699738754/1509645089062781058

Caching application entities to improve authentication latency
2026-05-29 11:06:36 +02:00
MarieandGitHub 41832c8d82 Fix workflow creation on view filtered by status (#21027)
Creating a workflow on a table with with a filter on status (eg: status
is "active") failed because it added the status to createOneWorkflow (in
order to have the record belonging to the view) - while
createOneWorkflow throwed a 400 exception when attempting to create a
workflow with a status (does not correpsond to a valid behaviour).

Silently stripping status rom create workflow endpoints.
2026-05-29 08:36:59 +00:00
3041ed3b6e chore: sync AI model catalog from models.dev (#21041)
Automated daily sync of `ai-providers.json` from
[models.dev](https://models.dev).

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

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

Co-authored-by: FelixMalfait <6399865+FelixMalfait@users.noreply.github.com>
2026-05-29 09:12:25 +02:00
dependabot[bot]GitHubdependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>Félix MalfaitWeikoclaude[bot] <41898282+claude[bot]@users.noreply.github.com>Félix Malfait
6d550611d2 chore(deps): bump typescript from 5.9.2 to 5.9.3 (#20991)
Bumps [typescript](https://github.com/microsoft/TypeScript) from 5.9.2
to 5.9.3.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/microsoft/TypeScript/releases">typescript's
releases</a>.</em></p>
<blockquote>
<h2>TypeScript 5.9.3</h2>
<p>Note: this tag was recreated to point at the correct commit. The npm
package contained the correct content.</p>
<p>For release notes, check out the <a
href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-9/">release
announcement</a></p>
<ul>
<li><a
href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.9.0%22+is%3Aclosed+">fixed
issues query for Typescript 5.9.0 (Beta)</a>.</li>
<li><a
href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.9.1%22+is%3Aclosed+">fixed
issues query for Typescript 5.9.1 (RC)</a>.</li>
<li><em>No specific changes for TypeScript 5.9.2 (Stable)</em></li>
<li><a
href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.9.3%22+is%3Aclosed+">fixed
issues query for Typescript 5.9.3 (Stable)</a>.</li>
</ul>
<p>Downloads are available on:</p>
<ul>
<li><a href="https://www.npmjs.com/package/typescript">npm</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/microsoft/TypeScript/commit/c63de15a992d37f0d6cec03ac7631872838602cb"><code>c63de15</code></a>
Bump version to 5.9.3 and LKG</li>
<li><a
href="https://github.com/microsoft/TypeScript/commit/8428ca4cc8a7ecc9ac18dd0258016228814f5eaf"><code>8428ca4</code></a>
🤖 Pick PR <a
href="https://redirect.github.com/microsoft/TypeScript/issues/62438">#62438</a>
(Fix incorrectly ignored dts file fr...) into release-5.9 (#...</li>
<li><a
href="https://github.com/microsoft/TypeScript/commit/a131cac6831aa6532ea963d0cb3131b957cad980"><code>a131cac</code></a>
🤖 Pick PR <a
href="https://redirect.github.com/microsoft/TypeScript/issues/62351">#62351</a>
(Add missing Float16Array constructo...) into release-5.9 (#...</li>
<li><a
href="https://github.com/microsoft/TypeScript/commit/04243333584a5bfaeb3434c0982c6280fe87b8d5"><code>0424333</code></a>
🤖 Pick PR <a
href="https://redirect.github.com/microsoft/TypeScript/issues/62423">#62423</a>
(Revert PR 61928) into release-5.9 (<a
href="https://redirect.github.com/microsoft/TypeScript/issues/62425">#62425</a>)</li>
<li><a
href="https://github.com/microsoft/TypeScript/commit/bdb641a4347af822916fb8cdb9894c9c2d2421dd"><code>bdb641a</code></a>
🤖 Pick PR <a
href="https://redirect.github.com/microsoft/TypeScript/issues/62311">#62311</a>
(Fix parenthesizer rules for manuall...) into release-5.9 (#...</li>
<li><a
href="https://github.com/microsoft/TypeScript/commit/0d9b9b92e2aca2f75c979a801abbc21bff473748"><code>0d9b9b9</code></a>
🤖 Pick PR <a
href="https://redirect.github.com/microsoft/TypeScript/issues/61978">#61978</a>
(Restructure CI to prepare for requi...) into release-5.9 (#...</li>
<li><a
href="https://github.com/microsoft/TypeScript/commit/2dce0c58af51cf9a9068365dc2f756c61b82b597"><code>2dce0c5</code></a>
Intentionally regress one buggy declaration output to an older version
(<a
href="https://redirect.github.com/microsoft/TypeScript/issues/62163">#62163</a>)</li>
<li>See full diff in <a
href="https://github.com/microsoft/TypeScript/compare/v5.9.2...v5.9.3">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=typescript&package-manager=npm_and_yarn&previous-version=5.9.2&new-version=5.9.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Félix Malfait <felix.malfait@gmail.com>
Co-authored-by: Weiko <corentin@twenty.com>
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-29 08:39:35 +02:00
Félix MalfaitandGitHub 3c97d9648b fix(address): show saved address in record detail when street1 is null (#21033)
## Fixes #20084

### Problem
A saved address is visible in the **table view** but shows **"Empty"**
in the **record detail page** when `addressStreet1` is `null`.

This reproduces with the default seed data out of the box — e.g.
**Google** (city "Mountain View", no street), **Microsoft** (Redmond),
**Meta** (Menlo Park) — which is why several users reported hitting it
immediately.

### Root cause
The frontend zod schema required `addressStreet1` to be a **non-null**
string:

```ts
// isFieldAddressValue.ts
export const addressSchema = z.object({
  addressStreet1: z.string(),          // ← required non-null
  addressStreet2: z.string().nullable(),
  ...
});
```

…but the backend composite type marks it `isRequired: false`
(`address.composite-type.ts`), and the DB column is nullable. So the API
legitimately returns `addressStreet1: null` when only other subfields
are filled.

The two views diverge on how they render:

- **Record detail** gates the value behind `useIsFieldEmpty()` →
`isFieldValueEmpty()`, which for addresses calls
`isFieldAddressValue()`. With `addressStreet1: null` the `safeParse`
**fails**, so `isFieldValueEmpty` returns `true` and the `"Empty"`
placeholder is shown (`RecordInlineCellDisplayMode`).
- **Table view** (`RecordTableCellDisplayMode`) renders
`AddressFieldDisplay` directly with **no** empty check, so the address
stays visible.

This was a latent mismatch since the address guard was introduced.

### Fix
Make `addressStreet1` nullable to match the backend and the other
subfields:

- `addressSchema` → `addressStreet1: z.string().nullable()`
- `FieldAddressValue.addressStreet1` → `string | null`
- `FieldAddressDraftValue.addressStreet1` → `string | null` (keeps the
input/draft type consistent; the text input already renders `?? ''`)

The change is strictly more permissive — persisting and the settings
default-value form still accept string values; they now also accept
`null`.

### Tests
- `isFieldAddressValue.test.ts` — guard returns `true` for
`addressStreet1: null` with other subfields filled.
- `isFieldValueEmpty.test.ts` — new address coverage: empty address is
empty; **`street1: null` + city filled is NOT empty**; normal address is
not empty. (Added an `addressFieldDefinition` mock.)

Both new assertions were confirmed to **fail before the fix** and pass
after.

### Verification
- `npx jest isFieldValueEmpty isFieldAddressValue
normalize-address-field-value-for-persist` → 17 passed
- `npx nx typecheck twenty-front` → pass
- `npx nx lint:diff-with-main twenty-front` → 0 warnings, 0 errors
2026-05-29 08:38:47 +02:00
Félix MalfaitandGitHub 3afdabb93e fix(dashboards): isolate pie chart slice labels per widget (#21034)
## Summary

Fixes [#21014](https://github.com/twentyhq/twenty/issues/21014).

When two pie chart widgets shared the same group-by field (and therefore
the same slice ids) but used different aggregation operators (e.g.
`count` vs `sum`), the arc-link labels would mirror between the two
charts — both ending up showing either the count or the sum values,
depending on render order. Center metrics stayed correct.

**Root cause.** Nivo's `ArcLinkLabelsLayer` and `ArcsLayer` (from
`@nivo/arcs`) wire `react-spring`'s `useTransition` with `keys: e =>
e.id`. When two `<ResponsivePie>` instances render with overlapping ids,
the transitioned data bleeds across charts. The center metric is
unaffected because it's computed by a separate hook
(`usePieChartCenterMetricData`).

**Fix.** Namespace the Nivo-computed slice id per widget by passing an
`id` accessor to `<ResponsivePie>`:
```tsx
id={(datum) => `${id}:${String(datum.id)}`}
```
Lookups inside the widget switch to `datum.data.id` (the original,
un-namespaced id stored on the raw datum), so value/percentage
formatting, the custom tooltip, and the legend hover-dim behavior all
keep working.

Touched files:
- `GraphWidgetPieChart.tsx` — add `id` accessor
- `CustomArcsLayer.tsx` — compare legend highlight against
`datum.data.id`
- `getPieChartFormattedValue.ts`, `getPieChartTooltipData.ts` — match on
`datum.data.id`
- Tests for both utils get a regression case covering the namespaced
computed id

## Test plan

- [ ] `npx jest getPieChartFormattedValue` 
- [ ] `npx jest getPieChartTooltipData` 
- [ ] `npx tsc --noEmit` 
- [ ] Manual: dashboard with two pies on the same group-by field, one
`count` and one `sum`, "Display data label" on for both — confirm each
chart shows its own metric on the slices, and the central total is
unchanged.
- [ ] Manual: hover a legend item — the matching slice in that chart
stays solid while the others dim, and the sibling chart is not affected.
- [ ] Manual: clicking a slice still drills into the correctly filtered
view.
2026-05-29 05:51:10 +00:00
25b0e0d091 fix: correct typo occurence -> occurrence in metadata-event-emitter.ts (#21036)
## Summary

Fixes a spelling typo in
`packages/twenty-server/src/engine/subscriptions/metadata-event/metadata-event-emitter.ts`:

- Variable name `occurence` → `occurrence` (4 references on lines 101,
103, 114, 115)

## Changes

-
`packages/twenty-server/src/engine/subscriptions/metadata-event/metadata-event-emitter.ts`
— rename misspelled variable

Co-authored-by: james <li@jamesdeMacBook-Pro.local>
2026-05-29 05:48:57 +00:00
a43e5c3fb3 i18n - translations (#21032)
Created by Github action

---------

Co-authored-by: github-actions <github-actions@twenty.com>
2026-05-28 22:15:29 +02:00
996cdaf3ff refactor(agents): split tool resolution into native and action rails (#20331)
## Summary

Splits AI agent tool resolution into two independent rails:

- **Native tools** — capabilities baked into the model SDK
(Anthropic/OpenAI `web_search`, xAI `web`/`x` provider options). Bound
by `NativeToolBinderService`, controlled by per-agent
`modelConfiguration` toggles. Opaque to Twenty — executed on the model
provider's servers.
- **Action tools** — registry-scoped tools from `ToolRegistryService`
(code interpreter, send email, record CRUD, etc.). Permission-gated via
the agent's role. Executed on Twenty's server.

Both rails merge into a single `ToolSet` at call time. When both
surfaces expose a search tool the model picks at runtime — coexistence
is intentional (relevant once Exa returns as an action, see below).

## Notable changes worth calling out

**Contract change: `AgentAsyncExecutorService.executeAgent` no longer
accepts `rolePermissionConfig`.** Workflow agents now scope exclusively
by the agent's own permission-tab role (`unionOf: [agentRoleId]`). The
previous role-merging path (caller role intersected with agent role) is
removed. No agent role → no registry tools (fail-closed by design).

**`NativeToolBinderService` relocated** from
`core-modules/tool-provider/native/` →
`metadata-modules/ai/ai-models/services/`. The binder needs SDK-package
knowledge, which lives in `ai-models`. Old location created a backwards
module dependency.

**`NATIVE_MODEL_TOOLS_BY_SDK_PACKAGE` is exhaustive over
`AiSdkPackage`** (`Record<>`, not `Partial<Record<>>`). Adding a new SDK
without thinking about native tools now fails the build. SDKs without
native tools (Bedrock, Google, Mistral, Azure, OpenAI-compatible) get
explicit `{}` entries.

**Discriminated union `kind: 'sdk-tool' | 'provider-option'`** lets one
registry describe both function tools (Anthropic/OpenAI) and runtime
sources (xAI). Follows the local `tool-provider` convention from #19321.

## Deferred to follow-ups

- **Exa web search is dropped from this PR** (along with its
`WEB_SEARCH_TOOL` permission flag and the Exa-specific gating). Exa
comes back as an **action/app tool** once apps can define permission
flags through the SDK — ongoing work in #20481.
- **xAI native search currently errors.** xAI deprecated its Live Search
API (the `web`/`x` provider-option sources this rail maps to), so xAI
returns `410` when native search is actually exercised. The code path
itself is clear — it's only hit if you test xAI native tools. Fixed
separately alongside the broader xAI model fixes.

## Conscious non-decisions

- **No "twenty-native" category.** `native` is reserved for
model/provider SDK features; everything Twenty-owned is just a
tool/action.
- **Coexistence over precedence.** No rule forcing an action search tool
to override native search (or vice-versa) — when both exist, it's the
user's choice in workflow agents and the model's choice in chat.

---------

Co-authored-by: Félix Malfait <felix.malfait@gmail.com>
Co-authored-by: Félix Malfait <felix@twenty.com>
2026-05-28 22:08:05 +02:00
Raphaël BosiandGitHub 1d84695fb0 Fix: focus stack overwritten when auto-opening title cell on new record (#21029)
Fixes https://github.com/twentyhq/twenty/issues/20894

In `PageChangeEffect` `resetFocusStackToFocusItem` ran right after
`openNewRecordTitleCell`, wiping the title cell entry. Typing in the
auto-opened breadcrumb input (e.g. new workflow) triggered global
shortcuts and ignored Enter / Escape / Tab.

Reordered so the page reset runs first, then the title cell push lands
on top.

## Before


https://github.com/user-attachments/assets/d3c0c266-a493-46b8-b99b-32f4381b8664


## After


https://github.com/user-attachments/assets/3a886386-f438-46d2-a6ea-9ee6908d6df2
2026-05-28 19:23:40 +00:00
dependabot[bot]GitHubdependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>Weiko
64e0b76d00 chore(deps): bump js-cookie from 3.0.5 to 3.0.7 (#20992)
Bumps [js-cookie](https://github.com/js-cookie/js-cookie) from 3.0.5 to
3.0.7.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/js-cookie/js-cookie/releases">js-cookie's
releases</a>.</em></p>
<blockquote>
<h2>v3.0.7</h2>
<ul>
<li>Prevent cookie attribute injection: CVE-2026-46625 (eb3c40e)</li>
<li>Add <code>Partitioned</code> attribute to readme (b994768)</li>
<li>Publish to npm registry via trusted publisher exclusively
(4dc71be)</li>
<li>Ensure consistent behaviour for <code>get('name')</code> +
<code>get()</code> (1953d30)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/js-cookie/js-cookie/commit/17bacba0171dd022728d8fdeba3203c60791bf58"><code>17bacba</code></a>
Craft v3.0.7 release</li>
<li><a
href="https://github.com/js-cookie/js-cookie/commit/adb823cb7e95ead47f3af4d4951e589acbde2077"><code>adb823c</code></a>
Fix release workflow halting at <code>git tag</code></li>
<li><a
href="https://github.com/js-cookie/js-cookie/commit/5f9e759b07d2752e8407a3a43fb5f879bf384c5e"><code>5f9e759</code></a>
May remove Git user config from release workflow</li>
<li><a
href="https://github.com/js-cookie/js-cookie/commit/6ac921184c7b3b7d9431c88707f56521acd72ab4"><code>6ac9211</code></a>
Fix release workflow not able to push commit + tag</li>
<li><a
href="https://github.com/js-cookie/js-cookie/commit/2278bc55e1804c4c2d9bd2110a9b449949a52751"><code>2278bc5</code></a>
Fix missing package version bump</li>
<li><a
href="https://github.com/js-cookie/js-cookie/commit/eb3c40e89731e99b8970faaf35ddad249c6c0020"><code>eb3c40e</code></a>
Prevent cookie attribute injection</li>
<li><a
href="https://github.com/js-cookie/js-cookie/commit/f6f157f430d707d2ffd0c9c9138227a6cea564e5"><code>f6f157f</code></a>
Bump globals from 17.5.0 to 17.6.0</li>
<li><a
href="https://github.com/js-cookie/js-cookie/commit/f409d022da50a0c6fa8724f087fbc50fab9a9533"><code>f409d02</code></a>
Bump eslint from 10.2.0 to 10.3.0</li>
<li><a
href="https://github.com/js-cookie/js-cookie/commit/a686883c03a754c04546cfc1653911a70a640b40"><code>a686883</code></a>
Bump protobufjs in the npm_and_yarn group across 1 directory</li>
<li><a
href="https://github.com/js-cookie/js-cookie/commit/c6112d2d4f2881a12aaf89d9e2996ef6870eb6d0"><code>c6112d2</code></a>
Bump <code>@​protobufjs/utf8</code> in the npm_and_yarn group across 1
directory</li>
<li>Additional commits viewable in <a
href="https://github.com/js-cookie/js-cookie/compare/v3.0.5...v3.0.7">compare
view</a></li>
</ul>
</details>
<details>
<summary>Maintainer changes</summary>
<p>This version was pushed to npm by <a
href="https://www.npmjs.com/~GitHub%20Actions">GitHub Actions</a>, a new
releaser for js-cookie since your current version.</p>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=js-cookie&package-manager=npm_and_yarn&previous-version=3.0.5&new-version=3.0.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Weiko <corentin@twenty.com>
2026-05-28 21:25:35 +02:00
Félix MalfaitandGitHub 8a74ea8829 fix(contact-creation): enrich missing names on auto-created contacts (#21018)
## Summary

Three related fixes to the auto-creation of People records from calendar
events and email messages, all centred on the data-quality problem of
contacts being created with missing or malformed names.

### 1. Enrich names on existing contacts (commit 1)

Previously: when an email or calendar import matched an existing Person
by email, the existing record was left untouched — even if the new
source carried a better name.

This is the root cause of contacts like `"Félix"` (no last name)
sticking around forever: the `To:`/`Cc:` headers of outbound emails
rarely include a display name, and Google Calendar only returns
`displayName` for attendees already in the organizer's address book. So
the first sighting often creates a Person as `{firstName: "felix",
lastName: ""}`, and a later inbound `From: "Félix Malfait"
<felix@twenty.com>` — which would have produced the right name — gets
silently dropped because the Person already exists.

The new `computePeopleToEnrichNames` bucket and
`CreatePersonService.enrichPeopleNames` method fill in missing
`firstName`/`lastName` fields from the new parsed name, with
conservative rules:
- Only enrich when the existing Person's `createdBy.source` is
`CALENDAR` or `EMAIL` — `MANUAL`, `IMPORT`, `API`, `WORKFLOW`, etc. are
never touched.
- Only fill empty fields. Non-empty `firstName`/`lastName` are never
overwritten.
- Soft-deleted contacts continue to be handled by the existing restore
path.

### 2. Handle multi-comma "Last, First, Suffix" display names (commit 2)

The comma-inverted swap in the parser previously required *exactly* one
comma. Names like `"Smith, Jane, Jr."`, `"O'Brien, Mary, MD"` or `"Doe,
John, Patrick"` fell through to the space-split fallback, which stored
the comma in `firstName` (e.g. `"Smith,"`) and produced garbled records
(the avatar shows a single "B" and the name reads `"Barbey, Julien"`
because the entire string lives in `firstName`).

The regex now splits on the first comma and treats the remainder as the
first name, collapsing any further commas to spaces. Single-comma
behaviour is unchanged.

### 3. Perf: skip the parser when an existing record is already
populated (commit 3)

`computePeopleToEnrichNames` runs on every cron-driven email/calendar
import batch. The first version called the display-name parser for every
matched existing person, even when both `firstName` and `lastName` were
already set — i.e. the steady-state case after the initial enrichment
pass.

Reordered so the cheap "both fields populated" check short-circuits
before any parsing happens. Same behaviour, fewer parser calls on the
hot path.

## Test plan

- [x] 8 new unit tests for the enrichment bucket: empty `lastName`
enrichment, both `EMAIL` and `CALENDAR` sources, non-overwrite of
non-empty fields, skip on `MANUAL`/`IMPORT`, skip when the new source
also has no last name, skip for soft-deleted, fill `firstName` while
preserving `lastName`, handle null `name` field
- [x] 5 new parser tests for multi-comma forms: `"Last, First, Suffix"`,
credential suffixes (`MD`), three-token forms, whitespace around inner
commas, `:GROUP` tag interaction
- [x] 1 new parser test on the single-comma path covering multi-word
first names (`"Smith, Mary Jane"`)
- [x] All 15 existing parser tests still pass
- [x] All 116 tests in `contact-creation-manager` pass
- [x] `npx nx typecheck twenty-server`
- [x] `npx oxlint --type-aware` + `npx oxfmt --check` on changed files
- [ ] Manual: trigger a fresh contact creation from an outbound email
with no display name, then a subsequent inbound email from the same
address with a full display name, and confirm the Person's last name
gets populated
2026-05-28 20:49:56 +02:00
Félix MalfaitandGitHub f4ead89956 refactor(twenty-orm): migrate 23 grandfathered entities to WorkspaceScopedRepository (#20987)
## Summary

Follow-up to #20953. Migrates 23 of the 30 entities that were left in
`WORKSPACE_SCOPED_EXEMPTIONS` last time, so the lint rule's
workspaceId-enforcement default now covers most of the core/metadata
schema.

### Migrated (23 entities, 88 files, 22 commits)

| Family | Entities |
|---|---|
| Trivial caches | `NavigationMenuItem`, `Skill`, `DataSource`,
`Webhook`, `CommandMenuItem`, `IndexMetadata` |
| Views | `View`, `ViewField`, `ViewFieldGroup`, `ViewFilter`,
`ViewFilterGroup`, `ViewGroup`, `ViewSort` |
| Layouts | `PageLayout`, `PageLayoutTab`, `PageLayoutWidget` |
| Roles & permissions | `Role`, `RoleTarget`, `PermissionFlag`,
`ObjectPermission`, `FieldPermission`, `RowLevelPermissionPredicate`,
`RowLevelPermissionPredicateGroup` |

For each entity: swap `@InjectRepository(X)` →
`@InjectWorkspaceScopedRepository(X)` (and the field type →
`WorkspaceScopedRepository<X>`); rewrite every call site to pass
`workspaceId` as the first arg (stripped from `where`/criteria — the
wrapper throws if you include it now); register
`provideWorkspaceScopedRepository(X)` in every owning NestJS module;
update affected spec providers to
`getWorkspaceScopedRepositoryToken(X)`.

### Rule update

- `ApplicationRegistrationVariableEntity` was misclassified — moved to
`STRUCTURAL_EXEMPTIONS` (no `workspaceId` column; it's keyed on
`applicationRegistrationId` at the instance level).
- 22 of the 23 migrated entities removed from
`WORKSPACE_SCOPED_EXEMPTIONS` entirely (zero remaining raw
`@InjectRepository` sites).
- `RoleTargetEntity` also removed; one call site in
`user-workspace.service.ts` keeps a raw injection with an
`eslint-disable` + reason because `softRemove(...)` is not on the
wrapper API yet (the migration would require threading `workspaceId`
through `deleteUserWorkspace`'s three callers).

### Still exempted (7 entities, follow-up PRs)

| Entity | Why deferred |
|---|---|
| `ApplicationEntity` | ~50 sites with several cross-workspace lookups
by id (auth, OAuth, file-storage, cleanup) |
| `CalendarChannelEntity` / `MessageChannelEntity` | Use
`.increment(...)` (not on wrapper) and
`repository.manager.transaction(...)` — wrapper needs to grow
`.increment` + the transaction sites need `withManager` or dual-inject |
| `FieldMetadataEntity` / `ObjectMetadataEntity` | The metadata services
`extends TypeOrmQueryService<X>` and `super(rawRepo)` — requires
dual-inject or reworking the inheritance |
| `KeyValuePairEntity` | Allows `workspaceId: IsNull()` for
instance-level config; wrapper rejects null |
| `UpgradeMigrationEntity` | Same — instance-level + cross-workspace
ledger |

## Test plan

- [x] `npx nx typecheck twenty-server` — clean
- [x] `npx nx lint twenty-server` — clean (0/0)
- [x] All 10 affected unit specs pass (115 tests) — api-key, agent-role,
permissions, workspace-roles-permissions-cache, view-filter-group,
workflow-version-step-operations, two-factor-authentication (service +
resolver), user-workspace, file
- [ ] Server integration tests in CI
2026-05-28 20:46:21 +02:00
Félix MalfaitandGitHub 865ca697ca Fix AI permission gating: use Ask AI for chat UI, AI Settings for admin endpoints (#21030)
## Summary

Closes #20662.

Two AI permission flags exist:
- **`AI`** (label "Ask AI") — user-facing: chat with AI agents, use AI
features
- **`AI_SETTINGS`** (label "AI") — admin: create and configure AI agents

After auditing every use of these flags I found:

### Frontend — chat UI gated by the admin permission (user-facing bug
from the issue)
A user granted only `Ask AI` could not see chat tabs, the "new chat"
button (desktop & mobile), or the chat content pane; thread
initialization was also skipped, leaving the chat in a half-initialized
state and producing intermittent `THREAD_NOT_FOUND` errors. Switched
these to `AI`:
- `MainNavigationDrawerTabsRow.tsx`
- `MainNavigationDrawer.tsx`
- `MobileNavigationBar.tsx`
- `AgentChatThreadInitializationEffect.tsx`

### Backend — admin-only resolvers gated by the user permission
(privilege escalation)
Two resolvers had a class-level guard of `AI`, letting any user with the
user-facing flag reach admin endpoints (skill CRUD, eval runs). Switched
the class-level guards to `AI_SETTINGS`:
- `SkillResolver` — create/update/delete/activate/deactivate skills
- `AgentTurnResolver` — read turns, run/grade evaluations

### Left as-is (already correct)
- `AgentResolver` — class-level `AI` for reads (workflow editors and
admin pages both need them), mutation-level `AI_SETTINGS` overrides for
writes
- `AgentChatResolver` & `AgentChatSubscriptionResolver` — already `AI`
- `AiGenerateTextController` — already `AI`
- Workspace AI config fields in `workspace.service.ts` — already
`AI_SETTINGS`

## Test plan

- [ ] As a user with `Ask AI` only (no `AI_SETTINGS`): chat tabs, "new
chat" button, and chat history pane are visible on desktop + mobile;
sending a message works; no `THREAD_NOT_FOUND` errors
- [ ] As a user with `AI_SETTINGS` but no `Ask AI`: chat UI is hidden
- [ ] As a user with `Ask AI` only: calling `skills` / `createSkill` /
`agentTurns` / `runEvaluationInput` via GraphQL returns permission
denied
- [ ] As an admin (`AI_SETTINGS`): skill settings and agent eval pages
still work
2026-05-28 20:21:58 +02:00
Paul RastoinandGitHub ebfaca5b3d EncryptedString PlaintextString branded string types (#21001)
## Summary

closes https://github.com/twentyhq/core-team-issues/issues/2464

Introduces compile-time branded types to distinguish encrypted
ciphertext from plaintext strings, preventing mix-ups like the one fixed
in #20819 — but at the type level rather in addition to the one existing
at runtime.

### Branded string primitives

- Created `EncryptedString` and `PlaintextString` as hard nominal brands
using `z.string().brand(...)`, making them non-assignable to each other
or to raw `string`
- Created `isEncryptedString` type predicate to narrow `string` to
`EncryptedString` based on the `enc:v2:` envelope prefix
- Retyped `SecretEncryptionService`: `encryptVersioned` accepts
`PlaintextString`, `decryptVersioned` returns `PlaintextString`

### Entity typing

- Typed encrypted columns across entities:
`SigningKeyEntity.privateKey`,
`TwoFactorAuthenticationMethodEntity.secret`,
`ApplicationRegistrationVariableEntity.encryptedValue`,
`ApplicationVariableEntity.value`
- Parameterized JSONB types for connected account connection parameters
(`ImapSmtpCaldavParams<Pwd>`) with reusable aliases
`EncryptedImapSmtpCaldavParams` / `DecryptedImapSmtpCaldavParams`
- Typed DTOs (`CreateApplicationRegistrationVariableInput`,
`UpdateApplicationRegistrationVariablePayload`,
`UpdateApplicationVariableEntityInput`) with `PlaintextString`

### ApplicationVariable always-encrypt uniformization

- Retyped `ApplicationVariableEntity.value` to `EncryptedString | ''` —
all values are now encrypted regardless of `isSecret`
- Updated `ApplicationVariableEntityService` to always encrypt on write
and always decrypt on read
- Simplified `UpdateApplicationVariableActionHandlerService` by removing
conditional encrypt/decrypt-on-isSecret-toggle logic
- Added slow instance command (`2.9.0`) to backfill-encrypt existing
`isSecret=false` plaintext rows and tighten the `CHECK` constraint

### ConfigStorageService refactor

- Split `convertAndSecureValue` (which used `any`) into two well-typed
methods: `convertAndDecrypt` and `convertAndEncrypt`
- Introduced `isSensitiveStringValue` type predicate to narrow values
before encryption/decryption

### What's next
- Typeorm entity derivation to strictly type sitemap configuration as
code + handler logic for encryption rotation
- https://github.com/twentyhq/core-team-issues/issues/2465
2026-05-28 17:41:16 +02:00
WeikoandGitHub 9b54200d8c Fix playwright CI (#21024)
## Context
The Install Playwright step ran npx playwright install with no
arguments, which downloads all browsers (Chromium + Firefox + WebKit +
ffmpeg, ~500MB+) on every run with no caching.

Fix:
- Install Chromium only — npx playwright install chromium instead of all
browsers.
- Cache the browser binaries — actions/cache on ~/.cache/ms-playwright,
keyed on the resolved Playwright version (v4-playwright-browsers-${{
runner.os }}-<version>). On a cache hit the install step is skipped
entirely; the cache invalidates automatically when the Playwright
version bumps.
2026-05-28 14:19:58 +00:00
bd6811d060 i18n - translations (#21022)
Created by Github action

---------

Co-authored-by: github-actions <github-actions@twenty.com>
2026-05-28 15:59:42 +02:00
b32249877a i18n - translations (#21021)
Created by Github action

---------

Co-authored-by: github-actions <github-actions@twenty.com>
2026-05-28 15:55:32 +02:00
martmullandGitHub 6fb6ef4e7a Add darkmode for oAuth screen (#21005)
## after

<img width="1512" height="828" alt="image"
src="https://github.com/user-attachments/assets/71664eab-c921-45da-ac67-7a660c976d5c"
/>
2026-05-28 15:48:57 +02:00
Raphaël BosiandGitHub bb4e28904f Support the "Me" filter for workspace members in dashboard widgets and add multi select (#20971)
Fixes https://github.com/twentyhq/twenty/issues/20225

The "Me" filter (current workspace member) worked in view filters but
not in dashboard widget filters — the server never resolved the
placeholder, and the widget side-panel UI had no "Me" option and only
allowed single selection.

Backend: `ChartDataQueryService` now forwards the current workspace
member id (from authContext) into filterValueDependencies, so the shared
filter logic resolves "Me" the same way it does for view filters. Added
unit tests for the converter.

Frontend: new multi-select picker for workspace member filters in the
widget side panel, mirroring the view filter's actor select: search
input, "Me" pinned item, and a multi-select workspace member list.

## Before
<img width="3024" height="1488" alt="CleanShot 2026-05-27 at 17 16
36@2x"
src="https://github.com/user-attachments/assets/b2cff46c-53e5-4e8a-a463-b106daf96c8c"
/>

## After
<img width="3024" height="1488" alt="CleanShot 2026-05-27 at 17 14
05@2x"
src="https://github.com/user-attachments/assets/8b3b5f11-44b9-4ae5-a2f3-9c7a689f4bb2"
/>
2026-05-28 15:43:47 +02:00
c3d1af89ae i18n - docs translations (#21019)
Created by Github action

Co-authored-by: github-actions <github-actions@twenty.com>
2026-05-28 15:43:18 +02:00
Raphaël BosiandGitHub e6221c5f0e Fix twenty sdk billing exports (#21016)
Fix two omissions from #19973 that prevented `twenty-sdk/billing` from
being a fully exported subpath:

- `package.json`: add `billing` to `typesVersions` (every other subpath
was listed; billing was the only one missing, breaking type resolution
for consumers using classic TS moduleResolution).
- `project.json`: add the billing vite build and `dist/billing` output
to the `build:sdk` target
2026-05-28 15:41:24 +02:00
dependabot[bot]GitHubdependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
6566a918af chore(deps): bump @apollo/client from 4.1.6 to 4.2.0 (#20993)
Bumps [@apollo/client](https://github.com/apollographql/apollo-client)
from 4.1.6 to 4.2.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/apollographql/apollo-client/releases">@​apollo/client's
releases</a>.</em></p>
<blockquote>
<h2><code>@​apollo/client</code><a
href="https://github.com/4"><code>@​4</code></a>.2.0</h2>
<h3>Minor Changes</h3>
<ul>
<li>
<p><a
href="https://redirect.github.com/apollographql/apollo-client/pull/13132">#13132</a>
<a
href="https://github.com/apollographql/apollo-client/commit/f3ce805425d10a9666218a8e109288a2d46dcab1"><code>f3ce805</code></a>
Thanks <a
href="https://github.com/phryneas"><code>@​phryneas</code></a>! -
Introduce &quot;classic&quot; and &quot;modern&quot; method and hook
signatures.</p>
<p>Apollo Client 4.2 introduces two signature styles for methods and
hooks. All signatures previously present are now &quot;classic&quot;
signatures, and a new set of &quot;modern&quot; signatures are added
alongside them.</p>
<p><strong>Classic signatures</strong> are the default and are identical
to the signatures before Apollo Client 4.2, preserving backward
compatibility. Classic signatures still work with manually specified
TypeScript generics (e.g.,
<code>useSuspenseQuery&lt;MyData&gt;(...)</code>). However, manually
specifying generics has been discouraged for a long time—instead, we
recommend using <code>TypedDocumentNode</code> to automatically infer
types, which provides more accurate results without any manual
annotations.</p>
<p><strong>Modern signatures</strong> automatically incorporate your
declared <code>defaultOptions</code> into return types, providing more
accurate types. Modern signatures infer types from the document node and
do not support manually passing generic type arguments; TypeScript will
produce a type error if you attempt to do so.</p>
<p>Methods and hooks automatically switch to modern signatures the
moment any non-optional property is declared in
<code>DeclareDefaultOptions</code>. The switch happens across all
methods and hooks globally:</p>
<pre lang="ts"><code>// apollo.d.ts
import &quot;@apollo/client&quot;;
declare module &quot;@apollo/client&quot; {
  namespace ApolloClient {
    namespace DeclareDefaultOptions {
      interface WatchQuery {
errorPolicy: &quot;all&quot;; // non-optional → modern signatures
activated automatically
      }
    }
  }
}
</code></pre>
<p>Users can also manually switch to modern signatures without declaring
any <code>defaultOptions</code>, for example when wanting accurate type
inference without relying on global <code>defaultOptions</code>:</p>
<pre lang="ts"><code>// apollo.d.ts
import &quot;@apollo/client&quot;;
declare module &quot;@apollo/client&quot; {
  export interface TypeOverrides {
    signatureStyle: &quot;modern&quot;;
  }
}
</code></pre>
<p>Users can do a global <code>DeclareDefaultOptions</code> type
augmentation and then manually switch back to &quot;classic&quot; for
migration purposes:</p>
<pre lang="ts"><code>// apollo.d.ts
import &quot;@apollo/client&quot;;
declare module &quot;@apollo/client&quot; {
  export interface TypeOverrides {
    signatureStyle: &quot;classic&quot;;
  }
}
</code></pre>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/apollographql/apollo-client/blob/main/CHANGELOG.md">@​apollo/client's
changelog</a>.</em></p>
<blockquote>
<h2>4.2.0</h2>
<h3>Minor Changes</h3>
<ul>
<li>
<p><a
href="https://redirect.github.com/apollographql/apollo-client/pull/13132">#13132</a>
<a
href="https://github.com/apollographql/apollo-client/commit/f3ce805425d10a9666218a8e109288a2d46dcab1"><code>f3ce805</code></a>
Thanks <a
href="https://github.com/phryneas"><code>@​phryneas</code></a>! -
Introduce &quot;classic&quot; and &quot;modern&quot; method and hook
signatures.</p>
<p>Apollo Client 4.2 introduces two signature styles for methods and
hooks. All signatures previously present are now &quot;classic&quot;
signatures, and a new set of &quot;modern&quot; signatures are added
alongside them.</p>
<p><strong>Classic signatures</strong> are the default and are identical
to the signatures before Apollo Client 4.2, preserving backward
compatibility. Classic signatures still work with manually specified
TypeScript generics (e.g.,
<code>useSuspenseQuery&lt;MyData&gt;(...)</code>). However, manually
specifying generics has been discouraged for a long time—instead, we
recommend using <code>TypedDocumentNode</code> to automatically infer
types, which provides more accurate results without any manual
annotations.</p>
<p><strong>Modern signatures</strong> automatically incorporate your
declared <code>defaultOptions</code> into return types, providing more
accurate types. Modern signatures infer types from the document node and
do not support manually passing generic type arguments; TypeScript will
produce a type error if you attempt to do so.</p>
<p>Methods and hooks automatically switch to modern signatures the
moment any non-optional property is declared in
<code>DeclareDefaultOptions</code>. The switch happens across all
methods and hooks globally:</p>
<pre lang="ts"><code>// apollo.d.ts
import &quot;@apollo/client&quot;;
declare module &quot;@apollo/client&quot; {
  namespace ApolloClient {
    namespace DeclareDefaultOptions {
      interface WatchQuery {
errorPolicy: &quot;all&quot;; // non-optional → modern signatures
activated automatically
      }
    }
  }
}
</code></pre>
<p>Users can also manually switch to modern signatures without declaring
any <code>defaultOptions</code>, for example when wanting accurate type
inference without relying on global <code>defaultOptions</code>:</p>
<pre lang="ts"><code>// apollo.d.ts
import &quot;@apollo/client&quot;;
declare module &quot;@apollo/client&quot; {
  export interface TypeOverrides {
    signatureStyle: &quot;modern&quot;;
  }
}
</code></pre>
<p>Users can do a global <code>DeclareDefaultOptions</code> type
augmentation and then manually switch back to &quot;classic&quot; for
migration purposes:</p>
<pre lang="ts"><code>// apollo.d.ts
import &quot;@apollo/client&quot;;
declare module &quot;@apollo/client&quot; {
  export interface TypeOverrides {
    signatureStyle: &quot;classic&quot;;
  }
}
</code></pre>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/apollographql/apollo-client/commit/e010bdd239b5c10415d4b70ca791467cde12fc88"><code>e010bdd</code></a>
Version Packages (<a
href="https://redirect.github.com/apollographql/apollo-client/issues/13241">#13241</a>)</li>
<li><a
href="https://github.com/apollographql/apollo-client/commit/9c4c01a640b43bfb47bd52b25d5881c4ad7bec71"><code>9c4c01a</code></a>
Release 4.2 (<a
href="https://redirect.github.com/apollographql/apollo-client/issues/13129">#13129</a>)</li>
<li><a
href="https://github.com/apollographql/apollo-client/commit/222838e99bc6054120cc1f881bb225b1ef049de9"><code>222838e</code></a>
Exit prerelease mode</li>
<li><a
href="https://github.com/apollographql/apollo-client/commit/7d3a533c811a8423536ceeebccc06413ded5b6a3"><code>7d3a533</code></a>
Merge branch 'main' into release-4.2</li>
<li><a
href="https://github.com/apollographql/apollo-client/commit/f20d591bbf74cb4f0d87ec9a14b93a59fe46b039"><code>f20d591</code></a>
chore(deps): update actions/create-github-app-token digest to d72941d
(<a
href="https://redirect.github.com/apollographql/apollo-client/issues/13239">#13239</a>)</li>
<li><a
href="https://github.com/apollographql/apollo-client/commit/d4a28b6142e47164c8a24bd8c05a8aa3f1ce4eee"><code>d4a28b6</code></a>
chore(deps): pin dependencies (<a
href="https://redirect.github.com/apollographql/apollo-client/issues/13237">#13237</a>)</li>
<li><a
href="https://github.com/apollographql/apollo-client/commit/c1f39cf5402b052ab92886a1857840a745aee02b"><code>c1f39cf</code></a>
ci: pin Actions@SHA and disable cache on workflows with elevated OIDC
permiss...</li>
<li><a
href="https://github.com/apollographql/apollo-client/commit/511048b7bd6253a38a6b7ebe58e9674a39c74273"><code>511048b</code></a>
Event-based refetching docs (<a
href="https://redirect.github.com/apollographql/apollo-client/issues/13228">#13228</a>)</li>
<li><a
href="https://github.com/apollographql/apollo-client/commit/d1f68f1a5fdb7c6915a72b2426cad373a0526c06"><code>d1f68f1</code></a>
Version Packages (rc) (<a
href="https://redirect.github.com/apollographql/apollo-client/issues/13234">#13234</a>)</li>
<li><a
href="https://github.com/apollographql/apollo-client/commit/f1b541fed4111028b6842727178288156582e669"><code>f1b541f</code></a>
Prepare for rc release (<a
href="https://redirect.github.com/apollographql/apollo-client/issues/13232">#13232</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/apollographql/apollo-client/compare/@apollo/client@4.1.6...@apollo/client@4.2.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@apollo/client&package-manager=npm_and_yarn&previous-version=4.1.6&new-version=4.2.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-28 15:12:52 +02:00
martmullandGitHub 6ea637d6c5 Export STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS (#21010)
fix https://discord.com/channels/1130383047699738754/1509086323464474705
2026-05-28 12:51:01 +00:00
Félix MalfaitandGitHub 531410f64a fix(ai): expose MORPH_RELATION join columns in AI/MCP tool schemas (#21012)
## Summary

- Fixes a bug where `noteTarget` (and any other morph-relation join
object) created via AI/MCP would land with `targetCompanyId` /
`targetPersonId` / `targetOpportunityId` left null, even though the tool
reported success.
- Root cause: the Zod schema generators for the AI tools only branched
on `FieldMetadataType.RELATION`. MORPH_RELATION fields fell through to
the default case — for `create_*` they were exposed as `targetCompany:
string` instead of `targetCompanyId: uuid`, and for `group_by_*` they
were silently skipped entirely. Downstream
(`data-arg-processor.service.ts` and the group-by arg processor) already
accept the join-column form for both kinds of relations via
`computeMorphOrRelationFieldJoinColumnName` and
`isMorphOrRelationFlatFieldMetadata`, so the fix is purely in the schema
generators.

## Changes

- `record-properties.zod-schema.ts` — extend the existing RELATION
MANY_TO_ONE / ONE_TO_MANY branches to also match MORPH_RELATION.
- `group-by-tool.zod-schema.ts` — replace the silent MORPH_RELATION skip
with the same treatment as RELATION MANY_TO_ONE (exposes `${name}Id` as
a groupBy option).
- `test/integration/ai/suites/mcp-tool-execution.integration-spec.ts` —
new file. First integration test for tool execution end-to-end. Drives
the real MCP JSON-RPC endpoint with the seeded API key (`learn_tools`
for schema introspection, `execute_tool` for invocation):
- asserts `create_note_target`'s schema exposes `targetCompanyId` /
`targetPersonId` / `targetOpportunityId` as UUIDs and does **not**
expose `targetCompany` / `targetPerson` / `targetOpportunity`.
- creates a company + note + noteTarget via MCP, then queries the
workspace schema to confirm `targetCompanyId` is actually persisted in
the FK column.
- asserts `group_by_note_targets` schema accepts `targetCompanyId` as a
groupBy key.
- sets up 3 noteTargets (2 → company A, 1 → company B), calls
`group_by_note_targets` by `targetCompanyId`, and asserts the counts.

Out of scope: `record-filter.zod-schema.ts` has the same pattern (only
RELATION) — left for a follow-up so this PR stays focused on what was
reported.

## Test plan

- [x] `npx nx typecheck twenty-server`
- [x] `npx oxlint --type-aware` on changed files — clean
- [x] `npx oxfmt --check` on changed files — clean
- [x] Integration tests pass (4/4) after `database:reset`:
- `should expose the morph-relation join columns as \`${name}Id\` UUID
parameters`
- `should persist targetCompanyId when create_note_target is invoked via
MCP`
  - `should expose targetCompanyId as a valid groupBy option`
  - `should group noteTargets by targetCompanyId via MCP`
2026-05-28 14:17:10 +02:00
182960051f i18n - translations (#21013)
Created by Github action

Co-authored-by: github-actions <github-actions@twenty.com>
2026-05-28 13:30:39 +02:00
Félix MalfaitandGitHub 7d9f9605a2 feat(settings): move email handles and emailing domains to dedicated Email page (#21008)
## Summary

Both **Email Handles** and **Emailing Domains** were rendered on the
General workspace settings page, but they're workspace-level *email
infrastructure* (inbound shared addresses + outbound sender
authentication) and don't belong with the workspace name, picture, and
domain config.

- New `SettingsWorkspaceEmail` page at `/settings/email`
- Nav item under **Workspace**, hidden when `IS_EMAIL_GROUP_ENABLED` is
off (and gated by `WORKSPACE` permission)
- Related sub-routes (`email-group/:messageChannelId`,
`emailing-domain/:domainId`, etc.) moved from `general/` to `email/` so
the URL space stays consistent with the page
- General page now only contains name, picture, workspace domain, and
the delete-workspace section

No behavior changes to the underlying section components — they're
imported as-is into the new page.

## Test plan

- [ ] With `IS_EMAIL_GROUP_ENABLED` enabled: **Email** appears in the
Workspace nav and the page renders both sections
- [ ] With the flag disabled: **Email** is hidden from nav; navigating
to `/settings/email` directly renders nothing
- [ ] General page no longer shows Email Handles / Emailing Domains
- [ ] Clicking a shared inbox row navigates to
`/settings/email/email-group/:id` (was `general/...`)
- [ ] "Add emailing domain" navigates to
`/settings/email/emailing-domain/new`

## Notes

- Pre-existing `twenty-front` typecheck error in
`FrontComponentRendererProvider.tsx` (React types mismatch between
sibling packages) reproduces on `main` and is unrelated to this PR.
2026-05-28 13:22:55 +02:00
Félix MalfaitandGitHub 7065441972 fix: refresh admin panel feature flags after toggling (#21007)
## Summary

- Add `refetchQueries` to the `updateWorkspaceFeatureFlag` mutation in
the admin workspace detail page so the toggle reflects the new value
after toggling.
- Rename `useFeatureFlagState` → `useAdminUpdateFeatureFlag` since the
hook lives under `admin-panel` and is only consumed by the admin
workspace detail page.

## Bug

In the admin panel, toggling a feature flag for a workspace other than
the admin's own workspace sent the backend mutation successfully, but
the toggle in the UI remained unchanged.

The displayed value is derived from:
```tsx
const currentWorkspaceValue =
  currentWorkspace?.id === workspaceId
    ? currentWorkspace?.featureFlags?.find((f) => f.key === flag.key)?.value
    : undefined;
const displayedValue = currentWorkspaceValue ?? flag.value;
```

When viewing a different workspace, `currentWorkspaceValue` is
`undefined` so the toggle reads `flag.value` from the
`WORKSPACE_LOOKUP_ADMIN_PANEL` query. That query was never refetched
after the mutation, so the displayed value stayed stale.

The existing optimistic Jotai update on `currentWorkspaceState` still
runs — it is needed so the rest of the app (anything consuming
`useIsFeatureEnabled`) reacts immediately when an admin toggles a flag
on their own workspace.

## Test plan

- [ ] Open the admin panel → pick a workspace that is not your own →
Feature Flags tab → toggle a flag → toggle visually flips after the
mutation completes.
- [ ] Same flow on your own workspace → toggle flips, and any UI gated
on that flag also reacts.
- [ ] If the mutation fails, the toggle reverts (existing `onError`
rollback path).
2026-05-28 12:23:26 +02:00
6e2cf4cbc0 Fix lambda timeout diagnostics (#21002)
Trying to fix
https://twenty-v7.sentry.io/issues/7420384466/?environment=prod&environment=prod-eu&project=4507072499810304&query=is%3Aunresolved%20%21issue.type%3A%5Bperformance_consecutive_db_queries%2Cperformance_consecutive_http%2Cperformance_file_io_main_thread%2Cperformance_db_main_thread%2Cperformance_n_plus_one_db_queries%2Cperformance_n_plus_one_api_calls%2Cperformance_p95_endpoint_regression%2Cperformance_slow_db_query%2Cperformance_render_blocking_asset_span%2Cperformance_uncompressed_assets%2Cperformance_http_overhead%2Cperformance_large_http_payload%5D%20timesSeen%3A%3E10&referrer=issue-stream&sort=date

## Summary
- Prevent invoking Lambda functions stuck in `Pending` state by checking
`Configuration.State === 'Active'` in `checkLambdaExecutorBuildStatus` —
a Pending function now goes through `ensureLambdaExecutor` which waits
for Active.
- Track execution phase (`build`/`fetch-code`/`invoke`) via a
`LambdaExecutionPhase` enum and include phase timing + function state in
all error messages for faster debugging.

Co-authored-by: Matt Van Horn <mvanhorn@users.noreply.github.com>
2026-05-28 09:06:33 +00:00
de7daaa81a fix: exclude system objects and workflow/dashboard from AI/MCP write tool descriptors (#20973)
## Summary

fix: exclude system join objects from AI/MCP create/update/delete tool
descriptors

Closes #20403

---
AI was used for assistance.

---------

Co-authored-by: Matt Van Horn <455140+mvanhorn@users.noreply.github.com>
Co-authored-by: Félix Malfait <felix@twenty.com>
Co-authored-by: Félix Malfait <felix.malfait@gmail.com>
2026-05-27 20:01:11 +02:00
c0cbe67bcd i18n - translations (#20982)
Created by Github action

---------

Co-authored-by: github-actions <github-actions@twenty.com>
2026-05-27 19:47:07 +02:00
neo773GitHubFélix Malfaitclaude[bot] <41898282+claude[bot]@users.noreply.github.com>Félix Malfait
c5606212f2 Ses outbound followup (#20610)
This pull request unifies outbound with inbound under the new feature
and the new email groups feature.

These are workspace level shared inboxes that are shared between all
workspace members.

outbound sending with SES works, we only listen for tenant status
events, rest is managed by AWS

PR refactors old code and webhook to be split for outbound and inbound
for proper separation


| Area | Change |
|---|---|
| AWS SES driver | Split into `AwsSesRegisterDomainService` (tenant +
identity + DKIM + MAIL FROM + configuration-set + EventBridge dest +
contact list) and `AwsSesSendEmailService` (SendEmail). |
| Reputation webhook | New `/webhooks/messaging/ses/outbound` route. SES
→ EventBridge (`Sending Status Enabled/Disabled` on default bus) → SNS →
router → `SesOutboundSendingStateHandlerService` updates
`emailing_domain.tenantStatus`. |
| Inbound webhook | Refactored into `SesInboundWebhookRouterService` +
`SesInboundMailHandlerService`. Shared `SnsSignatureVerifierService` +
`SnsSubscriptionConfirmerService` across both routes. |
| Global uniqueness | New migration + instance command:
`emailing_domain.domain` is now globally unique (one tenant per domain
across workspaces). |
| Tenant status | New `emailing_domain.tenantStatus` column (`ACTIVE` /
`PAUSED`) + `EmailingDomainTenantStatusService`. |
| Send-email mutation | New `sendEmailViaDomain` GraphQL mutation +
DTOs. |
| Cleanup | `EmailingDomainWorkspaceCleanupJob` wired into
`WorkspaceService.deleteWorkspace` — tears down SES tenant association +
identity on workspace delete. |
| Settings UI | Rewritten around reusable `SettingsTableListSection`.
"Email Group" → "Email Handle" rename. New cells for
status/source/forwarding. Outbound domains surfaced on workspace
settings page. |

### Env vars (new)

All in `config-variables.ts`, group `AWS_SES_SETTINGS`, all optional:

- `AWS_SES_REGION` — `@IsAWSRegion`, consumed by `AwsSesClientProvider`
+ driver factory
- `AWS_SES_ACCOUNT_ID` — used for ARN construction in driver factory
- `SES_SNS_TOPIC_ARN_ALLOWLIST` — **shared** by inbound + outbound
webhook routers, comma-separated list of accepted SNS topic ARNs
(verified via `sns-payload-validator`)

### Migrations

- `1778862608620-add-emailing-domain-tenant-status` (fast) — adds
`tenantStatus` column.
- `1778865501791-unique-emailing-domain-globally` (slow, idempotent) —
enforces global uniqueness on `domain`.
- Instance commands bumped to `2.5`.

### Infra dependency

Two coupled twenty-infra PRs:

- `ses-inbound-email` — receipt-rule + inbound SNS topic + S3 bucket
policy + KMS grant + `email_group_*` outputs.
- `ses-outbound-tf` — EventBridge rule + outbound SNS topic + SES IAM
policy + outbound `webhook_url` subscription. **Based on
`ses-inbound-email`.**

Merge order: inbound first, then outbound. Outbound PR's chart edit owns
the comma-joined `SES_SNS_TOPIC_ARN_ALLOWLIST` value (both ARNs).


Features lives under `/settings/general`

<img width="1496" height="845" alt="SCR-20260519-ofhi-2"
src="https://github.com/user-attachments/assets/a025485a-09f7-4131-91cd-0067690ff18d"
/>

---------

Co-authored-by: Félix Malfait <felix.malfait@gmail.com>
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-27 19:38:44 +02:00
0702e72e3f i18n - translations (#20979)
Created by Github action

Co-authored-by: github-actions <github-actions@twenty.com>
2026-05-27 19:18:37 +02:00
martmullandGitHub 0503aa7982 Display application info in workflow side panel (#20976)
To comply this design
https://www.figma.com/design/xt8O9mFeLl46C5InWwoMrN/Twenty?node-id=99421-167676&t=GXw0bOgp2P51YVKi-0


## Before

<img width="569" height="470" alt="image"
src="https://github.com/user-attachments/assets/c52c8775-2934-4620-8885-dff5a8230a89"
/>


## After

<img width="314" height="258" alt="image"
src="https://github.com/user-attachments/assets/df9cbd15-cf7b-4a47-ac8d-1292c71a7c94"
/>
2026-05-27 16:57:48 +00:00
f98c5d0609 i18n - translations (#20978)
Created by Github action

---------

Co-authored-by: github-actions <github-actions@twenty.com>
2026-05-27 19:01:41 +02:00
Félix MalfaitandGitHub 4797d2f270 feat(twenty-orm): introduce WorkspaceScopedRepository for core/metadata workspace-scoped entities (#20953)
## Summary

Adds a third tenancy enforcement layer for entities that live in shared
schemas (`core`, `metadata`) and carry a `workspaceId` column —
previously the only safeguard at this layer was developer discipline
(remembering to put `workspaceId` in every WHERE clause).

### The three layers, after this PR

| Layer | Scope | How it's enforced |
|---|---|---|
| 1. Workspace data | per-workspace schema (companies, people, custom
objects) | `twentyORMManager.getRepository(workspace, E)` — physical
isolation (own data source) |
| 2. Metadata | shared `metadata` schema (objectMetadata, fieldMetadata,
views, roles…) | Flat-entity-maps cache — workspace-scoped in-memory
map, lookups by id within it |
| 3. Core (new) | shared `core` schema (agent threads/turns/messages,
app tokens, etc.) | `WorkspaceScopedRepository<T>` — `workspaceId` is a
required positional argument on every read/write |

## What's in the PR

### The wrapper
(`packages/twenty-server/src/engine/twenty-orm/workspace-scoped-repository/`)
- `WorkspaceScopedRepository<T extends WorkspaceScopedEntity>` — wraps a
TypeORM `Repository<T>`, requires `workspaceId` on every
`find`/`findOne`/`findOneOrFail`/`update`/`delete`/`softDelete`/`insert`/`save`/`count`
call, merging it into the WHERE or stamping it on the entity.
`createQueryBuilder` is an explicit escape hatch (caller scopes
manually).
- Provided via Nest DI with
`@InjectWorkspaceScopedRepository(EntityClass)` and the
`provideWorkspaceScopedRepository(EntityClass)` provider factory.
- 19 unit tests cover the merge behavior, override-on-conflict, and the
array-where (OR) case.

### Lint enforcement
(`packages/twenty-oxlint-rules/rules/prefer-workspace-scoped-repository.ts`)
- New `twenty/prefer-workspace-scoped-repository` rule (level:
**error**).
- Blacklist of entity names: raw `@InjectRepository(E)` is rejected if
`E` is on the list.
- Initial list: `AgentTurnEntity`, `AgentMessageEntity`,
`AgentMessagePartEntity`, `AgentChatThreadEntity`,
`AgentTurnEvaluationEntity`, `AgentEntity`.
- Designed to grow over time as more consumers are migrated.
- 5 rule tests.

### Migration in this PR
All consumers of the six blacklisted entities, including:
- AI agent / chat / monitor resolvers, services, and jobs
- `AgentService`, `AiAgentRoleService`, `AiAgentWorkflowAction`,
`ApplicationService`, `WorkspaceFlatAgentMapCacheService`
- Admin-panel chat (migrated where the lookup is workspace-known; one
documented `eslint-disable` on the threadId-discovery lookup that
necessarily precedes the `allowImpersonation` permission check)
- `AiAgentRoleService` unit spec updated to mock the scoped wrapper

## Future work (deliberately not in this PR)

A standalone audit identified ~14 additional `core`/`metadata` entities
with `workspaceId` that currently use raw `@InjectRepository` and could
be added to the blacklist. Notable candidates: `UserWorkspaceEntity` (42
sites), `AppTokenEntity` (10), `FileEntity` (7),
`BillingCustomerEntity`/`BillingSubscriptionEntity` (~22 combined). Each
should be its own PR — the migration is mechanical but the surface is
wide.

## Test plan
- [x] `npx nx typecheck twenty-server` — clean
- [x] `npx nx lint twenty-server` — 0 warnings, 0 errors
- [x] `npx jest workspace-scoped-repository` — 19/19 pass
- [x] `npx nx test twenty-oxlint-rules` — 215/215 pass
- [x] `npx jest src/engine/metadata-modules/ai` — 44/44 pass
- [ ] Manual smoke: end-to-end AI agent chat send/receive (reviewer)
- [ ] Manual smoke: AI agent monitor — list turns, run evaluation
(reviewer)
- [ ] Manual smoke: admin-panel chat thread inspection (reviewer)
2026-05-27 18:52:53 +02:00
Raphaël BosiandGitHub c8b9dace72 Fix focus in front components inputs (#20961)
Fixes https://github.com/twentyhq/twenty/issues/20714

Fixes keyboard hotkey conflicts when typing inside `<input>` /
`<textarea>` elements rendered by Front Components. Editable fields
rendered through the component renderer now properly push/pop a focus
item onto Twenty's focus stack, disabling global keyboard hotkeys while
the user is typing.

## Before


https://github.com/user-attachments/assets/2003c2cb-2698-480f-aedf-bb2f30396572


## After


https://github.com/user-attachments/assets/2c7c6cb0-ecd7-4557-a77b-4d1f264345f0
2026-05-27 16:30:49 +00:00
martmullandGitHub fbae66de8a Fix error when token invalid (#20972)
## Before

<img width="914" height="519" alt="image"
src="https://github.com/user-attachments/assets/8933bf9e-d8db-4670-ad08-69e900083fc1"
/>

## After

<img width="1105" height="523" alt="image"
src="https://github.com/user-attachments/assets/d8638dbb-adee-4b7d-9d29-1a2a0185ab4f"
/>
2026-05-27 16:30:14 +00:00
46e7f23df1 fix(contact-creation): handle common email display-name shapes when auto-creating People (#20639)
## Summary

When messages are imported, Twenty auto-creates a Person record for any
recipient that doesn't exist yet. The display-name parser used at that
point is `displayName.split(' ')[0] / [1]`, which silently mangles
several common header shapes:

| Header | Old result |

|-------------------------------------------------|-----------------------------------------|
| `"Doe, John" <...>` | `firstName="Doe,"`, `lastName="John"` |
| `"John.Doe Doe" <...>` | `firstName="John.Doe"`, `lastName="Doe"`|
| `"Mary Jane Watson" <...>` | `lastName="Jane"` ("Watson" dropped) |
| `"john.doe@x.com" <john.doe@x.com>` (forwarder) | full address in
`firstName` |
| `"Doe, John:GROUP" <...>` (group-tag servers) |
`firstName="John:GROUP"` |

This PR rewrites `getFirstNameAndLastNameFromHandleAndDisplayName` to
handle each pattern. Behaviour in order:

1. Trim + strip wrapping quotes
2. Swap `"Last, First"` comma form
3. Fall back to handle parsing when display name contains `@` (real
names don't)
4. Split single dotted tokens (`"john.doe"` → `"John"`, `"Doe"`)
5. Preserve multi-word last names (`tokens.slice(1).join(' ')`)
6. De-synthesize dot-glued first names (`"John.Doe Doe"` → `"John"`,
`"Doe"`)
7. Strip `:XXX` trailing tag suffix from each parsed field

## Test plan

- [x] 16 new unit test cases covering each shape
(`__tests__/get-first-name-and-last-name-from-handle-and-display-name.util.spec.ts`)
- [x] Lint + typecheck clean
- [ ] No regression in the messaging import flow

---------

Co-authored-by: neo773 <62795688+neo773@users.noreply.github.com>
Co-authored-by: neo773 <neo773@protonmail.com>
2026-05-27 15:49:46 +00:00
6f3541fd7c i18n - translations (#20975)
Created by Github action

Co-authored-by: github-actions <github-actions@twenty.com>
2026-05-27 17:47:07 +02:00
nitinandGitHub 863f3f29a2 Fix page layout widget tab moves (#20915)
Fixes widget moves between page layout tabs by making pageLayoutTabId
part of the flat-entity diff, so the save mutation no longer silently
drops the new tab assignment.

https://discord.com/channels/1130383047699738754/1508737039128985680
2026-05-27 15:29:12 +00:00
martmullandGitHub 9264480824 Display which remote is used when twenty-sdk runs command (#20969)
## After
<img width="669" height="186" alt="image"
src="https://github.com/user-attachments/assets/c6ce25c9-35a9-4b2f-a473-59803b8931cc"
/>
2026-05-27 15:23:17 +00:00
nitinandGitHub 5ff8c3b219 revert(navigation-drawer): unwanted desktop design changes from #20634 (#20955)
Follow-up to #20634. Removes three desktop design changes that bled in
unintentionally:

- `font-weight: regular` → restored to `medium` on nav item labels
- `MenuItemIconBoxContainer` wrap around bare icons → removed
- Section title `padding-right/top` tweak → restored to original values

Mobile-specific fixes from #20634 (slide-over drawer width, min-width
overflow fixes, breadcrumb cleanup, etc.) are preserved.
2026-05-27 15:06:45 +00:00
Thomas TrompetteandGitHub ff28547a36 tt-fix-logic-function-error-handling (#20928)
## Summary
- **Fix `callWithTimeout` timer leak**: the `setTimeout` was never
cleared when the callback resolved first, leaving orphaned timers (up to
15 minutes) in the Node.js event loop. Now uses `try/finally` with
`clearTimeout`.
- **Properly classify timeout errors**: introduced
`ExecutionTimedOutError` so the Lambda driver can throw
`LOGIC_FUNCTION_EXECUTION_TIMEOUT` instead of
`LOGIC_FUNCTION_EXECUTION_FAILED` — users now see "Function execution
timed out" instead of the generic "Function execution failed."

## Test plan
- [x] Execute a logic function normally and verify it still works
- [x] Trigger a logic function timeout and verify the error message says
"Function execution timed out" (not "Function execution failed")
- [x] Verify that a deleted logic function invocation logs a specific
"was deleted" warning
- [x] Verify no orphaned timers remain after logic function execution
completes
2026-05-27 14:32:12 +00:00
Félix MalfaitandGitHub dde6df7a26 refactor(website): replace axios with native fetch (#20967)
## Summary

Follow-up to #20966 (Stripe fetch client). axios's default Node http
adapter on workerd has the same TLS hang the Stripe SDK had — it just
doesn't surface today because all three call sites are wrapped in
\`unstable_cache(revalidate: 3600)\` and the cache is populated at build
time, so misses are rare and the failure mode is a silent \`null\` to
the layout.

This swaps the three remaining axios calls in \`twenty-website\` for
native \`fetch\` and removes axios from
\`packages/twenty-website/package.json\`. The package is still used by
other workspaces, so yarn.lock keeps the other resolution.

Touched call sites:
- \`src/lib/releases/fetch-latest-release-tag.ts\` (GitHub releases —
runs at build time, cosmetic)
- \`src/lib/community/fetch-github-star-count.ts\` (GitHub star count in
menu)
- \`src/lib/community/fetch-discord-member-count.ts\` (Discord member
count in menu)

## Test plan

- [ ] After merge + deploy: confirm GitHub star + Discord member counts
render in the site menu (non-zero, formatted)
- [ ] Confirm \`/releases\` shows the latest tag-gated visible release
notes
- [ ] No \`axios\` in worker bundle (\`grep axios .open-next/worker.js\`
should be empty)
2026-05-27 16:31:39 +02:00
DeviSriSaiCharanandGitHub 92b0e07617 fix: separate initial timeline loading from fetchMore loading state (#20896)
Fixes: #20742 

# Issue:
In the timeline activity inside the side panel, when we scroll down it
fetches more data and it displays a skeleton and after fetching finishes
the scroll position always jumps back to the top. Because of this, we
have to scroll to the bottom again to load more data.



https://github.com/user-attachments/assets/40d99df7-bdfb-4351-bc4f-baec2a035f13

## Root Cause
`useTimelineActivities` exposed a single `loading` state from
`useFindManyRecords`, which became true for both:
- Initial timeline fetch
- Pagination / fetchMore requests

`loadingTimelineActivities` becomes true whenever a network request is
triggered, including pagination requests where timeline records are
already available.

Because of this, the UI could not distinguish between the first query
loading state and subsequent fetchMore loading states.

## Fix
Added a separate firstQueryLoading state to detect only the first
timeline request.

The first query is identified by checking:

- the request is still loading
- and no timeline activities have been loaded yet

Once activities are already available, any future loading state is
treated as pagination/loading more records instead of initial loading.

This allows the UI to correctly handle:

- Skeleton loaders for first load
- Infinite scroll loaders for pagination
- Empty states after loading finishes



https://github.com/user-attachments/assets/48e8e078-82e2-43d8-823f-2f71e4f4f6e1
2026-05-27 14:20:59 +00:00
951ead5a1e fix(front): ignore IME composition Enter in input hotkeys (#20958)
## What

Pressing Enter to confirm an IME (CJK) composition no longer submits the
input. The Enter / Escape / Tab handlers now ignore key events fired
while a composition is in progress (`isComposing`, or the legacy
`keyCode === 229`).

Fixes #20954

## Why

`isComposing` was not checked anywhere in `twenty-front`, so the Enter
that confirms a Japanese / Chinese / Korean conversion was also consumed
as a submit / escape / tab hotkey — making it very hard to type CJK text
into any input that submits on Enter.

## Changes

- `useHotkeysOnFocusedElement` — central guard; covers every input wired
through `useRegisterInputEvents` (~13 components) and all hotkeys routed
through this hook.
- Direct `onKeyDown` Enter handlers: `CreateWorkspace`,
`SettingsDevelopersApiKeysNew`, `SettingsAccountsBlocklistInput`.

## Notes

- No effect on non-IME (Latin) typing — `isComposing` is only true
during an active composition. It also improves accented / dead-key input
on Latin layouts.
- `react-hotkeys-hook@4` does not handle IME composition on its own, so
the guard is explicit.

## Testing

Manually verified with a Japanese IME on Chrome (macOS) against the
v2.8.3 self-hosted image: romaji + Enter now only confirms the
conversion; a second Enter on committed text submits as expected. The
GIF in #20954 shows the original buggy behavior.

Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-27 14:09:10 +00:00
Félix MalfaitandGitHub e79f43813b fix(website): use Stripe fetch client on Cloudflare Workers (#20966)
## Summary

Every `/api/enterprise/*` route on `twenty-website-prod` is currently
timing out at exactly 80s with `Request aborted due to timeout being
reached (80000ms)` — that's `Stripe.DEFAULT_TIMEOUT` aborting itself,
not Cloudflare.

The Stripe SDK's default transport uses Node's `http`/`https` module.
Under workerd, even with `nodejs_compat`, the outbound TLS connection to
`api.stripe.com` hangs and the SDK eventually times out at its built-in
80s ceiling. Worked on EKS (real Node), breaks on Cloudflare Workers.

Fix is one line: pass `httpClient: Stripe.createFetchHttpClient()` so
the SDK uses workerd's native `fetch` instead of the polyfilled Node
transport.

## Blast radius

`getStripeClient()` is shared across every enterprise route. All of
these are silently broken on prod right now:

- `POST /api/enterprise/checkout` (confirmed in logs)
- `POST /api/enterprise/portal`
- `POST /api/enterprise/seats`
- `GET  /api/enterprise/status`
- `POST /api/enterprise/activate`
- `POST /api/enterprise/validate`

Single change in `stripe-client.ts` unblocks all of them.

## Test plan

- [ ] After merge + deploy to prod: `wrangler tail twenty-website-prod`
while hitting the enterprise checkout flow; same call should complete in
<2s instead of 80s
- [ ] Verify a real Stripe checkout session is created (Stripe dashboard
→ Payments → Checkout sessions)
- [ ] Spot-check `/api/enterprise/status` and `/api/enterprise/portal`
are no longer timing out
2026-05-27 16:03:48 +02:00
73ab5de46c i18n - translations (#20963)
Created by Github action

---------

Co-authored-by: github-actions <github-actions@twenty.com>
2026-05-27 14:59:02 +02:00
MarieandGitHub 986b9dcb3d Deprecate dummy enterprise key 1/2 (#20890)
Remove usage of hasValidEnterpriseKey in FE (replaced by
hasValidSignedEnterpriseKey)

To avoid breaking change at deploy time, we will wait until after this
has been deployed in prod, to remove hasValidEnterpriseKey in the BE.
2026-05-27 12:34:48 +00:00
ae7db23bdd i18n - translations (#20959)
Created by Github action

---------

Co-authored-by: github-actions <github-actions@twenty.com>
2026-05-27 14:33:57 +02:00
WeikoandGitHub 2f358a1775 Add a Table display mode to relation field widgets (#20929)
## Context

Adds a new Table layout to the FIELD widget for to-many relation fields.
On a record page, a relation can now be displayed as a full record table
(the same component used for record indexes and dashboard table widgets)
scoped to the records related to the current record.



https://github.com/user-attachments/assets/320b24dc-f019-4d0e-bc71-3e64d032d75a



https://github.com/user-attachments/assets/2f6d4f8e-de26-4fc1-ae12-c9b9c19654dc



https://github.com/user-attachments/assets/3fb6d512-f83c-4818-823e-46ad2644fbc2
2026-05-27 12:13:58 +00:00
EtienneandGitHub fc3004b2f6 fix(website) - fix getPartners (#20947)
**Context**
Fix empty marketplace at /partners/list: page was being statically
prerendered with getPartners() returning [] (build-time fetch failure),
then served from OpenNext's R2 cache forever — so the partners API was
never actually called in production.

**Change**
Wrap getPartners in unstable_cache with revalidate: 300, matching the
existing fetchGithubStarCount / fetchDiscordMemberCount ISR pattern.
After deploy, the cached empty result expires within 5 minutes and the
worker refetches from the partners API at runtime (where the env vars
actually exist), populating the page. Also drops the now-redundant
cache: 'no-store' from partnersApiFetch.
2026-05-27 10:53:17 +00:00
086b79e5b9 i18n - translations (#20952)
Created by Github action

---------

Co-authored-by: github-actions <github-actions@twenty.com>
2026-05-27 11:02:42 +02:00
Félix MalfaitandGitHub 8cb88cabee fix(role): rebind API keys + agents before deleting their role (#20935)
## Customer-reported bug

A customer hit this when using the AI chat:

```json
{
  "message": "API key 760d4822-da40-4b3f-9031-40563d7ed6c9 has no role assigned",
  "extensions": {
    "code": "INTERNAL_SERVER_ERROR",
    "userFriendlyMessage": "This API key has no role assigned."
  }
}
```

Their integration authenticates via API key. Somewhere along the way,
the role bound to that API key was deleted, leaving the API key
authenticated but role-less. Any request that hits a permission check
(`getRoleIdForApiKeyId`) blows up.

## Root cause

In `RoleService.deleteManyRoles`, the pre-deletion cleanup
(`assignDefaultRoleToMembersWithRoleToDelete`) only rebinds **user
workspaces** to the workspace default role. API keys and agents pointing
at the role are ignored. Because `RoleTargetEntity.role` declares
`onDelete: 'CASCADE'`, the FK then drops the role_target rows for those
API keys / agents — but the API keys themselves stay in `api_key`, now
orphaned in `apiKeyRoleMap`.

A previous read-side workaround
([2767ddac44](https://github.com/twentyhq/twenty/commit/2767ddac44) —
make the `role` ResolveField nullable) handled the API-key-details page,
but did not address the write paths (`getRoleIdForApiKeyId`).

## Fix

- Rename `assignDefaultRoleToMembersWithRoleToDelete` →
`rebindTargetsOfRoleToDeleteToDefaultRole` and extend it to rebind API
keys (via `ApiKeyRoleService.assignRoleToApiKey`) and agents (via
`AiAgentRoleService.assignRoleToAgent`) in the same step, before the
role is deleted.
- If the workspace default role doesn't satisfy `canBeAssignedToApiKeys`
/ `canBeAssignedToAgents`, the inner `assignRoleTo*` validation throws.
We catch that and rethrow as a `PermissionsException` with a
role-deletion-context message and two new codes —
`ROLE_CANNOT_BE_ASSIGNED_TO_API_KEYS` /
`ROLE_CANNOT_BE_ASSIGNED_TO_AGENTS` — so the admin sees a clear
"reassign these first" prompt rather than a confusing inner error.

## Scope / non-goals

- **Already-orphaned API keys are not auto-healed.** The customer still
needs to reassign a role to their existing orphan API key via the UI
(Settings > API Keys > [the key] > role). A separate cleanup command for
existing orphans is a follow-up.
- I did not investigate *why* the customer's session was authenticated
via API key in the AI chat — that may be their integration setup. Worth
confirming with them separately.

## Test plan

- [ ] Workspace with default role `Admin` (which has
`canBeAssignedToApiKeys: true`): create an API key with a custom role,
delete the custom role → API key is rebound to Admin, requests keep
working.
- [ ] Workspace with default role `Member` (default, has
`canBeAssignedToApiKeys: false`): create an API key with a custom role,
delete the custom role → role deletion fails with the new
`ROLE_CANNOT_BE_ASSIGNED_TO_API_KEYS` error explaining the admin must
reassign first. API key + custom role are both unchanged.
- [ ] Same two scenarios for agents (`canBeAssignedToAgents`).
- [ ] Existing user-workspace rebind behavior is unchanged.
- [ ] Role deletion with no dependent API keys / agents still works.
2026-05-27 10:54:02 +02:00
Félix MalfaitGitHubclaude[bot] <41898282+claude[bot]@users.noreply.github.com>
ac89d2ff56 feat: raise FILES field max number of values from 10 to 60 (#20950)
## Summary

Raises the artificial hardcoded ceiling on `maxNumberOfValues` for
custom FILES fields from `10` to `60` so users can attach more files per
record.

- Bumped `FILES_FIELD_MAX_NUMBER_OF_VALUES` constant in `twenty-shared`
from `10` to `60`
- Updated validator unit test (inline snapshots + "exceeds max" case)
- Updated create/update files-field metadata integration tests and Jest
snapshots

The frontend Zod schema only enforces a `min`, so no frontend changes
are required — the backend constant is the single source of truth for
the upper bound.

Refs #20942

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-authored-by: claude[bot] <41898282+claude[bot]@users.noreply.github.com>
2026-05-27 10:53:09 +02:00
423faa6153 i18n - translations (#20951)
Created by Github action

Co-authored-by: github-actions <github-actions@twenty.com>
2026-05-27 10:40:15 +02:00
martmullandGitHub a051490ec9 Basic app logo fixes (#20919)
as title, took the quick win fixes from
https://github.com/twentyhq/twenty/pull/20909/changes#diff-3367344412b2f44f0273d8019c1bc36396198244b9558d02921b135f62522baaR180
and leave the main fix for later as it requires an architectural update
2026-05-27 08:21:35 +00:00
877 changed files with 21732 additions and 9962 deletions
@@ -80,10 +80,20 @@ jobs:
with:
name: storybook-twenty-front-component-renderer
path: packages/twenty-front-component-renderer/storybook-static
- name: Resolve Playwright version
id: playwright-version
run: echo "version=$(node -p "require('@playwright/test/package.json').version")" >> "$GITHUB_OUTPUT"
- name: Cache Playwright browsers
id: playwright-cache
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
with:
path: ~/.cache/ms-playwright
key: v4-playwright-browsers-${{ runner.os }}-${{ steps.playwright-version.outputs.version }}
- name: Install Playwright
if: steps.playwright-cache.outputs.cache-hit != 'true'
run: |
cd packages/twenty-front-component-renderer
npx playwright install
npx playwright install chromium
- name: Serve storybook & run tests
run: |
npx http-server packages/twenty-front-component-renderer/storybook-static --port 6008 --silent &
+11 -1
View File
@@ -96,10 +96,20 @@ jobs:
with:
name: storybook-static
path: packages/twenty-front/storybook-static
- name: Resolve Playwright version
id: playwright-version
run: echo "version=$(node -p "require('@playwright/test/package.json').version")" >> "$GITHUB_OUTPUT"
- name: Cache Playwright browsers
id: playwright-cache
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
with:
path: ~/.cache/ms-playwright
key: v4-playwright-browsers-${{ runner.os }}-${{ steps.playwright-version.outputs.version }}
- name: Install Playwright
if: steps.playwright-cache.outputs.cache-hit != 'true'
run: |
cd packages/twenty-front
npx playwright install
npx playwright install chromium
- name: Front / Write .env
run: npx nx reset:env twenty-front
- name: Serve storybook & run tests
Binary file not shown.

After

Width:  |  Height:  |  Size: 173 KiB

+1 -1
View File
@@ -28,7 +28,7 @@
"resolutions": {
"graphql": "16.8.1",
"type-fest": "4.10.1",
"typescript": "5.9.2",
"typescript": "5.9.3",
"nodemailer": "8.0.4",
"graphql-redis-subscriptions/ioredis": "^5.6.0",
"@lingui/core": "5.1.2",
+1 -1
View File
@@ -50,7 +50,7 @@
"jest": "29.7.0",
"jest-environment-node": "^29.4.1",
"twenty-shared": "workspace:*",
"typescript": "^5.9.2",
"typescript": "^5.9.3",
"vite": "^7.0.0",
"vite-plugin-dts": "^4.5.4",
"vite-tsconfig-paths": "^4.2.1"
+1 -1
View File
@@ -49,7 +49,7 @@
"@typescript/native-preview": "^7.0.0-dev.20260116.1",
"tsc-alias": "^1.8.16",
"twenty-shared": "workspace:*",
"typescript": "^5.9.2",
"typescript": "^5.9.3",
"vite": "^7.0.0",
"vite-plugin-dts": "^4.5.4",
"vite-tsconfig-paths": "^4.2.1",
@@ -1100,7 +1100,7 @@ type PageLayoutWidgetCanvasPosition {
layoutMode: PageLayoutTabLayoutMode!
}
union WidgetConfiguration = AggregateChartConfiguration | StandaloneRichTextConfiguration | PieChartConfiguration | LineChartConfiguration | IframeConfiguration | GaugeChartConfiguration | BarChartConfiguration | CalendarConfiguration | FrontComponentConfiguration | EmailsConfiguration | EmailThreadConfiguration | FieldConfiguration | FieldRichTextConfiguration | FieldsConfiguration | FilesConfiguration | NotesConfiguration | TasksConfiguration | TimelineConfiguration | ViewConfiguration | RecordTableConfiguration | WorkflowConfiguration | WorkflowRunConfiguration | WorkflowVersionConfiguration
union WidgetConfiguration = AggregateChartConfiguration | StandaloneRichTextConfiguration | PieChartConfiguration | LineChartConfiguration | IframeConfiguration | BarChartConfiguration | CalendarConfiguration | FrontComponentConfiguration | EmailsConfiguration | EmailThreadConfiguration | FieldConfiguration | FieldRichTextConfiguration | FieldsConfiguration | FilesConfiguration | NotesConfiguration | TasksConfiguration | TimelineConfiguration | ViewConfiguration | RecordTableConfiguration | WorkflowConfiguration | WorkflowRunConfiguration | WorkflowVersionConfiguration
type AggregateChartConfiguration {
configurationType: WidgetConfigurationType!
@@ -1120,7 +1120,6 @@ type AggregateChartConfiguration {
enum WidgetConfigurationType {
AGGREGATE_CHART
GAUGE_CHART
PIE_CHART
BAR_CHART
LINE_CHART
@@ -1239,18 +1238,6 @@ type IframeConfiguration {
url: String
}
type GaugeChartConfiguration {
configurationType: WidgetConfigurationType!
aggregateFieldMetadataId: UUID!
aggregateOperation: AggregateOperations!
displayDataLabel: Boolean
color: String
description: String
filter: JSON
timezone: String
firstDayOfTheWeek: Int
}
type BarChartConfiguration {
configurationType: WidgetConfigurationType!
aggregateFieldMetadataId: UUID!
@@ -1315,6 +1302,7 @@ type FieldConfiguration {
configurationType: WidgetConfigurationType!
fieldMetadataId: String!
fieldDisplayMode: FieldDisplayMode!
viewId: String
}
"""Display mode for field configuration widgets"""
@@ -1323,6 +1311,7 @@ enum FieldDisplayMode {
EDITOR
FIELD
VIEW
TABLE
}
type FieldRichTextConfiguration {
@@ -1444,6 +1433,39 @@ type Analytics {
success: Boolean!
}
type VerificationRecord {
type: String!
key: String!
value: String!
priority: Float
}
type EmailingDomain {
id: UUID!
createdAt: DateTime!
updatedAt: DateTime!
domain: String!
driver: EmailingDomainDriver!
status: EmailingDomainStatus!
verificationRecords: [VerificationRecord!]
verifiedAt: DateTime
}
enum EmailingDomainDriver {
AWS_SES
}
enum EmailingDomainStatus {
PENDING
VERIFIED
FAILED
TEMPORARY_FAILURE
}
type SendEmailViaDomainOutput {
messageId: String!
}
type ApprovedAccessDomain {
id: UUID!
domain: String!
@@ -1754,7 +1776,6 @@ enum FeatureFlagKey {
IS_JSON_FILTER_ENABLED
IS_MARKETPLACE_SETTING_TAB_VISIBLE
IS_PUBLIC_DOMAIN_ENABLED
IS_EMAILING_DOMAIN_ENABLED
IS_EMAIL_GROUP_ENABLED
IS_JUNCTION_RELATIONS_ENABLED
IS_REST_METADATA_API_NEW_FORMAT_DIRECT
@@ -2371,35 +2392,6 @@ type PublicDomain {
createdAt: DateTime!
}
type VerificationRecord {
type: String!
key: String!
value: String!
priority: Float
}
type EmailingDomain {
id: UUID!
createdAt: DateTime!
updatedAt: DateTime!
domain: String!
driver: EmailingDomainDriver!
status: EmailingDomainStatus!
verificationRecords: [VerificationRecord!]
verifiedAt: DateTime
}
enum EmailingDomainDriver {
AWS_SES
}
enum EmailingDomainStatus {
PENDING
VERIFIED
FAILED
TEMPORARY_FAILURE
}
type AutocompleteResult {
text: String!
placeId: String!
@@ -2944,6 +2936,7 @@ type Query {
getPageLayoutTab(id: String!): PageLayoutTab!
getPageLayouts(objectMetadataId: String, pageLayoutType: PageLayoutType): [PageLayout!]!
getPageLayout(id: String!): PageLayout
getEmailingDomains: [EmailingDomain!]!
applicationConnectionProviders(applicationId: UUID!): [ApplicationConnectionProvider!]!
getPageLayoutWidgets(pageLayoutTabId: String!): [PageLayoutWidget!]!
getPageLayoutWidget(id: String!): PageLayoutWidget!
@@ -3038,7 +3031,6 @@ type Query {
getAddressDetails(placeId: String!, token: String!): PlaceDetailsResult!
getUsageAnalytics(input: UsageAnalyticsInput): UsageAnalytics!
findManyPublicDomains: [PublicDomain!]!
getEmailingDomains: [EmailingDomain!]!
findManyMarketplaceApps: [MarketplaceApp!]!
findMarketplaceAppDetail(universalIdentifier: String!): MarketplaceAppDetail!
}
@@ -3193,6 +3185,10 @@ type Mutation {
resetPageLayoutToDefault(id: String!): PageLayout!
resetPageLayoutWidgetToDefault(id: String!): PageLayoutWidget!
resetPageLayoutTabToDefault(id: String!): PageLayoutTab!
createEmailingDomain(domain: String!, driver: EmailingDomainDriver!): EmailingDomain!
deleteEmailingDomain(id: String!): Boolean!
verifyEmailingDomain(id: String!): EmailingDomain!
sendEmailViaEmailingDomain(input: SendEmailViaDomainInput!): SendEmailViaDomainOutput!
updateOneApplicationVariable(key: String!, value: String!, applicationId: UUID!): Boolean!
createPageLayoutWidget(input: CreatePageLayoutWidgetInput!): PageLayoutWidget!
updatePageLayoutWidget(id: String!, input: UpdatePageLayoutWidgetInput!): PageLayoutWidget!
@@ -3313,9 +3309,6 @@ type Mutation {
updatePublicDomain(domain: String!, applicationId: String): PublicDomain!
deletePublicDomain(domain: String!): Boolean!
checkPublicDomainValidRecords(domain: String!): DomainValidRecords
createEmailingDomain(domain: String!, driver: EmailingDomainDriver!): EmailingDomain!
deleteEmailingDomain(id: String!): Boolean!
verifyEmailingDomain(id: String!): EmailingDomain!
createOneAppToken(input: CreateOneAppTokenInput!): AppToken!
installMarketplaceApp(universalIdentifier: String!, version: String): Boolean! @deprecated(reason: "Use installApplication instead")
installApplication(universalIdentifier: String!, version: String): Application!
@@ -3759,6 +3752,18 @@ input GridPositionInput {
columnSpan: Float!
}
input SendEmailViaDomainInput {
emailingDomainId: String!
to: [String!]!
cc: [String!]
bcc: [String!]
subject: String!
text: String!
html: String
from: String!
replyTo: [String!]
}
input CreatePageLayoutWidgetInput {
pageLayoutTabId: UUID!
title: String!
@@ -790,7 +790,7 @@ export interface PageLayoutWidgetCanvasPosition {
__typename: 'PageLayoutWidgetCanvasPosition'
}
export type WidgetConfiguration = (AggregateChartConfiguration | StandaloneRichTextConfiguration | PieChartConfiguration | LineChartConfiguration | IframeConfiguration | GaugeChartConfiguration | BarChartConfiguration | CalendarConfiguration | FrontComponentConfiguration | EmailsConfiguration | EmailThreadConfiguration | FieldConfiguration | FieldRichTextConfiguration | FieldsConfiguration | FilesConfiguration | NotesConfiguration | TasksConfiguration | TimelineConfiguration | ViewConfiguration | RecordTableConfiguration | WorkflowConfiguration | WorkflowRunConfiguration | WorkflowVersionConfiguration) & { __isUnion?: true }
export type WidgetConfiguration = (AggregateChartConfiguration | StandaloneRichTextConfiguration | PieChartConfiguration | LineChartConfiguration | IframeConfiguration | BarChartConfiguration | CalendarConfiguration | FrontComponentConfiguration | EmailsConfiguration | EmailThreadConfiguration | FieldConfiguration | FieldRichTextConfiguration | FieldsConfiguration | FilesConfiguration | NotesConfiguration | TasksConfiguration | TimelineConfiguration | ViewConfiguration | RecordTableConfiguration | WorkflowConfiguration | WorkflowRunConfiguration | WorkflowVersionConfiguration) & { __isUnion?: true }
export interface AggregateChartConfiguration {
configurationType: WidgetConfigurationType
@@ -809,7 +809,7 @@ export interface AggregateChartConfiguration {
__typename: 'AggregateChartConfiguration'
}
export type WidgetConfigurationType = 'AGGREGATE_CHART' | 'GAUGE_CHART' | 'PIE_CHART' | 'BAR_CHART' | 'LINE_CHART' | 'IFRAME' | 'STANDALONE_RICH_TEXT' | 'VIEW' | 'FIELD' | 'FIELDS' | 'TIMELINE' | 'TASKS' | 'NOTES' | 'FILES' | 'EMAILS' | 'CALENDAR' | 'FIELD_RICH_TEXT' | 'WORKFLOW' | 'WORKFLOW_VERSION' | 'WORKFLOW_RUN' | 'FRONT_COMPONENT' | 'RECORD_TABLE' | 'EMAIL_THREAD'
export type WidgetConfigurationType = 'AGGREGATE_CHART' | 'PIE_CHART' | 'BAR_CHART' | 'LINE_CHART' | 'IFRAME' | 'STANDALONE_RICH_TEXT' | 'VIEW' | 'FIELD' | 'FIELDS' | 'TIMELINE' | 'TASKS' | 'NOTES' | 'FILES' | 'EMAILS' | 'CALENDAR' | 'FIELD_RICH_TEXT' | 'WORKFLOW' | 'WORKFLOW_VERSION' | 'WORKFLOW_RUN' | 'FRONT_COMPONENT' | 'RECORD_TABLE' | 'EMAIL_THREAD'
export interface StandaloneRichTextConfiguration {
configurationType: WidgetConfigurationType
@@ -888,19 +888,6 @@ export interface IframeConfiguration {
__typename: 'IframeConfiguration'
}
export interface GaugeChartConfiguration {
configurationType: WidgetConfigurationType
aggregateFieldMetadataId: Scalars['UUID']
aggregateOperation: AggregateOperations
displayDataLabel?: Scalars['Boolean']
color?: Scalars['String']
description?: Scalars['String']
filter?: Scalars['JSON']
timezone?: Scalars['String']
firstDayOfTheWeek?: Scalars['Int']
__typename: 'GaugeChartConfiguration'
}
export interface BarChartConfiguration {
configurationType: WidgetConfigurationType
aggregateFieldMetadataId: Scalars['UUID']
@@ -966,12 +953,13 @@ export interface FieldConfiguration {
configurationType: WidgetConfigurationType
fieldMetadataId: Scalars['String']
fieldDisplayMode: FieldDisplayMode
viewId?: Scalars['String']
__typename: 'FieldConfiguration'
}
/** Display mode for field configuration widgets */
export type FieldDisplayMode = 'CARD' | 'EDITOR' | 'FIELD' | 'VIEW'
export type FieldDisplayMode = 'CARD' | 'EDITOR' | 'FIELD' | 'VIEW' | 'TABLE'
export interface FieldRichTextConfiguration {
configurationType: WidgetConfigurationType
@@ -1106,6 +1094,35 @@ export interface Analytics {
__typename: 'Analytics'
}
export interface VerificationRecord {
type: Scalars['String']
key: Scalars['String']
value: Scalars['String']
priority?: Scalars['Float']
__typename: 'VerificationRecord'
}
export interface EmailingDomain {
id: Scalars['UUID']
createdAt: Scalars['DateTime']
updatedAt: Scalars['DateTime']
domain: Scalars['String']
driver: EmailingDomainDriver
status: EmailingDomainStatus
verificationRecords?: VerificationRecord[]
verifiedAt?: Scalars['DateTime']
__typename: 'EmailingDomain'
}
export type EmailingDomainDriver = 'AWS_SES'
export type EmailingDomainStatus = 'PENDING' | 'VERIFIED' | 'FAILED' | 'TEMPORARY_FAILURE'
export interface SendEmailViaDomainOutput {
messageId: Scalars['String']
__typename: 'SendEmailViaDomainOutput'
}
export interface ApprovedAccessDomain {
id: Scalars['UUID']
domain: Scalars['String']
@@ -1394,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_EMAILING_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'
export interface WorkspaceUrls {
customUrl?: Scalars['String']
@@ -2050,30 +2067,6 @@ export interface PublicDomain {
__typename: 'PublicDomain'
}
export interface VerificationRecord {
type: Scalars['String']
key: Scalars['String']
value: Scalars['String']
priority?: Scalars['Float']
__typename: 'VerificationRecord'
}
export interface EmailingDomain {
id: Scalars['UUID']
createdAt: Scalars['DateTime']
updatedAt: Scalars['DateTime']
domain: Scalars['String']
driver: EmailingDomainDriver
status: EmailingDomainStatus
verificationRecords?: VerificationRecord[]
verifiedAt?: Scalars['DateTime']
__typename: 'EmailingDomain'
}
export type EmailingDomainDriver = 'AWS_SES'
export type EmailingDomainStatus = 'PENDING' | 'VERIFIED' | 'FAILED' | 'TEMPORARY_FAILURE'
export interface AutocompleteResult {
text: Scalars['String']
placeId: Scalars['String']
@@ -2571,6 +2564,7 @@ export interface Query {
getPageLayoutTab: PageLayoutTab
getPageLayouts: PageLayout[]
getPageLayout?: PageLayout
getEmailingDomains: EmailingDomain[]
applicationConnectionProviders: ApplicationConnectionProvider[]
getPageLayoutWidgets: PageLayoutWidget[]
getPageLayoutWidget: PageLayoutWidget
@@ -2638,7 +2632,6 @@ export interface Query {
getAddressDetails: PlaceDetailsResult
getUsageAnalytics: UsageAnalytics
findManyPublicDomains: PublicDomain[]
getEmailingDomains: EmailingDomain[]
findManyMarketplaceApps: MarketplaceApp[]
findMarketplaceAppDetail: MarketplaceAppDetail
__typename: 'Query'
@@ -2726,6 +2719,10 @@ export interface Mutation {
resetPageLayoutToDefault: PageLayout
resetPageLayoutWidgetToDefault: PageLayoutWidget
resetPageLayoutTabToDefault: PageLayoutTab
createEmailingDomain: EmailingDomain
deleteEmailingDomain: Scalars['Boolean']
verifyEmailingDomain: EmailingDomain
sendEmailViaEmailingDomain: SendEmailViaDomainOutput
updateOneApplicationVariable: Scalars['Boolean']
createPageLayoutWidget: PageLayoutWidget
updatePageLayoutWidget: PageLayoutWidget
@@ -2846,9 +2843,6 @@ export interface Mutation {
updatePublicDomain: PublicDomain
deletePublicDomain: Scalars['Boolean']
checkPublicDomainValidRecords?: DomainValidRecords
createEmailingDomain: EmailingDomain
deleteEmailingDomain: Scalars['Boolean']
verifyEmailingDomain: EmailingDomain
createOneAppToken: AppToken
/** @deprecated Use installApplication instead */
installMarketplaceApp: Scalars['Boolean']
@@ -3703,7 +3697,6 @@ export interface WidgetConfigurationGenqlSelection{
on_PieChartConfiguration?:PieChartConfigurationGenqlSelection,
on_LineChartConfiguration?:LineChartConfigurationGenqlSelection,
on_IframeConfiguration?:IframeConfigurationGenqlSelection,
on_GaugeChartConfiguration?:GaugeChartConfigurationGenqlSelection,
on_BarChartConfiguration?:BarChartConfigurationGenqlSelection,
on_CalendarConfiguration?:CalendarConfigurationGenqlSelection,
on_FrontComponentConfiguration?:FrontComponentConfigurationGenqlSelection,
@@ -3811,20 +3804,6 @@ export interface IframeConfigurationGenqlSelection{
__scalar?: boolean | number
}
export interface GaugeChartConfigurationGenqlSelection{
configurationType?: boolean | number
aggregateFieldMetadataId?: boolean | number
aggregateOperation?: boolean | number
displayDataLabel?: boolean | number
color?: boolean | number
description?: boolean | number
filter?: boolean | number
timezone?: boolean | number
firstDayOfTheWeek?: boolean | number
__typename?: boolean | number
__scalar?: boolean | number
}
export interface BarChartConfigurationGenqlSelection{
configurationType?: boolean | number
aggregateFieldMetadataId?: boolean | number
@@ -3887,6 +3866,7 @@ export interface FieldConfigurationGenqlSelection{
configurationType?: boolean | number
fieldMetadataId?: boolean | number
fieldDisplayMode?: boolean | number
viewId?: boolean | number
__typename?: boolean | number
__scalar?: boolean | number
}
@@ -4040,6 +4020,34 @@ export interface AnalyticsGenqlSelection{
__scalar?: boolean | number
}
export interface VerificationRecordGenqlSelection{
type?: boolean | number
key?: boolean | number
value?: boolean | number
priority?: boolean | number
__typename?: boolean | number
__scalar?: boolean | number
}
export interface EmailingDomainGenqlSelection{
id?: boolean | number
createdAt?: boolean | number
updatedAt?: boolean | number
domain?: boolean | number
driver?: boolean | number
status?: boolean | number
verificationRecords?: VerificationRecordGenqlSelection
verifiedAt?: boolean | number
__typename?: boolean | number
__scalar?: boolean | number
}
export interface SendEmailViaDomainOutputGenqlSelection{
messageId?: boolean | number
__typename?: boolean | number
__scalar?: boolean | number
}
export interface ApprovedAccessDomainGenqlSelection{
id?: boolean | number
domain?: boolean | number
@@ -5051,28 +5059,6 @@ export interface PublicDomainGenqlSelection{
__scalar?: boolean | number
}
export interface VerificationRecordGenqlSelection{
type?: boolean | number
key?: boolean | number
value?: boolean | number
priority?: boolean | number
__typename?: boolean | number
__scalar?: boolean | number
}
export interface EmailingDomainGenqlSelection{
id?: boolean | number
createdAt?: boolean | number
updatedAt?: boolean | number
domain?: boolean | number
driver?: boolean | number
status?: boolean | number
verificationRecords?: VerificationRecordGenqlSelection
verifiedAt?: boolean | number
__typename?: boolean | number
__scalar?: boolean | number
}
export interface AutocompleteResultGenqlSelection{
text?: boolean | number
placeId?: boolean | number
@@ -5588,6 +5574,7 @@ export interface QueryGenqlSelection{
getPageLayoutTab?: (PageLayoutTabGenqlSelection & { __args: {id: Scalars['String']} })
getPageLayouts?: (PageLayoutGenqlSelection & { __args?: {objectMetadataId?: (Scalars['String'] | null), pageLayoutType?: (PageLayoutType | null)} })
getPageLayout?: (PageLayoutGenqlSelection & { __args: {id: Scalars['String']} })
getEmailingDomains?: EmailingDomainGenqlSelection
applicationConnectionProviders?: (ApplicationConnectionProviderGenqlSelection & { __args: {applicationId: Scalars['UUID']} })
getPageLayoutWidgets?: (PageLayoutWidgetGenqlSelection & { __args: {pageLayoutTabId: Scalars['String']} })
getPageLayoutWidget?: (PageLayoutWidgetGenqlSelection & { __args: {id: Scalars['String']} })
@@ -5673,7 +5660,6 @@ export interface QueryGenqlSelection{
getAddressDetails?: (PlaceDetailsResultGenqlSelection & { __args: {placeId: Scalars['String'], token: Scalars['String']} })
getUsageAnalytics?: (UsageAnalyticsGenqlSelection & { __args?: {input?: (UsageAnalyticsInput | null)} })
findManyPublicDomains?: PublicDomainGenqlSelection
getEmailingDomains?: EmailingDomainGenqlSelection
findManyMarketplaceApps?: MarketplaceAppGenqlSelection
findMarketplaceAppDetail?: (MarketplaceAppDetailGenqlSelection & { __args: {universalIdentifier: Scalars['String']} })
__typename?: boolean | number
@@ -5782,6 +5768,10 @@ export interface MutationGenqlSelection{
resetPageLayoutToDefault?: (PageLayoutGenqlSelection & { __args: {id: Scalars['String']} })
resetPageLayoutWidgetToDefault?: (PageLayoutWidgetGenqlSelection & { __args: {id: Scalars['String']} })
resetPageLayoutTabToDefault?: (PageLayoutTabGenqlSelection & { __args: {id: Scalars['String']} })
createEmailingDomain?: (EmailingDomainGenqlSelection & { __args: {domain: Scalars['String'], driver: EmailingDomainDriver} })
deleteEmailingDomain?: { __args: {id: Scalars['String']} }
verifyEmailingDomain?: (EmailingDomainGenqlSelection & { __args: {id: Scalars['String']} })
sendEmailViaEmailingDomain?: (SendEmailViaDomainOutputGenqlSelection & { __args: {input: SendEmailViaDomainInput} })
updateOneApplicationVariable?: { __args: {key: Scalars['String'], value: Scalars['String'], applicationId: Scalars['UUID']} }
createPageLayoutWidget?: (PageLayoutWidgetGenqlSelection & { __args: {input: CreatePageLayoutWidgetInput} })
updatePageLayoutWidget?: (PageLayoutWidgetGenqlSelection & { __args: {id: Scalars['String'], input: UpdatePageLayoutWidgetInput} })
@@ -5902,9 +5892,6 @@ export interface MutationGenqlSelection{
updatePublicDomain?: (PublicDomainGenqlSelection & { __args: {domain: Scalars['String'], applicationId?: (Scalars['String'] | null)} })
deletePublicDomain?: { __args: {domain: Scalars['String']} }
checkPublicDomainValidRecords?: (DomainValidRecordsGenqlSelection & { __args: {domain: Scalars['String']} })
createEmailingDomain?: (EmailingDomainGenqlSelection & { __args: {domain: Scalars['String'], driver: EmailingDomainDriver} })
deleteEmailingDomain?: { __args: {id: Scalars['String']} }
verifyEmailingDomain?: (EmailingDomainGenqlSelection & { __args: {id: Scalars['String']} })
createOneAppToken?: (AppTokenGenqlSelection & { __args: {input: CreateOneAppTokenInput} })
/** @deprecated Use installApplication instead */
installMarketplaceApp?: { __args: {universalIdentifier: Scalars['String'], version?: (Scalars['String'] | null)} }
@@ -6082,6 +6069,8 @@ export interface UpdatePageLayoutWidgetWithIdInput {id: Scalars['UUID'],pageLayo
export interface GridPositionInput {row: Scalars['Float'],column: Scalars['Float'],rowSpan: Scalars['Float'],columnSpan: Scalars['Float']}
export interface SendEmailViaDomainInput {emailingDomainId: Scalars['String'],to: Scalars['String'][],cc?: (Scalars['String'][] | null),bcc?: (Scalars['String'][] | null),subject: Scalars['String'],text: Scalars['String'],html?: (Scalars['String'] | null),from: Scalars['String'],replyTo?: (Scalars['String'][] | null)}
export interface CreatePageLayoutWidgetInput {pageLayoutTabId: Scalars['UUID'],title: Scalars['String'],type: WidgetType,objectMetadataId?: (Scalars['UUID'] | null),gridPosition: GridPositionInput,position?: (Scalars['JSON'] | null),configuration: Scalars['JSON']}
export interface UpdatePageLayoutWidgetInput {pageLayoutTabId?: (Scalars['UUID'] | null),title?: (Scalars['String'] | null),type?: (WidgetType | null),objectMetadataId?: (Scalars['UUID'] | null),gridPosition?: (GridPositionInput | null),position?: (Scalars['JSON'] | null),configuration?: (Scalars['JSON'] | null),conditionalDisplay?: (Scalars['JSON'] | null),conditionalAvailabilityExpression?: (Scalars['String'] | null)}
@@ -6707,7 +6696,7 @@ export interface LogicFunctionLogsInput {applicationId?: (Scalars['UUID'] | null
const WidgetConfiguration_possibleTypes: string[] = ['AggregateChartConfiguration','StandaloneRichTextConfiguration','PieChartConfiguration','LineChartConfiguration','IframeConfiguration','GaugeChartConfiguration','BarChartConfiguration','CalendarConfiguration','FrontComponentConfiguration','EmailsConfiguration','EmailThreadConfiguration','FieldConfiguration','FieldRichTextConfiguration','FieldsConfiguration','FilesConfiguration','NotesConfiguration','TasksConfiguration','TimelineConfiguration','ViewConfiguration','RecordTableConfiguration','WorkflowConfiguration','WorkflowRunConfiguration','WorkflowVersionConfiguration']
const WidgetConfiguration_possibleTypes: string[] = ['AggregateChartConfiguration','StandaloneRichTextConfiguration','PieChartConfiguration','LineChartConfiguration','IframeConfiguration','BarChartConfiguration','CalendarConfiguration','FrontComponentConfiguration','EmailsConfiguration','EmailThreadConfiguration','FieldConfiguration','FieldRichTextConfiguration','FieldsConfiguration','FilesConfiguration','NotesConfiguration','TasksConfiguration','TimelineConfiguration','ViewConfiguration','RecordTableConfiguration','WorkflowConfiguration','WorkflowRunConfiguration','WorkflowVersionConfiguration']
export const isWidgetConfiguration = (obj?: { __typename?: any } | null): obj is WidgetConfiguration => {
if (!obj?.__typename) throw new Error('__typename is missing in "isWidgetConfiguration"')
return WidgetConfiguration_possibleTypes.includes(obj.__typename)
@@ -6755,14 +6744,6 @@ export interface LogicFunctionLogsInput {applicationId?: (Scalars['UUID'] | null
const GaugeChartConfiguration_possibleTypes: string[] = ['GaugeChartConfiguration']
export const isGaugeChartConfiguration = (obj?: { __typename?: any } | null): obj is GaugeChartConfiguration => {
if (!obj?.__typename) throw new Error('__typename is missing in "isGaugeChartConfiguration"')
return GaugeChartConfiguration_possibleTypes.includes(obj.__typename)
}
const BarChartConfiguration_possibleTypes: string[] = ['BarChartConfiguration']
export const isBarChartConfiguration = (obj?: { __typename?: any } | null): obj is BarChartConfiguration => {
if (!obj?.__typename) throw new Error('__typename is missing in "isBarChartConfiguration"')
@@ -6955,6 +6936,30 @@ export interface LogicFunctionLogsInput {applicationId?: (Scalars['UUID'] | null
const VerificationRecord_possibleTypes: string[] = ['VerificationRecord']
export const isVerificationRecord = (obj?: { __typename?: any } | null): obj is VerificationRecord => {
if (!obj?.__typename) throw new Error('__typename is missing in "isVerificationRecord"')
return VerificationRecord_possibleTypes.includes(obj.__typename)
}
const EmailingDomain_possibleTypes: string[] = ['EmailingDomain']
export const isEmailingDomain = (obj?: { __typename?: any } | null): obj is EmailingDomain => {
if (!obj?.__typename) throw new Error('__typename is missing in "isEmailingDomain"')
return EmailingDomain_possibleTypes.includes(obj.__typename)
}
const SendEmailViaDomainOutput_possibleTypes: string[] = ['SendEmailViaDomainOutput']
export const isSendEmailViaDomainOutput = (obj?: { __typename?: any } | null): obj is SendEmailViaDomainOutput => {
if (!obj?.__typename) throw new Error('__typename is missing in "isSendEmailViaDomainOutput"')
return SendEmailViaDomainOutput_possibleTypes.includes(obj.__typename)
}
const ApprovedAccessDomain_possibleTypes: string[] = ['ApprovedAccessDomain']
export const isApprovedAccessDomain = (obj?: { __typename?: any } | null): obj is ApprovedAccessDomain => {
if (!obj?.__typename) throw new Error('__typename is missing in "isApprovedAccessDomain"')
@@ -7859,22 +7864,6 @@ export interface LogicFunctionLogsInput {applicationId?: (Scalars['UUID'] | null
const VerificationRecord_possibleTypes: string[] = ['VerificationRecord']
export const isVerificationRecord = (obj?: { __typename?: any } | null): obj is VerificationRecord => {
if (!obj?.__typename) throw new Error('__typename is missing in "isVerificationRecord"')
return VerificationRecord_possibleTypes.includes(obj.__typename)
}
const EmailingDomain_possibleTypes: string[] = ['EmailingDomain']
export const isEmailingDomain = (obj?: { __typename?: any } | null): obj is EmailingDomain => {
if (!obj?.__typename) throw new Error('__typename is missing in "isEmailingDomain"')
return EmailingDomain_possibleTypes.includes(obj.__typename)
}
const AutocompleteResult_possibleTypes: string[] = ['AutocompleteResult']
export const isAutocompleteResult = (obj?: { __typename?: any } | null): obj is AutocompleteResult => {
if (!obj?.__typename) throw new Error('__typename is missing in "isAutocompleteResult"')
@@ -8560,7 +8549,6 @@ export const enumPageLayoutTabLayoutMode = {
export const enumWidgetConfigurationType = {
AGGREGATE_CHART: 'AGGREGATE_CHART' as const,
GAUGE_CHART: 'GAUGE_CHART' as const,
PIE_CHART: 'PIE_CHART' as const,
BAR_CHART: 'BAR_CHART' as const,
LINE_CHART: 'LINE_CHART' as const,
@@ -8627,7 +8615,8 @@ export const enumFieldDisplayMode = {
CARD: 'CARD' as const,
EDITOR: 'EDITOR' as const,
FIELD: 'FIELD' as const,
VIEW: 'VIEW' as const
VIEW: 'VIEW' as const,
TABLE: 'TABLE' as const
}
export const enumPageLayoutType = {
@@ -8637,6 +8626,17 @@ export const enumPageLayoutType = {
STANDALONE_PAGE: 'STANDALONE_PAGE' as const
}
export const enumEmailingDomainDriver = {
AWS_SES: 'AWS_SES' as const
}
export const enumEmailingDomainStatus = {
PENDING: 'PENDING' as const,
VERIFIED: 'VERIFIED' as const,
FAILED: 'FAILED' as const,
TEMPORARY_FAILURE: 'TEMPORARY_FAILURE' as const
}
export const enumBillingPlanKey = {
PRO: 'PRO' as const,
ENTERPRISE: 'ENTERPRISE' as const
@@ -8703,7 +8703,6 @@ export const enumFeatureFlagKey = {
IS_JSON_FILTER_ENABLED: 'IS_JSON_FILTER_ENABLED' as const,
IS_MARKETPLACE_SETTING_TAB_VISIBLE: 'IS_MARKETPLACE_SETTING_TAB_VISIBLE' as const,
IS_PUBLIC_DOMAIN_ENABLED: 'IS_PUBLIC_DOMAIN_ENABLED' as const,
IS_EMAILING_DOMAIN_ENABLED: 'IS_EMAILING_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
@@ -8750,17 +8749,6 @@ export const enumBillingEntitlementKey = {
AUDIT_LOGS: 'AUDIT_LOGS' as const
}
export const enumEmailingDomainDriver = {
AWS_SES: 'AWS_SES' as const
}
export const enumEmailingDomainStatus = {
PENDING: 'PENDING' as const,
VERIFIED: 'VERIFIED' as const,
FAILED: 'FAILED' as const,
TEMPORARY_FAILURE: 'TEMPORARY_FAILURE' as const
}
export const enumCalendarChannelSyncStatus = {
NOT_SYNCED: 'NOT_SYNCED' as const,
ONGOING: 'ONGOING' as const,
File diff suppressed because it is too large Load Diff
@@ -40,6 +40,7 @@ export default defineField({
- When defining fields **inline inside `defineObject()`**, you do **not** need `objectUniversalIdentifier` — it's inherited from the parent object.
- `defineField()` is the only way to add fields to objects you didn't create with `defineObject()`.
- File location is up to you. The convention is `src/fields/<name>.field.ts`, but the SDK detects fields anywhere in `src/`.
- To add a tab to a standard page layout (e.g. the Task or Company detail page), use [`definePageLayoutTab`](/developers/extend/apps/layout/page-layouts#definepagelayouttab) with `STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS` from `twenty-sdk/define`.
## Adding a relation to an existing object
@@ -103,6 +103,10 @@ export default defineCommandMenuItem({
});
```
<Note>
`RECORD_SELECTION` already implies a non-empty selection — use `numberOfSelectedRecords` only for specific counts (e.g. `>= 2`).
</Note>
### Context variables
These represent the current state of the page:
@@ -196,6 +196,94 @@ export default defineFrontComponent({
});
```
## Calling a logic function
Front components run browser-side in a sandboxed Web Worker, while [logic functions](/developers/extend/apps/logic/logic-functions) run server-side. There is no direct in-process call between the two — instead, a front component reaches a logic function over HTTP.
A logic function declared with `httpRouteTriggerSettings` is exposed under the `/s/` endpoint at `${TWENTY_API_URL}/s<path>`. Your front component calls that route with `fetch`, authenticating with the `TWENTY_APP_ACCESS_TOKEN` that Twenty injects into the worker.
A small reusable helper keeps the call sites clean:
```ts src/shared/call-app-route.ts
export async function callAppRoute(
path: string,
body: Record<string, unknown>,
): Promise<unknown> {
const apiUrl = process.env.TWENTY_API_URL ?? '';
const token = process.env.TWENTY_APP_ACCESS_TOKEN;
const res = await fetch(`${apiUrl}/s${path}`, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
...(token ? { Authorization: `Bearer ${token}` } : {}),
},
body: JSON.stringify(body),
});
if (!res.ok) {
throw new Error(`Logic function failed (${res.status})`);
}
return res.json();
}
```
A headless front component can run the call on mount via the `Command` component, then unmount automatically:
```tsx src/front-components/sync-prs.tsx
import { defineFrontComponent } from 'twenty-sdk/define';
import { Command } from 'twenty-sdk/command';
import { callAppRoute } from 'src/shared/call-app-route';
const SyncPrs = () => {
const execute = async () => {
await callAppRoute('/github/fetch-prs', {
owner: 'twentyhq',
repo: 'twenty',
});
};
return <Command execute={execute} />;
};
export default defineFrontComponent({
universalIdentifier: '...',
name: 'sync-prs',
description: 'Triggers the fetch-prs logic function',
isHeadless: true,
component: SyncPrs,
});
```
The `path` passed to `callAppRoute` must match the logic function's `httpRouteTriggerSettings.path` (the `/s` prefix is added by the helper):
```ts src/logic-functions/fetch-prs.logic-function.ts
import { defineLogicFunction } from 'twenty-sdk/define';
import type { RoutePayload } from 'twenty-sdk/logic-function';
const handler = async (event: RoutePayload) => {
const { owner, repo } = (event.body ?? {}) as { owner: string; repo: string };
// ...fetch from GitHub and persist records...
return { ok: true };
};
export default defineLogicFunction({
universalIdentifier: '...',
name: 'fetch-prs',
handler,
httpRouteTriggerSettings: {
path: '/github/fetch-prs',
httpMethod: 'POST',
isAuthRequired: true,
},
});
```
<Note>
`TWENTY_API_URL` and `TWENTY_APP_ACCESS_TOKEN` are injected automatically — see [Application variables](#application-variables). Because secret application variables are never exposed to front components, keep API keys and other sensitive logic in the logic function, not in the front component.
</Note>
## Accessing runtime context
Inside your component, use SDK hooks to access the current user, record, and component instance:
@@ -65,16 +65,15 @@ Use this when you only want to **add** a tab to an existing layout — for examp
import {
definePageLayoutTab,
PageLayoutTabLayoutMode,
STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS,
} from 'twenty-sdk/define';
import { HELLO_WORLD_FRONT_COMPONENT_UNIVERSAL_IDENTIFIER } from '../front-components/hello-world';
const COMPANY_RECORD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIER =
'20202020-ab01-4001-8001-c0aba11c0100';
export default definePageLayoutTab({
universalIdentifier: 'b1b2b3b4-b5b6-4000-8000-000000000001',
pageLayoutUniversalIdentifier:
COMPANY_RECORD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIER,
STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS.companyRecordPage
.universalIdentifier,
title: 'Hello World',
position: 1000,
icon: 'IconWorld',
@@ -97,6 +96,34 @@ export default definePageLayoutTab({
### Key points
- `pageLayoutUniversalIdentifier` is **required** and must point to a page layout that already exists at install time — either a standard Twenty layout or one defined by your own app. Cross-app references to layouts owned by another installed app are not supported today. When the parent layout is missing, installation fails with a clear validation error.
- For standard Twenty layouts, import identifiers from `twenty-sdk/define`:
```ts
import { STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS } from 'twenty-sdk/define';
// STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS.companyRecordPage.universalIdentifier
// STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS.personRecordPage.universalIdentifier
// STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS.taskRecordPage.universalIdentifier
// STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS.opportunityRecordPage.universalIdentifier
// STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS.noteRecordPage.universalIdentifier
// …
```
Each layout entry also exposes its `tabs` and their `widgets`, so you can reference any level:
```ts
STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS.taskRecordPage.tabs.home.universalIdentifier
STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS.taskRecordPage.tabs.home.widgets.fields.universalIdentifier
```
A short alias `STANDARD_PAGE_LAYOUT` is also available:
```ts
import { STANDARD_PAGE_LAYOUT } from 'twenty-sdk/define';
STANDARD_PAGE_LAYOUT.companyRecordPage.universalIdentifier;
```
- `widgets` are scoped to this tab only — they reference [front components](/developers/extend/apps/layout/front-components), views, etc. exactly like widgets defined inline in `definePageLayout`.
- `position` controls ordering against existing tabs on the targeted layout. Pick a value that places your tab where you want it relative to built-in tabs.
- Use this instead of `definePageLayout` when you only want to add to an existing layout. Use `definePageLayout` when you own the entire layout.
@@ -53,6 +53,10 @@ export default defineLogicFunction({
Available trigger types:
- **httpRoute**: Exposes your function on an HTTP path and method **under the `/s/` endpoint**:
> e.g. `path: '/post-card/create'` is callable at `https://your-twenty-server.com/s/post-card/create`
<Note>
To invoke a route-triggered logic function from a (headless) front component, see [Calling a logic function](/developers/extend/apps/layout/front-components#calling-a-logic-function).
</Note>
- **cron**: Runs your function on a schedule using a CRON expression.
- **databaseEvent**: Runs on workspace object lifecycle events. When the event operation is `updated`, specific fields to listen to can be specified in the `updatedFields` array. If left undefined or empty, any update will trigger the function.
> e.g. `person.updated`, `*.created`, `company.*`
@@ -43,6 +43,8 @@ export default defineField({
* Der Speicherort der Datei liegt bei Ihnen. Die Konvention ist `src/fields/\<name>.field.ts`, aber das SDK erkennt Felder überall in `src/`.
* Um eine Registerkarte zu einem Standard-Seitenlayout hinzuzufügen (z. B. der Aufgaben- oder Unternehmensdetailseite), verwenden Sie [`definePageLayoutTab`](/l/de/developers/extend/apps/layout/page-layouts#definepagelayouttab) mit `STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS` aus `twenty-sdk/define`.
## Hinzufügen einer Relation zu einem bestehenden Objekt
Um ein Relationsfeld hinzuzufügen (z. B. zur Verknüpfung Ihres benutzerdefinierten Objekts mit einer Standard-`Person`), verwenden Sie `defineField()` mit `FieldType.RELATION`. Das Muster ist dasselbe wie bei Inline-Relationen, jedoch mit explizit gesetztem `objectUniversalIdentifier`. Siehe [Relations](/l/de/developers/extend/apps/data/relations) für das bidirektionale Muster.
@@ -103,6 +103,10 @@ export default defineCommandMenuItem({
});
```
<Note>
`RECORD_SELECTION` impliziert bereits eine nichtleere Auswahl — verwende `numberOfSelectedRecords` nur für bestimmte Zählwerte (z. B. `>= 2`).
</Note>
### Kontextvariablen
Diese repräsentieren den aktuellen Zustand der Seite:
@@ -196,6 +196,94 @@ export default defineFrontComponent({
});
```
## Aufrufen einer Logikfunktion
Front-Komponenten laufen browserseitig in einem isolierten Web Worker, während [Logikfunktionen](/l/de/developers/extend/apps/logic/logic-functions) serverseitig ausgeführt werden. Es gibt keinen direkten In-Process-Aufruf zwischen beiden stattdessen ruft eine Front-Komponente eine Logikfunktion über HTTP auf.
Eine mit `httpRouteTriggerSettings` deklarierte Logikfunktion wird unter dem `/s/`-Endpunkt unter `${TWENTY_API_URL}/s\<path>` bereitgestellt. Ihre Front-Komponente ruft diese Route mit `fetch` auf und authentifiziert sich dabei mit dem `TWENTY_APP_ACCESS_TOKEN`, das Twenty in den Worker injiziert.
Ein kleiner wiederverwendbarer Helper hält die Aufrufstellen übersichtlich:
```ts src/shared/call-app-route.ts
export async function callAppRoute(
path: string,
body: Record<string, unknown>,
): Promise<unknown> {
const apiUrl = process.env.TWENTY_API_URL ?? '';
const token = process.env.TWENTY_APP_ACCESS_TOKEN;
const res = await fetch(`${apiUrl}/s${path}`, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
...(token ? { Authorization: `Bearer ${token}` } : {}),
},
body: JSON.stringify(body),
});
if (!res.ok) {
throw new Error(`Logic function failed (${res.status})`);
}
return res.json();
}
```
Eine headless Front-Komponente kann den Aufruf beim Mounten über die `Command`-Komponente ausführen und sich anschließend automatisch unmounten:
```tsx src/front-components/sync-prs.tsx
import { defineFrontComponent } from 'twenty-sdk/define';
import { Command } from 'twenty-sdk/command';
import { callAppRoute } from 'src/shared/call-app-route';
const SyncPrs = () => {
const execute = async () => {
await callAppRoute('/github/fetch-prs', {
owner: 'twentyhq',
repo: 'twenty',
});
};
return <Command execute={execute} />;
};
export default defineFrontComponent({
universalIdentifier: '...',
name: 'sync-prs',
description: 'Triggers the fetch-prs logic function',
isHeadless: true,
component: SyncPrs,
});
```
Der an `callAppRoute` übergebene `path` muss dem `httpRouteTriggerSettings.path` der Logikfunktion entsprechen (das `/s`-Präfix wird vom Helper hinzugefügt):
```ts src/logic-functions/fetch-prs.logic-function.ts
import { defineLogicFunction } from 'twenty-sdk/define';
import type { RoutePayload } from 'twenty-sdk/logic-function';
const handler = async (event: RoutePayload) => {
const { owner, repo } = (event.body ?? {}) as { owner: string; repo: string };
// ...fetch from GitHub and persist records...
return { ok: true };
};
export default defineLogicFunction({
universalIdentifier: '...',
name: 'fetch-prs',
handler,
httpRouteTriggerSettings: {
path: '/github/fetch-prs',
httpMethod: 'POST',
isAuthRequired: true,
},
});
```
<Note>
`TWENTY_API_URL` und `TWENTY_APP_ACCESS_TOKEN` werden automatisch injiziert siehe [Anwendungsvariablen](#application-variables). Da geheime Anwendungsvariablen niemals in Front-Komponenten offengelegt werden, sollten API-Schlüssel und andere sensible Logik in der Logikfunktion verbleiben und nicht in der Front-Komponente.
</Note>
## Zugriff auf den Laufzeitkontext
Verwenden Sie innerhalb Ihrer Komponente SDK-Hooks, um auf den aktuellen Benutzer, den Datensatz und die Komponenteninstanz zuzugreifen:
@@ -65,16 +65,15 @@ Verwenden Sie dies, wenn Sie nur einen Tab zu einem vorhandenen Layout **hinzuf
import {
definePageLayoutTab,
PageLayoutTabLayoutMode,
STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS,
} from 'twenty-sdk/define';
import { HELLO_WORLD_FRONT_COMPONENT_UNIVERSAL_IDENTIFIER } from '../front-components/hello-world';
const COMPANY_RECORD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIER =
'20202020-ab01-4001-8001-c0aba11c0100';
export default definePageLayoutTab({
universalIdentifier: 'b1b2b3b4-b5b6-4000-8000-000000000001',
pageLayoutUniversalIdentifier:
COMPANY_RECORD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIER,
STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS.companyRecordPage
.universalIdentifier,
title: 'Hello World',
position: 1000,
icon: 'IconWorld',
@@ -97,6 +96,37 @@ export default definePageLayoutTab({
### Hauptpunkte
* `pageLayoutUniversalIdentifier` ist **erforderlich** und muss auf ein Seitenlayout verweisen, das zum Installationszeitpunkt bereits existiert entweder ein standardmäßiges Twenty-Layout oder eines, das von Ihrer eigenen App definiert wurde. App-übergreifende Verweise auf Layouts, die einer anderen installierten App gehören, werden derzeit nicht unterstützt. Wenn das übergeordnete Layout fehlt, schlägt die Installation mit einem eindeutigen Validierungsfehler fehl.
* Für Standard-Twenty-Layouts importieren Sie die Bezeichner aus `twenty-sdk/define`:
```ts
import { STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS } from 'twenty-sdk/define';
// STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS.companyRecordPage.universalIdentifier
// STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS.personRecordPage.universalIdentifier
// STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS.taskRecordPage.universalIdentifier
// STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS.opportunityRecordPage.universalIdentifier
// STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS.noteRecordPage.universalIdentifier
// …
```
Jeder Layout-Eintrag stellt außerdem seine `tabs` und deren `widgets` zur Verfügung, sodass Sie auf jede Ebene verweisen können:
```ts
STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS.taskRecordPage.tabs.home.universalIdentifier
STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS.taskRecordPage.tabs.home.widgets.fields.universalIdentifier
```
Eine kurze Alias-Variable `STANDARD_PAGE_LAYOUT` ist ebenfalls verfügbar:
```ts
import { STANDARD_PAGE_LAYOUT } from 'twenty-sdk/define';
STANDARD_PAGE_LAYOUT.companyRecordPage.universalIdentifier;
```
* `widgets` sind ausschließlich auf diesen Tab beschränkt sie verweisen auf [Frontend-Komponenten](/l/de/developers/extend/apps/layout/front-components), Ansichten usw., genau wie Widgets, die inline in `definePageLayout` definiert sind.
* `position` steuert die Reihenfolge im Zielseitenlayout relativ zu den vorhandenen Registerkarten. Wählen Sie einen Wert, der Ihre Registerkarte relativ zu integrierten Registerkarten an die gewünschte Position bringt.
* Verwenden Sie dies anstelle von `definePageLayout`, wenn Sie einem vorhandenen Layout nur etwas hinzufügen möchten. Verwenden Sie `definePageLayout`, wenn Sie das gesamte Layout besitzen.
@@ -53,6 +53,10 @@ export default defineLogicFunction({
Verfügbare Trigger-Typen:
* **httpRoute**: Stellt Ihre Funktion unter einem HTTP-Pfad und einer Methode **unter dem Endpunkt `/s/`** bereit:
> z. B. `path: '/post-card/create'` ist unter `https://your-twenty-server.com/s/post-card/create` aufrufbar
<Note>
Um eine routenausgelöste Logikfunktion von einer (headless) Front-Komponente aus aufzurufen, siehe [Aufrufen einer Logikfunktion](/l/de/developers/extend/apps/layout/front-components#calling-a-logic-function).
</Note>
* **cron**: Führt Ihre Funktion nach Zeitplan mithilfe eines CRON-Ausdrucks aus.
* **databaseEvent**: Wird bei Lebenszyklusereignissen von Workspace-Objekten ausgeführt. Wenn die Ereignisoperation `updated` ist, können bestimmte zu überwachende Felder im Array `updatedFields` angegeben werden. Wenn das Array undefiniert oder leer ist, löst jede Aktualisierung die Funktion aus.
> z. B. `person.updated`, `*.created`, `company.*`
@@ -43,6 +43,8 @@ export default defineField({
* A localização do arquivo fica a seu critério. A convenção é `src/fields/\<name>.field.ts`, mas o SDK detecta campos em qualquer lugar dentro de `src/`.
* Para adicionar uma aba a um layout de página padrão (por exemplo, a página de detalhes de Task ou Company), use [`definePageLayoutTab`](/l/pt/developers/extend/apps/layout/page-layouts#definepagelayouttab) com `STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS` de `twenty-sdk/define`.
## Adicionando uma relação a um objeto existente
Para adicionar um campo de relação (por exemplo, vinculando seu objeto personalizado a um `Person` padrão), use `defineField()` com `FieldType.RELATION`. O padrão é o mesmo que para relações inline, mas com `objectUniversalIdentifier` definido explicitamente. Veja [Relações](/l/pt/developers/extend/apps/data/relations) para o padrão bidirecional.
@@ -103,6 +103,10 @@ export default defineCommandMenuItem({
});
```
<Note>
`RECORD_SELECTION` já implica uma seleção não vazia — use `numberOfSelectedRecords` apenas para contagens específicas (por exemplo, `>= 2`).
</Note>
### Variáveis de contexto
Elas representam o estado atual da página:
@@ -196,6 +196,94 @@ export default defineFrontComponent({
});
```
## Chamando uma função lógica
Os componentes de front são executados no navegador em um Web Worker isolado, enquanto as [funções lógicas](/l/pt/developers/extend/apps/logic/logic-functions) são executadas no servidor. Não há chamada direta no mesmo processo entre os dois — em vez disso, um componente de front acessa uma função lógica via HTTP.
Uma função lógica declarada com `httpRouteTriggerSettings` é exposta sob o endpoint `/s/` em `${TWENTY_API_URL}/s\<path>`. Seu componente de front chama essa rota com `fetch`, autenticando com o `TWENTY_APP_ACCESS_TOKEN` que Twenty injeta no worker.
Um pequeno helper reutilizável mantém os locais de chamada limpos:
```ts src/shared/call-app-route.ts
export async function callAppRoute(
path: string,
body: Record<string, unknown>,
): Promise<unknown> {
const apiUrl = process.env.TWENTY_API_URL ?? '';
const token = process.env.TWENTY_APP_ACCESS_TOKEN;
const res = await fetch(`${apiUrl}/s${path}`, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
...(token ? { Authorization: `Bearer ${token}` } : {}),
},
body: JSON.stringify(body),
});
if (!res.ok) {
throw new Error(`Logic function failed (${res.status})`);
}
return res.json();
}
```
Um componente de front headless pode executar a chamada ao montar via o componente `Command` e, em seguida, desmontar automaticamente:
```tsx src/front-components/sync-prs.tsx
import { defineFrontComponent } from 'twenty-sdk/define';
import { Command } from 'twenty-sdk/command';
import { callAppRoute } from 'src/shared/call-app-route';
const SyncPrs = () => {
const execute = async () => {
await callAppRoute('/github/fetch-prs', {
owner: 'twentyhq',
repo: 'twenty',
});
};
return <Command execute={execute} />;
};
export default defineFrontComponent({
universalIdentifier: '...',
name: 'sync-prs',
description: 'Triggers the fetch-prs logic function',
isHeadless: true,
component: SyncPrs,
});
```
O `path` passado para `callAppRoute` deve corresponder ao `httpRouteTriggerSettings.path` da função lógica (o prefixo `/s` é adicionado pelo helper):
```ts src/logic-functions/fetch-prs.logic-function.ts
import { defineLogicFunction } from 'twenty-sdk/define';
import type { RoutePayload } from 'twenty-sdk/logic-function';
const handler = async (event: RoutePayload) => {
const { owner, repo } = (event.body ?? {}) as { owner: string; repo: string };
// ...fetch from GitHub and persist records...
return { ok: true };
};
export default defineLogicFunction({
universalIdentifier: '...',
name: 'fetch-prs',
handler,
httpRouteTriggerSettings: {
path: '/github/fetch-prs',
httpMethod: 'POST',
isAuthRequired: true,
},
});
```
<Note>
`TWENTY_API_URL` e `TWENTY_APP_ACCESS_TOKEN` são injetados automaticamente — consulte [Variáveis de aplicação](#application-variables). Como as variáveis de aplicação secretas nunca são expostas aos componentes de front, mantenha as chaves de API e outra lógica sensível na função lógica, não no componente de front.
</Note>
## Acessando o contexto de execução
Dentro do seu componente, use hooks do SDK para acessar o usuário atual, o registro e a instância do componente:
@@ -65,16 +65,15 @@ Use isto quando você quiser apenas **adicionar** uma aba a um layout existente
import {
definePageLayoutTab,
PageLayoutTabLayoutMode,
STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS,
} from 'twenty-sdk/define';
import { HELLO_WORLD_FRONT_COMPONENT_UNIVERSAL_IDENTIFIER } from '../front-components/hello-world';
const COMPANY_RECORD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIER =
'20202020-ab01-4001-8001-c0aba11c0100';
export default definePageLayoutTab({
universalIdentifier: 'b1b2b3b4-b5b6-4000-8000-000000000001',
pageLayoutUniversalIdentifier:
COMPANY_RECORD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIER,
STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS.companyRecordPage
.universalIdentifier,
title: 'Hello World',
position: 1000,
icon: 'IconWorld',
@@ -97,6 +96,37 @@ export default definePageLayoutTab({
### Pontos-chave
* `pageLayoutUniversalIdentifier` é **obrigatório** e deve apontar para um layout de página que já exista no momento da instalação — seja um layout padrão da Twenty ou um definido pelo seu próprio aplicativo. Referências entre aplicativos para layouts pertencentes a outro aplicativo instalado não são compatíveis atualmente. Quando o layout pai estiver ausente, a instalação falha com um erro de validação claro.
* Para layouts padrão do Twenty, importe identificadores de `twenty-sdk/define`:
```ts
import { STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS } from 'twenty-sdk/define';
// STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS.companyRecordPage.universalIdentifier
// STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS.personRecordPage.universalIdentifier
// STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS.taskRecordPage.universalIdentifier
// STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS.opportunityRecordPage.universalIdentifier
// STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS.noteRecordPage.universalIdentifier
// …
```
Cada entrada de layout também expõe suas `tabs` e seus `widgets`, para que você possa fazer referência a qualquer nível:
```ts
STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS.taskRecordPage.tabs.home.universalIdentifier
STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS.taskRecordPage.tabs.home.widgets.fields.universalIdentifier
```
Um alias abreviado `STANDARD_PAGE_LAYOUT` também está disponível:
```ts
import { STANDARD_PAGE_LAYOUT } from 'twenty-sdk/define';
STANDARD_PAGE_LAYOUT.companyRecordPage.universalIdentifier;
```
* `widgets` têm escopo apenas para esta aba — eles referenciam [front components](/l/pt/developers/extend/apps/layout/front-components), visualizações etc., exatamente como widgets definidos inline em `definePageLayout`.
* `position` controla a ordenação em relação às abas existentes no layout de destino. Escolha um valor que posicione sua aba onde você deseja em relação às abas nativas.
* Use isto em vez de `definePageLayout` quando você quiser apenas adicionar a um layout existente. Use `definePageLayout` quando você possuir todo o layout.
@@ -53,6 +53,10 @@ export default defineLogicFunction({
Tipos de gatilho disponíveis:
* **httpRoute**: Expõe sua função em um caminho e método HTTP **no endpoint `/s/`**:
> por exemplo, `path: '/post-card/create'` é acessível em `https://your-twenty-server.com/s/post-card/create`
<Note>
Para invocar uma função de lógica acionada por rota a partir de um componente de front-end (headless), consulte [Chamando uma função de lógica](/l/pt/developers/extend/apps/layout/front-components#calling-a-logic-function).
</Note>
* **cron**: Executa sua função em um agendamento usando uma expressão CRON.
* **databaseEvent**: Executa em eventos do ciclo de vida de objetos do espaço de trabalho. Quando a operação do evento é `updated`, campos específicos a serem observados podem ser especificados no array `updatedFields`. Se deixar indefinido ou vazio, qualquer atualização acionará a função.
> por exemplo, `person.updated`, `*.created`, `company.*`
@@ -43,6 +43,8 @@ export default defineField({
* Locația fișierului depinde de dumneavoastră. Convenția este `src/fields/\<name>.field.ts`, dar SDK-ul detectează câmpuri oriunde în `src/`.
* Pentru a adăuga o filă într-un layout standard de pagină (de ex. pagina de detalii pentru Task sau Company), folosește [`definePageLayoutTab`](/l/ro/developers/extend/apps/layout/page-layouts#definepagelayouttab) cu `STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS` din `twenty-sdk/define`.
## Adăugarea unei relații la un obiect existent
Pentru a adăuga un câmp de tip relație (de ex. pentru a lega obiectul personalizat de un `Person` standard), folosiți `defineField()` cu `FieldType.RELATION`. Modelul este același ca pentru relațiile inline, dar cu `objectUniversalIdentifier` setat explicit. Consultați [Relații](/l/ro/developers/extend/apps/data/relations) pentru modelul bidirecțional.
@@ -103,6 +103,10 @@ export default defineCommandMenuItem({
});
```
<Note>
`RECORD_SELECTION` implică deja o selecție care nu este goală — folosește `numberOfSelectedRecords` doar pentru valori specifice (de ex. `>= 2`).
</Note>
### Variabile de context
Acestea reprezintă starea curentă a paginii:
@@ -196,6 +196,94 @@ export default defineFrontComponent({
});
```
## Apelarea unei funcții logice
Componentele de front rulează în browser într-un Web Worker izolat, în timp ce [funcțiile logice](/l/ro/developers/extend/apps/logic/logic-functions) rulează pe server. Nu există un apel direct în același proces între cele două — în schimb, o componentă de front apelează o funcție logică prin HTTP.
O funcție logică declarată cu `httpRouteTriggerSettings` este expusă sub endpoint-ul `/s/` la `${TWENTY_API_URL}/s\<path>`. Componenta ta de front apelează acea rută cu `fetch`, autentificându-se cu `TWENTY_APP_ACCESS_TOKEN` pe care Twenty îl injectează în worker.
Un mic utilitar reutilizabil menține locurile de apel curate:
```ts src/shared/call-app-route.ts
export async function callAppRoute(
path: string,
body: Record<string, unknown>,
): Promise<unknown> {
const apiUrl = process.env.TWENTY_API_URL ?? '';
const token = process.env.TWENTY_APP_ACCESS_TOKEN;
const res = await fetch(`${apiUrl}/s${path}`, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
...(token ? { Authorization: `Bearer ${token}` } : {}),
},
body: JSON.stringify(body),
});
if (!res.ok) {
throw new Error(`Logic function failed (${res.status})`);
}
return res.json();
}
```
O componentă de front headless poate efectua apelul la montare prin componenta `Command`, apoi se demontează automat:
```tsx src/front-components/sync-prs.tsx
import { defineFrontComponent } from 'twenty-sdk/define';
import { Command } from 'twenty-sdk/command';
import { callAppRoute } from 'src/shared/call-app-route';
const SyncPrs = () => {
const execute = async () => {
await callAppRoute('/github/fetch-prs', {
owner: 'twentyhq',
repo: 'twenty',
});
};
return <Command execute={execute} />;
};
export default defineFrontComponent({
universalIdentifier: '...',
name: 'sync-prs',
description: 'Triggers the fetch-prs logic function',
isHeadless: true,
component: SyncPrs,
});
```
`path` transmis către `callAppRoute` trebuie să corespundă cu `httpRouteTriggerSettings.path` al funcției logice (prefixul `/s` este adăugat de utilitar):
```ts src/logic-functions/fetch-prs.logic-function.ts
import { defineLogicFunction } from 'twenty-sdk/define';
import type { RoutePayload } from 'twenty-sdk/logic-function';
const handler = async (event: RoutePayload) => {
const { owner, repo } = (event.body ?? {}) as { owner: string; repo: string };
// ...fetch from GitHub and persist records...
return { ok: true };
};
export default defineLogicFunction({
universalIdentifier: '...',
name: 'fetch-prs',
handler,
httpRouteTriggerSettings: {
path: '/github/fetch-prs',
httpMethod: 'POST',
isAuthRequired: true,
},
});
```
<Note>
`TWENTY_API_URL` și `TWENTY_APP_ACCESS_TOKEN` sunt injectate automat — vezi [Application variables](#application-variables). Deoarece variabilele de aplicație secrete nu sunt niciodată expuse componentelor de front, păstrează cheile API și altă logică sensibilă în funcția logică, nu în componenta de front.
</Note>
## Accesarea contextului de rulare
În interiorul componentei, folosiți hook-urile SDK pentru a accesa utilizatorul curent, înregistrarea curentă și instanța componentei:
@@ -65,16 +65,15 @@ Folosește aceasta atunci când vrei doar să **adaugi** o filă la un layout ex
import {
definePageLayoutTab,
PageLayoutTabLayoutMode,
STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS,
} from 'twenty-sdk/define';
import { HELLO_WORLD_FRONT_COMPONENT_UNIVERSAL_IDENTIFIER } from '../front-components/hello-world';
const COMPANY_RECORD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIER =
'20202020-ab01-4001-8001-c0aba11c0100';
export default definePageLayoutTab({
universalIdentifier: 'b1b2b3b4-b5b6-4000-8000-000000000001',
pageLayoutUniversalIdentifier:
COMPANY_RECORD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIER,
STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS.companyRecordPage
.universalIdentifier,
title: 'Hello World',
position: 1000,
icon: 'IconWorld',
@@ -97,6 +96,37 @@ export default definePageLayoutTab({
### Puncte cheie
* `pageLayoutUniversalIdentifier` este **obligatoriu** și trebuie să indice către un layout de pagină care există deja la momentul instalării — fie un layout standard Twenty, fie unul definit de propria ta aplicație. Referințele cross-app către layouturi deținute de o altă aplicație instalată nu sunt acceptate în prezent. Când lipsește layoutul părinte, instalarea eșuează cu o eroare clară de validare.
* Pentru layout-urile standard Twenty, importați identificatorii din `twenty-sdk/define`:
```ts
import { STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS } from 'twenty-sdk/define';
// STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS.companyRecordPage.universalIdentifier
// STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS.personRecordPage.universalIdentifier
// STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS.taskRecordPage.universalIdentifier
// STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS.opportunityRecordPage.universalIdentifier
// STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS.noteRecordPage.universalIdentifier
// …
```
Fiecare intrare de layout își expune, de asemenea, `tabs` și `widgets`, astfel încât puteți face referire la orice nivel:
```ts
STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS.taskRecordPage.tabs.home.universalIdentifier
STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS.taskRecordPage.tabs.home.widgets.fields.universalIdentifier
```
Este disponibil și un alias scurt `STANDARD_PAGE_LAYOUT`:
```ts
import { STANDARD_PAGE_LAYOUT } from 'twenty-sdk/define';
STANDARD_PAGE_LAYOUT.companyRecordPage.universalIdentifier;
```
* `widgets` sunt limitate doar la această filă — fac referire la [front components](/l/ro/developers/extend/apps/layout/front-components), vizualizări etc., exact ca widgeturile definite inline în `definePageLayout`.
* `position` controlează ordonarea în raport cu filele existente din layoutul țintă. Alege o valoare care să plaseze fila ta acolo unde dorești, relativ la filele predefinite.
* Folosește aceasta în loc de `definePageLayout` atunci când vrei doar să adaugi la un layout existent. Folosește `definePageLayout` atunci când deții întregul layout.
@@ -53,6 +53,10 @@ export default defineLogicFunction({
Tipuri de declanșatoare disponibile:
* **httpRoute**: Expune funcția pe o cale și metodă HTTP **sub endpoint-ul `/s/`**:
> de ex. `path: '/post-card/create'` este apelabil la `https://your-twenty-server.com/s/post-card/create`
<Note>
Pentru a apela o funcție logică declanșată de o rută dintr-o componentă front-end (headless), consultă [Apelarea unei funcții logice](/l/ro/developers/extend/apps/layout/front-components#calling-a-logic-function).
</Note>
* **cron**: Rulează funcția pe un program folosind o expresie CRON.
* **databaseEvent**: Rulează la evenimentele ciclului de viață ale obiectelor din spațiul de lucru. Când operațiunea evenimentului este `updated`, câmpurile specifice de urmărit pot fi specificate în array-ul `updatedFields`. Dacă este lăsat nedefinit sau gol, orice actualizare va declanșa funcția.
> de ex. `person.updated`, `*.created`, `company.*`
@@ -43,6 +43,8 @@ export default defineField({
* Расположение файла зависит от вас. Принятое соглашение — `src/fields/\<name>.field.ts`, но SDK обнаруживает поля в любом месте внутри `src/`.
* Чтобы добавить вкладку в стандартную компоновку страницы (например, на страницу сведений о задаче или компании), используйте [`definePageLayoutTab`](/l/ru/developers/extend/apps/layout/page-layouts#definepagelayouttab) с `STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS` из `twenty-sdk/define`.
## Добавление связи к существующему объекту
Чтобы добавить поле связи (например, связать ваш пользовательский объект со стандартным `Person`), используйте `defineField()` с `FieldType.RELATION`. Шаблон тот же, что и для встроенных связей, но с явным указанием `objectUniversalIdentifier`. Смотрите раздел [Relations](/l/ru/developers/extend/apps/data/relations) для двунаправленного шаблона.
@@ -103,6 +103,10 @@ export default defineCommandMenuItem({
});
```
<Note>
`RECORD_SELECTION` уже подразумевает, что есть выбранные записи — используйте `numberOfSelectedRecords` только для конкретных количеств (например, `>= 2`).
</Note>
### Переменные контекста
Они представляют текущее состояние страницы:
@@ -196,6 +196,94 @@ export default defineFrontComponent({
});
```
## Вызов логической функции
Front-компоненты выполняются в браузере в изолированном Web Worker, в то время как [логические функции](/l/ru/developers/extend/apps/logic/logic-functions) выполняются на стороне сервера. Между ними нет прямого внутрипроцессного вызова — вместо этого front-компонент обращается к логической функции по HTTP.
Логическая функция, объявленная с `httpRouteTriggerSettings`, доступна по эндпоинту `/s/` по адресу `${TWENTY_API_URL}/s\<path>`. Ваш front-компонент вызывает этот маршрут с помощью `fetch`, аутентифицируясь с использованием `TWENTY_APP_ACCESS_TOKEN`, который Twenty внедряет в worker.
Небольшой переиспользуемый хелпер делает места вызова чище:
```ts src/shared/call-app-route.ts
export async function callAppRoute(
path: string,
body: Record<string, unknown>,
): Promise<unknown> {
const apiUrl = process.env.TWENTY_API_URL ?? '';
const token = process.env.TWENTY_APP_ACCESS_TOKEN;
const res = await fetch(`${apiUrl}/s${path}`, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
...(token ? { Authorization: `Bearer ${token}` } : {}),
},
body: JSON.stringify(body),
});
if (!res.ok) {
throw new Error(`Logic function failed (${res.status})`);
}
return res.json();
}
```
Безголовый front-компонент может выполнить вызов при монтировании через компонент `Command`, а затем автоматически размонтироваться:
```tsx src/front-components/sync-prs.tsx
import { defineFrontComponent } from 'twenty-sdk/define';
import { Command } from 'twenty-sdk/command';
import { callAppRoute } from 'src/shared/call-app-route';
const SyncPrs = () => {
const execute = async () => {
await callAppRoute('/github/fetch-prs', {
owner: 'twentyhq',
repo: 'twenty',
});
};
return <Command execute={execute} />;
};
export default defineFrontComponent({
universalIdentifier: '...',
name: 'sync-prs',
description: 'Triggers the fetch-prs logic function',
isHeadless: true,
component: SyncPrs,
});
```
`path`, переданный в `callAppRoute`, должен совпадать с `httpRouteTriggerSettings.path` логической функции (префикс `/s` добавляется хелпером):
```ts src/logic-functions/fetch-prs.logic-function.ts
import { defineLogicFunction } from 'twenty-sdk/define';
import type { RoutePayload } from 'twenty-sdk/logic-function';
const handler = async (event: RoutePayload) => {
const { owner, repo } = (event.body ?? {}) as { owner: string; repo: string };
// ...fetch from GitHub and persist records...
return { ok: true };
};
export default defineLogicFunction({
universalIdentifier: '...',
name: 'fetch-prs',
handler,
httpRouteTriggerSettings: {
path: '/github/fetch-prs',
httpMethod: 'POST',
isAuthRequired: true,
},
});
```
<Note>
`TWENTY_API_URL` и `TWENTY_APP_ACCESS_TOKEN` внедряются автоматически — см. [переменные приложения](#application-variables). Поскольку секретные переменные приложения никогда не раскрываются front-компонентам, храните ключи API и другую конфиденциальную логику в логической функции, а не во front-компоненте.
</Note>
## Доступ к контексту времени выполнения
Внутри вашего компонента используйте хуки SDK для доступа к текущему пользователю, записи и экземпляру компонента:
@@ -65,16 +65,15 @@ export default definePageLayout({
import {
definePageLayoutTab,
PageLayoutTabLayoutMode,
STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS,
} from 'twenty-sdk/define';
import { HELLO_WORLD_FRONT_COMPONENT_UNIVERSAL_IDENTIFIER } from '../front-components/hello-world';
const COMPANY_RECORD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIER =
'20202020-ab01-4001-8001-c0aba11c0100';
export default definePageLayoutTab({
universalIdentifier: 'b1b2b3b4-b5b6-4000-8000-000000000001',
pageLayoutUniversalIdentifier:
COMPANY_RECORD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIER,
STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS.companyRecordPage
.universalIdentifier,
title: 'Hello World',
position: 1000,
icon: 'IconWorld',
@@ -97,6 +96,37 @@ export default definePageLayoutTab({
### Основные моменты
* `pageLayoutUniversalIdentifier` является **обязательным** и должен указывать на макет страницы, который уже существует на момент установки — либо стандартный макет Twenty, либо определённый вашим собственным приложением. Кросс-приложенческие ссылки на макеты, которыми владеет другое установленное приложение, на данный момент не поддерживаются. Если родительский макет отсутствует, установка завершается с понятной ошибкой проверки.
* Для стандартных макетов Twenty импортируйте идентификаторы из `twenty-sdk/define`:
```ts
import { STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS } from 'twenty-sdk/define';
// STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS.companyRecordPage.universalIdentifier
// STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS.personRecordPage.universalIdentifier
// STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS.taskRecordPage.universalIdentifier
// STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS.opportunityRecordPage.universalIdentifier
// STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS.noteRecordPage.universalIdentifier
// …
```
Каждый элемент макета также предоставляет свои `tabs` и их `widgets`, поэтому вы можете ссылаться на любой уровень:
```ts
STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS.taskRecordPage.tabs.home.universalIdentifier
STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS.taskRecordPage.tabs.home.widgets.fields.universalIdentifier
```
Также доступен короткий псевдоним `STANDARD_PAGE_LAYOUT`:
```ts
import { STANDARD_PAGE_LAYOUT } from 'twenty-sdk/define';
STANDARD_PAGE_LAYOUT.companyRecordPage.universalIdentifier;
```
* `widgets` ограничены только этой вкладкой — они ссылаются на [front components](/l/ru/developers/extend/apps/layout/front-components), представления и т. п. точно так же, как виджеты, определённые непосредственно в `definePageLayout`.
* `position` управляет порядком относительно существующих вкладок в целевом макете. Выберите значение, которое поместит вашу вкладку в нужное место относительно встроенных вкладок.
* Используйте это вместо `definePageLayout`, когда вы хотите только добавить к существующему макету. Используйте `definePageLayout`, когда вы управляете всем макетом.
@@ -53,6 +53,10 @@ export default defineLogicFunction({
Доступные типы триггеров:
* **httpRoute**: Публикует вашу функцию по HTTP-пути и методу **под конечной точкой `/s/`**:
> например, `path: '/post-card/create'` вызывается по адресу `https://your-twenty-server.com/s/post-card/create`
<Note>
Чтобы вызвать логическую функцию, запускаемую маршрутом, из фронтенд-компонента (без интерфейса), см. раздел [Вызов логической функции](/l/ru/developers/extend/apps/layout/front-components#calling-a-logic-function).
</Note>
* **cron**: Запускает вашу функцию по расписанию с использованием выражения CRON.
* **databaseEvent**: Запускается при событиях жизненного цикла объектов рабочего пространства. Когда операция события — `updated`, можно указать конкретные поля для отслеживания в массиве `updatedFields`. Если оставить не заданным или пустым, любое обновление будет вызывать функцию.
> например, `person.updated`, `*.created`, `company.*`
@@ -43,6 +43,8 @@ export default defineField({
* Dosya konumu size bağlıdır. Genel kabul gören yapı `src/fields/\<name>.field.ts` şeklindedir, ancak SDK `src/` içinde herhangi bir yerdeki alanları algılar.
* Standart bir sayfa yerleşimine (örneğin, Görev veya Şirket detay sayfası) bir sekme eklemek için, `twenty-sdk/define` içindeki `STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS` ile birlikte [`definePageLayoutTab`](/l/tr/developers/extend/apps/layout/page-layouts#definepagelayouttab) kullanın.
## Mevcut bir nesneye ilişki ekleme
Bir ilişki alanı eklemek için (örneğin özel nesnenizi standart bir `Person` nesnesine bağlamak), `FieldType.RELATION` ile `defineField()` kullanın. Desen, satır içi ilişkilerle aynıdır ancak `objectUniversalIdentifier` açıkça ayarlanır. Çift yönlü desen için [Relations](/l/tr/developers/extend/apps/data/relations) bölümüne bakın.
@@ -103,6 +103,10 @@ export default defineCommandMenuItem({
});
```
<Note>
`RECORD_SELECTION` zaten boş olmayan bir seçim anlamına gelir — `numberOfSelectedRecords` ifadesini yalnızca belirli sayılar için kullanın (örneğin `>= 2`).
</Note>
### Bağlam değişkenleri
Bunlar sayfanın mevcut durumunu temsil eder:
@@ -196,6 +196,94 @@ export default defineFrontComponent({
});
```
## Bir mantık işlevini çağırma
Ön bileşenler, tarayıcı tarafında izole bir Web Worker içinde çalışırken, [mantık işlevleri](/l/tr/developers/extend/apps/logic/logic-functions) sunucu tarafında çalışır. İkisi arasında doğrudan, işlem içi bir çağrı yoktur — bunun yerine, bir ön bileşen bir mantık işlevine HTTP üzerinden erişir.
`httpRouteTriggerSettings` ile bildirilen bir mantık işlevi, `${TWENTY_API_URL}/s\<path>` altındaki `/s/` uç noktasında sunulur. Ön bileşeniniz bu rotayı, Twenty tarafından Worker'a enjekte edilen `TWENTY_APP_ACCESS_TOKEN` ile kimlik doğrulayarak `fetch` ile çağırır.
Küçük, yeniden kullanılabilir bir yardımcı işlev çağrı noktalarını sade tutar:
```ts src/shared/call-app-route.ts
export async function callAppRoute(
path: string,
body: Record<string, unknown>,
): Promise<unknown> {
const apiUrl = process.env.TWENTY_API_URL ?? '';
const token = process.env.TWENTY_APP_ACCESS_TOKEN;
const res = await fetch(`${apiUrl}/s${path}`, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
...(token ? { Authorization: `Bearer ${token}` } : {}),
},
body: JSON.stringify(body),
});
if (!res.ok) {
throw new Error(`Logic function failed (${res.status})`);
}
return res.json();
}
```
Başsız bir ön bileşen, çağrıyı `Command` bileşeni aracılığıyla mount sırasında çalıştırabilir ve ardından otomatik olarak unmount olabilir:
```tsx src/front-components/sync-prs.tsx
import { defineFrontComponent } from 'twenty-sdk/define';
import { Command } from 'twenty-sdk/command';
import { callAppRoute } from 'src/shared/call-app-route';
const SyncPrs = () => {
const execute = async () => {
await callAppRoute('/github/fetch-prs', {
owner: 'twentyhq',
repo: 'twenty',
});
};
return <Command execute={execute} />;
};
export default defineFrontComponent({
universalIdentifier: '...',
name: 'sync-prs',
description: 'Triggers the fetch-prs logic function',
isHeadless: true,
component: SyncPrs,
});
```
`callAppRoute` fonksiyonuna geçirilen `path`, mantık işlevinin `httpRouteTriggerSettings.path` değeriyle eşleşmelidir (`/s` öneki yardımcı işlev tarafından eklenir):
```ts src/logic-functions/fetch-prs.logic-function.ts
import { defineLogicFunction } from 'twenty-sdk/define';
import type { RoutePayload } from 'twenty-sdk/logic-function';
const handler = async (event: RoutePayload) => {
const { owner, repo } = (event.body ?? {}) as { owner: string; repo: string };
// ...fetch from GitHub and persist records...
return { ok: true };
};
export default defineLogicFunction({
universalIdentifier: '...',
name: 'fetch-prs',
handler,
httpRouteTriggerSettings: {
path: '/github/fetch-prs',
httpMethod: 'POST',
isAuthRequired: true,
},
});
```
<Note>
`TWENTY_API_URL` ve `TWENTY_APP_ACCESS_TOKEN` otomatik olarak enjekte edilir — bkz. [Uygulama değişkenleri](#application-variables). Gizli uygulama değişkenleri asla ön bileşenlere açığa çıkarılmadığından, API anahtarlarını ve diğer hassas mantığı ön bileşende değil, mantık işlevinin içinde tutun.
</Note>
## Çalışma zamanı bağlamına erişme
Bileşeninizin içinde, geçerli kullanıcıya, kayda ve bileşen örneğine erişmek için SDK hook'larını kullanın:
@@ -65,16 +65,15 @@ Bunu yalnızca mevcut bir düzene **sekme eklemek** istediğinizde kullanın —
import {
definePageLayoutTab,
PageLayoutTabLayoutMode,
STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS,
} from 'twenty-sdk/define';
import { HELLO_WORLD_FRONT_COMPONENT_UNIVERSAL_IDENTIFIER } from '../front-components/hello-world';
const COMPANY_RECORD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIER =
'20202020-ab01-4001-8001-c0aba11c0100';
export default definePageLayoutTab({
universalIdentifier: 'b1b2b3b4-b5b6-4000-8000-000000000001',
pageLayoutUniversalIdentifier:
COMPANY_RECORD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIER,
STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS.companyRecordPage
.universalIdentifier,
title: 'Hello World',
position: 1000,
icon: 'IconWorld',
@@ -97,6 +96,37 @@ export default definePageLayoutTab({
### Önemli noktalar
* `pageLayoutUniversalIdentifier` **zorunludur** ve kurulum anında zaten var olan bir sayfa düzenini işaret etmelidir — standart bir Twenty düzeni veya kendi uygulamanız tarafından tanımlanan bir düzen olabilir. Başka yüklü bir uygulamaya ait düzenlere uygulamalar arası referanslar bugün desteklenmemektedir. Üst düzen eksik olduğunda, kurulum net bir doğrulama hatasıyla başarısız olur.
* Standart Twenty yerleşimleri için tanımlayıcıları `twenty-sdk/define` içinden içe aktarın:
```ts
import { STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS } from 'twenty-sdk/define';
// STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS.companyRecordPage.universalIdentifier
// STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS.personRecordPage.universalIdentifier
// STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS.taskRecordPage.universalIdentifier
// STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS.opportunityRecordPage.universalIdentifier
// STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS.noteRecordPage.universalIdentifier
// …
```
Her yerleşim girdisi ayrıca `tabs` ve bunların `widgets` ögelerini de açığa çıkarır, böylece herhangi bir düzeye başvurabilirsiniz:
```ts
STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS.taskRecordPage.tabs.home.universalIdentifier
STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS.taskRecordPage.tabs.home.widgets.fields.universalIdentifier
```
Kısa bir takma ad `STANDARD_PAGE_LAYOUT` da kullanılabilir:
```ts
import { STANDARD_PAGE_LAYOUT } from 'twenty-sdk/define';
STANDARD_PAGE_LAYOUT.companyRecordPage.universalIdentifier;
```
* `widgets` yalnızca bu sekmeyle sınırlıdır — satır içi olarak `definePageLayout` içinde tanımlanan widget'larda olduğu gibi, [ön uç bileşenlerine](/l/tr/developers/extend/apps/layout/front-components), görünümlere vb. tam olarak aynı şekilde referans verirler.
* `position`, hedeflenen düzende mevcut sekmelere göre sıralamayı kontrol eder. Yerleşik sekmelere göre sekmenizi istediğiniz konuma yerleştirecek bir değer seçin.
* Yalnızca mevcut bir düzene ekleme yapmak istediğinizde `definePageLayout` yerine bunu kullanın. Tüm düzene sahip olduğunuzda `definePageLayout` kullanın.
@@ -53,6 +53,10 @@ export default defineLogicFunction({
Kullanılabilir tetikleyici türleri:
* **httpRoute**: İşlevinizi bir HTTP yolu ve yöntemiyle **`/s/` uç noktasının altında** kullanıma sunar:
> örn. `path: '/post-card/create'` `https://your-twenty-server.com/s/post-card/create` adresinden çağrılabilir
<Note>
Arayüzsüz bir ön uç bileşeninden rota tarafından tetiklenen mantık fonksiyonunu çağırmak için bkz. [Mantık fonksiyonu çağırma](/l/tr/developers/extend/apps/layout/front-components#calling-a-logic-function).
</Note>
* **cron**: Bir CRON ifadesi kullanarak işlevinizi bir zamanlamayla çalıştırır.
* **databaseEvent**: Çalışma alanı nesnesi yaşam döngüsü olaylarında çalışır. Olay işlemi `updated` olduğunda, dinlenecek belirli alanlar `updatedFields` dizisinde belirtilebilir. Tanımsız veya boş bırakılırsa, herhangi bir güncelleme işlevi tetikler.
> örn. `person.updated`, `*.created`, `company.*`
@@ -43,6 +43,8 @@ export default defineField({
* 文件位置由你决定。 约定是使用 `src/fields/\<name>.field.ts`,但 SDK 会在整个 `src/` 中检测字段。
* 要在标准页面布局(例如任务或公司详情页面)中添加一个选项卡,请使用 [`definePageLayoutTab`](/l/zh/developers/extend/apps/layout/page-layouts#definepagelayouttab),并结合来自 `twenty-sdk/define` 的 `STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS`。
## 向现有对象添加关系
要添加关系字段(例如将你的自定义对象链接到标准 `Person`),请将 `defineField()` 与 `FieldType.RELATION` 一起使用。 模式与内联关系相同,但需要显式设置 `objectUniversalIdentifier`。 有关双向模式,请参见[关系](/l/zh/developers/extend/apps/data/relations)。
@@ -103,6 +103,10 @@ export default defineCommandMenuItem({
});
```
<Note>
`RECORD_SELECTION` 已经意味着非空选择 — 仅在需要表达具体数量时使用 `numberOfSelectedRecords`(例如 `>= 2`)。
</Note>
### 上下文变量
这些变量表示页面的当前状态:
@@ -196,6 +196,94 @@ export default defineFrontComponent({
});
```
## 调用逻辑函数
前端组件在沙盒 Web Worker 中于浏览器端运行,而[逻辑函数](/l/zh/developers/extend/apps/logic/logic-functions)在服务器端运行。 二者之间没有直接的进程内调用——前端组件通过 HTTP 访问逻辑函数。
使用 `httpRouteTriggerSettings` 声明的逻辑函数会通过 `/s/` 端点暴露在 `${TWENTY_API_URL}/s\<path>` 下。 你的前端组件使用 `fetch` 调用该路由,并使用 Twenty 注入到 worker 中的 `TWENTY_APP_ACCESS_TOKEN` 进行身份验证。
一个小型可复用的辅助函数可以让调用端保持简洁:
```ts src/shared/call-app-route.ts
export async function callAppRoute(
path: string,
body: Record<string, unknown>,
): Promise<unknown> {
const apiUrl = process.env.TWENTY_API_URL ?? '';
const token = process.env.TWENTY_APP_ACCESS_TOKEN;
const res = await fetch(`${apiUrl}/s${path}`, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
...(token ? { Authorization: `Bearer ${token}` } : {}),
},
body: JSON.stringify(body),
});
if (!res.ok) {
throw new Error(`Logic function failed (${res.status})`);
}
return res.json();
}
```
无头前端组件可以通过 `Command` 组件在挂载时执行调用,然后自动卸载:
```tsx src/front-components/sync-prs.tsx
import { defineFrontComponent } from 'twenty-sdk/define';
import { Command } from 'twenty-sdk/command';
import { callAppRoute } from 'src/shared/call-app-route';
const SyncPrs = () => {
const execute = async () => {
await callAppRoute('/github/fetch-prs', {
owner: 'twentyhq',
repo: 'twenty',
});
};
return <Command execute={execute} />;
};
export default defineFrontComponent({
universalIdentifier: '...',
name: 'sync-prs',
description: 'Triggers the fetch-prs logic function',
isHeadless: true,
component: SyncPrs,
});
```
传递给 `callAppRoute` 的 `path` 必须与逻辑函数的 `httpRouteTriggerSettings.path` 匹配(`/s` 前缀由辅助函数添加):
```ts src/logic-functions/fetch-prs.logic-function.ts
import { defineLogicFunction } from 'twenty-sdk/define';
import type { RoutePayload } from 'twenty-sdk/logic-function';
const handler = async (event: RoutePayload) => {
const { owner, repo } = (event.body ?? {}) as { owner: string; repo: string };
// ...fetch from GitHub and persist records...
return { ok: true };
};
export default defineLogicFunction({
universalIdentifier: '...',
name: 'fetch-prs',
handler,
httpRouteTriggerSettings: {
path: '/github/fetch-prs',
httpMethod: 'POST',
isAuthRequired: true,
},
});
```
<Note>
`TWENTY_API_URL` 和 `TWENTY_APP_ACCESS_TOKEN` 会被自动注入——参见 [应用变量](#application-variables)。 由于机密应用变量永远不会暴露给前端组件,请将 API 密钥和其他敏感逻辑保留在逻辑函数中,而不是前端组件中。
</Note>
## 访问运行时上下文
在组件内部,使用 SDK 的 hooks 获取当前用户、记录和组件实例:
@@ -65,16 +65,15 @@ export default definePageLayout({
import {
definePageLayoutTab,
PageLayoutTabLayoutMode,
STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS,
} from 'twenty-sdk/define';
import { HELLO_WORLD_FRONT_COMPONENT_UNIVERSAL_IDENTIFIER } from '../front-components/hello-world';
const COMPANY_RECORD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIER =
'20202020-ab01-4001-8001-c0aba11c0100';
export default definePageLayoutTab({
universalIdentifier: 'b1b2b3b4-b5b6-4000-8000-000000000001',
pageLayoutUniversalIdentifier:
COMPANY_RECORD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIER,
STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS.companyRecordPage
.universalIdentifier,
title: 'Hello World',
position: 1000,
icon: 'IconWorld',
@@ -97,6 +96,37 @@ export default definePageLayoutTab({
### 关键点
* `pageLayoutUniversalIdentifier` 是**必需的**,并且必须在安装时指向一个已存在的页面布局——可以是标准的 Twenty 布局,也可以是由你自己的应用定义的布局。 当前不支持跨应用引用由其他已安装应用拥有的布局。 当父布局缺失时,安装会失败,并给出清晰的验证错误。
* 对于标准 Twenty 布局,从 `twenty-sdk/define` 导入标识符:
```ts
import { STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS } from 'twenty-sdk/define';
// STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS.companyRecordPage.universalIdentifier
// STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS.personRecordPage.universalIdentifier
// STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS.taskRecordPage.universalIdentifier
// STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS.opportunityRecordPage.universalIdentifier
// STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS.noteRecordPage.universalIdentifier
// …
```
每个布局条目还会公开其 `tabs` 及其 `widgets`,因此你可以引用任意层级:
```ts
STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS.taskRecordPage.tabs.home.universalIdentifier
STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS.taskRecordPage.tabs.home.widgets.fields.universalIdentifier
```
还提供了一个简短别名 `STANDARD_PAGE_LAYOUT`
```ts
import { STANDARD_PAGE_LAYOUT } from 'twenty-sdk/define';
STANDARD_PAGE_LAYOUT.companyRecordPage.universalIdentifier;
```
* `widgets` 仅作用于此选项卡——它们引用[前端组件](/l/zh/developers/extend/apps/layout/front-components)、视图等,其方式与在 `definePageLayout` 中内联定义的小部件完全相同。
* `position` 控制目标布局中相对于现有选项卡的排序。 选择一个取值,使你的选项卡相对于内置选项卡位于你想要的位置。
* 当你只想向现有布局进行添加时,请使用此功能,而不是 `definePageLayout`。 当你拥有整个布局时,请使用 `definePageLayout`。
@@ -53,6 +53,10 @@ export default defineLogicFunction({
可用的触发器类型:
* **httpRoute**:在 **`/s/` 端点**下通过 HTTP 路径和方法公开你的函数:
> 例如 `path: '/post-card/create'` 可在 `https://your-twenty-server.com/s/post-card/create` 调用
<Note>
要从(无头)前端组件调用由路由触发的逻辑函数,请参见[调用逻辑函数](/l/zh/developers/extend/apps/layout/front-components#calling-a-logic-function)。
</Note>
* **cron**:使用 CRON 表达式按计划运行你的函数。
* **databaseEvent**:在工作区对象生命周期事件上运行。 当事件操作为 `updated` 时,可以在 `updatedFields` 数组中指定要监听的特定字段。 如果未定义或为空,任何更新都会触发该函数。
> 例如 `person.updated`、`*.created`、`company.*`
@@ -36,8 +36,8 @@
"@storybook/addon-vitest": "^10.2.13",
"@storybook/react-vite": "^10.2.13",
"@types/node": "^24.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/react": "^18.2.39",
"@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",
@@ -0,0 +1,6 @@
import { createContext } from 'react';
export type SetEditableFocused = (focused: boolean) => void;
export const FrontComponentInputFocusContext =
createContext<SetEditableFocused | null>(null);
@@ -7,7 +7,7 @@ import {
isString,
isUndefined,
} from '@sniptt/guards';
import React from 'react';
import React, { useContext } from 'react';
import { isDefined } from 'twenty-shared/utils';
import { EVENT_TO_REACT } from '@/constants/EventToReact';
@@ -15,6 +15,10 @@ import {
type SerializedEventData,
type SerializedFileData,
} from '@/constants/SerializedEventData';
import {
FrontComponentInputFocusContext,
type SetEditableFocused,
} from '@/host/contexts/FrontComponentInputFocusContext';
const INTERNAL_PROPS = new Set(['element', 'receiver', 'components']);
@@ -352,18 +356,41 @@ const createCaretPreservingElement = (
htmlTag: 'input' | 'textarea',
reactProps: Record<string, unknown>,
forcedProps: Record<string, unknown> | undefined,
setEditableFocused: SetEditableFocused | null,
) => {
const { value, defaultValue, ...rest } = reactProps;
const {
value,
defaultValue,
onFocus: forwardedOnFocus,
onBlur: forwardedOnBlur,
...rest
} = reactProps;
const initialValue = isNonEmptyString(defaultValue)
? defaultValue
: isNonEmptyString(value)
? value
: undefined;
const handleFocus = (event: React.FocusEvent<CaretPreservingElement>) => {
setEditableFocused?.(true);
if (isFunction(forwardedOnFocus)) {
forwardedOnFocus(event);
}
};
const handleBlur = (event: React.FocusEvent<CaretPreservingElement>) => {
setEditableFocused?.(false);
if (isFunction(forwardedOnBlur)) {
forwardedOnBlur(event);
}
};
return React.createElement(htmlTag, {
...rest,
...forcedProps,
defaultValue: initialValue,
onFocus: handleFocus,
onBlur: handleBlur,
ref: (node: CaretPreservingElement | null) => {
if (!isDefined(node)) {
return;
@@ -380,13 +407,19 @@ export const createHtmlHostWrapper = (htmlTag: string) => {
const isVoid = VOID_ELEMENTS.has(htmlTag);
return ({ children, ...props }: WrapperProps) => {
const setEditableFocused = useContext(FrontComponentInputFocusContext);
const reactProps = filterProps(props);
if (
htmlTag === 'textarea' ||
(htmlTag === 'input' && isTextLikeInputType(reactProps.type))
) {
return createCaretPreservingElement(htmlTag, reactProps, forcedProps);
return createCaretPreservingElement(
htmlTag,
reactProps,
forcedProps,
setEditableFocused,
);
}
return React.createElement(
@@ -1,4 +1,8 @@
export { FrontComponentRenderer } from './host/components/FrontComponentRenderer';
export {
FrontComponentInputFocusContext,
type SetEditableFocused,
} from './host/contexts/FrontComponentInputFocusContext';
export { componentRegistry } from './host/generated/host-component-registry';
export { FrontComponentErrorEffect } from './remote/components/FrontComponentErrorEffect';
export { FrontComponentInitializeHostCommunicationApiEffect } from './remote/components/FrontComponentInitializeHostCommunicationApiEffect';
@@ -283,7 +283,6 @@ export type FeatureFlag = {
};
export enum FeatureFlagKey {
IS_EMAILING_DOMAIN_ENABLED = 'IS_EMAILING_DOMAIN_ENABLED',
IS_EMAIL_GROUP_ENABLED = 'IS_EMAIL_GROUP_ENABLED',
IS_JSON_FILTER_ENABLED = 'IS_JSON_FILTER_ENABLED',
IS_JUNCTION_RELATIONS_ENABLED = 'IS_JUNCTION_RELATIONS_ENABLED',
@@ -399,6 +398,7 @@ export type Mutation = {
setAdminAiModelsRecommended: Scalars['Boolean'];
setAdminDefaultAiModel: Scalars['Boolean'];
setMaintenanceMode: Scalars['Boolean'];
updateAdminApplicationRegistrationVariable: ApplicationRegistrationVariableDto;
updateDatabaseConfigVariable: Scalars['Boolean'];
updateWorkspaceFeatureFlag: Scalars['Boolean'];
};
@@ -492,6 +492,11 @@ export type MutationSetMaintenanceModeArgs = {
};
export type MutationUpdateAdminApplicationRegistrationVariableArgs = {
input: UpdateApplicationRegistrationVariableInput;
};
export type MutationUpdateDatabaseConfigVariableArgs = {
key: Scalars['String'];
value: Scalars['JSON'];
@@ -732,6 +737,17 @@ export type SystemHealthService = {
status: AdminPanelHealthServiceStatus;
};
export type UpdateApplicationRegistrationVariableInput = {
id: Scalars['String'];
update: UpdateApplicationRegistrationVariablePayload;
};
export type UpdateApplicationRegistrationVariablePayload = {
description?: InputMaybe<Scalars['String']>;
resetValue?: InputMaybe<Scalars['Boolean']>;
value?: InputMaybe<Scalars['String']>;
};
export enum UpgradeHealth {
BEHIND = 'BEHIND',
FAILED = 'FAILED',
@@ -923,6 +939,13 @@ export type GetModelsDevSuggestionsQueryVariables = Exact<{
export type GetModelsDevSuggestionsQuery = { __typename?: 'Query', getModelsDevSuggestions: Array<{ __typename?: 'ModelsDevModelSuggestion', modelId: string, name: string, inputCostPerMillionTokens: number, outputCostPerMillionTokens: number, cachedInputCostPerMillionTokens?: number | null, cacheCreationCostPerMillionTokens?: number | null, contextWindowTokens: number, maxOutputTokens: number, modalities: Array<string>, supportsReasoning: boolean }> };
export type UpdateAdminApplicationRegistrationVariableMutationVariables = Exact<{
input: UpdateApplicationRegistrationVariableInput;
}>;
export type UpdateAdminApplicationRegistrationVariableMutation = { __typename?: 'Mutation', updateAdminApplicationRegistrationVariable: { __typename?: 'ApplicationRegistrationVariableDTO', id: string, key: string, description: string, isSecret: boolean, isRequired: boolean, isFilled: boolean, createdAt: string, updatedAt: string } };
export type FindAdminApplicationRegistrationVariablesQueryVariables = Exact<{
applicationRegistrationId: Scalars['String'];
}>;
@@ -1154,6 +1177,7 @@ export const GetAdminAiUsageByWorkspaceDocument = {"kind":"Document","definition
export const GetAiProvidersDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetAiProviders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"getAiProviders"}}]}}]} as unknown as DocumentNode<GetAiProvidersQuery, GetAiProvidersQueryVariables>;
export const GetModelsDevProvidersDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetModelsDevProviders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"getModelsDevProviders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"modelCount"}},{"kind":"Field","name":{"kind":"Name","value":"npm"}}]}}]}}]} as unknown as DocumentNode<GetModelsDevProvidersQuery, GetModelsDevProvidersQueryVariables>;
export const GetModelsDevSuggestionsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetModelsDevSuggestions"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"providerType"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"getModelsDevSuggestions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"providerType"},"value":{"kind":"Variable","name":{"kind":"Name","value":"providerType"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"modelId"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"inputCostPerMillionTokens"}},{"kind":"Field","name":{"kind":"Name","value":"outputCostPerMillionTokens"}},{"kind":"Field","name":{"kind":"Name","value":"cachedInputCostPerMillionTokens"}},{"kind":"Field","name":{"kind":"Name","value":"cacheCreationCostPerMillionTokens"}},{"kind":"Field","name":{"kind":"Name","value":"contextWindowTokens"}},{"kind":"Field","name":{"kind":"Name","value":"maxOutputTokens"}},{"kind":"Field","name":{"kind":"Name","value":"modalities"}},{"kind":"Field","name":{"kind":"Name","value":"supportsReasoning"}}]}}]}}]} as unknown as DocumentNode<GetModelsDevSuggestionsQuery, GetModelsDevSuggestionsQueryVariables>;
export const UpdateAdminApplicationRegistrationVariableDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"UpdateAdminApplicationRegistrationVariable"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"UpdateApplicationRegistrationVariableInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"updateAdminApplicationRegistrationVariable"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"input"},"value":{"kind":"Variable","name":{"kind":"Name","value":"input"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"key"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"isSecret"}},{"kind":"Field","name":{"kind":"Name","value":"isRequired"}},{"kind":"Field","name":{"kind":"Name","value":"isFilled"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}}]}}]} as unknown as DocumentNode<UpdateAdminApplicationRegistrationVariableMutation, UpdateAdminApplicationRegistrationVariableMutationVariables>;
export const FindAdminApplicationRegistrationVariablesDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"FindAdminApplicationRegistrationVariables"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"applicationRegistrationId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"findAdminApplicationRegistrationVariables"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"applicationRegistrationId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"applicationRegistrationId"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"key"}},{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"isSecret"}},{"kind":"Field","name":{"kind":"Name","value":"isRequired"}},{"kind":"Field","name":{"kind":"Name","value":"isFilled"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}}]}}]} as unknown as DocumentNode<FindAdminApplicationRegistrationVariablesQuery, FindAdminApplicationRegistrationVariablesQueryVariables>;
export const FindAllApplicationRegistrationsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"FindAllApplicationRegistrations"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"findAllApplicationRegistrations"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ApplicationRegistrationFragment"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ApplicationRegistrationFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ApplicationRegistration"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"universalIdentifier"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"logoUrl"}},{"kind":"Field","name":{"kind":"Name","value":"oAuthClientId"}},{"kind":"Field","name":{"kind":"Name","value":"oAuthRedirectUris"}},{"kind":"Field","name":{"kind":"Name","value":"oAuthScopes"}},{"kind":"Field","name":{"kind":"Name","value":"sourceType"}},{"kind":"Field","name":{"kind":"Name","value":"sourcePackage"}},{"kind":"Field","name":{"kind":"Name","value":"latestAvailableVersion"}},{"kind":"Field","name":{"kind":"Name","value":"isListed"}},{"kind":"Field","name":{"kind":"Name","value":"isFeatured"}},{"kind":"Field","name":{"kind":"Name","value":"isPreInstalled"}},{"kind":"Field","name":{"kind":"Name","value":"isConfigured"}},{"kind":"Field","name":{"kind":"Name","value":"ownerWorkspaceId"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}}]} as unknown as DocumentNode<FindAllApplicationRegistrationsQuery, FindAllApplicationRegistrationsQueryVariables>;
export const CreateDatabaseConfigVariableDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"CreateDatabaseConfigVariable"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"key"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"value"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"createDatabaseConfigVariable"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"key"},"value":{"kind":"Variable","name":{"kind":"Name","value":"key"}}},{"kind":"Argument","name":{"kind":"Name","value":"value"},"value":{"kind":"Variable","name":{"kind":"Name","value":"value"}}}]}]}}]} as unknown as DocumentNode<CreateDatabaseConfigVariableMutation, CreateDatabaseConfigVariableMutationVariables>;
File diff suppressed because one or more lines are too long
+129 -74
View File
@@ -161,6 +161,7 @@ msgstr "{0, plural, one {Jy het nie toestemming om toegang tot die {fieldsList}
#. js-lingui-id: pZCK0D
#. placeholder {0}: registration.name
#: src/pages/settings/applications/components/SettingsApplicationRegistrationConfigVariableDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationConfigVariableDetail.tsx
msgid "{0} - Config"
msgstr ""
@@ -210,6 +211,12 @@ msgstr ""
msgid "{0} widgets"
msgstr ""
#. js-lingui-id: 2UKfhY
#. placeholder {0}: selectedItemNames.length
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInput.tsx
msgid "{0} workspace members"
msgstr ""
#. js-lingui-id: xTgz1F
#. placeholder {1}: provider.displayName
#: src/pages/settings/applications/tabs/SettingsApplicationConnectionsSection.tsx
@@ -221,6 +228,11 @@ msgstr ""
msgid "{advancedFilterCount, plural, one {{advancedFilterCount} advanced rule} other {{advancedFilterCount} advanced rules}}"
msgstr "{advancedFilterCount, plural, one {{advancedFilterCount} gevorderde reël} other {{advancedFilterCount} gevorderde reëls}}"
#. js-lingui-id: XWd9bY
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "{agentCount, plural, one {{agentCount} agent} other {{agentCount} agents}}"
msgstr ""
#. js-lingui-id: WGnqk6
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/hooks/useWorkflowAiAgentPermissionActions.ts
msgid "{agentDisplayName} role ({agentIdPrefix})"
@@ -236,6 +248,11 @@ msgstr "{agentLabel} Agentrol"
msgid "{aggregateLabel} of {fieldLabel}"
msgstr "{aggregateLabel} van {fieldLabel}"
#. js-lingui-id: WhHyQh
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "{apiKeyCount, plural, one {{apiKeyCount} API key} other {{apiKeyCount} API keys}}"
msgstr ""
#. js-lingui-id: u1mVnV
#: src/modules/marketplace/components/SettingsApplicationInstallPermissionValidationModal.tsx
msgid "{appDisplayName} would like to:"
@@ -395,6 +412,11 @@ msgstr "{jobCount, plural, one {Dit sal die geselekteerde werk herprobeer. Dit s
msgid "{label} list"
msgstr ""
#. js-lingui-id: 1DrH/j
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "{memberCount, plural, one {{memberCount} member} other {{memberCount} members}}"
msgstr ""
#. js-lingui-id: Y32cMj
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadIntermediaryMessages.tsx
msgid "{messagesLength} emails"
@@ -523,6 +545,11 @@ msgstr ""
msgid "{visibleFieldsCount} shown"
msgstr "{visibleFieldsCount} getoon"
#. js-lingui-id: WjjsAL
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
msgid "{visibleFieldsCount} visible fields"
msgstr ""
#. js-lingui-id: riMLMq
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowIteratorSubStepSwitcher.tsx
msgid "{workflowRunIteratorSubStepIterationsCount, plural, one {# item} other {# items}}"
@@ -901,7 +928,6 @@ msgstr "Aksies gebruikers kan uitvoer op hierdie voorwerp"
#: src/modules/settings/data-model/objects/components/SettingsObjectInactiveMenuDropDown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
#: src/modules/information-banner/components/enterprise/InformationBannerInvalidEnterpriseKey.tsx
msgid "Activate"
msgstr "Aktiveer"
@@ -1036,16 +1062,15 @@ msgstr "Voeg pasgemaakte instruksies by wat spesifiek is vir jou werkruimte (aan
msgid "Add Custom Provider"
msgstr "Voeg pasgemaakte verskaffer by"
#. js-lingui-id: 33pO0a
#. js-lingui-id: +Gf1IN
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Add email group"
msgid "Add email handle"
msgstr ""
#. js-lingui-id: 3O3+7h
#: src/pages/settings/emailing-domains/SettingsEmailingDomains.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomains.tsx
msgid "Add Emailing Domain"
msgstr "Voeg E-pos Domein by"
#. js-lingui-id: HMM0Sc
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Add emailing domain"
msgstr ""
#. js-lingui-id: DpV70M
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
@@ -1312,7 +1337,6 @@ msgid "Added {beautifiedCreatedAt}"
msgstr "Bygevoeg {beautifiedCreatedAt}"
#. js-lingui-id: jEHeq+
#: src/pages/settings/emailing-domains/SettingsEmailingDomains.tsx
#: src/modules/settings/security/components/approvedAccessDomains/SettingsApprovedAccessDomainsListCard.tsx
msgid "Added {beautifyPastDateRelative}"
msgstr "Bygevoeg {beautifyPastDateRelative}"
@@ -1361,6 +1385,7 @@ msgstr ""
#. js-lingui-id: 2GX/U+
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationConfigVariableDetail.tsx
msgid "Admin Panel - Apps"
msgstr ""
@@ -1954,6 +1979,7 @@ msgstr "'n Onverwagte fout het voorgekom. Probeer asseblief weer."
#. js-lingui-id: HZFm5R
#: src/utils/date-utils.ts
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
#: src/modules/auth/sign-in-up/components/FooterNote.tsx
msgid "and"
msgstr "en"
@@ -2188,7 +2214,6 @@ msgstr ""
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/applications/SettingsApplicationConnectionDetail.tsx
#: src/pages/settings/applications/SettingsApplicationCommandMenuItemDetail.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Applications"
msgstr "Toepassings"
@@ -2220,7 +2245,6 @@ msgid "Approved Domains"
msgstr "Goedgekeurde Domeine"
#. js-lingui-id: VDvaN2
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/domains/components/SettingPublicDomain.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
@@ -2257,9 +2281,15 @@ msgstr "Argieflêers kan nie voorskou word nie. Laai asseblief die lêer af om t
msgid "Archived"
msgstr ""
#. js-lingui-id: mk25CW
#. js-lingui-id: Yzbh3i
#. placeholder {0}: emailingDomain.domain
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
msgid "Are you sure you want to delete {0}? Outbound mail through this domain will stop working."
msgstr ""
#. js-lingui-id: Faev6R
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Are you sure you want to delete {sourceHandle}? Forwarded emails will no longer arrive in this workspace."
msgid "Are you sure you want to delete {sourceHandle}? Inbound mail forwarded to this address and outbound replies from it will stop working."
msgstr ""
#. js-lingui-id: 4CHeVx
@@ -3509,6 +3539,11 @@ msgstr "Kode-redigeerder"
msgid "Code Execution"
msgstr "Uitvoering van kode"
#. js-lingui-id: T9qjpu
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Code Interpreter"
msgstr ""
#. js-lingui-id: bKJYIa
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionCodeEditorTab.tsx
msgid "Code your function"
@@ -3723,11 +3758,6 @@ msgstr "Stel 'n SSO-verbinding op"
msgid "Configure and customize your calendar preferences."
msgstr "Stel op en pas jou kalendervoorkeure aan."
#. js-lingui-id: 5i71HM
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Configure and verify domains for emailing from this workspace."
msgstr "Stel domeine op en verifieer dit vir e-posse vanaf hierdie werkruimte."
#. js-lingui-id: 6MDr1S
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure CalDAV settings to sync your calendar events."
@@ -3816,10 +3846,15 @@ msgstr "Bevestig"
msgid "Confirm changing your current resource credit allocation."
msgstr ""
#. js-lingui-id: FbJ7Si
#. js-lingui-id: SU6Tym
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
msgstr "Bevestig verwydering van {roleName} rol? Dit kan nie ongedaan gemaak word nie. Alle lede sal aan die verstekrol toegewys word."
msgid "Confirm deletion of {roleName} role? This cannot be undone."
msgstr ""
#. js-lingui-id: W7S+Tm
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. {reassignSubject} will be reassigned to the default role."
msgstr ""
#. js-lingui-id: kZkFSm
#: src/modules/settings/billing/components/internal/ResourceCreditPriceSelector.tsx
@@ -5089,6 +5124,8 @@ msgstr "verwyder"
#. js-lingui-id: cnGeoo
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -5110,7 +5147,6 @@ msgstr "verwyder"
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
#: src/modules/settings/emailing-domains/components/SettingsEmailingDomainRowDropdownMenu.tsx
#: src/modules/settings/domains/components/SettingPublicDomainRowDropdownMenu.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -5194,9 +5230,14 @@ msgstr "Verwyder app"
msgid "Delete chat"
msgstr ""
#. js-lingui-id: /BTna7
#. js-lingui-id: cC09EO
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Delete email group"
msgid "Delete email handle"
msgstr ""
#. js-lingui-id: yZyuut
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
msgid "Delete emailing domain"
msgstr ""
#. js-lingui-id: gf2eXy
@@ -5537,6 +5578,7 @@ msgstr "Bevat nie"
#. js-lingui-id: EoKe5U
#: src/pages/settings/security/SettingsSecurityApprovedAccessDomain.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Domain"
msgstr "Domein"
@@ -5903,9 +5945,14 @@ msgid "else if"
msgstr "anders indien"
#. js-lingui-id: O3oNi5
#: src/pages/settings/SettingsWorkspaceEmail.tsx
#: src/pages/settings/SettingsWorkspaceEmail.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/members/tabs/SettingsWorkspaceMembersTeamTab.tsx
#: src/pages/settings/members/tabs/SettingsWorkspaceMembersInviteTab.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
#: src/pages/auth/PasswordReset.tsx
@@ -5914,7 +5961,9 @@ msgstr "anders indien"
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTableHeader.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
#: src/modules/settings/members/components/MemberInfosTab.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
#: src/modules/object-record/record-field/ui/meta-types/input/components/EmailsFieldInput.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpEmailField.tsx
msgid "Email"
@@ -5943,9 +5992,9 @@ msgstr "E-pos na knipbord gekopieer"
msgid "Email Editor"
msgstr "E-posredigeerder"
#. js-lingui-id: KQM9eG
#. js-lingui-id: nsVRM/
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Email Groups"
msgid "Email Handles"
msgstr ""
#. js-lingui-id: lfQsvW
@@ -6015,14 +6064,12 @@ msgid "Emailing domain created successfully. Please verify the domain to start u
msgstr "E-posdomein suksesvol geskep. Verifieer asseblief die domein om dit te begin gebruik."
#. js-lingui-id: XDpopO
#: src/modules/settings/emailing-domains/components/SettingsEmailingDomainRowDropdownMenu.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
msgid "Emailing domain deleted successfully"
msgstr "E-posdomein suksesvol uitgevee"
#. js-lingui-id: axQccV
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Emailing Domains"
msgstr "E-posdomeine"
@@ -6200,6 +6247,11 @@ msgstr "Voer 'n nommer in"
msgid "Enter a UUID"
msgstr "Voer 'n UUID in"
#. js-lingui-id: 0AYT5C
#: src/modules/settings/application-registrations/components/ApplicationRegistrationConfigVariableEditForm.tsx
msgid "Enter a value"
msgstr ""
#. js-lingui-id: oiVP/+
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableValueInput.tsx
msgid "Enter a value to store in database"
@@ -6344,11 +6396,6 @@ msgstr ""
msgid "Enter the credentials to set the connection"
msgstr "Voer die geloofsbriewe in om die verbinding te stel"
#. js-lingui-id: PTGfBH
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "Enter the email address you want to forward emails from (e.g. support@mycompany.com)."
msgstr ""
#. js-lingui-id: rGWgcm
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Enter the infos to set the connection"
@@ -6955,9 +7002,9 @@ msgstr "Kon nie model byvoeg nie"
msgid "Failed to add provider"
msgstr "Kon nie verskaffer byvoeg nie"
#. js-lingui-id: d+6i8z
#. js-lingui-id: L9UnOU
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "Failed to create email group channel. Email group may not be configured on this server."
msgid "Failed to create email handle. Email handles may not be configured on this server."
msgstr ""
#. js-lingui-id: WM7GKt
@@ -6965,9 +7012,9 @@ msgstr ""
msgid "Failed to create tool"
msgstr "Kon nie hulpmiddel skep nie"
#. js-lingui-id: W4hzLB
#. js-lingui-id: lWoewm
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Failed to delete email group channel."
msgid "Failed to delete email handle."
msgstr ""
#. js-lingui-id: pUligB
@@ -7293,7 +7340,9 @@ msgstr "velde"
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.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/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
@@ -7682,16 +7731,9 @@ msgstr "Funksienaam"
msgid "Functions - Settings"
msgstr "Funksies - Instellings"
#. js-lingui-id: vYj1cC
#: src/modules/side-panel/pages/page-layout/constants/GraphTypeInformation.ts
#: src/modules/page-layout/utils/getWidgetTitle.ts
msgid "Gauge Chart"
msgstr ""
#. js-lingui-id: Weq9zb
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
#: src/pages/settings/applications/components/SettingsApplicationRegistrationGeneralInfo.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationDetail.tsx
@@ -7699,7 +7741,6 @@ msgstr ""
#: src/modules/settings/domains/components/SettingsSubdomain.tsx
#: src/modules/settings/domains/components/SettingsCustomDomain.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroupsForDisplay.ts
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
msgid "General"
@@ -8656,10 +8697,11 @@ msgstr "Ongeldige e-pos of domein"
msgid "Invalid email verification link."
msgstr "Ongeldige e-pos verifikasie skakel."
#. js-lingui-id: uzxr9u
#. js-lingui-id: 4D6/HO
#. placeholder {0}: samlMetadataParsed.reason
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Invalid File"
msgstr "Ongeldige lêer"
msgid "Invalid file: {0}"
msgstr ""
#. js-lingui-id: 04zLGG
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
@@ -9778,6 +9820,8 @@ msgstr "MCP-bediener"
#. js-lingui-id: upbzgm
#: src/modules/views/hooks/useComputeRecordRelationFilterLabelValue.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionValueInput.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInput.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInput.tsx
msgid "Me"
msgstr "Ek"
@@ -10349,10 +10393,10 @@ msgstr "Nuwe gesprek"
msgid "New Email"
msgstr ""
#. js-lingui-id: TmlJkc
#. js-lingui-id: VJZNJt
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "New Email Group"
msgid "New Email Handle"
msgstr ""
#. js-lingui-id: wqoYqp
@@ -11687,9 +11731,11 @@ msgstr "Rangskik"
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationConfigVariableDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/sign-in-background-mock/components/BackgroundMockNavigationDrawer.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
@@ -13355,6 +13401,11 @@ msgstr ""
msgid "Run a workflow and return here to view its executions"
msgstr "Voer 'n werkstroom uit en keer hier terug om die uitvoerings te sien"
#. js-lingui-id: rRyKdg
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Run code to analyze files and data"
msgstr ""
#. js-lingui-id: UPaWvi
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTestTab.tsx
msgid "Run Function"
@@ -13840,6 +13891,7 @@ msgstr ""
#. js-lingui-id: rG3WVm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/components/columns.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/components/SelectColumn.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInputTrigger.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordFieldChip.tsx
msgid "Select"
msgstr "Kies"
@@ -14180,11 +14232,6 @@ msgstr ""
msgid "Set your application configuration variables"
msgstr "Stel jou toepassing konfigurasie veranderlikes"
#. js-lingui-id: 9qcWSO
#: src/pages/settings/applications/components/SettingsApplicationRegistrationConfigVariableDetail.tsx
msgid "set-config-value"
msgstr ""
#. js-lingui-id: dQsqpC
#: src/pages/onboarding/CreateWorkspace.tsx
msgid "Setting up your database..."
@@ -14264,6 +14311,11 @@ msgstr ""
msgid "Share your app to other workspaces without pushing it on the marketplace"
msgstr ""
#. js-lingui-id: 9ZxCpH
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Shared addresses your workspace uses to send and receive email."
msgstr ""
#. js-lingui-id: NyIsOu
#: src/pages/settings/applications/components/SettingsApplicationRegistrationShareLinkButtons.tsx
msgid "Sharing link copied to clipboard"
@@ -14735,6 +14787,7 @@ msgstr "Staat"
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminInstanceStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/signing-keys/components/SettingsAdminSigningKeysTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
@@ -15137,6 +15190,8 @@ msgstr "Oortjie Instellings"
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
@@ -15228,6 +15283,16 @@ msgstr "Teks na knipbord gekopieer"
msgid "Text Editor"
msgstr "Teksredigeerder"
#. js-lingui-id: KJjmr/
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "The address your workspace sends and receives email from."
msgstr ""
#. js-lingui-id: Z4WP0F
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "The address your workspace will send and receive email from (e.g. support@mycompany.com). Outbound sending requires the domain to be verified in Outbound Domains."
msgstr ""
#. js-lingui-id: oVH0Mt
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
msgid "The API endpoint for your OpenAI-compatible provider"
@@ -15303,11 +15368,6 @@ msgstr ""
msgid "The email associated to your account"
msgstr "Die e-pos geassosieerd met jou rekening"
#. js-lingui-id: TQGLgF
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "The external address whose mail is forwarded into the workspace."
msgstr ""
#. js-lingui-id: diO3fm
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
msgid "The icon your workflow trigger will display in the command menu"
@@ -16104,6 +16164,7 @@ msgstr "Twee-faktor magtiging-setup suksesvol voltooi!"
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
@@ -16819,8 +16880,6 @@ msgstr "Geldigheidstoken is suksesvol herlaai"
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableValueInput.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableValueInput.tsx
#: src/modules/page-layout/widgets/graph/graph-widget-gauge-chart/components/GraphWidgetGaugeChart.tsx
#: src/modules/page-layout/widgets/graph/graph-widget-gauge-chart/components/GraphWidgetGaugeChart.tsx
msgid "Value"
msgstr "Waarde"
@@ -16870,6 +16929,11 @@ msgstr "Verifieer"
msgid "Verify code from the app"
msgstr "Verifieer kode vanaf die app"
#. js-lingui-id: hdyekU
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Verify domains so the workspace can send outbound email through them."
msgstr ""
#. js-lingui-id: zS/rMV
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
msgid "Verify the code from the app"
@@ -17383,6 +17447,7 @@ msgid "Workflows"
msgstr "Werksvloeie"
#. js-lingui-id: pmUArF
#: src/pages/settings/SettingsWorkspaceEmail.tsx
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsUsageUserDetail.tsx
#: src/pages/settings/SettingsUsage.tsx
@@ -17536,11 +17601,6 @@ msgstr ""
msgid "Workspace views require manage views permission"
msgstr "Werkruimte-uitsigte vereis bestuur-uitsigte mag"
#. js-lingui-id: 9Bn3vI
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Workspace-level shared addresses that receive forwarded mail."
msgstr ""
#. js-lingui-id: pmt7u4
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
msgid "Workspaces"
@@ -17802,11 +17862,6 @@ msgstr "Jou ondernemingsfunksies sal gedeaktiveer word"
msgid "Your enterprise features will remain active until {cancelAtDate}."
msgstr "Jou ondernemingsfunksies sal aktief bly tot {cancelAtDate}."
#. js-lingui-id: 5TsUUL
#: src/modules/information-banner/components/enterprise/InformationBannerInvalidEnterpriseKey.tsx
msgid "Your enterprise key is no longer valid. Activate a new key to continue using enterprise features."
msgstr ""
#. js-lingui-id: NTpA4U
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise subscription has been canceled."
+129 -74
View File
@@ -161,6 +161,7 @@ msgstr "{0, plural, zero {ليس لديك إذن للوصول إلى حقل {fie
#. js-lingui-id: pZCK0D
#. placeholder {0}: registration.name
#: src/pages/settings/applications/components/SettingsApplicationRegistrationConfigVariableDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationConfigVariableDetail.tsx
msgid "{0} - Config"
msgstr ""
@@ -210,6 +211,12 @@ msgstr ""
msgid "{0} widgets"
msgstr ""
#. js-lingui-id: 2UKfhY
#. placeholder {0}: selectedItemNames.length
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInput.tsx
msgid "{0} workspace members"
msgstr ""
#. js-lingui-id: xTgz1F
#. placeholder {1}: provider.displayName
#: src/pages/settings/applications/tabs/SettingsApplicationConnectionsSection.tsx
@@ -221,6 +228,11 @@ msgstr ""
msgid "{advancedFilterCount, plural, one {{advancedFilterCount} advanced rule} other {{advancedFilterCount} advanced rules}}"
msgstr "{advancedFilterCount, plural, zero {{advancedFilterCount} قواعد متقدمة} one {{advancedFilterCount} قاعدة متقدمة} two {{advancedFilterCount} قاعدتان متقدمتان} few {{advancedFilterCount} قواعد متقدمة} many {{advancedFilterCount} قواعد متقدمة} other {{advancedFilterCount} قواعد متقدمة}}"
#. js-lingui-id: XWd9bY
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "{agentCount, plural, one {{agentCount} agent} other {{agentCount} agents}}"
msgstr ""
#. js-lingui-id: WGnqk6
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/hooks/useWorkflowAiAgentPermissionActions.ts
msgid "{agentDisplayName} role ({agentIdPrefix})"
@@ -236,6 +248,11 @@ msgstr "دور الوكيل {agentLabel}"
msgid "{aggregateLabel} of {fieldLabel}"
msgstr "{aggregateLabel} من {fieldLabel}"
#. js-lingui-id: WhHyQh
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "{apiKeyCount, plural, one {{apiKeyCount} API key} other {{apiKeyCount} API keys}}"
msgstr ""
#. js-lingui-id: u1mVnV
#: src/modules/marketplace/components/SettingsApplicationInstallPermissionValidationModal.tsx
msgid "{appDisplayName} would like to:"
@@ -395,6 +412,11 @@ msgstr "{jobCount, plural, zero {سيتم إعادة محاولة {jobCount} و
msgid "{label} list"
msgstr ""
#. js-lingui-id: 1DrH/j
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "{memberCount, plural, one {{memberCount} member} other {{memberCount} members}}"
msgstr ""
#. js-lingui-id: Y32cMj
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadIntermediaryMessages.tsx
msgid "{messagesLength} emails"
@@ -523,6 +545,11 @@ msgstr ""
msgid "{visibleFieldsCount} shown"
msgstr "{visibleFieldsCount, plural, zero {لا حقول معروضة} one {حقل واحد معروض} two {حقلان معروضان} few {# حقول معروضة} many {# حقلًا معروضًا} other {# حقل معروض}}"
#. js-lingui-id: WjjsAL
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
msgid "{visibleFieldsCount} visible fields"
msgstr ""
#. js-lingui-id: riMLMq
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowIteratorSubStepSwitcher.tsx
msgid "{workflowRunIteratorSubStepIterationsCount, plural, one {# item} other {# items}}"
@@ -901,7 +928,6 @@ msgstr "الإجراءات التي يمكن للمستخدمين تنفيذها
#: src/modules/settings/data-model/objects/components/SettingsObjectInactiveMenuDropDown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
#: src/modules/information-banner/components/enterprise/InformationBannerInvalidEnterpriseKey.tsx
msgid "Activate"
msgstr "تفعيل"
@@ -1036,16 +1062,15 @@ msgstr "أضف تعليمات مخصصة خاصة بمساحة العمل لدي
msgid "Add Custom Provider"
msgstr "إضافة مزود مخصص"
#. js-lingui-id: 33pO0a
#. js-lingui-id: +Gf1IN
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Add email group"
msgid "Add email handle"
msgstr ""
#. js-lingui-id: 3O3+7h
#: src/pages/settings/emailing-domains/SettingsEmailingDomains.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomains.tsx
msgid "Add Emailing Domain"
msgstr "أضف نطاق البريد الإلكتروني"
#. js-lingui-id: HMM0Sc
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Add emailing domain"
msgstr ""
#. js-lingui-id: DpV70M
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
@@ -1312,7 +1337,6 @@ msgid "Added {beautifiedCreatedAt}"
msgstr "تم الإضافة {beautifiedCreatedAt}"
#. js-lingui-id: jEHeq+
#: src/pages/settings/emailing-domains/SettingsEmailingDomains.tsx
#: src/modules/settings/security/components/approvedAccessDomains/SettingsApprovedAccessDomainsListCard.tsx
msgid "Added {beautifyPastDateRelative}"
msgstr "تم الإضافة {beautifyPastDateRelative}"
@@ -1361,6 +1385,7 @@ msgstr ""
#. js-lingui-id: 2GX/U+
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationConfigVariableDetail.tsx
msgid "Admin Panel - Apps"
msgstr ""
@@ -1954,6 +1979,7 @@ msgstr "حدث خطأ غير متوقع. يرجى المحاولة مرة أخر
#. js-lingui-id: HZFm5R
#: src/utils/date-utils.ts
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
#: src/modules/auth/sign-in-up/components/FooterNote.tsx
msgid "and"
msgstr "و"
@@ -2188,7 +2214,6 @@ msgstr ""
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/applications/SettingsApplicationConnectionDetail.tsx
#: src/pages/settings/applications/SettingsApplicationCommandMenuItemDetail.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Applications"
msgstr "تطبيقات"
@@ -2220,7 +2245,6 @@ msgid "Approved Domains"
msgstr "النطاقات المعتمدة"
#. js-lingui-id: VDvaN2
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/domains/components/SettingPublicDomain.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
@@ -2257,9 +2281,15 @@ msgstr "لا يمكن معاينة ملفات الأرشيف. يرجى تنزي
msgid "Archived"
msgstr ""
#. js-lingui-id: mk25CW
#. js-lingui-id: Yzbh3i
#. placeholder {0}: emailingDomain.domain
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
msgid "Are you sure you want to delete {0}? Outbound mail through this domain will stop working."
msgstr ""
#. js-lingui-id: Faev6R
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Are you sure you want to delete {sourceHandle}? Forwarded emails will no longer arrive in this workspace."
msgid "Are you sure you want to delete {sourceHandle}? Inbound mail forwarded to this address and outbound replies from it will stop working."
msgstr ""
#. js-lingui-id: 4CHeVx
@@ -3509,6 +3539,11 @@ msgstr "محرر الشفرات"
msgid "Code Execution"
msgstr "تنفيذ التعليمات البرمجية"
#. js-lingui-id: T9qjpu
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Code Interpreter"
msgstr ""
#. js-lingui-id: bKJYIa
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionCodeEditorTab.tsx
msgid "Code your function"
@@ -3723,11 +3758,6 @@ msgstr "تهيئة اتصال SSO"
msgid "Configure and customize your calendar preferences."
msgstr "قم بتهيئة وتخصيص تفضيلات التقويم الخاصة بك."
#. js-lingui-id: 5i71HM
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Configure and verify domains for emailing from this workspace."
msgstr "تهيئة والتحقق من النطاقات لإرسال البريد الإلكتروني من هذه المساحة."
#. js-lingui-id: 6MDr1S
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure CalDAV settings to sync your calendar events."
@@ -3816,10 +3846,15 @@ msgstr "تأكيد"
msgid "Confirm changing your current resource credit allocation."
msgstr ""
#. js-lingui-id: FbJ7Si
#. js-lingui-id: SU6Tym
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
msgstr "تأكيد حذف دور {roleName}؟ لا يمكن التراجع عن هذا الإجراء. سيتم إعادة تعيين جميع الأعضاء إلى الدور الافتراضي."
msgid "Confirm deletion of {roleName} role? This cannot be undone."
msgstr ""
#. js-lingui-id: W7S+Tm
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. {reassignSubject} will be reassigned to the default role."
msgstr ""
#. js-lingui-id: kZkFSm
#: src/modules/settings/billing/components/internal/ResourceCreditPriceSelector.tsx
@@ -5089,6 +5124,8 @@ msgstr "حذف"
#. js-lingui-id: cnGeoo
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -5110,7 +5147,6 @@ msgstr "حذف"
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
#: src/modules/settings/emailing-domains/components/SettingsEmailingDomainRowDropdownMenu.tsx
#: src/modules/settings/domains/components/SettingPublicDomainRowDropdownMenu.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -5194,9 +5230,14 @@ msgstr "حذف التطبيق"
msgid "Delete chat"
msgstr ""
#. js-lingui-id: /BTna7
#. js-lingui-id: cC09EO
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Delete email group"
msgid "Delete email handle"
msgstr ""
#. js-lingui-id: yZyuut
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
msgid "Delete emailing domain"
msgstr ""
#. js-lingui-id: gf2eXy
@@ -5537,6 +5578,7 @@ msgstr "لا يحتوي على"
#. js-lingui-id: EoKe5U
#: src/pages/settings/security/SettingsSecurityApprovedAccessDomain.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Domain"
msgstr "النطاق"
@@ -5903,9 +5945,14 @@ msgid "else if"
msgstr "وإلا إذا"
#. js-lingui-id: O3oNi5
#: src/pages/settings/SettingsWorkspaceEmail.tsx
#: src/pages/settings/SettingsWorkspaceEmail.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/members/tabs/SettingsWorkspaceMembersTeamTab.tsx
#: src/pages/settings/members/tabs/SettingsWorkspaceMembersInviteTab.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
#: src/pages/auth/PasswordReset.tsx
@@ -5914,7 +5961,9 @@ msgstr "وإلا إذا"
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTableHeader.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
#: src/modules/settings/members/components/MemberInfosTab.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
#: src/modules/object-record/record-field/ui/meta-types/input/components/EmailsFieldInput.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpEmailField.tsx
msgid "Email"
@@ -5943,9 +5992,9 @@ msgstr "تم نسخ البريد الإلكتروني إلى الحافظة"
msgid "Email Editor"
msgstr "محرر البريد الإلكتروني"
#. js-lingui-id: KQM9eG
#. js-lingui-id: nsVRM/
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Email Groups"
msgid "Email Handles"
msgstr ""
#. js-lingui-id: lfQsvW
@@ -6015,14 +6064,12 @@ msgid "Emailing domain created successfully. Please verify the domain to start u
msgstr "تم إنشاء نطاق البريد الإلكتروني بنجاح. يرجى التحقق من النطاق للبدء في استخدامه."
#. js-lingui-id: XDpopO
#: src/modules/settings/emailing-domains/components/SettingsEmailingDomainRowDropdownMenu.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
msgid "Emailing domain deleted successfully"
msgstr "تم حذف نطاق البريد الإلكتروني بنجاح"
#. js-lingui-id: axQccV
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Emailing Domains"
msgstr "نطاقات البريد الإلكتروني"
@@ -6200,6 +6247,11 @@ msgstr "أدخل رقمًا"
msgid "Enter a UUID"
msgstr "أدخل UUID"
#. js-lingui-id: 0AYT5C
#: src/modules/settings/application-registrations/components/ApplicationRegistrationConfigVariableEditForm.tsx
msgid "Enter a value"
msgstr ""
#. js-lingui-id: oiVP/+
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableValueInput.tsx
msgid "Enter a value to store in database"
@@ -6344,11 +6396,6 @@ msgstr ""
msgid "Enter the credentials to set the connection"
msgstr "أدخل بيانات الاعتماد لتعيين الاتصال"
#. js-lingui-id: PTGfBH
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "Enter the email address you want to forward emails from (e.g. support@mycompany.com)."
msgstr ""
#. js-lingui-id: rGWgcm
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Enter the infos to set the connection"
@@ -6955,9 +7002,9 @@ msgstr "فشل في إضافة النموذج"
msgid "Failed to add provider"
msgstr "فشل في إضافة المزود"
#. js-lingui-id: d+6i8z
#. js-lingui-id: L9UnOU
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "Failed to create email group channel. Email group may not be configured on this server."
msgid "Failed to create email handle. Email handles may not be configured on this server."
msgstr ""
#. js-lingui-id: WM7GKt
@@ -6965,9 +7012,9 @@ msgstr ""
msgid "Failed to create tool"
msgstr "فشل إنشاء الأداة"
#. js-lingui-id: W4hzLB
#. js-lingui-id: lWoewm
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Failed to delete email group channel."
msgid "Failed to delete email handle."
msgstr ""
#. js-lingui-id: pUligB
@@ -7293,7 +7340,9 @@ msgstr "حقول"
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.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/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
@@ -7682,16 +7731,9 @@ msgstr "اسم الوظيفة"
msgid "Functions - Settings"
msgstr "وظائف - إعدادات"
#. js-lingui-id: vYj1cC
#: src/modules/side-panel/pages/page-layout/constants/GraphTypeInformation.ts
#: src/modules/page-layout/utils/getWidgetTitle.ts
msgid "Gauge Chart"
msgstr "الرسم البياني القياسي"
#. js-lingui-id: Weq9zb
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
#: src/pages/settings/applications/components/SettingsApplicationRegistrationGeneralInfo.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationDetail.tsx
@@ -7699,7 +7741,6 @@ msgstr "الرسم البياني القياسي"
#: src/modules/settings/domains/components/SettingsSubdomain.tsx
#: src/modules/settings/domains/components/SettingsCustomDomain.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroupsForDisplay.ts
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
msgid "General"
@@ -8656,10 +8697,11 @@ msgstr "بريد إلكتروني أو نطاق غير صالح"
msgid "Invalid email verification link."
msgstr "رابط التحقق من البريد الإلكتروني غير صالح."
#. js-lingui-id: uzxr9u
#. js-lingui-id: 4D6/HO
#. placeholder {0}: samlMetadataParsed.reason
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Invalid File"
msgstr "ملف غير صالح"
msgid "Invalid file: {0}"
msgstr ""
#. js-lingui-id: 04zLGG
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
@@ -9778,6 +9820,8 @@ msgstr "خادم MCP"
#. js-lingui-id: upbzgm
#: src/modules/views/hooks/useComputeRecordRelationFilterLabelValue.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionValueInput.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInput.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInput.tsx
msgid "Me"
msgstr "أنا"
@@ -10349,10 +10393,10 @@ msgstr "محادثة جديدة"
msgid "New Email"
msgstr ""
#. js-lingui-id: TmlJkc
#. js-lingui-id: VJZNJt
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "New Email Group"
msgid "New Email Handle"
msgstr ""
#. js-lingui-id: wqoYqp
@@ -11687,9 +11731,11 @@ msgstr "تنظيم"
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationConfigVariableDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/sign-in-background-mock/components/BackgroundMockNavigationDrawer.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
@@ -13355,6 +13401,11 @@ msgstr ""
msgid "Run a workflow and return here to view its executions"
msgstr "\\\\"
#. js-lingui-id: rRyKdg
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Run code to analyze files and data"
msgstr ""
#. js-lingui-id: UPaWvi
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTestTab.tsx
msgid "Run Function"
@@ -13840,6 +13891,7 @@ msgstr ""
#. js-lingui-id: rG3WVm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/components/columns.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/components/SelectColumn.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInputTrigger.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordFieldChip.tsx
msgid "Select"
msgstr "اختيار"
@@ -14180,11 +14232,6 @@ msgstr ""
msgid "Set your application configuration variables"
msgstr "قم بتعيين متغيرات تكوين التطبيق الخاص بك"
#. js-lingui-id: 9qcWSO
#: src/pages/settings/applications/components/SettingsApplicationRegistrationConfigVariableDetail.tsx
msgid "set-config-value"
msgstr ""
#. js-lingui-id: dQsqpC
#: src/pages/onboarding/CreateWorkspace.tsx
msgid "Setting up your database..."
@@ -14264,6 +14311,11 @@ msgstr ""
msgid "Share your app to other workspaces without pushing it on the marketplace"
msgstr ""
#. js-lingui-id: 9ZxCpH
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Shared addresses your workspace uses to send and receive email."
msgstr ""
#. js-lingui-id: NyIsOu
#: src/pages/settings/applications/components/SettingsApplicationRegistrationShareLinkButtons.tsx
msgid "Sharing link copied to clipboard"
@@ -14735,6 +14787,7 @@ msgstr "الولاية"
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminInstanceStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/signing-keys/components/SettingsAdminSigningKeysTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
@@ -15137,6 +15190,8 @@ msgstr "إعدادات علامة التبويب"
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
@@ -15228,6 +15283,16 @@ msgstr "تم نسخ النص إلى الحافظة"
msgid "Text Editor"
msgstr "محرر النصوص"
#. js-lingui-id: KJjmr/
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "The address your workspace sends and receives email from."
msgstr ""
#. js-lingui-id: Z4WP0F
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "The address your workspace will send and receive email from (e.g. support@mycompany.com). Outbound sending requires the domain to be verified in Outbound Domains."
msgstr ""
#. js-lingui-id: oVH0Mt
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
msgid "The API endpoint for your OpenAI-compatible provider"
@@ -15303,11 +15368,6 @@ msgstr ""
msgid "The email associated to your account"
msgstr "البريد الإلكتروني المرتبط بحسابك"
#. js-lingui-id: TQGLgF
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "The external address whose mail is forwarded into the workspace."
msgstr ""
#. js-lingui-id: diO3fm
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
msgid "The icon your workflow trigger will display in the command menu"
@@ -16104,6 +16164,7 @@ msgstr "تم إكمال إعداد المصادقة الثنائية بنجاح!
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
@@ -16819,8 +16880,6 @@ msgstr "تم تحديث رمز الصلاحية بنجاح"
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableValueInput.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableValueInput.tsx
#: src/modules/page-layout/widgets/graph/graph-widget-gauge-chart/components/GraphWidgetGaugeChart.tsx
#: src/modules/page-layout/widgets/graph/graph-widget-gauge-chart/components/GraphWidgetGaugeChart.tsx
msgid "Value"
msgstr "القيمة"
@@ -16870,6 +16929,11 @@ msgstr "التحقق"
msgid "Verify code from the app"
msgstr "تحقق من الرمز من التطبيق"
#. js-lingui-id: hdyekU
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Verify domains so the workspace can send outbound email through them."
msgstr ""
#. js-lingui-id: zS/rMV
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
msgid "Verify the code from the app"
@@ -17381,6 +17445,7 @@ msgid "Workflows"
msgstr "سير العمل"
#. js-lingui-id: pmUArF
#: src/pages/settings/SettingsWorkspaceEmail.tsx
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsUsageUserDetail.tsx
#: src/pages/settings/SettingsUsage.tsx
@@ -17534,11 +17599,6 @@ msgstr ""
msgid "Workspace views require manage views permission"
msgstr "تتطلب عروض مساحة العمل أذونات لإدارة العروض"
#. js-lingui-id: 9Bn3vI
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Workspace-level shared addresses that receive forwarded mail."
msgstr ""
#. js-lingui-id: pmt7u4
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
msgid "Workspaces"
@@ -17800,11 +17860,6 @@ msgstr "سيتم تعطيل ميزات Enterprise لديك"
msgid "Your enterprise features will remain active until {cancelAtDate}."
msgstr "ستظل ميزات Enterprise لديك نشطة حتى {cancelAtDate}."
#. js-lingui-id: 5TsUUL
#: src/modules/information-banner/components/enterprise/InformationBannerInvalidEnterpriseKey.tsx
msgid "Your enterprise key is no longer valid. Activate a new key to continue using enterprise features."
msgstr ""
#. js-lingui-id: NTpA4U
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise subscription has been canceled."
+129 -74
View File
@@ -161,6 +161,7 @@ msgstr "{0, plural, one {No teniu permís per accedir al camp {fieldsList}} othe
#. js-lingui-id: pZCK0D
#. placeholder {0}: registration.name
#: src/pages/settings/applications/components/SettingsApplicationRegistrationConfigVariableDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationConfigVariableDetail.tsx
msgid "{0} - Config"
msgstr ""
@@ -210,6 +211,12 @@ msgstr ""
msgid "{0} widgets"
msgstr ""
#. js-lingui-id: 2UKfhY
#. placeholder {0}: selectedItemNames.length
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInput.tsx
msgid "{0} workspace members"
msgstr ""
#. js-lingui-id: xTgz1F
#. placeholder {1}: provider.displayName
#: src/pages/settings/applications/tabs/SettingsApplicationConnectionsSection.tsx
@@ -221,6 +228,11 @@ msgstr ""
msgid "{advancedFilterCount, plural, one {{advancedFilterCount} advanced rule} other {{advancedFilterCount} advanced rules}}"
msgstr "{advancedFilterCount, plural, one {{advancedFilterCount} norma avançada} other {{advancedFilterCount} normes avançades}}"
#. js-lingui-id: XWd9bY
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "{agentCount, plural, one {{agentCount} agent} other {{agentCount} agents}}"
msgstr ""
#. js-lingui-id: WGnqk6
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/hooks/useWorkflowAiAgentPermissionActions.ts
msgid "{agentDisplayName} role ({agentIdPrefix})"
@@ -236,6 +248,11 @@ msgstr "Rol d'agent {agentLabel}"
msgid "{aggregateLabel} of {fieldLabel}"
msgstr "{aggregateLabel} de {fieldLabel}"
#. js-lingui-id: WhHyQh
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "{apiKeyCount, plural, one {{apiKeyCount} API key} other {{apiKeyCount} API keys}}"
msgstr ""
#. js-lingui-id: u1mVnV
#: src/modules/marketplace/components/SettingsApplicationInstallPermissionValidationModal.tsx
msgid "{appDisplayName} would like to:"
@@ -395,6 +412,11 @@ msgstr "{jobCount, plural, one {Això tornarà a intentar la feina seleccionada.
msgid "{label} list"
msgstr ""
#. js-lingui-id: 1DrH/j
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "{memberCount, plural, one {{memberCount} member} other {{memberCount} members}}"
msgstr ""
#. js-lingui-id: Y32cMj
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadIntermediaryMessages.tsx
msgid "{messagesLength} emails"
@@ -523,6 +545,11 @@ msgstr ""
msgid "{visibleFieldsCount} shown"
msgstr "{visibleFieldsCount} mostrats"
#. js-lingui-id: WjjsAL
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
msgid "{visibleFieldsCount} visible fields"
msgstr ""
#. js-lingui-id: riMLMq
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowIteratorSubStepSwitcher.tsx
msgid "{workflowRunIteratorSubStepIterationsCount, plural, one {# item} other {# items}}"
@@ -901,7 +928,6 @@ msgstr "Accions que poden realitzar els usuaris en aquest objecte"
#: src/modules/settings/data-model/objects/components/SettingsObjectInactiveMenuDropDown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
#: src/modules/information-banner/components/enterprise/InformationBannerInvalidEnterpriseKey.tsx
msgid "Activate"
msgstr "Activa"
@@ -1036,16 +1062,15 @@ msgstr "Afegeix instruccions personalitzades específiques del teu espai de treb
msgid "Add Custom Provider"
msgstr "Afegeix un proveïdor personalitzat"
#. js-lingui-id: 33pO0a
#. js-lingui-id: +Gf1IN
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Add email group"
msgid "Add email handle"
msgstr ""
#. js-lingui-id: 3O3+7h
#: src/pages/settings/emailing-domains/SettingsEmailingDomains.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomains.tsx
msgid "Add Emailing Domain"
msgstr "Afegeix domini de correu electrònic"
#. js-lingui-id: HMM0Sc
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Add emailing domain"
msgstr ""
#. js-lingui-id: DpV70M
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
@@ -1312,7 +1337,6 @@ msgid "Added {beautifiedCreatedAt}"
msgstr "Afegit {beautifiedCreatedAt}"
#. js-lingui-id: jEHeq+
#: src/pages/settings/emailing-domains/SettingsEmailingDomains.tsx
#: src/modules/settings/security/components/approvedAccessDomains/SettingsApprovedAccessDomainsListCard.tsx
msgid "Added {beautifyPastDateRelative}"
msgstr "Afegit {beautifyPastDateRelative}"
@@ -1361,6 +1385,7 @@ msgstr ""
#. js-lingui-id: 2GX/U+
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationConfigVariableDetail.tsx
msgid "Admin Panel - Apps"
msgstr ""
@@ -1954,6 +1979,7 @@ msgstr "S'ha produït un error inesperat. Torna-ho a intentar."
#. js-lingui-id: HZFm5R
#: src/utils/date-utils.ts
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
#: src/modules/auth/sign-in-up/components/FooterNote.tsx
msgid "and"
msgstr "i"
@@ -2188,7 +2214,6 @@ msgstr ""
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/applications/SettingsApplicationConnectionDetail.tsx
#: src/pages/settings/applications/SettingsApplicationCommandMenuItemDetail.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Applications"
msgstr "Aplicacions"
@@ -2220,7 +2245,6 @@ msgid "Approved Domains"
msgstr "Dominis Aprovats"
#. js-lingui-id: VDvaN2
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/domains/components/SettingPublicDomain.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
@@ -2257,9 +2281,15 @@ msgstr "Els fitxers comprimits no es poden previsualitzar. Si us plau, descarreg
msgid "Archived"
msgstr ""
#. js-lingui-id: mk25CW
#. js-lingui-id: Yzbh3i
#. placeholder {0}: emailingDomain.domain
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
msgid "Are you sure you want to delete {0}? Outbound mail through this domain will stop working."
msgstr ""
#. js-lingui-id: Faev6R
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Are you sure you want to delete {sourceHandle}? Forwarded emails will no longer arrive in this workspace."
msgid "Are you sure you want to delete {sourceHandle}? Inbound mail forwarded to this address and outbound replies from it will stop working."
msgstr ""
#. js-lingui-id: 4CHeVx
@@ -3509,6 +3539,11 @@ msgstr "Editor de codi"
msgid "Code Execution"
msgstr "Execució de codi"
#. js-lingui-id: T9qjpu
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Code Interpreter"
msgstr ""
#. js-lingui-id: bKJYIa
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionCodeEditorTab.tsx
msgid "Code your function"
@@ -3723,11 +3758,6 @@ msgstr "Configureu una connexió SSO"
msgid "Configure and customize your calendar preferences."
msgstr "Configureu i personalitzeu les vostres preferències del calendari."
#. js-lingui-id: 5i71HM
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Configure and verify domains for emailing from this workspace."
msgstr "Configura i verifica dominis per enviar correus des d'aquest espai de treball."
#. js-lingui-id: 6MDr1S
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure CalDAV settings to sync your calendar events."
@@ -3816,10 +3846,15 @@ msgstr "Confirmar"
msgid "Confirm changing your current resource credit allocation."
msgstr ""
#. js-lingui-id: FbJ7Si
#. js-lingui-id: SU6Tym
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
msgstr "Confirmeu la supressió del rol {roleName}? Aquesta acció no es pot desfer. Tots els membres seran reassignats al rol predeterminat."
msgid "Confirm deletion of {roleName} role? This cannot be undone."
msgstr ""
#. js-lingui-id: W7S+Tm
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. {reassignSubject} will be reassigned to the default role."
msgstr ""
#. js-lingui-id: kZkFSm
#: src/modules/settings/billing/components/internal/ResourceCreditPriceSelector.tsx
@@ -5089,6 +5124,8 @@ msgstr "elimina"
#. js-lingui-id: cnGeoo
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -5110,7 +5147,6 @@ msgstr "elimina"
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
#: src/modules/settings/emailing-domains/components/SettingsEmailingDomainRowDropdownMenu.tsx
#: src/modules/settings/domains/components/SettingPublicDomainRowDropdownMenu.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -5194,9 +5230,14 @@ msgstr "Suprimeix l'aplicació"
msgid "Delete chat"
msgstr ""
#. js-lingui-id: /BTna7
#. js-lingui-id: cC09EO
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Delete email group"
msgid "Delete email handle"
msgstr ""
#. js-lingui-id: yZyuut
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
msgid "Delete emailing domain"
msgstr ""
#. js-lingui-id: gf2eXy
@@ -5537,6 +5578,7 @@ msgstr "No conté"
#. js-lingui-id: EoKe5U
#: src/pages/settings/security/SettingsSecurityApprovedAccessDomain.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Domain"
msgstr "Domini"
@@ -5903,9 +5945,14 @@ msgid "else if"
msgstr "altrament, si"
#. js-lingui-id: O3oNi5
#: src/pages/settings/SettingsWorkspaceEmail.tsx
#: src/pages/settings/SettingsWorkspaceEmail.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/members/tabs/SettingsWorkspaceMembersTeamTab.tsx
#: src/pages/settings/members/tabs/SettingsWorkspaceMembersInviteTab.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
#: src/pages/auth/PasswordReset.tsx
@@ -5914,7 +5961,9 @@ msgstr "altrament, si"
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTableHeader.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
#: src/modules/settings/members/components/MemberInfosTab.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
#: src/modules/object-record/record-field/ui/meta-types/input/components/EmailsFieldInput.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpEmailField.tsx
msgid "Email"
@@ -5943,9 +5992,9 @@ msgstr "Correu electrònic copiat al porta-retalls"
msgid "Email Editor"
msgstr "Editor de correu electrònic"
#. js-lingui-id: KQM9eG
#. js-lingui-id: nsVRM/
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Email Groups"
msgid "Email Handles"
msgstr ""
#. js-lingui-id: lfQsvW
@@ -6015,14 +6064,12 @@ msgid "Emailing domain created successfully. Please verify the domain to start u
msgstr "Domini de correu creat correctament. Si us plau, verifica el domini per començar a utilitzar-lo."
#. js-lingui-id: XDpopO
#: src/modules/settings/emailing-domains/components/SettingsEmailingDomainRowDropdownMenu.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
msgid "Emailing domain deleted successfully"
msgstr "Domini de correu eliminat correctament"
#. js-lingui-id: axQccV
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Emailing Domains"
msgstr "Dominis de correu"
@@ -6200,6 +6247,11 @@ msgstr "Introdueix un número"
msgid "Enter a UUID"
msgstr "Introdueix un UUID"
#. js-lingui-id: 0AYT5C
#: src/modules/settings/application-registrations/components/ApplicationRegistrationConfigVariableEditForm.tsx
msgid "Enter a value"
msgstr ""
#. js-lingui-id: oiVP/+
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableValueInput.tsx
msgid "Enter a value to store in database"
@@ -6344,11 +6396,6 @@ msgstr ""
msgid "Enter the credentials to set the connection"
msgstr "Introdueix les credencials per establir la connexió"
#. js-lingui-id: PTGfBH
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "Enter the email address you want to forward emails from (e.g. support@mycompany.com)."
msgstr ""
#. js-lingui-id: rGWgcm
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Enter the infos to set the connection"
@@ -6955,9 +7002,9 @@ msgstr "No s'ha pogut afegir el model"
msgid "Failed to add provider"
msgstr "No s'ha pogut afegir el proveïdor"
#. js-lingui-id: d+6i8z
#. js-lingui-id: L9UnOU
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "Failed to create email group channel. Email group may not be configured on this server."
msgid "Failed to create email handle. Email handles may not be configured on this server."
msgstr ""
#. js-lingui-id: WM7GKt
@@ -6965,9 +7012,9 @@ msgstr ""
msgid "Failed to create tool"
msgstr "No s'ha pogut crear l'eina"
#. js-lingui-id: W4hzLB
#. js-lingui-id: lWoewm
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Failed to delete email group channel."
msgid "Failed to delete email handle."
msgstr ""
#. js-lingui-id: pUligB
@@ -7293,7 +7340,9 @@ msgstr "camps"
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.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/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
@@ -7682,16 +7731,9 @@ msgstr "Nom de la funció"
msgid "Functions - Settings"
msgstr "Funcions - Configuració"
#. js-lingui-id: vYj1cC
#: src/modules/side-panel/pages/page-layout/constants/GraphTypeInformation.ts
#: src/modules/page-layout/utils/getWidgetTitle.ts
msgid "Gauge Chart"
msgstr "Gràfic de mesurador"
#. js-lingui-id: Weq9zb
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
#: src/pages/settings/applications/components/SettingsApplicationRegistrationGeneralInfo.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationDetail.tsx
@@ -7699,7 +7741,6 @@ msgstr "Gràfic de mesurador"
#: src/modules/settings/domains/components/SettingsSubdomain.tsx
#: src/modules/settings/domains/components/SettingsCustomDomain.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroupsForDisplay.ts
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
msgid "General"
@@ -8656,10 +8697,11 @@ msgstr "Correu electrònic o domini no vàlids"
msgid "Invalid email verification link."
msgstr "Enllaç de verificació del correu electrònic invàlid."
#. js-lingui-id: uzxr9u
#. js-lingui-id: 4D6/HO
#. placeholder {0}: samlMetadataParsed.reason
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Invalid File"
msgstr "Fitxer invàlid"
msgid "Invalid file: {0}"
msgstr ""
#. js-lingui-id: 04zLGG
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
@@ -9778,6 +9820,8 @@ msgstr "Servidor MCP"
#. js-lingui-id: upbzgm
#: src/modules/views/hooks/useComputeRecordRelationFilterLabelValue.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionValueInput.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInput.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInput.tsx
msgid "Me"
msgstr "Jo"
@@ -10349,10 +10393,10 @@ msgstr "Nova conversa"
msgid "New Email"
msgstr ""
#. js-lingui-id: TmlJkc
#. js-lingui-id: VJZNJt
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "New Email Group"
msgid "New Email Handle"
msgstr ""
#. js-lingui-id: wqoYqp
@@ -11687,9 +11731,11 @@ msgstr "Organitza"
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationConfigVariableDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/sign-in-background-mock/components/BackgroundMockNavigationDrawer.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
@@ -13355,6 +13401,11 @@ msgstr ""
msgid "Run a workflow and return here to view its executions"
msgstr "Executa un workflow i torna aquí per veure les seves execucions"
#. js-lingui-id: rRyKdg
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Run code to analyze files and data"
msgstr ""
#. js-lingui-id: UPaWvi
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTestTab.tsx
msgid "Run Function"
@@ -13840,6 +13891,7 @@ msgstr ""
#. js-lingui-id: rG3WVm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/components/columns.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/components/SelectColumn.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInputTrigger.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordFieldChip.tsx
msgid "Select"
msgstr "Seleccionar"
@@ -14180,11 +14232,6 @@ msgstr ""
msgid "Set your application configuration variables"
msgstr "Configura les variables de configuració de la teva aplicació"
#. js-lingui-id: 9qcWSO
#: src/pages/settings/applications/components/SettingsApplicationRegistrationConfigVariableDetail.tsx
msgid "set-config-value"
msgstr ""
#. js-lingui-id: dQsqpC
#: src/pages/onboarding/CreateWorkspace.tsx
msgid "Setting up your database..."
@@ -14264,6 +14311,11 @@ msgstr ""
msgid "Share your app to other workspaces without pushing it on the marketplace"
msgstr ""
#. js-lingui-id: 9ZxCpH
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Shared addresses your workspace uses to send and receive email."
msgstr ""
#. js-lingui-id: NyIsOu
#: src/pages/settings/applications/components/SettingsApplicationRegistrationShareLinkButtons.tsx
msgid "Sharing link copied to clipboard"
@@ -14735,6 +14787,7 @@ msgstr "Estat"
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminInstanceStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/signing-keys/components/SettingsAdminSigningKeysTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
@@ -15137,6 +15190,8 @@ msgstr "Configuració de la pestanya"
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
@@ -15228,6 +15283,16 @@ msgstr "Text copiat al porta-retalls"
msgid "Text Editor"
msgstr "Editor de text"
#. js-lingui-id: KJjmr/
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "The address your workspace sends and receives email from."
msgstr ""
#. js-lingui-id: Z4WP0F
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "The address your workspace will send and receive email from (e.g. support@mycompany.com). Outbound sending requires the domain to be verified in Outbound Domains."
msgstr ""
#. js-lingui-id: oVH0Mt
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
msgid "The API endpoint for your OpenAI-compatible provider"
@@ -15303,11 +15368,6 @@ msgstr ""
msgid "The email associated to your account"
msgstr "El correu electrònic associat al vostre compte"
#. js-lingui-id: TQGLgF
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "The external address whose mail is forwarded into the workspace."
msgstr ""
#. js-lingui-id: diO3fm
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
msgid "The icon your workflow trigger will display in the command menu"
@@ -16104,6 +16164,7 @@ msgstr "Configuració de l'autenticació de dos factors completada amb èxit!"
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
@@ -16819,8 +16880,6 @@ msgstr "El testimoni de validesa s'ha actualitzat correctament"
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableValueInput.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableValueInput.tsx
#: src/modules/page-layout/widgets/graph/graph-widget-gauge-chart/components/GraphWidgetGaugeChart.tsx
#: src/modules/page-layout/widgets/graph/graph-widget-gauge-chart/components/GraphWidgetGaugeChart.tsx
msgid "Value"
msgstr "Valor"
@@ -16870,6 +16929,11 @@ msgstr "Verifica"
msgid "Verify code from the app"
msgstr "Verifica el codi de l'aplicació"
#. js-lingui-id: hdyekU
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Verify domains so the workspace can send outbound email through them."
msgstr ""
#. js-lingui-id: zS/rMV
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
msgid "Verify the code from the app"
@@ -17383,6 +17447,7 @@ msgid "Workflows"
msgstr "Fluxos de treball"
#. js-lingui-id: pmUArF
#: src/pages/settings/SettingsWorkspaceEmail.tsx
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsUsageUserDetail.tsx
#: src/pages/settings/SettingsUsage.tsx
@@ -17536,11 +17601,6 @@ msgstr ""
msgid "Workspace views require manage views permission"
msgstr "Les vistes d'espai de treball requereixen permís per gestionar vistes"
#. js-lingui-id: 9Bn3vI
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Workspace-level shared addresses that receive forwarded mail."
msgstr ""
#. js-lingui-id: pmt7u4
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
msgid "Workspaces"
@@ -17802,11 +17862,6 @@ msgstr "Les vostres funcionalitats Enterprise es desactivaran"
msgid "Your enterprise features will remain active until {cancelAtDate}."
msgstr "Les vostres funcionalitats Enterprise romandran actives fins al {cancelAtDate}."
#. js-lingui-id: 5TsUUL
#: src/modules/information-banner/components/enterprise/InformationBannerInvalidEnterpriseKey.tsx
msgid "Your enterprise key is no longer valid. Activate a new key to continue using enterprise features."
msgstr ""
#. js-lingui-id: NTpA4U
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise subscription has been canceled."
+129 -74
View File
@@ -161,6 +161,7 @@ msgstr "{0, plural, one {Nemáte povolení pro přístup k poli {fieldsList}} fe
#. js-lingui-id: pZCK0D
#. placeholder {0}: registration.name
#: src/pages/settings/applications/components/SettingsApplicationRegistrationConfigVariableDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationConfigVariableDetail.tsx
msgid "{0} - Config"
msgstr ""
@@ -210,6 +211,12 @@ msgstr ""
msgid "{0} widgets"
msgstr ""
#. js-lingui-id: 2UKfhY
#. placeholder {0}: selectedItemNames.length
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInput.tsx
msgid "{0} workspace members"
msgstr ""
#. js-lingui-id: xTgz1F
#. placeholder {1}: provider.displayName
#: src/pages/settings/applications/tabs/SettingsApplicationConnectionsSection.tsx
@@ -221,6 +228,11 @@ msgstr ""
msgid "{advancedFilterCount, plural, one {{advancedFilterCount} advanced rule} other {{advancedFilterCount} advanced rules}}"
msgstr "{advancedFilterCount, plural, one {{advancedFilterCount} pokročilé pravidlo} few {{advancedFilterCount} pokročilá pravidla} many {{advancedFilterCount} pokročilých pravidel} other {{advancedFilterCount} pokročilých pravidel}}"
#. js-lingui-id: XWd9bY
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "{agentCount, plural, one {{agentCount} agent} other {{agentCount} agents}}"
msgstr ""
#. js-lingui-id: WGnqk6
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/hooks/useWorkflowAiAgentPermissionActions.ts
msgid "{agentDisplayName} role ({agentIdPrefix})"
@@ -236,6 +248,11 @@ msgstr "Role agenta {agentLabel}"
msgid "{aggregateLabel} of {fieldLabel}"
msgstr "{aggregateLabel} z {fieldLabel}"
#. js-lingui-id: WhHyQh
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "{apiKeyCount, plural, one {{apiKeyCount} API key} other {{apiKeyCount} API keys}}"
msgstr ""
#. js-lingui-id: u1mVnV
#: src/modules/marketplace/components/SettingsApplicationInstallPermissionValidationModal.tsx
msgid "{appDisplayName} would like to:"
@@ -395,6 +412,11 @@ msgstr "{jobCount, plural, one {Tato akce znovu spustí vybranou úlohu. Bude sp
msgid "{label} list"
msgstr ""
#. js-lingui-id: 1DrH/j
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "{memberCount, plural, one {{memberCount} member} other {{memberCount} members}}"
msgstr ""
#. js-lingui-id: Y32cMj
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadIntermediaryMessages.tsx
msgid "{messagesLength} emails"
@@ -523,6 +545,11 @@ msgstr ""
msgid "{visibleFieldsCount} shown"
msgstr "Zobrazeno {visibleFieldsCount}"
#. js-lingui-id: WjjsAL
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
msgid "{visibleFieldsCount} visible fields"
msgstr ""
#. js-lingui-id: riMLMq
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowIteratorSubStepSwitcher.tsx
msgid "{workflowRunIteratorSubStepIterationsCount, plural, one {# item} other {# items}}"
@@ -901,7 +928,6 @@ msgstr "Akce, které uživatelé mohou provádět na tomto objektu"
#: src/modules/settings/data-model/objects/components/SettingsObjectInactiveMenuDropDown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
#: src/modules/information-banner/components/enterprise/InformationBannerInvalidEnterpriseKey.tsx
msgid "Activate"
msgstr "Aktivovat"
@@ -1036,16 +1062,15 @@ msgstr "Přidejte vlastní pokyny specifické pro váš pracovní prostor (přip
msgid "Add Custom Provider"
msgstr "Přidat vlastního poskytovatele"
#. js-lingui-id: 33pO0a
#. js-lingui-id: +Gf1IN
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Add email group"
msgid "Add email handle"
msgstr ""
#. js-lingui-id: 3O3+7h
#: src/pages/settings/emailing-domains/SettingsEmailingDomains.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomains.tsx
msgid "Add Emailing Domain"
msgstr "Přidat e-mailovou doménu"
#. js-lingui-id: HMM0Sc
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Add emailing domain"
msgstr ""
#. js-lingui-id: DpV70M
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
@@ -1312,7 +1337,6 @@ msgid "Added {beautifiedCreatedAt}"
msgstr "Přidáno {beautifiedCreatedAt}"
#. js-lingui-id: jEHeq+
#: src/pages/settings/emailing-domains/SettingsEmailingDomains.tsx
#: src/modules/settings/security/components/approvedAccessDomains/SettingsApprovedAccessDomainsListCard.tsx
msgid "Added {beautifyPastDateRelative}"
msgstr "Přidáno {beautifyPastDateRelative}"
@@ -1361,6 +1385,7 @@ msgstr ""
#. js-lingui-id: 2GX/U+
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationConfigVariableDetail.tsx
msgid "Admin Panel - Apps"
msgstr ""
@@ -1954,6 +1979,7 @@ msgstr "Došlo k neočekávané chybě. Zkuste to prosím znovu."
#. js-lingui-id: HZFm5R
#: src/utils/date-utils.ts
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
#: src/modules/auth/sign-in-up/components/FooterNote.tsx
msgid "and"
msgstr "a"
@@ -2188,7 +2214,6 @@ msgstr ""
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/applications/SettingsApplicationConnectionDetail.tsx
#: src/pages/settings/applications/SettingsApplicationCommandMenuItemDetail.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Applications"
msgstr "Aplikace"
@@ -2220,7 +2245,6 @@ msgid "Approved Domains"
msgstr "Schválené domény"
#. js-lingui-id: VDvaN2
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/domains/components/SettingPublicDomain.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
@@ -2257,9 +2281,15 @@ msgstr "Archivní soubory nelze zobrazit v náhledu. Pro přístup k obsahu si s
msgid "Archived"
msgstr ""
#. js-lingui-id: mk25CW
#. js-lingui-id: Yzbh3i
#. placeholder {0}: emailingDomain.domain
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
msgid "Are you sure you want to delete {0}? Outbound mail through this domain will stop working."
msgstr ""
#. js-lingui-id: Faev6R
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Are you sure you want to delete {sourceHandle}? Forwarded emails will no longer arrive in this workspace."
msgid "Are you sure you want to delete {sourceHandle}? Inbound mail forwarded to this address and outbound replies from it will stop working."
msgstr ""
#. js-lingui-id: 4CHeVx
@@ -3509,6 +3539,11 @@ msgstr "Editor kódu"
msgid "Code Execution"
msgstr "Spuštění kódu"
#. js-lingui-id: T9qjpu
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Code Interpreter"
msgstr ""
#. js-lingui-id: bKJYIa
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionCodeEditorTab.tsx
msgid "Code your function"
@@ -3723,11 +3758,6 @@ msgstr "Nakonfigurujte připojení SSO"
msgid "Configure and customize your calendar preferences."
msgstr "Nakonfigurujte a přizpůsobte si předvolby kalendáře."
#. js-lingui-id: 5i71HM
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Configure and verify domains for emailing from this workspace."
msgstr "Nakonfigurujte a ověřte domény pro odesílání e-mailů z tohoto pracovního prostoru."
#. js-lingui-id: 6MDr1S
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure CalDAV settings to sync your calendar events."
@@ -3816,10 +3846,15 @@ msgstr "Potvrdit"
msgid "Confirm changing your current resource credit allocation."
msgstr ""
#. js-lingui-id: FbJ7Si
#. js-lingui-id: SU6Tym
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
msgstr "Opravdu chcete smazat roli {roleName}? Toto akci nelze vrátit zpět. Všichni členové budou přeřazeni na výchozí roli."
msgid "Confirm deletion of {roleName} role? This cannot be undone."
msgstr ""
#. js-lingui-id: W7S+Tm
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. {reassignSubject} will be reassigned to the default role."
msgstr ""
#. js-lingui-id: kZkFSm
#: src/modules/settings/billing/components/internal/ResourceCreditPriceSelector.tsx
@@ -5089,6 +5124,8 @@ msgstr "smazat"
#. js-lingui-id: cnGeoo
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -5110,7 +5147,6 @@ msgstr "smazat"
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
#: src/modules/settings/emailing-domains/components/SettingsEmailingDomainRowDropdownMenu.tsx
#: src/modules/settings/domains/components/SettingPublicDomainRowDropdownMenu.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -5194,9 +5230,14 @@ msgstr "Smazat aplikaci"
msgid "Delete chat"
msgstr ""
#. js-lingui-id: /BTna7
#. js-lingui-id: cC09EO
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Delete email group"
msgid "Delete email handle"
msgstr ""
#. js-lingui-id: yZyuut
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
msgid "Delete emailing domain"
msgstr ""
#. js-lingui-id: gf2eXy
@@ -5537,6 +5578,7 @@ msgstr "Neobsahuje"
#. js-lingui-id: EoKe5U
#: src/pages/settings/security/SettingsSecurityApprovedAccessDomain.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Domain"
msgstr "Doména"
@@ -5903,9 +5945,14 @@ msgid "else if"
msgstr "jinak pokud"
#. js-lingui-id: O3oNi5
#: src/pages/settings/SettingsWorkspaceEmail.tsx
#: src/pages/settings/SettingsWorkspaceEmail.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/members/tabs/SettingsWorkspaceMembersTeamTab.tsx
#: src/pages/settings/members/tabs/SettingsWorkspaceMembersInviteTab.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
#: src/pages/auth/PasswordReset.tsx
@@ -5914,7 +5961,9 @@ msgstr "jinak pokud"
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTableHeader.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
#: src/modules/settings/members/components/MemberInfosTab.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
#: src/modules/object-record/record-field/ui/meta-types/input/components/EmailsFieldInput.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpEmailField.tsx
msgid "Email"
@@ -5943,9 +5992,9 @@ msgstr "Email zkopírován do schránky"
msgid "Email Editor"
msgstr "Editor e-mailu"
#. js-lingui-id: KQM9eG
#. js-lingui-id: nsVRM/
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Email Groups"
msgid "Email Handles"
msgstr ""
#. js-lingui-id: lfQsvW
@@ -6015,14 +6064,12 @@ msgid "Emailing domain created successfully. Please verify the domain to start u
msgstr "E-mailová doména byla úspěšně vytvořena. Prosím, ověřte doménu, abyste ji mohli začít používat."
#. js-lingui-id: XDpopO
#: src/modules/settings/emailing-domains/components/SettingsEmailingDomainRowDropdownMenu.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
msgid "Emailing domain deleted successfully"
msgstr "E-mailová doména byla úspěšně odstraněna"
#. js-lingui-id: axQccV
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Emailing Domains"
msgstr "E-mailové domény"
@@ -6200,6 +6247,11 @@ msgstr "Zadejte číslo"
msgid "Enter a UUID"
msgstr "Zadejte UUID"
#. js-lingui-id: 0AYT5C
#: src/modules/settings/application-registrations/components/ApplicationRegistrationConfigVariableEditForm.tsx
msgid "Enter a value"
msgstr ""
#. js-lingui-id: oiVP/+
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableValueInput.tsx
msgid "Enter a value to store in database"
@@ -6344,11 +6396,6 @@ msgstr ""
msgid "Enter the credentials to set the connection"
msgstr "Zadejte údaje pro nastavení připojení"
#. js-lingui-id: PTGfBH
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "Enter the email address you want to forward emails from (e.g. support@mycompany.com)."
msgstr ""
#. js-lingui-id: rGWgcm
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Enter the infos to set the connection"
@@ -6955,9 +7002,9 @@ msgstr "Nepodařilo se přidat model"
msgid "Failed to add provider"
msgstr "Nepodařilo se přidat poskytovatele"
#. js-lingui-id: d+6i8z
#. js-lingui-id: L9UnOU
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "Failed to create email group channel. Email group may not be configured on this server."
msgid "Failed to create email handle. Email handles may not be configured on this server."
msgstr ""
#. js-lingui-id: WM7GKt
@@ -6965,9 +7012,9 @@ msgstr ""
msgid "Failed to create tool"
msgstr "Nepodařilo se vytvořit nástroj"
#. js-lingui-id: W4hzLB
#. js-lingui-id: lWoewm
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Failed to delete email group channel."
msgid "Failed to delete email handle."
msgstr ""
#. js-lingui-id: pUligB
@@ -7293,7 +7340,9 @@ msgstr "pole"
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.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/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
@@ -7682,16 +7731,9 @@ msgstr "Název funkce"
msgid "Functions - Settings"
msgstr "Funkce - Nastavení"
#. js-lingui-id: vYj1cC
#: src/modules/side-panel/pages/page-layout/constants/GraphTypeInformation.ts
#: src/modules/page-layout/utils/getWidgetTitle.ts
msgid "Gauge Chart"
msgstr "Ukazatelový graf"
#. js-lingui-id: Weq9zb
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
#: src/pages/settings/applications/components/SettingsApplicationRegistrationGeneralInfo.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationDetail.tsx
@@ -7699,7 +7741,6 @@ msgstr "Ukazatelový graf"
#: src/modules/settings/domains/components/SettingsSubdomain.tsx
#: src/modules/settings/domains/components/SettingsCustomDomain.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroupsForDisplay.ts
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
msgid "General"
@@ -8656,10 +8697,11 @@ msgstr "Neplatný e-mail nebo doména"
msgid "Invalid email verification link."
msgstr "Neplatný odkaz na ověření e-mailu."
#. js-lingui-id: uzxr9u
#. js-lingui-id: 4D6/HO
#. placeholder {0}: samlMetadataParsed.reason
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Invalid File"
msgstr "Neplatný soubor"
msgid "Invalid file: {0}"
msgstr ""
#. js-lingui-id: 04zLGG
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
@@ -9778,6 +9820,8 @@ msgstr "MCP Server"
#. js-lingui-id: upbzgm
#: src/modules/views/hooks/useComputeRecordRelationFilterLabelValue.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionValueInput.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInput.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInput.tsx
msgid "Me"
msgstr "Já"
@@ -10349,10 +10393,10 @@ msgstr "Nová konverzace"
msgid "New Email"
msgstr ""
#. js-lingui-id: TmlJkc
#. js-lingui-id: VJZNJt
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "New Email Group"
msgid "New Email Handle"
msgstr ""
#. js-lingui-id: wqoYqp
@@ -11687,9 +11731,11 @@ msgstr "Uspořádat"
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationConfigVariableDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/sign-in-background-mock/components/BackgroundMockNavigationDrawer.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
@@ -13355,6 +13401,11 @@ msgstr ""
msgid "Run a workflow and return here to view its executions"
msgstr "Spusťte pracovní postup a vraťte se sem pro zobrazení jeho provedení"
#. js-lingui-id: rRyKdg
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Run code to analyze files and data"
msgstr ""
#. js-lingui-id: UPaWvi
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTestTab.tsx
msgid "Run Function"
@@ -13840,6 +13891,7 @@ msgstr ""
#. js-lingui-id: rG3WVm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/components/columns.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/components/SelectColumn.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInputTrigger.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordFieldChip.tsx
msgid "Select"
msgstr "Vybrat"
@@ -14180,11 +14232,6 @@ msgstr ""
msgid "Set your application configuration variables"
msgstr "Nastavte konfigurační proměnné vaší aplikace"
#. js-lingui-id: 9qcWSO
#: src/pages/settings/applications/components/SettingsApplicationRegistrationConfigVariableDetail.tsx
msgid "set-config-value"
msgstr ""
#. js-lingui-id: dQsqpC
#: src/pages/onboarding/CreateWorkspace.tsx
msgid "Setting up your database..."
@@ -14264,6 +14311,11 @@ msgstr ""
msgid "Share your app to other workspaces without pushing it on the marketplace"
msgstr ""
#. js-lingui-id: 9ZxCpH
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Shared addresses your workspace uses to send and receive email."
msgstr ""
#. js-lingui-id: NyIsOu
#: src/pages/settings/applications/components/SettingsApplicationRegistrationShareLinkButtons.tsx
msgid "Sharing link copied to clipboard"
@@ -14735,6 +14787,7 @@ msgstr "Stav"
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminInstanceStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/signing-keys/components/SettingsAdminSigningKeysTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
@@ -15137,6 +15190,8 @@ msgstr "Nastavení karet"
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
@@ -15228,6 +15283,16 @@ msgstr "Text zkopírován do schránky"
msgid "Text Editor"
msgstr "Textový editor"
#. js-lingui-id: KJjmr/
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "The address your workspace sends and receives email from."
msgstr ""
#. js-lingui-id: Z4WP0F
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "The address your workspace will send and receive email from (e.g. support@mycompany.com). Outbound sending requires the domain to be verified in Outbound Domains."
msgstr ""
#. js-lingui-id: oVH0Mt
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
msgid "The API endpoint for your OpenAI-compatible provider"
@@ -15303,11 +15368,6 @@ msgstr ""
msgid "The email associated to your account"
msgstr "Email spojený s vaším účtem"
#. js-lingui-id: TQGLgF
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "The external address whose mail is forwarded into the workspace."
msgstr ""
#. js-lingui-id: diO3fm
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
msgid "The icon your workflow trigger will display in the command menu"
@@ -16104,6 +16164,7 @@ msgstr "Nastavení dvoufaktorového ověřování bylo úspěšně dokončeno!"
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
@@ -16819,8 +16880,6 @@ msgstr "Token platnosti byl úspěšně obnoven"
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableValueInput.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableValueInput.tsx
#: src/modules/page-layout/widgets/graph/graph-widget-gauge-chart/components/GraphWidgetGaugeChart.tsx
#: src/modules/page-layout/widgets/graph/graph-widget-gauge-chart/components/GraphWidgetGaugeChart.tsx
msgid "Value"
msgstr "Hodnota"
@@ -16870,6 +16929,11 @@ msgstr "Ověřit"
msgid "Verify code from the app"
msgstr "Ověřte kód z aplikace"
#. js-lingui-id: hdyekU
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Verify domains so the workspace can send outbound email through them."
msgstr ""
#. js-lingui-id: zS/rMV
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
msgid "Verify the code from the app"
@@ -17383,6 +17447,7 @@ msgid "Workflows"
msgstr "Pracovní postupy"
#. js-lingui-id: pmUArF
#: src/pages/settings/SettingsWorkspaceEmail.tsx
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsUsageUserDetail.tsx
#: src/pages/settings/SettingsUsage.tsx
@@ -17536,11 +17601,6 @@ msgstr ""
msgid "Workspace views require manage views permission"
msgstr "Pro zobrazení pracovního prostoru je třeba povolení ke správě zobrazení"
#. js-lingui-id: 9Bn3vI
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Workspace-level shared addresses that receive forwarded mail."
msgstr ""
#. js-lingui-id: pmt7u4
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
msgid "Workspaces"
@@ -17802,11 +17862,6 @@ msgstr "Vaše funkce Enterprise budou deaktivovány"
msgid "Your enterprise features will remain active until {cancelAtDate}."
msgstr "Vaše funkce Enterprise zůstanou aktivní do {cancelAtDate}."
#. js-lingui-id: 5TsUUL
#: src/modules/information-banner/components/enterprise/InformationBannerInvalidEnterpriseKey.tsx
msgid "Your enterprise key is no longer valid. Activate a new key to continue using enterprise features."
msgstr ""
#. js-lingui-id: NTpA4U
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise subscription has been canceled."
+129 -74
View File
@@ -161,6 +161,7 @@ msgstr "{0, plural, one {Du har ikke tilladelse til at få adgang til {fieldsLis
#. js-lingui-id: pZCK0D
#. placeholder {0}: registration.name
#: src/pages/settings/applications/components/SettingsApplicationRegistrationConfigVariableDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationConfigVariableDetail.tsx
msgid "{0} - Config"
msgstr ""
@@ -210,6 +211,12 @@ msgstr ""
msgid "{0} widgets"
msgstr ""
#. js-lingui-id: 2UKfhY
#. placeholder {0}: selectedItemNames.length
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInput.tsx
msgid "{0} workspace members"
msgstr ""
#. js-lingui-id: xTgz1F
#. placeholder {1}: provider.displayName
#: src/pages/settings/applications/tabs/SettingsApplicationConnectionsSection.tsx
@@ -221,6 +228,11 @@ msgstr ""
msgid "{advancedFilterCount, plural, one {{advancedFilterCount} advanced rule} other {{advancedFilterCount} advanced rules}}"
msgstr "{advancedFilterCount, plural, one {{advancedFilterCount} avanceret regel} other {{advancedFilterCount} avancerede regler}}"
#. js-lingui-id: XWd9bY
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "{agentCount, plural, one {{agentCount} agent} other {{agentCount} agents}}"
msgstr ""
#. js-lingui-id: WGnqk6
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/hooks/useWorkflowAiAgentPermissionActions.ts
msgid "{agentDisplayName} role ({agentIdPrefix})"
@@ -236,6 +248,11 @@ msgstr "{agentLabel} Agentrolle"
msgid "{aggregateLabel} of {fieldLabel}"
msgstr "{aggregateLabel} af {fieldLabel}"
#. js-lingui-id: WhHyQh
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "{apiKeyCount, plural, one {{apiKeyCount} API key} other {{apiKeyCount} API keys}}"
msgstr ""
#. js-lingui-id: u1mVnV
#: src/modules/marketplace/components/SettingsApplicationInstallPermissionValidationModal.tsx
msgid "{appDisplayName} would like to:"
@@ -395,6 +412,11 @@ msgstr "{jobCount, plural, one {Dette vil forsøge det valgte job igen. Det vil
msgid "{label} list"
msgstr ""
#. js-lingui-id: 1DrH/j
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "{memberCount, plural, one {{memberCount} member} other {{memberCount} members}}"
msgstr ""
#. js-lingui-id: Y32cMj
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadIntermediaryMessages.tsx
msgid "{messagesLength} emails"
@@ -523,6 +545,11 @@ msgstr ""
msgid "{visibleFieldsCount} shown"
msgstr "{visibleFieldsCount} vist"
#. js-lingui-id: WjjsAL
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
msgid "{visibleFieldsCount} visible fields"
msgstr ""
#. js-lingui-id: riMLMq
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowIteratorSubStepSwitcher.tsx
msgid "{workflowRunIteratorSubStepIterationsCount, plural, one {# item} other {# items}}"
@@ -901,7 +928,6 @@ msgstr "Handlinger brugere kan udføre på denne genstand"
#: src/modules/settings/data-model/objects/components/SettingsObjectInactiveMenuDropDown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
#: src/modules/information-banner/components/enterprise/InformationBannerInvalidEnterpriseKey.tsx
msgid "Activate"
msgstr "Aktivér"
@@ -1036,16 +1062,15 @@ msgstr "Tilføj brugerdefinerede instruktioner, der er specifikke for dit arbejd
msgid "Add Custom Provider"
msgstr "Tilføj brugerdefineret udbyder"
#. js-lingui-id: 33pO0a
#. js-lingui-id: +Gf1IN
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Add email group"
msgid "Add email handle"
msgstr ""
#. js-lingui-id: 3O3+7h
#: src/pages/settings/emailing-domains/SettingsEmailingDomains.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomains.tsx
msgid "Add Emailing Domain"
msgstr "Tilføj e-maildomæne"
#. js-lingui-id: HMM0Sc
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Add emailing domain"
msgstr ""
#. js-lingui-id: DpV70M
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
@@ -1312,7 +1337,6 @@ msgid "Added {beautifiedCreatedAt}"
msgstr "Tilføjet {beautifiedCreatedAt}"
#. js-lingui-id: jEHeq+
#: src/pages/settings/emailing-domains/SettingsEmailingDomains.tsx
#: src/modules/settings/security/components/approvedAccessDomains/SettingsApprovedAccessDomainsListCard.tsx
msgid "Added {beautifyPastDateRelative}"
msgstr "Tilføjet {beautifyPastDateRelative}"
@@ -1361,6 +1385,7 @@ msgstr ""
#. js-lingui-id: 2GX/U+
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationConfigVariableDetail.tsx
msgid "Admin Panel - Apps"
msgstr ""
@@ -1954,6 +1979,7 @@ msgstr "Der opstod en uventet fejl. Prøv igen."
#. js-lingui-id: HZFm5R
#: src/utils/date-utils.ts
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
#: src/modules/auth/sign-in-up/components/FooterNote.tsx
msgid "and"
msgstr "og"
@@ -2188,7 +2214,6 @@ msgstr ""
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/applications/SettingsApplicationConnectionDetail.tsx
#: src/pages/settings/applications/SettingsApplicationCommandMenuItemDetail.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Applications"
msgstr "Applikationer"
@@ -2220,7 +2245,6 @@ msgid "Approved Domains"
msgstr "Godkendte domæner"
#. js-lingui-id: VDvaN2
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/domains/components/SettingPublicDomain.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
@@ -2257,9 +2281,15 @@ msgstr "Arkivfiler kan ikke forhåndsvises. Download venligst filen for at få a
msgid "Archived"
msgstr ""
#. js-lingui-id: mk25CW
#. js-lingui-id: Yzbh3i
#. placeholder {0}: emailingDomain.domain
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
msgid "Are you sure you want to delete {0}? Outbound mail through this domain will stop working."
msgstr ""
#. js-lingui-id: Faev6R
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Are you sure you want to delete {sourceHandle}? Forwarded emails will no longer arrive in this workspace."
msgid "Are you sure you want to delete {sourceHandle}? Inbound mail forwarded to this address and outbound replies from it will stop working."
msgstr ""
#. js-lingui-id: 4CHeVx
@@ -3509,6 +3539,11 @@ msgstr "Kodeeditor"
msgid "Code Execution"
msgstr "Kørsel af kode"
#. js-lingui-id: T9qjpu
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Code Interpreter"
msgstr ""
#. js-lingui-id: bKJYIa
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionCodeEditorTab.tsx
msgid "Code your function"
@@ -3723,11 +3758,6 @@ msgstr "Konfigurer en SSO-forbindelse"
msgid "Configure and customize your calendar preferences."
msgstr "Konfigurer og tilpas dine kalenderpræferencer."
#. js-lingui-id: 5i71HM
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Configure and verify domains for emailing from this workspace."
msgstr "Konfigurer og verificer domæner til at sende e-mails fra dette arbejdsområde."
#. js-lingui-id: 6MDr1S
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure CalDAV settings to sync your calendar events."
@@ -3816,10 +3846,15 @@ msgstr "Bekræft"
msgid "Confirm changing your current resource credit allocation."
msgstr ""
#. js-lingui-id: FbJ7Si
#. js-lingui-id: SU6Tym
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
msgstr "Bekræft sletning af {roleName} rolle? Dette kan ikke fortrydes. Alle medlemmer vil blive tildelt standardrollen."
msgid "Confirm deletion of {roleName} role? This cannot be undone."
msgstr ""
#. js-lingui-id: W7S+Tm
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. {reassignSubject} will be reassigned to the default role."
msgstr ""
#. js-lingui-id: kZkFSm
#: src/modules/settings/billing/components/internal/ResourceCreditPriceSelector.tsx
@@ -5089,6 +5124,8 @@ msgstr "slet"
#. js-lingui-id: cnGeoo
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -5110,7 +5147,6 @@ msgstr "slet"
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
#: src/modules/settings/emailing-domains/components/SettingsEmailingDomainRowDropdownMenu.tsx
#: src/modules/settings/domains/components/SettingPublicDomainRowDropdownMenu.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -5194,9 +5230,14 @@ msgstr "Slet app"
msgid "Delete chat"
msgstr ""
#. js-lingui-id: /BTna7
#. js-lingui-id: cC09EO
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Delete email group"
msgid "Delete email handle"
msgstr ""
#. js-lingui-id: yZyuut
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
msgid "Delete emailing domain"
msgstr ""
#. js-lingui-id: gf2eXy
@@ -5537,6 +5578,7 @@ msgstr "Indeholder ikke"
#. js-lingui-id: EoKe5U
#: src/pages/settings/security/SettingsSecurityApprovedAccessDomain.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Domain"
msgstr "Domæne"
@@ -5903,9 +5945,14 @@ msgid "else if"
msgstr "ellers hvis"
#. js-lingui-id: O3oNi5
#: src/pages/settings/SettingsWorkspaceEmail.tsx
#: src/pages/settings/SettingsWorkspaceEmail.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/members/tabs/SettingsWorkspaceMembersTeamTab.tsx
#: src/pages/settings/members/tabs/SettingsWorkspaceMembersInviteTab.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
#: src/pages/auth/PasswordReset.tsx
@@ -5914,7 +5961,9 @@ msgstr "ellers hvis"
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTableHeader.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
#: src/modules/settings/members/components/MemberInfosTab.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
#: src/modules/object-record/record-field/ui/meta-types/input/components/EmailsFieldInput.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpEmailField.tsx
msgid "Email"
@@ -5943,9 +5992,9 @@ msgstr "Email kopieret til udklipsholder"
msgid "Email Editor"
msgstr "Email Editor"
#. js-lingui-id: KQM9eG
#. js-lingui-id: nsVRM/
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Email Groups"
msgid "Email Handles"
msgstr ""
#. js-lingui-id: lfQsvW
@@ -6015,14 +6064,12 @@ msgid "Emailing domain created successfully. Please verify the domain to start u
msgstr "E-mail-domæne oprettet med succes. Bekræft venligst domænet for at begynde at bruge det."
#. js-lingui-id: XDpopO
#: src/modules/settings/emailing-domains/components/SettingsEmailingDomainRowDropdownMenu.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
msgid "Emailing domain deleted successfully"
msgstr "E-mail-domæne blev slettet med succes."
#. js-lingui-id: axQccV
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Emailing Domains"
msgstr "E-mail-domæner"
@@ -6200,6 +6247,11 @@ msgstr "Indtast et tal"
msgid "Enter a UUID"
msgstr "Indtast en UUID"
#. js-lingui-id: 0AYT5C
#: src/modules/settings/application-registrations/components/ApplicationRegistrationConfigVariableEditForm.tsx
msgid "Enter a value"
msgstr ""
#. js-lingui-id: oiVP/+
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableValueInput.tsx
msgid "Enter a value to store in database"
@@ -6344,11 +6396,6 @@ msgstr ""
msgid "Enter the credentials to set the connection"
msgstr "Indtast legitimationsoplysningerne for at indstille forbindelsen"
#. js-lingui-id: PTGfBH
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "Enter the email address you want to forward emails from (e.g. support@mycompany.com)."
msgstr ""
#. js-lingui-id: rGWgcm
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Enter the infos to set the connection"
@@ -6955,9 +7002,9 @@ msgstr "Kunne ikke tilføje model"
msgid "Failed to add provider"
msgstr "Kunne ikke tilføje udbyder"
#. js-lingui-id: d+6i8z
#. js-lingui-id: L9UnOU
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "Failed to create email group channel. Email group may not be configured on this server."
msgid "Failed to create email handle. Email handles may not be configured on this server."
msgstr ""
#. js-lingui-id: WM7GKt
@@ -6965,9 +7012,9 @@ msgstr ""
msgid "Failed to create tool"
msgstr "Kunne ikke oprette værktøj"
#. js-lingui-id: W4hzLB
#. js-lingui-id: lWoewm
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Failed to delete email group channel."
msgid "Failed to delete email handle."
msgstr ""
#. js-lingui-id: pUligB
@@ -7293,7 +7340,9 @@ msgstr "felter"
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.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/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
@@ -7682,16 +7731,9 @@ msgstr "Funktionsnavn"
msgid "Functions - Settings"
msgstr "Funktioner - Indstillinger"
#. js-lingui-id: vYj1cC
#: src/modules/side-panel/pages/page-layout/constants/GraphTypeInformation.ts
#: src/modules/page-layout/utils/getWidgetTitle.ts
msgid "Gauge Chart"
msgstr "Målediagram"
#. js-lingui-id: Weq9zb
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
#: src/pages/settings/applications/components/SettingsApplicationRegistrationGeneralInfo.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationDetail.tsx
@@ -7699,7 +7741,6 @@ msgstr "Målediagram"
#: src/modules/settings/domains/components/SettingsSubdomain.tsx
#: src/modules/settings/domains/components/SettingsCustomDomain.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroupsForDisplay.ts
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
msgid "General"
@@ -8656,10 +8697,11 @@ msgstr "Ugyldig e-mail eller domæne"
msgid "Invalid email verification link."
msgstr "Ugyldigt link til e-mailverifikation."
#. js-lingui-id: uzxr9u
#. js-lingui-id: 4D6/HO
#. placeholder {0}: samlMetadataParsed.reason
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Invalid File"
msgstr "Ugyldig fil"
msgid "Invalid file: {0}"
msgstr ""
#. js-lingui-id: 04zLGG
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
@@ -9778,6 +9820,8 @@ msgstr "MCP-Server"
#. js-lingui-id: upbzgm
#: src/modules/views/hooks/useComputeRecordRelationFilterLabelValue.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionValueInput.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInput.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInput.tsx
msgid "Me"
msgstr "Mig"
@@ -10349,10 +10393,10 @@ msgstr "Ny samtale"
msgid "New Email"
msgstr ""
#. js-lingui-id: TmlJkc
#. js-lingui-id: VJZNJt
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "New Email Group"
msgid "New Email Handle"
msgstr ""
#. js-lingui-id: wqoYqp
@@ -11687,9 +11731,11 @@ msgstr "Organiser"
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationConfigVariableDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/sign-in-background-mock/components/BackgroundMockNavigationDrawer.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
@@ -13355,6 +13401,11 @@ msgstr ""
msgid "Run a workflow and return here to view its executions"
msgstr "Kør en arbejdsproces og vend tilbage hertil for at se dens eksekveringer"
#. js-lingui-id: rRyKdg
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Run code to analyze files and data"
msgstr ""
#. js-lingui-id: UPaWvi
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTestTab.tsx
msgid "Run Function"
@@ -13840,6 +13891,7 @@ msgstr ""
#. js-lingui-id: rG3WVm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/components/columns.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/components/SelectColumn.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInputTrigger.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordFieldChip.tsx
msgid "Select"
msgstr "Vælg"
@@ -14180,11 +14232,6 @@ msgstr ""
msgid "Set your application configuration variables"
msgstr "Indstil dine applikationskonfigurationsvariabler"
#. js-lingui-id: 9qcWSO
#: src/pages/settings/applications/components/SettingsApplicationRegistrationConfigVariableDetail.tsx
msgid "set-config-value"
msgstr ""
#. js-lingui-id: dQsqpC
#: src/pages/onboarding/CreateWorkspace.tsx
msgid "Setting up your database..."
@@ -14264,6 +14311,11 @@ msgstr ""
msgid "Share your app to other workspaces without pushing it on the marketplace"
msgstr ""
#. js-lingui-id: 9ZxCpH
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Shared addresses your workspace uses to send and receive email."
msgstr ""
#. js-lingui-id: NyIsOu
#: src/pages/settings/applications/components/SettingsApplicationRegistrationShareLinkButtons.tsx
msgid "Sharing link copied to clipboard"
@@ -14735,6 +14787,7 @@ msgstr "Tilstand"
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminInstanceStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/signing-keys/components/SettingsAdminSigningKeysTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
@@ -15137,6 +15190,8 @@ msgstr "Fanens indstillinger"
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
@@ -15228,6 +15283,16 @@ msgstr "Tekst kopieret til udklipsholder"
msgid "Text Editor"
msgstr "Teksteditor"
#. js-lingui-id: KJjmr/
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "The address your workspace sends and receives email from."
msgstr ""
#. js-lingui-id: Z4WP0F
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "The address your workspace will send and receive email from (e.g. support@mycompany.com). Outbound sending requires the domain to be verified in Outbound Domains."
msgstr ""
#. js-lingui-id: oVH0Mt
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
msgid "The API endpoint for your OpenAI-compatible provider"
@@ -15303,11 +15368,6 @@ msgstr ""
msgid "The email associated to your account"
msgstr "Den e-mail, der er tilknyttet din konto"
#. js-lingui-id: TQGLgF
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "The external address whose mail is forwarded into the workspace."
msgstr ""
#. js-lingui-id: diO3fm
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
msgid "The icon your workflow trigger will display in the command menu"
@@ -16106,6 +16166,7 @@ msgstr "Opsætning af to-faktor godkendelse blev gennemført med succes!"
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
@@ -16821,8 +16882,6 @@ msgstr "Gyldighedstoken blev opdateret"
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableValueInput.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableValueInput.tsx
#: src/modules/page-layout/widgets/graph/graph-widget-gauge-chart/components/GraphWidgetGaugeChart.tsx
#: src/modules/page-layout/widgets/graph/graph-widget-gauge-chart/components/GraphWidgetGaugeChart.tsx
msgid "Value"
msgstr "Værdi"
@@ -16872,6 +16931,11 @@ msgstr "Bekræft"
msgid "Verify code from the app"
msgstr "Bekræft koden fra appen"
#. js-lingui-id: hdyekU
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Verify domains so the workspace can send outbound email through them."
msgstr ""
#. js-lingui-id: zS/rMV
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
msgid "Verify the code from the app"
@@ -17385,6 +17449,7 @@ msgid "Workflows"
msgstr "Arbejdsgange"
#. js-lingui-id: pmUArF
#: src/pages/settings/SettingsWorkspaceEmail.tsx
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsUsageUserDetail.tsx
#: src/pages/settings/SettingsUsage.tsx
@@ -17538,11 +17603,6 @@ msgstr ""
msgid "Workspace views require manage views permission"
msgstr "Arbejdsområdevisninger kræver tilladelse til at administrere visninger"
#. js-lingui-id: 9Bn3vI
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Workspace-level shared addresses that receive forwarded mail."
msgstr ""
#. js-lingui-id: pmt7u4
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
msgid "Workspaces"
@@ -17804,11 +17864,6 @@ msgstr "Dine Enterprise-funktioner vil blive deaktiveret"
msgid "Your enterprise features will remain active until {cancelAtDate}."
msgstr "Dine Enterprise-funktioner forbliver aktive indtil {cancelAtDate}."
#. js-lingui-id: 5TsUUL
#: src/modules/information-banner/components/enterprise/InformationBannerInvalidEnterpriseKey.tsx
msgid "Your enterprise key is no longer valid. Activate a new key to continue using enterprise features."
msgstr ""
#. js-lingui-id: NTpA4U
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise subscription has been canceled."
+129 -74
View File
@@ -161,6 +161,7 @@ msgstr "{0, plural, one {Sie haben keine Berechtigung, auf das Feld {fieldsList}
#. js-lingui-id: pZCK0D
#. placeholder {0}: registration.name
#: src/pages/settings/applications/components/SettingsApplicationRegistrationConfigVariableDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationConfigVariableDetail.tsx
msgid "{0} - Config"
msgstr ""
@@ -210,6 +211,12 @@ msgstr ""
msgid "{0} widgets"
msgstr ""
#. js-lingui-id: 2UKfhY
#. placeholder {0}: selectedItemNames.length
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInput.tsx
msgid "{0} workspace members"
msgstr ""
#. js-lingui-id: xTgz1F
#. placeholder {1}: provider.displayName
#: src/pages/settings/applications/tabs/SettingsApplicationConnectionsSection.tsx
@@ -221,6 +228,11 @@ msgstr ""
msgid "{advancedFilterCount, plural, one {{advancedFilterCount} advanced rule} other {{advancedFilterCount} advanced rules}}"
msgstr "{advancedFilterCount, plural, one {{advancedFilterCount} erweiterte Regel} other {{advancedFilterCount} erweiterte Regeln}}"
#. js-lingui-id: XWd9bY
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "{agentCount, plural, one {{agentCount} agent} other {{agentCount} agents}}"
msgstr ""
#. js-lingui-id: WGnqk6
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/hooks/useWorkflowAiAgentPermissionActions.ts
msgid "{agentDisplayName} role ({agentIdPrefix})"
@@ -236,6 +248,11 @@ msgstr "{agentLabel}-Agentenrolle"
msgid "{aggregateLabel} of {fieldLabel}"
msgstr "{aggregateLabel} von {fieldLabel}"
#. js-lingui-id: WhHyQh
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "{apiKeyCount, plural, one {{apiKeyCount} API key} other {{apiKeyCount} API keys}}"
msgstr ""
#. js-lingui-id: u1mVnV
#: src/modules/marketplace/components/SettingsApplicationInstallPermissionValidationModal.tsx
msgid "{appDisplayName} would like to:"
@@ -395,6 +412,11 @@ msgstr "{jobCount, plural, one {Dies wird den ausgewählten Auftrag neu ausführ
msgid "{label} list"
msgstr ""
#. js-lingui-id: 1DrH/j
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "{memberCount, plural, one {{memberCount} member} other {{memberCount} members}}"
msgstr ""
#. js-lingui-id: Y32cMj
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadIntermediaryMessages.tsx
msgid "{messagesLength} emails"
@@ -523,6 +545,11 @@ msgstr ""
msgid "{visibleFieldsCount} shown"
msgstr "{visibleFieldsCount} angezeigt"
#. js-lingui-id: WjjsAL
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
msgid "{visibleFieldsCount} visible fields"
msgstr ""
#. js-lingui-id: riMLMq
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowIteratorSubStepSwitcher.tsx
msgid "{workflowRunIteratorSubStepIterationsCount, plural, one {# item} other {# items}}"
@@ -901,7 +928,6 @@ msgstr "Aktionen, die Benutzer auf diesem Objekt durchführen können"
#: src/modules/settings/data-model/objects/components/SettingsObjectInactiveMenuDropDown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
#: src/modules/information-banner/components/enterprise/InformationBannerInvalidEnterpriseKey.tsx
msgid "Activate"
msgstr "Aktivieren"
@@ -1036,16 +1062,15 @@ msgstr "Fügen Sie arbeitsbereichsspezifische benutzerdefinierte Anweisungen hin
msgid "Add Custom Provider"
msgstr "Benutzerdefinierten Anbieter hinzufügen"
#. js-lingui-id: 33pO0a
#. js-lingui-id: +Gf1IN
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Add email group"
msgid "Add email handle"
msgstr ""
#. js-lingui-id: 3O3+7h
#: src/pages/settings/emailing-domains/SettingsEmailingDomains.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomains.tsx
msgid "Add Emailing Domain"
msgstr "E-Mail-Domain hinzufügen"
#. js-lingui-id: HMM0Sc
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Add emailing domain"
msgstr ""
#. js-lingui-id: DpV70M
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
@@ -1312,7 +1337,6 @@ msgid "Added {beautifiedCreatedAt}"
msgstr "Hinzugefügt am {beautifiedCreatedAt}"
#. js-lingui-id: jEHeq+
#: src/pages/settings/emailing-domains/SettingsEmailingDomains.tsx
#: src/modules/settings/security/components/approvedAccessDomains/SettingsApprovedAccessDomainsListCard.tsx
msgid "Added {beautifyPastDateRelative}"
msgstr "Hinzugefügt am {beautifyPastDateRelative}"
@@ -1361,6 +1385,7 @@ msgstr ""
#. js-lingui-id: 2GX/U+
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationConfigVariableDetail.tsx
msgid "Admin Panel - Apps"
msgstr ""
@@ -1954,6 +1979,7 @@ msgstr "Ein unerwarteter Fehler ist aufgetreten. Bitte versuchen Sie es erneut."
#. js-lingui-id: HZFm5R
#: src/utils/date-utils.ts
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
#: src/modules/auth/sign-in-up/components/FooterNote.tsx
msgid "and"
msgstr "und"
@@ -2188,7 +2214,6 @@ msgstr ""
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/applications/SettingsApplicationConnectionDetail.tsx
#: src/pages/settings/applications/SettingsApplicationCommandMenuItemDetail.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Applications"
msgstr "Anwendungen"
@@ -2220,7 +2245,6 @@ msgid "Approved Domains"
msgstr "Genehmigte Domänen"
#. js-lingui-id: VDvaN2
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/domains/components/SettingPublicDomain.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
@@ -2257,9 +2281,15 @@ msgstr "Archivdateien können nicht in der Vorschau angezeigt werden. Bitte lade
msgid "Archived"
msgstr ""
#. js-lingui-id: mk25CW
#. js-lingui-id: Yzbh3i
#. placeholder {0}: emailingDomain.domain
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
msgid "Are you sure you want to delete {0}? Outbound mail through this domain will stop working."
msgstr ""
#. js-lingui-id: Faev6R
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Are you sure you want to delete {sourceHandle}? Forwarded emails will no longer arrive in this workspace."
msgid "Are you sure you want to delete {sourceHandle}? Inbound mail forwarded to this address and outbound replies from it will stop working."
msgstr ""
#. js-lingui-id: 4CHeVx
@@ -3509,6 +3539,11 @@ msgstr "Code-Editor"
msgid "Code Execution"
msgstr "Codeausführung"
#. js-lingui-id: T9qjpu
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Code Interpreter"
msgstr ""
#. js-lingui-id: bKJYIa
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionCodeEditorTab.tsx
msgid "Code your function"
@@ -3723,11 +3758,6 @@ msgstr "SSO-Verbindung konfigurieren"
msgid "Configure and customize your calendar preferences."
msgstr "Kalendereinstellungen konfigurieren und anpassen."
#. js-lingui-id: 5i71HM
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Configure and verify domains for emailing from this workspace."
msgstr "Domänen für das Versenden von E-Mails aus diesem Arbeitsbereich konfigurieren und verifizieren."
#. js-lingui-id: 6MDr1S
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure CalDAV settings to sync your calendar events."
@@ -3816,10 +3846,15 @@ msgstr "Bestätigen"
msgid "Confirm changing your current resource credit allocation."
msgstr ""
#. js-lingui-id: FbJ7Si
#. js-lingui-id: SU6Tym
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
msgstr "Löschung der Rolle {roleName} bestätigen? Dies kann nicht rückgängig gemacht werden. Alle Mitglieder werden der Standardrolle zugewiesen."
msgid "Confirm deletion of {roleName} role? This cannot be undone."
msgstr ""
#. js-lingui-id: W7S+Tm
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. {reassignSubject} will be reassigned to the default role."
msgstr ""
#. js-lingui-id: kZkFSm
#: src/modules/settings/billing/components/internal/ResourceCreditPriceSelector.tsx
@@ -5089,6 +5124,8 @@ msgstr "löschen"
#. js-lingui-id: cnGeoo
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -5110,7 +5147,6 @@ msgstr "löschen"
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
#: src/modules/settings/emailing-domains/components/SettingsEmailingDomainRowDropdownMenu.tsx
#: src/modules/settings/domains/components/SettingPublicDomainRowDropdownMenu.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -5194,9 +5230,14 @@ msgstr "App löschen"
msgid "Delete chat"
msgstr ""
#. js-lingui-id: /BTna7
#. js-lingui-id: cC09EO
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Delete email group"
msgid "Delete email handle"
msgstr ""
#. js-lingui-id: yZyuut
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
msgid "Delete emailing domain"
msgstr ""
#. js-lingui-id: gf2eXy
@@ -5537,6 +5578,7 @@ msgstr "Enthält nicht"
#. js-lingui-id: EoKe5U
#: src/pages/settings/security/SettingsSecurityApprovedAccessDomain.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Domain"
msgstr "Domäne"
@@ -5903,9 +5945,14 @@ msgid "else if"
msgstr "sonst wenn"
#. js-lingui-id: O3oNi5
#: src/pages/settings/SettingsWorkspaceEmail.tsx
#: src/pages/settings/SettingsWorkspaceEmail.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/members/tabs/SettingsWorkspaceMembersTeamTab.tsx
#: src/pages/settings/members/tabs/SettingsWorkspaceMembersInviteTab.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
#: src/pages/auth/PasswordReset.tsx
@@ -5914,7 +5961,9 @@ msgstr "sonst wenn"
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTableHeader.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
#: src/modules/settings/members/components/MemberInfosTab.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
#: src/modules/object-record/record-field/ui/meta-types/input/components/EmailsFieldInput.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpEmailField.tsx
msgid "Email"
@@ -5943,9 +5992,9 @@ msgstr "E-Mail in die Zwischenablage kopiert"
msgid "Email Editor"
msgstr "E-Mail-Editor"
#. js-lingui-id: KQM9eG
#. js-lingui-id: nsVRM/
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Email Groups"
msgid "Email Handles"
msgstr ""
#. js-lingui-id: lfQsvW
@@ -6015,14 +6064,12 @@ msgid "Emailing domain created successfully. Please verify the domain to start u
msgstr "E-Mail-Domäne erfolgreich erstellt. Bitte die Domäne verifizieren, um sie zu nutzen."
#. js-lingui-id: XDpopO
#: src/modules/settings/emailing-domains/components/SettingsEmailingDomainRowDropdownMenu.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
msgid "Emailing domain deleted successfully"
msgstr "E-Mail-Domäne erfolgreich gelöscht"
#. js-lingui-id: axQccV
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Emailing Domains"
msgstr "E-Mail-Domänen"
@@ -6200,6 +6247,11 @@ msgstr "Geben Sie eine Zahl ein"
msgid "Enter a UUID"
msgstr "Geben Sie eine UUID ein"
#. js-lingui-id: 0AYT5C
#: src/modules/settings/application-registrations/components/ApplicationRegistrationConfigVariableEditForm.tsx
msgid "Enter a value"
msgstr ""
#. js-lingui-id: oiVP/+
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableValueInput.tsx
msgid "Enter a value to store in database"
@@ -6344,11 +6396,6 @@ msgstr "Text eingeben oder '/' für Befehle eingeben"
msgid "Enter the credentials to set the connection"
msgstr "Geben Sie die Anmeldedaten ein, um die Verbindung herzustellen"
#. js-lingui-id: PTGfBH
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "Enter the email address you want to forward emails from (e.g. support@mycompany.com)."
msgstr ""
#. js-lingui-id: rGWgcm
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Enter the infos to set the connection"
@@ -6955,9 +7002,9 @@ msgstr "Fehler beim Hinzufügen des Modells"
msgid "Failed to add provider"
msgstr "Fehler beim Hinzufügen des Anbieters"
#. js-lingui-id: d+6i8z
#. js-lingui-id: L9UnOU
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "Failed to create email group channel. Email group may not be configured on this server."
msgid "Failed to create email handle. Email handles may not be configured on this server."
msgstr ""
#. js-lingui-id: WM7GKt
@@ -6965,9 +7012,9 @@ msgstr ""
msgid "Failed to create tool"
msgstr "Erstellen des Tools fehlgeschlagen"
#. js-lingui-id: W4hzLB
#. js-lingui-id: lWoewm
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Failed to delete email group channel."
msgid "Failed to delete email handle."
msgstr ""
#. js-lingui-id: pUligB
@@ -7293,7 +7340,9 @@ msgstr "Felder"
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.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/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
@@ -7682,16 +7731,9 @@ msgstr "Funktionsname"
msgid "Functions - Settings"
msgstr "Funktionen - Einstellungen"
#. js-lingui-id: vYj1cC
#: src/modules/side-panel/pages/page-layout/constants/GraphTypeInformation.ts
#: src/modules/page-layout/utils/getWidgetTitle.ts
msgid "Gauge Chart"
msgstr ""
#. js-lingui-id: Weq9zb
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
#: src/pages/settings/applications/components/SettingsApplicationRegistrationGeneralInfo.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationDetail.tsx
@@ -7699,7 +7741,6 @@ msgstr ""
#: src/modules/settings/domains/components/SettingsSubdomain.tsx
#: src/modules/settings/domains/components/SettingsCustomDomain.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroupsForDisplay.ts
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
msgid "General"
@@ -8656,10 +8697,11 @@ msgstr "Ungültige E-Mail oder Domain"
msgid "Invalid email verification link."
msgstr "Ungültiger E-Mail-Verifizierungslink."
#. js-lingui-id: uzxr9u
#. js-lingui-id: 4D6/HO
#. placeholder {0}: samlMetadataParsed.reason
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Invalid File"
msgstr "Ungültige Datei"
msgid "Invalid file: {0}"
msgstr ""
#. js-lingui-id: 04zLGG
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
@@ -9778,6 +9820,8 @@ msgstr "MCP-Server"
#. js-lingui-id: upbzgm
#: src/modules/views/hooks/useComputeRecordRelationFilterLabelValue.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionValueInput.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInput.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInput.tsx
msgid "Me"
msgstr "Ich"
@@ -10349,10 +10393,10 @@ msgstr "Neue Unterhaltung"
msgid "New Email"
msgstr ""
#. js-lingui-id: TmlJkc
#. js-lingui-id: VJZNJt
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "New Email Group"
msgid "New Email Handle"
msgstr ""
#. js-lingui-id: wqoYqp
@@ -11687,9 +11731,11 @@ msgstr "Organisieren"
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationConfigVariableDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/sign-in-background-mock/components/BackgroundMockNavigationDrawer.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
@@ -13355,6 +13401,11 @@ msgstr ""
msgid "Run a workflow and return here to view its executions"
msgstr "Führen Sie einen Workflow aus und kehren Sie zurück, um die Ausführungen anzuzeigen"
#. js-lingui-id: rRyKdg
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Run code to analyze files and data"
msgstr ""
#. js-lingui-id: UPaWvi
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTestTab.tsx
msgid "Run Function"
@@ -13840,6 +13891,7 @@ msgstr ""
#. js-lingui-id: rG3WVm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/components/columns.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/components/SelectColumn.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInputTrigger.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordFieldChip.tsx
msgid "Select"
msgstr "Auswahl"
@@ -14180,11 +14232,6 @@ msgstr ""
msgid "Set your application configuration variables"
msgstr "Konfigurationsvariablen Ihrer Anwendung festlegen"
#. js-lingui-id: 9qcWSO
#: src/pages/settings/applications/components/SettingsApplicationRegistrationConfigVariableDetail.tsx
msgid "set-config-value"
msgstr ""
#. js-lingui-id: dQsqpC
#: src/pages/onboarding/CreateWorkspace.tsx
msgid "Setting up your database..."
@@ -14264,6 +14311,11 @@ msgstr ""
msgid "Share your app to other workspaces without pushing it on the marketplace"
msgstr ""
#. js-lingui-id: 9ZxCpH
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Shared addresses your workspace uses to send and receive email."
msgstr ""
#. js-lingui-id: NyIsOu
#: src/pages/settings/applications/components/SettingsApplicationRegistrationShareLinkButtons.tsx
msgid "Sharing link copied to clipboard"
@@ -14735,6 +14787,7 @@ msgstr "Zustand"
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminInstanceStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/signing-keys/components/SettingsAdminSigningKeysTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
@@ -15137,6 +15190,8 @@ msgstr "Registerkarteneinstellungen"
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
@@ -15228,6 +15283,16 @@ msgstr "Text in die Zwischenablage kopiert"
msgid "Text Editor"
msgstr "Texteditor"
#. js-lingui-id: KJjmr/
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "The address your workspace sends and receives email from."
msgstr ""
#. js-lingui-id: Z4WP0F
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "The address your workspace will send and receive email from (e.g. support@mycompany.com). Outbound sending requires the domain to be verified in Outbound Domains."
msgstr ""
#. js-lingui-id: oVH0Mt
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
msgid "The API endpoint for your OpenAI-compatible provider"
@@ -15303,11 +15368,6 @@ msgstr ""
msgid "The email associated to your account"
msgstr "Die mit Ihrem Konto verknüpfte E-Mail"
#. js-lingui-id: TQGLgF
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "The external address whose mail is forwarded into the workspace."
msgstr ""
#. js-lingui-id: diO3fm
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
msgid "The icon your workflow trigger will display in the command menu"
@@ -16104,6 +16164,7 @@ msgstr "Einrichtung der Zwei-Faktor-Authentifizierung erfolgreich abgeschlossen!
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
@@ -16819,8 +16880,6 @@ msgstr "Gültigkeitstoken erfolgreich aktualisiert"
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableValueInput.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableValueInput.tsx
#: src/modules/page-layout/widgets/graph/graph-widget-gauge-chart/components/GraphWidgetGaugeChart.tsx
#: src/modules/page-layout/widgets/graph/graph-widget-gauge-chart/components/GraphWidgetGaugeChart.tsx
msgid "Value"
msgstr "Wert"
@@ -16870,6 +16929,11 @@ msgstr "Verifizieren"
msgid "Verify code from the app"
msgstr "Bestätigen Sie den Code von der App"
#. js-lingui-id: hdyekU
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Verify domains so the workspace can send outbound email through them."
msgstr ""
#. js-lingui-id: zS/rMV
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
msgid "Verify the code from the app"
@@ -17383,6 +17447,7 @@ msgid "Workflows"
msgstr "Workflows"
#. js-lingui-id: pmUArF
#: src/pages/settings/SettingsWorkspaceEmail.tsx
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsUsageUserDetail.tsx
#: src/pages/settings/SettingsUsage.tsx
@@ -17536,11 +17601,6 @@ msgstr ""
msgid "Workspace views require manage views permission"
msgstr "Arbeitsplatzansichten erfordern das Verwaltensrecht von Ansichten"
#. js-lingui-id: 9Bn3vI
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Workspace-level shared addresses that receive forwarded mail."
msgstr ""
#. js-lingui-id: pmt7u4
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
msgid "Workspaces"
@@ -17802,11 +17862,6 @@ msgstr "Ihre Enterprise-Funktionen werden deaktiviert"
msgid "Your enterprise features will remain active until {cancelAtDate}."
msgstr "Ihre Enterprise-Funktionen bleiben bis {cancelAtDate} aktiv."
#. js-lingui-id: 5TsUUL
#: src/modules/information-banner/components/enterprise/InformationBannerInvalidEnterpriseKey.tsx
msgid "Your enterprise key is no longer valid. Activate a new key to continue using enterprise features."
msgstr ""
#. js-lingui-id: NTpA4U
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise subscription has been canceled."
+129 -74
View File
@@ -161,6 +161,7 @@ msgstr "{0, plural, one {Δεν έχετε άδεια πρόσβασης στο
#. js-lingui-id: pZCK0D
#. placeholder {0}: registration.name
#: src/pages/settings/applications/components/SettingsApplicationRegistrationConfigVariableDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationConfigVariableDetail.tsx
msgid "{0} - Config"
msgstr ""
@@ -210,6 +211,12 @@ msgstr ""
msgid "{0} widgets"
msgstr ""
#. js-lingui-id: 2UKfhY
#. placeholder {0}: selectedItemNames.length
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInput.tsx
msgid "{0} workspace members"
msgstr ""
#. js-lingui-id: xTgz1F
#. placeholder {1}: provider.displayName
#: src/pages/settings/applications/tabs/SettingsApplicationConnectionsSection.tsx
@@ -221,6 +228,11 @@ msgstr ""
msgid "{advancedFilterCount, plural, one {{advancedFilterCount} advanced rule} other {{advancedFilterCount} advanced rules}}"
msgstr "{advancedFilterCount, plural, one {{advancedFilterCount} προχωρημένος κανόνας} other {{advancedFilterCount} προχωρημένοι κανόνες}}"
#. js-lingui-id: XWd9bY
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "{agentCount, plural, one {{agentCount} agent} other {{agentCount} agents}}"
msgstr ""
#. js-lingui-id: WGnqk6
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/hooks/useWorkflowAiAgentPermissionActions.ts
msgid "{agentDisplayName} role ({agentIdPrefix})"
@@ -236,6 +248,11 @@ msgstr "{agentLabel} Ρόλος Πράκτορα"
msgid "{aggregateLabel} of {fieldLabel}"
msgstr "{aggregateLabel} του {fieldLabel}"
#. js-lingui-id: WhHyQh
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "{apiKeyCount, plural, one {{apiKeyCount} API key} other {{apiKeyCount} API keys}}"
msgstr ""
#. js-lingui-id: u1mVnV
#: src/modules/marketplace/components/SettingsApplicationInstallPermissionValidationModal.tsx
msgid "{appDisplayName} would like to:"
@@ -395,6 +412,11 @@ msgstr "{jobCount, plural, one {Αυτό θα επαναλάβει την επι
msgid "{label} list"
msgstr ""
#. js-lingui-id: 1DrH/j
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "{memberCount, plural, one {{memberCount} member} other {{memberCount} members}}"
msgstr ""
#. js-lingui-id: Y32cMj
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadIntermediaryMessages.tsx
msgid "{messagesLength} emails"
@@ -523,6 +545,11 @@ msgstr ""
msgid "{visibleFieldsCount} shown"
msgstr "Εμφανίζονται {visibleFieldsCount}"
#. js-lingui-id: WjjsAL
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
msgid "{visibleFieldsCount} visible fields"
msgstr ""
#. js-lingui-id: riMLMq
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowIteratorSubStepSwitcher.tsx
msgid "{workflowRunIteratorSubStepIterationsCount, plural, one {# item} other {# items}}"
@@ -901,7 +928,6 @@ msgstr "Ενέργειες χρηστών που μπορούν να εκτελ
#: src/modules/settings/data-model/objects/components/SettingsObjectInactiveMenuDropDown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
#: src/modules/information-banner/components/enterprise/InformationBannerInvalidEnterpriseKey.tsx
msgid "Activate"
msgstr "Ενεργοποίηση"
@@ -1036,16 +1062,15 @@ msgstr "Προσθέστε προσαρμοσμένες οδηγίες που α
msgid "Add Custom Provider"
msgstr "Προσθήκη Προσαρμοσμένου Παρόχου"
#. js-lingui-id: 33pO0a
#. js-lingui-id: +Gf1IN
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Add email group"
msgid "Add email handle"
msgstr ""
#. js-lingui-id: 3O3+7h
#: src/pages/settings/emailing-domains/SettingsEmailingDomains.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomains.tsx
msgid "Add Emailing Domain"
msgstr "Προσθήκη Τομέα Αλληλογραφίας"
#. js-lingui-id: HMM0Sc
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Add emailing domain"
msgstr ""
#. js-lingui-id: DpV70M
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
@@ -1312,7 +1337,6 @@ msgid "Added {beautifiedCreatedAt}"
msgstr "Προστέθηκε {beautifiedCreatedAt}"
#. js-lingui-id: jEHeq+
#: src/pages/settings/emailing-domains/SettingsEmailingDomains.tsx
#: src/modules/settings/security/components/approvedAccessDomains/SettingsApprovedAccessDomainsListCard.tsx
msgid "Added {beautifyPastDateRelative}"
msgstr "Προστέθηκε {beautifyPastDateRelative}"
@@ -1361,6 +1385,7 @@ msgstr ""
#. js-lingui-id: 2GX/U+
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationConfigVariableDetail.tsx
msgid "Admin Panel - Apps"
msgstr ""
@@ -1954,6 +1979,7 @@ msgstr "Παρουσιάστηκε ένα απρόσμενο σφάλμα. Δο
#. js-lingui-id: HZFm5R
#: src/utils/date-utils.ts
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
#: src/modules/auth/sign-in-up/components/FooterNote.tsx
msgid "and"
msgstr "και"
@@ -2188,7 +2214,6 @@ msgstr ""
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/applications/SettingsApplicationConnectionDetail.tsx
#: src/pages/settings/applications/SettingsApplicationCommandMenuItemDetail.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Applications"
msgstr "Εφαρμογές"
@@ -2220,7 +2245,6 @@ msgid "Approved Domains"
msgstr "Εγκεκριμένοι Τομείς"
#. js-lingui-id: VDvaN2
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/domains/components/SettingPublicDomain.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
@@ -2257,9 +2281,15 @@ msgstr "Τα συμπιεσμένα αρχεία δεν μπορούν να πρ
msgid "Archived"
msgstr ""
#. js-lingui-id: mk25CW
#. js-lingui-id: Yzbh3i
#. placeholder {0}: emailingDomain.domain
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
msgid "Are you sure you want to delete {0}? Outbound mail through this domain will stop working."
msgstr ""
#. js-lingui-id: Faev6R
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Are you sure you want to delete {sourceHandle}? Forwarded emails will no longer arrive in this workspace."
msgid "Are you sure you want to delete {sourceHandle}? Inbound mail forwarded to this address and outbound replies from it will stop working."
msgstr ""
#. js-lingui-id: 4CHeVx
@@ -3509,6 +3539,11 @@ msgstr "Επεξεργαστής Κώδικα"
msgid "Code Execution"
msgstr "Εκτέλεση κώδικα"
#. js-lingui-id: T9qjpu
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Code Interpreter"
msgstr ""
#. js-lingui-id: bKJYIa
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionCodeEditorTab.tsx
msgid "Code your function"
@@ -3723,11 +3758,6 @@ msgstr "Ρυθμίστε μια σύνδεση SSO"
msgid "Configure and customize your calendar preferences."
msgstr "Ρυθμίστε και προσαρμόστε τις προτιμήσεις του ημερολογίου σας."
#. js-lingui-id: 5i71HM
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Configure and verify domains for emailing from this workspace."
msgstr "Διαμορφώστε και επαληθεύστε τις περιοχές για αποστολή email από αυτό το χώρο εργασίας."
#. js-lingui-id: 6MDr1S
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure CalDAV settings to sync your calendar events."
@@ -3816,10 +3846,15 @@ msgstr "Επιβεβαίωση"
msgid "Confirm changing your current resource credit allocation."
msgstr ""
#. js-lingui-id: FbJ7Si
#. js-lingui-id: SU6Tym
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
msgstr "Επιβεβαιώστε την διαγραφή του ρόλου {roleName}; Αυτό δεν μπορεί να αναιρεθεί. Όλα τα μέλη θα επανατοποθετηθούν στον προεπιλεγμένο ρόλο."
msgid "Confirm deletion of {roleName} role? This cannot be undone."
msgstr ""
#. js-lingui-id: W7S+Tm
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. {reassignSubject} will be reassigned to the default role."
msgstr ""
#. js-lingui-id: kZkFSm
#: src/modules/settings/billing/components/internal/ResourceCreditPriceSelector.tsx
@@ -5089,6 +5124,8 @@ msgstr "διαγραφή"
#. js-lingui-id: cnGeoo
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -5110,7 +5147,6 @@ msgstr "διαγραφή"
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
#: src/modules/settings/emailing-domains/components/SettingsEmailingDomainRowDropdownMenu.tsx
#: src/modules/settings/domains/components/SettingPublicDomainRowDropdownMenu.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -5194,9 +5230,14 @@ msgstr "Διαγραφή εφαρμογής"
msgid "Delete chat"
msgstr ""
#. js-lingui-id: /BTna7
#. js-lingui-id: cC09EO
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Delete email group"
msgid "Delete email handle"
msgstr ""
#. js-lingui-id: yZyuut
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
msgid "Delete emailing domain"
msgstr ""
#. js-lingui-id: gf2eXy
@@ -5537,6 +5578,7 @@ msgstr "Δεν περιλαμβάνει"
#. js-lingui-id: EoKe5U
#: src/pages/settings/security/SettingsSecurityApprovedAccessDomain.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Domain"
msgstr "Τομέας"
@@ -5903,9 +5945,14 @@ msgid "else if"
msgstr "αλλιώς εάν"
#. js-lingui-id: O3oNi5
#: src/pages/settings/SettingsWorkspaceEmail.tsx
#: src/pages/settings/SettingsWorkspaceEmail.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/members/tabs/SettingsWorkspaceMembersTeamTab.tsx
#: src/pages/settings/members/tabs/SettingsWorkspaceMembersInviteTab.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
#: src/pages/auth/PasswordReset.tsx
@@ -5914,7 +5961,9 @@ msgstr "αλλιώς εάν"
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTableHeader.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
#: src/modules/settings/members/components/MemberInfosTab.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
#: src/modules/object-record/record-field/ui/meta-types/input/components/EmailsFieldInput.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpEmailField.tsx
msgid "Email"
@@ -5943,9 +5992,9 @@ msgstr "Το email αντιγράφηκε στο πρόχειρο"
msgid "Email Editor"
msgstr "Επεξεργαστής Email"
#. js-lingui-id: KQM9eG
#. js-lingui-id: nsVRM/
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Email Groups"
msgid "Email Handles"
msgstr ""
#. js-lingui-id: lfQsvW
@@ -6015,14 +6064,12 @@ msgid "Emailing domain created successfully. Please verify the domain to start u
msgstr "Η περιοχή email δημιουργήθηκε με επιτυχία. Παρακαλώ επαληθεύστε την περιοχή για να ξεκινήσετε τη χρήση της."
#. js-lingui-id: XDpopO
#: src/modules/settings/emailing-domains/components/SettingsEmailingDomainRowDropdownMenu.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
msgid "Emailing domain deleted successfully"
msgstr "Η περιοχή email διαγράφηκε με επιτυχία"
#. js-lingui-id: axQccV
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Emailing Domains"
msgstr "Περιοχές Email"
@@ -6200,6 +6247,11 @@ msgstr "Εισάγετε έναν αριθμό"
msgid "Enter a UUID"
msgstr "Εισάγετε ένα UUID"
#. js-lingui-id: 0AYT5C
#: src/modules/settings/application-registrations/components/ApplicationRegistrationConfigVariableEditForm.tsx
msgid "Enter a value"
msgstr ""
#. js-lingui-id: oiVP/+
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableValueInput.tsx
msgid "Enter a value to store in database"
@@ -6344,11 +6396,6 @@ msgstr ""
msgid "Enter the credentials to set the connection"
msgstr "Εισάγετε τα διαπιστευτήρια για να ρυθμίσετε τη σύνδεση"
#. js-lingui-id: PTGfBH
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "Enter the email address you want to forward emails from (e.g. support@mycompany.com)."
msgstr ""
#. js-lingui-id: rGWgcm
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Enter the infos to set the connection"
@@ -6955,9 +7002,9 @@ msgstr "Αποτυχία προσθήκης μοντέλου"
msgid "Failed to add provider"
msgstr "Αποτυχία προσθήκης παρόχου"
#. js-lingui-id: d+6i8z
#. js-lingui-id: L9UnOU
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "Failed to create email group channel. Email group may not be configured on this server."
msgid "Failed to create email handle. Email handles may not be configured on this server."
msgstr ""
#. js-lingui-id: WM7GKt
@@ -6965,9 +7012,9 @@ msgstr ""
msgid "Failed to create tool"
msgstr "Αποτυχία δημιουργίας εργαλείου"
#. js-lingui-id: W4hzLB
#. js-lingui-id: lWoewm
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Failed to delete email group channel."
msgid "Failed to delete email handle."
msgstr ""
#. js-lingui-id: pUligB
@@ -7293,7 +7340,9 @@ msgstr "πεδία"
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.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/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
@@ -7682,16 +7731,9 @@ msgstr "Όνομα συνάρτησης"
msgid "Functions - Settings"
msgstr "Λειτουργίες - Ρυθμίσεις"
#. js-lingui-id: vYj1cC
#: src/modules/side-panel/pages/page-layout/constants/GraphTypeInformation.ts
#: src/modules/page-layout/utils/getWidgetTitle.ts
msgid "Gauge Chart"
msgstr "Διάγραμμα δείκτη"
#. js-lingui-id: Weq9zb
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
#: src/pages/settings/applications/components/SettingsApplicationRegistrationGeneralInfo.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationDetail.tsx
@@ -7699,7 +7741,6 @@ msgstr "Διάγραμμα δείκτη"
#: src/modules/settings/domains/components/SettingsSubdomain.tsx
#: src/modules/settings/domains/components/SettingsCustomDomain.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroupsForDisplay.ts
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
msgid "General"
@@ -8656,10 +8697,11 @@ msgstr "Μη έγκυρο email ή domain"
msgid "Invalid email verification link."
msgstr "Μη έγκυρος σύνδεσμος επαλήθευσης email."
#. js-lingui-id: uzxr9u
#. js-lingui-id: 4D6/HO
#. placeholder {0}: samlMetadataParsed.reason
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Invalid File"
msgstr "Μη έγκυρο αρχείο"
msgid "Invalid file: {0}"
msgstr ""
#. js-lingui-id: 04zLGG
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
@@ -9778,6 +9820,8 @@ msgstr "Διακομιστής MCP"
#. js-lingui-id: upbzgm
#: src/modules/views/hooks/useComputeRecordRelationFilterLabelValue.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionValueInput.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInput.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInput.tsx
msgid "Me"
msgstr "Εγώ"
@@ -10349,10 +10393,10 @@ msgstr "Νέα συνομιλία"
msgid "New Email"
msgstr ""
#. js-lingui-id: TmlJkc
#. js-lingui-id: VJZNJt
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "New Email Group"
msgid "New Email Handle"
msgstr ""
#. js-lingui-id: wqoYqp
@@ -11687,9 +11731,11 @@ msgstr "Οργάνωση"
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationConfigVariableDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/sign-in-background-mock/components/BackgroundMockNavigationDrawer.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
@@ -13355,6 +13401,11 @@ msgstr ""
msgid "Run a workflow and return here to view its executions"
msgstr "Εκτελέστε ένα workflow και επιστρέψτε εδώ για να δείτε τις εκτελέσεις του"
#. js-lingui-id: rRyKdg
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Run code to analyze files and data"
msgstr ""
#. js-lingui-id: UPaWvi
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTestTab.tsx
msgid "Run Function"
@@ -13840,6 +13891,7 @@ msgstr ""
#. js-lingui-id: rG3WVm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/components/columns.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/components/SelectColumn.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInputTrigger.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordFieldChip.tsx
msgid "Select"
msgstr "Επιλογή"
@@ -14180,11 +14232,6 @@ msgstr ""
msgid "Set your application configuration variables"
msgstr "Ορίστε τις μεταβλητές ρυθμίσεων της εφαρμογής σας"
#. js-lingui-id: 9qcWSO
#: src/pages/settings/applications/components/SettingsApplicationRegistrationConfigVariableDetail.tsx
msgid "set-config-value"
msgstr ""
#. js-lingui-id: dQsqpC
#: src/pages/onboarding/CreateWorkspace.tsx
msgid "Setting up your database..."
@@ -14264,6 +14311,11 @@ msgstr ""
msgid "Share your app to other workspaces without pushing it on the marketplace"
msgstr ""
#. js-lingui-id: 9ZxCpH
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Shared addresses your workspace uses to send and receive email."
msgstr ""
#. js-lingui-id: NyIsOu
#: src/pages/settings/applications/components/SettingsApplicationRegistrationShareLinkButtons.tsx
msgid "Sharing link copied to clipboard"
@@ -14737,6 +14789,7 @@ msgstr "Κατάσταση"
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminInstanceStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/signing-keys/components/SettingsAdminSigningKeysTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
@@ -15139,6 +15192,8 @@ msgstr "Ρυθμίσεις Καρτέλας"
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
@@ -15230,6 +15285,16 @@ msgstr "Το κείμενο αντιγράφηκε στο πρόχειρο"
msgid "Text Editor"
msgstr "Επεξεργαστής Κειμένου"
#. js-lingui-id: KJjmr/
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "The address your workspace sends and receives email from."
msgstr ""
#. js-lingui-id: Z4WP0F
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "The address your workspace will send and receive email from (e.g. support@mycompany.com). Outbound sending requires the domain to be verified in Outbound Domains."
msgstr ""
#. js-lingui-id: oVH0Mt
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
msgid "The API endpoint for your OpenAI-compatible provider"
@@ -15305,11 +15370,6 @@ msgstr ""
msgid "The email associated to your account"
msgstr "Το email που συνδέεται με τον λογαριασμό σας"
#. js-lingui-id: TQGLgF
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "The external address whose mail is forwarded into the workspace."
msgstr ""
#. js-lingui-id: diO3fm
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
msgid "The icon your workflow trigger will display in the command menu"
@@ -16108,6 +16168,7 @@ msgstr "Η εγκατάσταση δύο παραγοντικής ταυτοπο
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
@@ -16823,8 +16884,6 @@ msgstr "Το διακριτικό εγκυρότητας ανανεώθηκε μ
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableValueInput.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableValueInput.tsx
#: src/modules/page-layout/widgets/graph/graph-widget-gauge-chart/components/GraphWidgetGaugeChart.tsx
#: src/modules/page-layout/widgets/graph/graph-widget-gauge-chart/components/GraphWidgetGaugeChart.tsx
msgid "Value"
msgstr "Αξία"
@@ -16874,6 +16933,11 @@ msgstr "Επαλήθευση"
msgid "Verify code from the app"
msgstr "Επαληθεύστε τον κωδικό από την εφαρμογή"
#. js-lingui-id: hdyekU
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Verify domains so the workspace can send outbound email through them."
msgstr ""
#. js-lingui-id: zS/rMV
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
msgid "Verify the code from the app"
@@ -17387,6 +17451,7 @@ msgid "Workflows"
msgstr "Ροές Εργασίας"
#. js-lingui-id: pmUArF
#: src/pages/settings/SettingsWorkspaceEmail.tsx
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsUsageUserDetail.tsx
#: src/pages/settings/SettingsUsage.tsx
@@ -17540,11 +17605,6 @@ msgstr ""
msgid "Workspace views require manage views permission"
msgstr "Οι προβολές χώρου εργασίας απαιτούν δικαιώματα διαχείρισης προβολών"
#. js-lingui-id: 9Bn3vI
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Workspace-level shared addresses that receive forwarded mail."
msgstr ""
#. js-lingui-id: pmt7u4
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
msgid "Workspaces"
@@ -17806,11 +17866,6 @@ msgstr "Οι δυνατότητες Enterprise θα απενεργοποιηθο
msgid "Your enterprise features will remain active until {cancelAtDate}."
msgstr "Οι δυνατότητες Enterprise θα παραμείνουν ενεργές έως {cancelAtDate}."
#. js-lingui-id: 5TsUUL
#: src/modules/information-banner/components/enterprise/InformationBannerInvalidEnterpriseKey.tsx
msgid "Your enterprise key is no longer valid. Activate a new key to continue using enterprise features."
msgstr ""
#. js-lingui-id: NTpA4U
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise subscription has been canceled."
+136 -81
View File
@@ -156,6 +156,7 @@ msgstr "{0, plural, one {You do not have permission to access the {fieldsList} f
#. js-lingui-id: pZCK0D
#. placeholder {0}: registration.name
#: src/pages/settings/applications/components/SettingsApplicationRegistrationConfigVariableDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationConfigVariableDetail.tsx
msgid "{0} - Config"
msgstr "{0} - Config"
@@ -205,6 +206,12 @@ msgstr "{0} view"
msgid "{0} widgets"
msgstr "{0} widgets"
#. js-lingui-id: 2UKfhY
#. placeholder {0}: selectedItemNames.length
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInput.tsx
msgid "{0} workspace members"
msgstr "{0} workspace members"
#. js-lingui-id: xTgz1F
#. placeholder {1}: provider.displayName
#: src/pages/settings/applications/tabs/SettingsApplicationConnectionsSection.tsx
@@ -216,6 +223,11 @@ msgstr "{1} OAuth is not yet set up by your server administrator. They need to f
msgid "{advancedFilterCount, plural, one {{advancedFilterCount} advanced rule} other {{advancedFilterCount} advanced rules}}"
msgstr "{advancedFilterCount, plural, one {{advancedFilterCount} advanced rule} other {{advancedFilterCount} advanced rules}}"
#. js-lingui-id: XWd9bY
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "{agentCount, plural, one {{agentCount} agent} other {{agentCount} agents}}"
msgstr "{agentCount, plural, one {{agentCount} agent} other {{agentCount} agents}}"
#. js-lingui-id: WGnqk6
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/hooks/useWorkflowAiAgentPermissionActions.ts
msgid "{agentDisplayName} role ({agentIdPrefix})"
@@ -231,6 +243,11 @@ msgstr "{agentLabel} Agent Role"
msgid "{aggregateLabel} of {fieldLabel}"
msgstr "{aggregateLabel} of {fieldLabel}"
#. js-lingui-id: WhHyQh
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "{apiKeyCount, plural, one {{apiKeyCount} API key} other {{apiKeyCount} API keys}}"
msgstr "{apiKeyCount, plural, one {{apiKeyCount} API key} other {{apiKeyCount} API keys}}"
#. js-lingui-id: u1mVnV
#: src/modules/marketplace/components/SettingsApplicationInstallPermissionValidationModal.tsx
msgid "{appDisplayName} would like to:"
@@ -390,6 +407,11 @@ msgstr "{jobCount, plural, one {This will retry the selected job. It will be re-
msgid "{label} list"
msgstr "{label} list"
#. js-lingui-id: 1DrH/j
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "{memberCount, plural, one {{memberCount} member} other {{memberCount} members}}"
msgstr "{memberCount, plural, one {{memberCount} member} other {{memberCount} members}}"
#. js-lingui-id: Y32cMj
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadIntermediaryMessages.tsx
msgid "{messagesLength} emails"
@@ -518,6 +540,11 @@ msgstr "{totalFieldsCount} visible fields"
msgid "{visibleFieldsCount} shown"
msgstr "{visibleFieldsCount} shown"
#. js-lingui-id: WjjsAL
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
msgid "{visibleFieldsCount} visible fields"
msgstr "{visibleFieldsCount} visible fields"
#. js-lingui-id: riMLMq
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowIteratorSubStepSwitcher.tsx
msgid "{workflowRunIteratorSubStepIterationsCount, plural, one {# item} other {# items}}"
@@ -896,7 +923,6 @@ msgstr "Actions users can perform on this object"
#: src/modules/settings/data-model/objects/components/SettingsObjectInactiveMenuDropDown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
#: src/modules/information-banner/components/enterprise/InformationBannerInvalidEnterpriseKey.tsx
msgid "Activate"
msgstr "Activate"
@@ -1031,16 +1057,15 @@ msgstr "Add custom instructions specific to your workspace (appended to system p
msgid "Add Custom Provider"
msgstr "Add Custom Provider"
#. js-lingui-id: 33pO0a
#. js-lingui-id: +Gf1IN
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Add email group"
msgstr "Add email group"
msgid "Add email handle"
msgstr "Add email handle"
#. js-lingui-id: 3O3+7h
#: src/pages/settings/emailing-domains/SettingsEmailingDomains.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomains.tsx
msgid "Add Emailing Domain"
msgstr "Add Emailing Domain"
#. js-lingui-id: HMM0Sc
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Add emailing domain"
msgstr "Add emailing domain"
#. js-lingui-id: DpV70M
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
@@ -1307,7 +1332,6 @@ msgid "Added {beautifiedCreatedAt}"
msgstr "Added {beautifiedCreatedAt}"
#. js-lingui-id: jEHeq+
#: src/pages/settings/emailing-domains/SettingsEmailingDomains.tsx
#: src/modules/settings/security/components/approvedAccessDomains/SettingsApprovedAccessDomainsListCard.tsx
msgid "Added {beautifyPastDateRelative}"
msgstr "Added {beautifyPastDateRelative}"
@@ -1356,6 +1380,7 @@ msgstr "Admin Panel - AI"
#. js-lingui-id: 2GX/U+
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationConfigVariableDetail.tsx
msgid "Admin Panel - Apps"
msgstr "Admin Panel - Apps"
@@ -1949,6 +1974,7 @@ msgstr "An unexpected error occurred. Please try again."
#. js-lingui-id: HZFm5R
#: src/utils/date-utils.ts
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
#: src/modules/auth/sign-in-up/components/FooterNote.tsx
msgid "and"
msgstr "and"
@@ -2183,7 +2209,6 @@ msgstr "application variable"
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/applications/SettingsApplicationConnectionDetail.tsx
#: src/pages/settings/applications/SettingsApplicationCommandMenuItemDetail.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Applications"
msgstr "Applications"
@@ -2215,7 +2240,6 @@ msgid "Approved Domains"
msgstr "Approved Domains"
#. js-lingui-id: VDvaN2
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/domains/components/SettingPublicDomain.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
@@ -2252,10 +2276,16 @@ msgstr "Archive files cannot be previewed. Please download the file to access it
msgid "Archived"
msgstr "Archived"
#. js-lingui-id: mk25CW
#. js-lingui-id: Yzbh3i
#. placeholder {0}: emailingDomain.domain
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
msgid "Are you sure you want to delete {0}? Outbound mail through this domain will stop working."
msgstr "Are you sure you want to delete {0}? Outbound mail through this domain will stop working."
#. js-lingui-id: Faev6R
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Are you sure you want to delete {sourceHandle}? Forwarded emails will no longer arrive in this workspace."
msgstr "Are you sure you want to delete {sourceHandle}? Forwarded emails will no longer arrive in this workspace."
msgid "Are you sure you want to delete {sourceHandle}? Inbound mail forwarded to this address and outbound replies from it will stop working."
msgstr "Are you sure you want to delete {sourceHandle}? Inbound mail forwarded to this address and outbound replies from it will stop working."
#. js-lingui-id: 4CHeVx
#: src/pages/settings/ai/components/SettingsAgentEvalsTab.tsx
@@ -3504,6 +3534,11 @@ msgstr "Code Editor"
msgid "Code Execution"
msgstr "Code Execution"
#. js-lingui-id: T9qjpu
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Code Interpreter"
msgstr "Code Interpreter"
#. js-lingui-id: bKJYIa
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionCodeEditorTab.tsx
msgid "Code your function"
@@ -3718,11 +3753,6 @@ msgstr "Configure an SSO connection"
msgid "Configure and customize your calendar preferences."
msgstr "Configure and customize your calendar preferences."
#. js-lingui-id: 5i71HM
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Configure and verify domains for emailing from this workspace."
msgstr "Configure and verify domains for emailing from this workspace."
#. js-lingui-id: 6MDr1S
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure CalDAV settings to sync your calendar events."
@@ -3811,10 +3841,15 @@ msgstr "Confirm"
msgid "Confirm changing your current resource credit allocation."
msgstr "Confirm changing your current resource credit allocation."
#. js-lingui-id: FbJ7Si
#. js-lingui-id: SU6Tym
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
msgstr "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
msgid "Confirm deletion of {roleName} role? This cannot be undone."
msgstr "Confirm deletion of {roleName} role? This cannot be undone."
#. js-lingui-id: W7S+Tm
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. {reassignSubject} will be reassigned to the default role."
msgstr "Confirm deletion of {roleName} role? This cannot be undone. {reassignSubject} will be reassigned to the default role."
#. js-lingui-id: kZkFSm
#: src/modules/settings/billing/components/internal/ResourceCreditPriceSelector.tsx
@@ -5084,6 +5119,8 @@ msgstr "delete"
#. js-lingui-id: cnGeoo
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -5105,7 +5142,6 @@ msgstr "delete"
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
#: src/modules/settings/emailing-domains/components/SettingsEmailingDomainRowDropdownMenu.tsx
#: src/modules/settings/domains/components/SettingPublicDomainRowDropdownMenu.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -5189,10 +5225,15 @@ msgstr "Delete app"
msgid "Delete chat"
msgstr "Delete chat"
#. js-lingui-id: /BTna7
#. js-lingui-id: cC09EO
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Delete email group"
msgstr "Delete email group"
msgid "Delete email handle"
msgstr "Delete email handle"
#. js-lingui-id: yZyuut
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
msgid "Delete emailing domain"
msgstr "Delete emailing domain"
#. js-lingui-id: gf2eXy
#: src/pages/settings/ai/components/SettingsAgentEvalsTab.tsx
@@ -5532,6 +5573,7 @@ msgstr "Doesn't contain"
#. js-lingui-id: EoKe5U
#: src/pages/settings/security/SettingsSecurityApprovedAccessDomain.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Domain"
msgstr "Domain"
@@ -5898,9 +5940,14 @@ msgid "else if"
msgstr "else if"
#. js-lingui-id: O3oNi5
#: src/pages/settings/SettingsWorkspaceEmail.tsx
#: src/pages/settings/SettingsWorkspaceEmail.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/members/tabs/SettingsWorkspaceMembersTeamTab.tsx
#: src/pages/settings/members/tabs/SettingsWorkspaceMembersInviteTab.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
#: src/pages/auth/PasswordReset.tsx
@@ -5909,7 +5956,9 @@ msgstr "else if"
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTableHeader.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
#: src/modules/settings/members/components/MemberInfosTab.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
#: src/modules/object-record/record-field/ui/meta-types/input/components/EmailsFieldInput.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpEmailField.tsx
msgid "Email"
@@ -5938,10 +5987,10 @@ msgstr "Email copied to clipboard"
msgid "Email Editor"
msgstr "Email Editor"
#. js-lingui-id: KQM9eG
#. js-lingui-id: nsVRM/
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Email Groups"
msgstr "Email Groups"
msgid "Email Handles"
msgstr "Email Handles"
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
@@ -6010,14 +6059,12 @@ msgid "Emailing domain created successfully. Please verify the domain to start u
msgstr "Emailing domain created successfully. Please verify the domain to start using it."
#. js-lingui-id: XDpopO
#: src/modules/settings/emailing-domains/components/SettingsEmailingDomainRowDropdownMenu.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
msgid "Emailing domain deleted successfully"
msgstr "Emailing domain deleted successfully"
#. js-lingui-id: axQccV
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Emailing Domains"
msgstr "Emailing Domains"
@@ -6195,6 +6242,11 @@ msgstr "Enter a number"
msgid "Enter a UUID"
msgstr "Enter a UUID"
#. js-lingui-id: 0AYT5C
#: src/modules/settings/application-registrations/components/ApplicationRegistrationConfigVariableEditForm.tsx
msgid "Enter a value"
msgstr "Enter a value"
#. js-lingui-id: oiVP/+
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableValueInput.tsx
msgid "Enter a value to store in database"
@@ -6339,11 +6391,6 @@ msgstr "Enter text or Type '/' for commands"
msgid "Enter the credentials to set the connection"
msgstr "Enter the credentials to set the connection"
#. js-lingui-id: PTGfBH
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "Enter the email address you want to forward emails from (e.g. support@mycompany.com)."
msgstr "Enter the email address you want to forward emails from (e.g. support@mycompany.com)."
#. js-lingui-id: rGWgcm
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Enter the infos to set the connection"
@@ -6950,20 +6997,20 @@ msgstr "Failed to add model"
msgid "Failed to add provider"
msgstr "Failed to add provider"
#. js-lingui-id: d+6i8z
#. js-lingui-id: L9UnOU
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "Failed to create email group channel. Email group may not be configured on this server."
msgstr "Failed to create email group channel. Email group may not be configured on this server."
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: W4hzLB
#. js-lingui-id: lWoewm
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Failed to delete email group channel."
msgstr "Failed to delete email group channel."
msgid "Failed to delete email handle."
msgstr "Failed to delete email handle."
#. js-lingui-id: pUligB
#: src/modules/settings/admin-panel/health-status/hooks/useDeleteJobs.ts
@@ -7288,7 +7335,9 @@ msgstr "fields"
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.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/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
@@ -7677,16 +7726,9 @@ msgstr "Function name"
msgid "Functions - Settings"
msgstr "Functions - Settings"
#. js-lingui-id: vYj1cC
#: src/modules/side-panel/pages/page-layout/constants/GraphTypeInformation.ts
#: src/modules/page-layout/utils/getWidgetTitle.ts
msgid "Gauge Chart"
msgstr "Gauge Chart"
#. js-lingui-id: Weq9zb
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
#: src/pages/settings/applications/components/SettingsApplicationRegistrationGeneralInfo.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationDetail.tsx
@@ -7694,7 +7736,6 @@ msgstr "Gauge Chart"
#: src/modules/settings/domains/components/SettingsSubdomain.tsx
#: src/modules/settings/domains/components/SettingsCustomDomain.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroupsForDisplay.ts
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
msgid "General"
@@ -8674,10 +8715,11 @@ msgstr "Invalid email or domain"
msgid "Invalid email verification link."
msgstr "Invalid email verification link."
#. js-lingui-id: uzxr9u
#. js-lingui-id: 4D6/HO
#. placeholder {0}: samlMetadataParsed.reason
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Invalid File"
msgstr "Invalid File"
msgid "Invalid file: {0}"
msgstr "Invalid file: {0}"
#. js-lingui-id: 04zLGG
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
@@ -9796,6 +9838,8 @@ msgstr "MCP Server"
#. js-lingui-id: upbzgm
#: src/modules/views/hooks/useComputeRecordRelationFilterLabelValue.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionValueInput.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInput.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInput.tsx
msgid "Me"
msgstr "Me"
@@ -10367,11 +10411,11 @@ msgstr "New conversation"
msgid "New Email"
msgstr "New Email"
#. js-lingui-id: TmlJkc
#. js-lingui-id: VJZNJt
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "New Email Group"
msgstr "New Email Group"
msgid "New Email Handle"
msgstr "New Email Handle"
#. js-lingui-id: wqoYqp
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
@@ -11705,9 +11749,11 @@ msgstr "Organize"
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationConfigVariableDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/sign-in-background-mock/components/BackgroundMockNavigationDrawer.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
@@ -13373,6 +13419,11 @@ msgstr "Run"
msgid "Run a workflow and return here to view its executions"
msgstr "Run a workflow and return here to view its executions"
#. js-lingui-id: rRyKdg
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Run code to analyze files and data"
msgstr "Run code to analyze files and data"
#. js-lingui-id: UPaWvi
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTestTab.tsx
msgid "Run Function"
@@ -13858,6 +13909,7 @@ msgstr "Seeded"
#. js-lingui-id: rG3WVm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/components/columns.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/components/SelectColumn.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInputTrigger.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordFieldChip.tsx
msgid "Select"
msgstr "Select"
@@ -14198,11 +14250,6 @@ msgstr "Set up forwarding from the source address to this destination."
msgid "Set your application configuration variables"
msgstr "Set your application configuration variables"
#. js-lingui-id: 9qcWSO
#: src/pages/settings/applications/components/SettingsApplicationRegistrationConfigVariableDetail.tsx
msgid "set-config-value"
msgstr "set-config-value"
#. js-lingui-id: dQsqpC
#: src/pages/onboarding/CreateWorkspace.tsx
msgid "Setting up your database..."
@@ -14282,6 +14329,11 @@ msgstr "Share with workspace"
msgid "Share your app to other workspaces without pushing it on the marketplace"
msgstr "Share your app to other workspaces without pushing it on the marketplace"
#. js-lingui-id: 9ZxCpH
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Shared addresses your workspace uses to send and receive email."
msgstr "Shared addresses your workspace uses to send and receive email."
#. js-lingui-id: NyIsOu
#: src/pages/settings/applications/components/SettingsApplicationRegistrationShareLinkButtons.tsx
msgid "Sharing link copied to clipboard"
@@ -14753,6 +14805,7 @@ msgstr "State"
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminInstanceStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/signing-keys/components/SettingsAdminSigningKeysTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
@@ -15155,6 +15208,8 @@ msgstr "Tab Settings"
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
@@ -15246,6 +15301,16 @@ msgstr "Text copied to clipboard"
msgid "Text Editor"
msgstr "Text Editor"
#. js-lingui-id: KJjmr/
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "The address your workspace sends and receives email from."
msgstr "The address your workspace sends and receives email from."
#. js-lingui-id: Z4WP0F
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "The address your workspace will send and receive email from (e.g. support@mycompany.com). Outbound sending requires the domain to be verified in Outbound Domains."
msgstr "The address your workspace will send and receive email from (e.g. support@mycompany.com). Outbound sending requires the domain to be verified in Outbound Domains."
#. js-lingui-id: oVH0Mt
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
msgid "The API endpoint for your OpenAI-compatible provider"
@@ -15351,11 +15416,6 @@ msgstr "The email associated to this account"
msgid "The email associated to your account"
msgstr "The email associated to your account"
#. js-lingui-id: TQGLgF
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "The external address whose mail is forwarded into the workspace."
msgstr "The external address whose mail is forwarded into the workspace."
#. js-lingui-id: diO3fm
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
msgid "The icon your workflow trigger will display in the command menu"
@@ -16154,6 +16214,7 @@ msgstr "Two-factor authentication setup completed successfully!"
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
@@ -16869,8 +16930,6 @@ msgstr "Validity token refreshed successfully"
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableValueInput.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableValueInput.tsx
#: src/modules/page-layout/widgets/graph/graph-widget-gauge-chart/components/GraphWidgetGaugeChart.tsx
#: src/modules/page-layout/widgets/graph/graph-widget-gauge-chart/components/GraphWidgetGaugeChart.tsx
msgid "Value"
msgstr "Value"
@@ -16920,6 +16979,11 @@ msgstr "Verify"
msgid "Verify code from the app"
msgstr "Verify code from the app"
#. js-lingui-id: hdyekU
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Verify domains so the workspace can send outbound email through them."
msgstr "Verify domains so the workspace can send outbound email through them."
#. js-lingui-id: zS/rMV
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
msgid "Verify the code from the app"
@@ -17433,6 +17497,7 @@ msgid "Workflows"
msgstr "Workflows"
#. js-lingui-id: pmUArF
#: src/pages/settings/SettingsWorkspaceEmail.tsx
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsUsageUserDetail.tsx
#: src/pages/settings/SettingsUsage.tsx
@@ -17586,11 +17651,6 @@ msgstr "Workspace upgrade health"
msgid "Workspace views require manage views permission"
msgstr "Workspace views require manage views permission"
#. js-lingui-id: 9Bn3vI
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Workspace-level shared addresses that receive forwarded mail."
msgstr "Workspace-level shared addresses that receive forwarded mail."
#. js-lingui-id: pmt7u4
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
msgid "Workspaces"
@@ -17856,11 +17916,6 @@ msgstr "Your enterprise features will be disabled"
msgid "Your enterprise features will remain active until {cancelAtDate}."
msgstr "Your enterprise features will remain active until {cancelAtDate}."
#. js-lingui-id: 5TsUUL
#: src/modules/information-banner/components/enterprise/InformationBannerInvalidEnterpriseKey.tsx
msgid "Your enterprise key is no longer valid. Activate a new key to continue using enterprise features."
msgstr "Your enterprise key is no longer valid. Activate a new key to continue using enterprise features."
#. js-lingui-id: NTpA4U
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise subscription has been canceled."
+129 -74
View File
@@ -161,6 +161,7 @@ msgstr "{0, plural, one {No tienes permiso para acceder al campo {fieldsList}} o
#. js-lingui-id: pZCK0D
#. placeholder {0}: registration.name
#: src/pages/settings/applications/components/SettingsApplicationRegistrationConfigVariableDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationConfigVariableDetail.tsx
msgid "{0} - Config"
msgstr ""
@@ -210,6 +211,12 @@ msgstr ""
msgid "{0} widgets"
msgstr ""
#. js-lingui-id: 2UKfhY
#. placeholder {0}: selectedItemNames.length
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInput.tsx
msgid "{0} workspace members"
msgstr ""
#. js-lingui-id: xTgz1F
#. placeholder {1}: provider.displayName
#: src/pages/settings/applications/tabs/SettingsApplicationConnectionsSection.tsx
@@ -221,6 +228,11 @@ msgstr ""
msgid "{advancedFilterCount, plural, one {{advancedFilterCount} advanced rule} other {{advancedFilterCount} advanced rules}}"
msgstr "{advancedFilterCount, plural, one {{advancedFilterCount} regla avanzada} other {{advancedFilterCount} reglas avanzadas}}"
#. js-lingui-id: XWd9bY
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "{agentCount, plural, one {{agentCount} agent} other {{agentCount} agents}}"
msgstr ""
#. js-lingui-id: WGnqk6
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/hooks/useWorkflowAiAgentPermissionActions.ts
msgid "{agentDisplayName} role ({agentIdPrefix})"
@@ -236,6 +248,11 @@ msgstr "Rol de agente de {agentLabel}"
msgid "{aggregateLabel} of {fieldLabel}"
msgstr "{aggregateLabel} de {fieldLabel}"
#. js-lingui-id: WhHyQh
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "{apiKeyCount, plural, one {{apiKeyCount} API key} other {{apiKeyCount} API keys}}"
msgstr ""
#. js-lingui-id: u1mVnV
#: src/modules/marketplace/components/SettingsApplicationInstallPermissionValidationModal.tsx
msgid "{appDisplayName} would like to:"
@@ -395,6 +412,11 @@ msgstr "{jobCount, plural, one {Esto reintentará el trabajo seleccionado. Será
msgid "{label} list"
msgstr ""
#. js-lingui-id: 1DrH/j
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "{memberCount, plural, one {{memberCount} member} other {{memberCount} members}}"
msgstr ""
#. js-lingui-id: Y32cMj
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadIntermediaryMessages.tsx
msgid "{messagesLength} emails"
@@ -523,6 +545,11 @@ msgstr ""
msgid "{visibleFieldsCount} shown"
msgstr "{visibleFieldsCount} mostrados"
#. js-lingui-id: WjjsAL
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
msgid "{visibleFieldsCount} visible fields"
msgstr ""
#. js-lingui-id: riMLMq
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowIteratorSubStepSwitcher.tsx
msgid "{workflowRunIteratorSubStepIterationsCount, plural, one {# item} other {# items}}"
@@ -901,7 +928,6 @@ msgstr "Acciones que los usuarios pueden realizar en este objeto"
#: src/modules/settings/data-model/objects/components/SettingsObjectInactiveMenuDropDown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
#: src/modules/information-banner/components/enterprise/InformationBannerInvalidEnterpriseKey.tsx
msgid "Activate"
msgstr "Activar"
@@ -1036,16 +1062,15 @@ msgstr "Añade instrucciones personalizadas específicas de tu espacio de trabaj
msgid "Add Custom Provider"
msgstr "Añadir proveedor personalizado"
#. js-lingui-id: 33pO0a
#. js-lingui-id: +Gf1IN
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Add email group"
msgid "Add email handle"
msgstr ""
#. js-lingui-id: 3O3+7h
#: src/pages/settings/emailing-domains/SettingsEmailingDomains.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomains.tsx
msgid "Add Emailing Domain"
msgstr "Agregar Dominio de Correo Electrónico"
#. js-lingui-id: HMM0Sc
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Add emailing domain"
msgstr ""
#. js-lingui-id: DpV70M
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
@@ -1312,7 +1337,6 @@ msgid "Added {beautifiedCreatedAt}"
msgstr "Añadido {beautifiedCreatedAt}"
#. js-lingui-id: jEHeq+
#: src/pages/settings/emailing-domains/SettingsEmailingDomains.tsx
#: src/modules/settings/security/components/approvedAccessDomains/SettingsApprovedAccessDomainsListCard.tsx
msgid "Added {beautifyPastDateRelative}"
msgstr "Añadido {beautifyPastDateRelative}"
@@ -1361,6 +1385,7 @@ msgstr ""
#. js-lingui-id: 2GX/U+
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationConfigVariableDetail.tsx
msgid "Admin Panel - Apps"
msgstr ""
@@ -1954,6 +1979,7 @@ msgstr "Se produjo un error inesperado. Por favor, inténtelo de nuevo."
#. js-lingui-id: HZFm5R
#: src/utils/date-utils.ts
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
#: src/modules/auth/sign-in-up/components/FooterNote.tsx
msgid "and"
msgstr "y"
@@ -2188,7 +2214,6 @@ msgstr ""
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/applications/SettingsApplicationConnectionDetail.tsx
#: src/pages/settings/applications/SettingsApplicationCommandMenuItemDetail.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Applications"
msgstr "Aplicaciones"
@@ -2220,7 +2245,6 @@ msgid "Approved Domains"
msgstr "Dominios Aprobados"
#. js-lingui-id: VDvaN2
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/domains/components/SettingPublicDomain.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
@@ -2257,9 +2281,15 @@ msgstr "Los archivos comprimidos no se pueden previsualizar. Descarga el archivo
msgid "Archived"
msgstr ""
#. js-lingui-id: mk25CW
#. js-lingui-id: Yzbh3i
#. placeholder {0}: emailingDomain.domain
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
msgid "Are you sure you want to delete {0}? Outbound mail through this domain will stop working."
msgstr ""
#. js-lingui-id: Faev6R
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Are you sure you want to delete {sourceHandle}? Forwarded emails will no longer arrive in this workspace."
msgid "Are you sure you want to delete {sourceHandle}? Inbound mail forwarded to this address and outbound replies from it will stop working."
msgstr ""
#. js-lingui-id: 4CHeVx
@@ -3509,6 +3539,11 @@ msgstr "Editor de Código"
msgid "Code Execution"
msgstr "Ejecución de código"
#. js-lingui-id: T9qjpu
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Code Interpreter"
msgstr ""
#. js-lingui-id: bKJYIa
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionCodeEditorTab.tsx
msgid "Code your function"
@@ -3723,11 +3758,6 @@ msgstr "Configurar una conexión SSO"
msgid "Configure and customize your calendar preferences."
msgstr "Configura y personaliza tus preferencias de calendario."
#. js-lingui-id: 5i71HM
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Configure and verify domains for emailing from this workspace."
msgstr "Configurar y verificar dominios para enviar correos electrónicos desde este espacio de trabajo."
#. js-lingui-id: 6MDr1S
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure CalDAV settings to sync your calendar events."
@@ -3816,10 +3846,15 @@ msgstr "Confirmar"
msgid "Confirm changing your current resource credit allocation."
msgstr ""
#. js-lingui-id: FbJ7Si
#. js-lingui-id: SU6Tym
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
msgstr "¿Confirmar eliminación del rol {roleName}? Esto no se puede deshacer. Todos los miembros serán reasignados al rol predeterminado."
msgid "Confirm deletion of {roleName} role? This cannot be undone."
msgstr ""
#. js-lingui-id: W7S+Tm
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. {reassignSubject} will be reassigned to the default role."
msgstr ""
#. js-lingui-id: kZkFSm
#: src/modules/settings/billing/components/internal/ResourceCreditPriceSelector.tsx
@@ -5089,6 +5124,8 @@ msgstr "eliminar"
#. js-lingui-id: cnGeoo
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -5110,7 +5147,6 @@ msgstr "eliminar"
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
#: src/modules/settings/emailing-domains/components/SettingsEmailingDomainRowDropdownMenu.tsx
#: src/modules/settings/domains/components/SettingPublicDomainRowDropdownMenu.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -5194,9 +5230,14 @@ msgstr "Eliminar aplicación"
msgid "Delete chat"
msgstr ""
#. js-lingui-id: /BTna7
#. js-lingui-id: cC09EO
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Delete email group"
msgid "Delete email handle"
msgstr ""
#. js-lingui-id: yZyuut
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
msgid "Delete emailing domain"
msgstr ""
#. js-lingui-id: gf2eXy
@@ -5537,6 +5578,7 @@ msgstr "No contiene"
#. js-lingui-id: EoKe5U
#: src/pages/settings/security/SettingsSecurityApprovedAccessDomain.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Domain"
msgstr "Dominio"
@@ -5903,9 +5945,14 @@ msgid "else if"
msgstr "en caso contrario, si"
#. js-lingui-id: O3oNi5
#: src/pages/settings/SettingsWorkspaceEmail.tsx
#: src/pages/settings/SettingsWorkspaceEmail.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/members/tabs/SettingsWorkspaceMembersTeamTab.tsx
#: src/pages/settings/members/tabs/SettingsWorkspaceMembersInviteTab.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
#: src/pages/auth/PasswordReset.tsx
@@ -5914,7 +5961,9 @@ msgstr "en caso contrario, si"
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTableHeader.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
#: src/modules/settings/members/components/MemberInfosTab.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
#: src/modules/object-record/record-field/ui/meta-types/input/components/EmailsFieldInput.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpEmailField.tsx
msgid "Email"
@@ -5943,9 +5992,9 @@ msgstr "Correo electrónico copiado al portapapeles"
msgid "Email Editor"
msgstr "Editor de Correo Electrónico"
#. js-lingui-id: KQM9eG
#. js-lingui-id: nsVRM/
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Email Groups"
msgid "Email Handles"
msgstr ""
#. js-lingui-id: lfQsvW
@@ -6015,14 +6064,12 @@ msgid "Emailing domain created successfully. Please verify the domain to start u
msgstr "Dominio de correo electrónico creado con éxito. Por favor verifica el dominio para empezar a usarlo."
#. js-lingui-id: XDpopO
#: src/modules/settings/emailing-domains/components/SettingsEmailingDomainRowDropdownMenu.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
msgid "Emailing domain deleted successfully"
msgstr "Dominio de correo electrónico eliminado con éxito"
#. js-lingui-id: axQccV
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Emailing Domains"
msgstr "Dominios de correo electrónico"
@@ -6200,6 +6247,11 @@ msgstr "Introduce un número"
msgid "Enter a UUID"
msgstr "Introduce un UUID"
#. js-lingui-id: 0AYT5C
#: src/modules/settings/application-registrations/components/ApplicationRegistrationConfigVariableEditForm.tsx
msgid "Enter a value"
msgstr ""
#. js-lingui-id: oiVP/+
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableValueInput.tsx
msgid "Enter a value to store in database"
@@ -6344,11 +6396,6 @@ msgstr "Introduce texto o escribe '/' para comandos"
msgid "Enter the credentials to set the connection"
msgstr "Ingrese las credenciales para establecer la conexión"
#. js-lingui-id: PTGfBH
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "Enter the email address you want to forward emails from (e.g. support@mycompany.com)."
msgstr ""
#. js-lingui-id: rGWgcm
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Enter the infos to set the connection"
@@ -6955,9 +7002,9 @@ msgstr "Error al añadir el modelo"
msgid "Failed to add provider"
msgstr "Error al añadir el proveedor"
#. js-lingui-id: d+6i8z
#. js-lingui-id: L9UnOU
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "Failed to create email group channel. Email group may not be configured on this server."
msgid "Failed to create email handle. Email handles may not be configured on this server."
msgstr ""
#. js-lingui-id: WM7GKt
@@ -6965,9 +7012,9 @@ msgstr ""
msgid "Failed to create tool"
msgstr "No se pudo crear la herramienta"
#. js-lingui-id: W4hzLB
#. js-lingui-id: lWoewm
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Failed to delete email group channel."
msgid "Failed to delete email handle."
msgstr ""
#. js-lingui-id: pUligB
@@ -7293,7 +7340,9 @@ msgstr "campos"
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.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/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
@@ -7682,16 +7731,9 @@ msgstr "Nombre de la función"
msgid "Functions - Settings"
msgstr "Funciones - Ajustes"
#. js-lingui-id: vYj1cC
#: src/modules/side-panel/pages/page-layout/constants/GraphTypeInformation.ts
#: src/modules/page-layout/utils/getWidgetTitle.ts
msgid "Gauge Chart"
msgstr "Gráfico de Medidor"
#. js-lingui-id: Weq9zb
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
#: src/pages/settings/applications/components/SettingsApplicationRegistrationGeneralInfo.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationDetail.tsx
@@ -7699,7 +7741,6 @@ msgstr "Gráfico de Medidor"
#: src/modules/settings/domains/components/SettingsSubdomain.tsx
#: src/modules/settings/domains/components/SettingsCustomDomain.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroupsForDisplay.ts
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
msgid "General"
@@ -8656,10 +8697,11 @@ msgstr "Correo electrónico o dominio no válido"
msgid "Invalid email verification link."
msgstr "Enlace de verificación de correo electrónico no válido."
#. js-lingui-id: uzxr9u
#. js-lingui-id: 4D6/HO
#. placeholder {0}: samlMetadataParsed.reason
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Invalid File"
msgstr "Archivo no válido"
msgid "Invalid file: {0}"
msgstr ""
#. js-lingui-id: 04zLGG
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
@@ -9778,6 +9820,8 @@ msgstr "Servidor MCP"
#. js-lingui-id: upbzgm
#: src/modules/views/hooks/useComputeRecordRelationFilterLabelValue.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionValueInput.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInput.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInput.tsx
msgid "Me"
msgstr "Yo"
@@ -10349,10 +10393,10 @@ msgstr "Nueva conversación"
msgid "New Email"
msgstr ""
#. js-lingui-id: TmlJkc
#. js-lingui-id: VJZNJt
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "New Email Group"
msgid "New Email Handle"
msgstr ""
#. js-lingui-id: wqoYqp
@@ -11687,9 +11731,11 @@ msgstr "Organizar"
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationConfigVariableDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/sign-in-background-mock/components/BackgroundMockNavigationDrawer.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
@@ -13355,6 +13401,11 @@ msgstr ""
msgid "Run a workflow and return here to view its executions"
msgstr "Ejecuta un workflow y vuelve aquí para ver sus ejecuciones"
#. js-lingui-id: rRyKdg
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Run code to analyze files and data"
msgstr ""
#. js-lingui-id: UPaWvi
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTestTab.tsx
msgid "Run Function"
@@ -13840,6 +13891,7 @@ msgstr ""
#. js-lingui-id: rG3WVm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/components/columns.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/components/SelectColumn.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInputTrigger.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordFieldChip.tsx
msgid "Select"
msgstr "Seleccionar"
@@ -14180,11 +14232,6 @@ msgstr ""
msgid "Set your application configuration variables"
msgstr "Configurar variables de configuración de su aplicación"
#. js-lingui-id: 9qcWSO
#: src/pages/settings/applications/components/SettingsApplicationRegistrationConfigVariableDetail.tsx
msgid "set-config-value"
msgstr ""
#. js-lingui-id: dQsqpC
#: src/pages/onboarding/CreateWorkspace.tsx
msgid "Setting up your database..."
@@ -14264,6 +14311,11 @@ msgstr ""
msgid "Share your app to other workspaces without pushing it on the marketplace"
msgstr ""
#. js-lingui-id: 9ZxCpH
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Shared addresses your workspace uses to send and receive email."
msgstr ""
#. js-lingui-id: NyIsOu
#: src/pages/settings/applications/components/SettingsApplicationRegistrationShareLinkButtons.tsx
msgid "Sharing link copied to clipboard"
@@ -14735,6 +14787,7 @@ msgstr "Estado"
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminInstanceStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/signing-keys/components/SettingsAdminSigningKeysTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
@@ -15137,6 +15190,8 @@ msgstr "Configuración de la pestaña"
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
@@ -15228,6 +15283,16 @@ msgstr "Texto copiado al portapapeles"
msgid "Text Editor"
msgstr "Editor de texto"
#. js-lingui-id: KJjmr/
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "The address your workspace sends and receives email from."
msgstr ""
#. js-lingui-id: Z4WP0F
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "The address your workspace will send and receive email from (e.g. support@mycompany.com). Outbound sending requires the domain to be verified in Outbound Domains."
msgstr ""
#. js-lingui-id: oVH0Mt
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
msgid "The API endpoint for your OpenAI-compatible provider"
@@ -15303,11 +15368,6 @@ msgstr ""
msgid "The email associated to your account"
msgstr "El correo electrónico asociado a tu cuenta"
#. js-lingui-id: TQGLgF
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "The external address whose mail is forwarded into the workspace."
msgstr ""
#. js-lingui-id: diO3fm
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
msgid "The icon your workflow trigger will display in the command menu"
@@ -16106,6 +16166,7 @@ msgstr "¡La configuración de la autenticación de dos factores se completó co
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
@@ -16821,8 +16882,6 @@ msgstr "Token de validez actualizado correctamente"
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableValueInput.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableValueInput.tsx
#: src/modules/page-layout/widgets/graph/graph-widget-gauge-chart/components/GraphWidgetGaugeChart.tsx
#: src/modules/page-layout/widgets/graph/graph-widget-gauge-chart/components/GraphWidgetGaugeChart.tsx
msgid "Value"
msgstr "Valor"
@@ -16872,6 +16931,11 @@ msgstr "Verificar"
msgid "Verify code from the app"
msgstr "Verificar el código desde la aplicación"
#. js-lingui-id: hdyekU
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Verify domains so the workspace can send outbound email through them."
msgstr ""
#. js-lingui-id: zS/rMV
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
msgid "Verify the code from the app"
@@ -17385,6 +17449,7 @@ msgid "Workflows"
msgstr "Workflows"
#. js-lingui-id: pmUArF
#: src/pages/settings/SettingsWorkspaceEmail.tsx
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsUsageUserDetail.tsx
#: src/pages/settings/SettingsUsage.tsx
@@ -17538,11 +17603,6 @@ msgstr ""
msgid "Workspace views require manage views permission"
msgstr "Las vistas del espacio de trabajo requieren permiso para administrar vistas"
#. js-lingui-id: 9Bn3vI
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Workspace-level shared addresses that receive forwarded mail."
msgstr ""
#. js-lingui-id: pmt7u4
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
msgid "Workspaces"
@@ -17804,11 +17864,6 @@ msgstr "Tus funciones Enterprise se desactivarán"
msgid "Your enterprise features will remain active until {cancelAtDate}."
msgstr "Tus funciones Enterprise seguirán activas hasta {cancelAtDate}."
#. js-lingui-id: 5TsUUL
#: src/modules/information-banner/components/enterprise/InformationBannerInvalidEnterpriseKey.tsx
msgid "Your enterprise key is no longer valid. Activate a new key to continue using enterprise features."
msgstr ""
#. js-lingui-id: NTpA4U
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise subscription has been canceled."
+129 -74
View File
@@ -161,6 +161,7 @@ msgstr "{0, plural, one {Sinulla ei ole oikeuksia käyttää kenttää {fieldsLi
#. js-lingui-id: pZCK0D
#. placeholder {0}: registration.name
#: src/pages/settings/applications/components/SettingsApplicationRegistrationConfigVariableDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationConfigVariableDetail.tsx
msgid "{0} - Config"
msgstr ""
@@ -210,6 +211,12 @@ msgstr ""
msgid "{0} widgets"
msgstr ""
#. js-lingui-id: 2UKfhY
#. placeholder {0}: selectedItemNames.length
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInput.tsx
msgid "{0} workspace members"
msgstr ""
#. js-lingui-id: xTgz1F
#. placeholder {1}: provider.displayName
#: src/pages/settings/applications/tabs/SettingsApplicationConnectionsSection.tsx
@@ -221,6 +228,11 @@ msgstr ""
msgid "{advancedFilterCount, plural, one {{advancedFilterCount} advanced rule} other {{advancedFilterCount} advanced rules}}"
msgstr "{advancedFilterCount, plural, one {{advancedFilterCount} kehittynyt sääntö} other {{advancedFilterCount} kehittyneet säännöt}}"
#. js-lingui-id: XWd9bY
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "{agentCount, plural, one {{agentCount} agent} other {{agentCount} agents}}"
msgstr ""
#. js-lingui-id: WGnqk6
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/hooks/useWorkflowAiAgentPermissionActions.ts
msgid "{agentDisplayName} role ({agentIdPrefix})"
@@ -236,6 +248,11 @@ msgstr "Agenttirooli: {agentLabel}"
msgid "{aggregateLabel} of {fieldLabel}"
msgstr "{aggregateLabel} {fieldLabel} määrä"
#. js-lingui-id: WhHyQh
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "{apiKeyCount, plural, one {{apiKeyCount} API key} other {{apiKeyCount} API keys}}"
msgstr ""
#. js-lingui-id: u1mVnV
#: src/modules/marketplace/components/SettingsApplicationInstallPermissionValidationModal.tsx
msgid "{appDisplayName} would like to:"
@@ -395,6 +412,11 @@ msgstr "{jobCount, plural, one {Tämä yrittää valittua työtä uudelleen. Se
msgid "{label} list"
msgstr ""
#. js-lingui-id: 1DrH/j
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "{memberCount, plural, one {{memberCount} member} other {{memberCount} members}}"
msgstr ""
#. js-lingui-id: Y32cMj
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadIntermediaryMessages.tsx
msgid "{messagesLength} emails"
@@ -523,6 +545,11 @@ msgstr ""
msgid "{visibleFieldsCount} shown"
msgstr "{visibleFieldsCount} näkyvissä"
#. js-lingui-id: WjjsAL
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
msgid "{visibleFieldsCount} visible fields"
msgstr ""
#. js-lingui-id: riMLMq
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowIteratorSubStepSwitcher.tsx
msgid "{workflowRunIteratorSubStepIterationsCount, plural, one {# item} other {# items}}"
@@ -901,7 +928,6 @@ msgstr "Toiminnot, joita käyttäjät voivat suorittaa tällä kohteella"
#: src/modules/settings/data-model/objects/components/SettingsObjectInactiveMenuDropDown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
#: src/modules/information-banner/components/enterprise/InformationBannerInvalidEnterpriseKey.tsx
msgid "Activate"
msgstr "Aktivoi"
@@ -1036,16 +1062,15 @@ msgstr "Lisää työtilaasi koskevia mukautettuja ohjeita (lisätään järjeste
msgid "Add Custom Provider"
msgstr "Lisää mukautettu tarjoaja"
#. js-lingui-id: 33pO0a
#. js-lingui-id: +Gf1IN
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Add email group"
msgid "Add email handle"
msgstr ""
#. js-lingui-id: 3O3+7h
#: src/pages/settings/emailing-domains/SettingsEmailingDomains.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomains.tsx
msgid "Add Emailing Domain"
msgstr "Lisää Sähköpostialue"
#. js-lingui-id: HMM0Sc
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Add emailing domain"
msgstr ""
#. js-lingui-id: DpV70M
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
@@ -1312,7 +1337,6 @@ msgid "Added {beautifiedCreatedAt}"
msgstr "Lisätty {beautifiedCreatedAt}"
#. js-lingui-id: jEHeq+
#: src/pages/settings/emailing-domains/SettingsEmailingDomains.tsx
#: src/modules/settings/security/components/approvedAccessDomains/SettingsApprovedAccessDomainsListCard.tsx
msgid "Added {beautifyPastDateRelative}"
msgstr "Lisätty {beautifyPastDateRelative}"
@@ -1361,6 +1385,7 @@ msgstr ""
#. js-lingui-id: 2GX/U+
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationConfigVariableDetail.tsx
msgid "Admin Panel - Apps"
msgstr ""
@@ -1954,6 +1979,7 @@ msgstr "Tapahtui odottamaton virhe. Yritä uudelleen."
#. js-lingui-id: HZFm5R
#: src/utils/date-utils.ts
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
#: src/modules/auth/sign-in-up/components/FooterNote.tsx
msgid "and"
msgstr "ja"
@@ -2188,7 +2214,6 @@ msgstr ""
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/applications/SettingsApplicationConnectionDetail.tsx
#: src/pages/settings/applications/SettingsApplicationCommandMenuItemDetail.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Applications"
msgstr "Sovellukset"
@@ -2220,7 +2245,6 @@ msgid "Approved Domains"
msgstr "Hyväksytyt verkkotunnukset"
#. js-lingui-id: VDvaN2
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/domains/components/SettingPublicDomain.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
@@ -2257,9 +2281,15 @@ msgstr "Arkistotiedostoja ei voi esikatsella. Lataa tiedosto, jotta voit tarkast
msgid "Archived"
msgstr ""
#. js-lingui-id: mk25CW
#. js-lingui-id: Yzbh3i
#. placeholder {0}: emailingDomain.domain
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
msgid "Are you sure you want to delete {0}? Outbound mail through this domain will stop working."
msgstr ""
#. js-lingui-id: Faev6R
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Are you sure you want to delete {sourceHandle}? Forwarded emails will no longer arrive in this workspace."
msgid "Are you sure you want to delete {sourceHandle}? Inbound mail forwarded to this address and outbound replies from it will stop working."
msgstr ""
#. js-lingui-id: 4CHeVx
@@ -3509,6 +3539,11 @@ msgstr "Koodieditori"
msgid "Code Execution"
msgstr "Koodin suoritus"
#. js-lingui-id: T9qjpu
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Code Interpreter"
msgstr ""
#. js-lingui-id: bKJYIa
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionCodeEditorTab.tsx
msgid "Code your function"
@@ -3723,11 +3758,6 @@ msgstr "Määritä SSO-yhteys"
msgid "Configure and customize your calendar preferences."
msgstr "Määritä ja muokkaa kalenteriasetuksiasi."
#. js-lingui-id: 5i71HM
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Configure and verify domains for emailing from this workspace."
msgstr "Määritä ja varmista toimialueet sähköpostia varten tästä työtilasta."
#. js-lingui-id: 6MDr1S
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure CalDAV settings to sync your calendar events."
@@ -3816,10 +3846,15 @@ msgstr "Vahvista"
msgid "Confirm changing your current resource credit allocation."
msgstr ""
#. js-lingui-id: FbJ7Si
#. js-lingui-id: SU6Tym
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
msgstr "Vahvista {roleName}-roolin poisto? Tätä toimintoa ei voi peruuttaa. Kaikki jäsenet siirretään oletusrooliin."
msgid "Confirm deletion of {roleName} role? This cannot be undone."
msgstr ""
#. js-lingui-id: W7S+Tm
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. {reassignSubject} will be reassigned to the default role."
msgstr ""
#. js-lingui-id: kZkFSm
#: src/modules/settings/billing/components/internal/ResourceCreditPriceSelector.tsx
@@ -5089,6 +5124,8 @@ msgstr "poista"
#. js-lingui-id: cnGeoo
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -5110,7 +5147,6 @@ msgstr "poista"
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
#: src/modules/settings/emailing-domains/components/SettingsEmailingDomainRowDropdownMenu.tsx
#: src/modules/settings/domains/components/SettingPublicDomainRowDropdownMenu.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -5194,9 +5230,14 @@ msgstr "Poista sovellus"
msgid "Delete chat"
msgstr ""
#. js-lingui-id: /BTna7
#. js-lingui-id: cC09EO
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Delete email group"
msgid "Delete email handle"
msgstr ""
#. js-lingui-id: yZyuut
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
msgid "Delete emailing domain"
msgstr ""
#. js-lingui-id: gf2eXy
@@ -5537,6 +5578,7 @@ msgstr "Ei sisällä"
#. js-lingui-id: EoKe5U
#: src/pages/settings/security/SettingsSecurityApprovedAccessDomain.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Domain"
msgstr "Verkkotunnus"
@@ -5903,9 +5945,14 @@ msgid "else if"
msgstr "muuten jos"
#. js-lingui-id: O3oNi5
#: src/pages/settings/SettingsWorkspaceEmail.tsx
#: src/pages/settings/SettingsWorkspaceEmail.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/members/tabs/SettingsWorkspaceMembersTeamTab.tsx
#: src/pages/settings/members/tabs/SettingsWorkspaceMembersInviteTab.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
#: src/pages/auth/PasswordReset.tsx
@@ -5914,7 +5961,9 @@ msgstr "muuten jos"
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTableHeader.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
#: src/modules/settings/members/components/MemberInfosTab.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
#: src/modules/object-record/record-field/ui/meta-types/input/components/EmailsFieldInput.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpEmailField.tsx
msgid "Email"
@@ -5943,9 +5992,9 @@ msgstr "Sähköposti kopioitu leikepöydälle"
msgid "Email Editor"
msgstr "Sähköpostieditori"
#. js-lingui-id: KQM9eG
#. js-lingui-id: nsVRM/
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Email Groups"
msgid "Email Handles"
msgstr ""
#. js-lingui-id: lfQsvW
@@ -6015,14 +6064,12 @@ msgid "Emailing domain created successfully. Please verify the domain to start u
msgstr "Sähköpostitoimialue luotiin onnistuneesti. Vahvista toimialue aloittaaksesi sen käytön."
#. js-lingui-id: XDpopO
#: src/modules/settings/emailing-domains/components/SettingsEmailingDomainRowDropdownMenu.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
msgid "Emailing domain deleted successfully"
msgstr "Sähköpostitoimialue poistettiin onnistuneesti"
#. js-lingui-id: axQccV
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Emailing Domains"
msgstr "Sähköpostitoimialueet"
@@ -6200,6 +6247,11 @@ msgstr "Anna numero"
msgid "Enter a UUID"
msgstr "Anna UUID"
#. js-lingui-id: 0AYT5C
#: src/modules/settings/application-registrations/components/ApplicationRegistrationConfigVariableEditForm.tsx
msgid "Enter a value"
msgstr ""
#. js-lingui-id: oiVP/+
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableValueInput.tsx
msgid "Enter a value to store in database"
@@ -6344,11 +6396,6 @@ msgstr ""
msgid "Enter the credentials to set the connection"
msgstr "Anna tunnistetiedot yhteyden muodostamiseksi"
#. js-lingui-id: PTGfBH
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "Enter the email address you want to forward emails from (e.g. support@mycompany.com)."
msgstr ""
#. js-lingui-id: rGWgcm
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Enter the infos to set the connection"
@@ -6955,9 +7002,9 @@ msgstr "Mallin lisääminen epäonnistui"
msgid "Failed to add provider"
msgstr "Tarjoajan lisääminen epäonnistui"
#. js-lingui-id: d+6i8z
#. js-lingui-id: L9UnOU
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "Failed to create email group channel. Email group may not be configured on this server."
msgid "Failed to create email handle. Email handles may not be configured on this server."
msgstr ""
#. js-lingui-id: WM7GKt
@@ -6965,9 +7012,9 @@ msgstr ""
msgid "Failed to create tool"
msgstr "Työkalun luominen epäonnistui"
#. js-lingui-id: W4hzLB
#. js-lingui-id: lWoewm
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Failed to delete email group channel."
msgid "Failed to delete email handle."
msgstr ""
#. js-lingui-id: pUligB
@@ -7293,7 +7340,9 @@ msgstr "kentät"
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.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/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
@@ -7682,16 +7731,9 @@ msgstr "Funktion nimi"
msgid "Functions - Settings"
msgstr "Toiminnot - Asetukset"
#. js-lingui-id: vYj1cC
#: src/modules/side-panel/pages/page-layout/constants/GraphTypeInformation.ts
#: src/modules/page-layout/utils/getWidgetTitle.ts
msgid "Gauge Chart"
msgstr "Mittarikaavio"
#. js-lingui-id: Weq9zb
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
#: src/pages/settings/applications/components/SettingsApplicationRegistrationGeneralInfo.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationDetail.tsx
@@ -7699,7 +7741,6 @@ msgstr "Mittarikaavio"
#: src/modules/settings/domains/components/SettingsSubdomain.tsx
#: src/modules/settings/domains/components/SettingsCustomDomain.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroupsForDisplay.ts
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
msgid "General"
@@ -8656,10 +8697,11 @@ msgstr "Virheellinen sähköpostiosoite tai verkkotunnus"
msgid "Invalid email verification link."
msgstr "Virheellinen sähköpostivarmennuslinkki."
#. js-lingui-id: uzxr9u
#. js-lingui-id: 4D6/HO
#. placeholder {0}: samlMetadataParsed.reason
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Invalid File"
msgstr "Virheellinen tiedosto"
msgid "Invalid file: {0}"
msgstr ""
#. js-lingui-id: 04zLGG
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
@@ -9778,6 +9820,8 @@ msgstr "MCP-palvelin"
#. js-lingui-id: upbzgm
#: src/modules/views/hooks/useComputeRecordRelationFilterLabelValue.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionValueInput.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInput.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInput.tsx
msgid "Me"
msgstr "Minä"
@@ -10349,10 +10393,10 @@ msgstr "Uusi keskustelu"
msgid "New Email"
msgstr ""
#. js-lingui-id: TmlJkc
#. js-lingui-id: VJZNJt
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "New Email Group"
msgid "New Email Handle"
msgstr ""
#. js-lingui-id: wqoYqp
@@ -11687,9 +11731,11 @@ msgstr ""
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationConfigVariableDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/sign-in-background-mock/components/BackgroundMockNavigationDrawer.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
@@ -13355,6 +13401,11 @@ msgstr ""
msgid "Run a workflow and return here to view its executions"
msgstr "Suorita työnkulku ja palaa tänne nähdäksesi sen suoritukset"
#. js-lingui-id: rRyKdg
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Run code to analyze files and data"
msgstr ""
#. js-lingui-id: UPaWvi
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTestTab.tsx
msgid "Run Function"
@@ -13840,6 +13891,7 @@ msgstr ""
#. js-lingui-id: rG3WVm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/components/columns.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/components/SelectColumn.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInputTrigger.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordFieldChip.tsx
msgid "Select"
msgstr "Valinta"
@@ -14180,11 +14232,6 @@ msgstr ""
msgid "Set your application configuration variables"
msgstr "Aseta sovelluksesi kokoonpanomuuttujat"
#. js-lingui-id: 9qcWSO
#: src/pages/settings/applications/components/SettingsApplicationRegistrationConfigVariableDetail.tsx
msgid "set-config-value"
msgstr ""
#. js-lingui-id: dQsqpC
#: src/pages/onboarding/CreateWorkspace.tsx
msgid "Setting up your database..."
@@ -14264,6 +14311,11 @@ msgstr ""
msgid "Share your app to other workspaces without pushing it on the marketplace"
msgstr ""
#. js-lingui-id: 9ZxCpH
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Shared addresses your workspace uses to send and receive email."
msgstr ""
#. js-lingui-id: NyIsOu
#: src/pages/settings/applications/components/SettingsApplicationRegistrationShareLinkButtons.tsx
msgid "Sharing link copied to clipboard"
@@ -14735,6 +14787,7 @@ msgstr "Tila"
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminInstanceStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/signing-keys/components/SettingsAdminSigningKeysTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
@@ -15137,6 +15190,8 @@ msgstr "Välilehden asetukset"
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
@@ -15228,6 +15283,16 @@ msgstr "Teksti kopioitu leikepöydälle"
msgid "Text Editor"
msgstr "Tekstieditori"
#. js-lingui-id: KJjmr/
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "The address your workspace sends and receives email from."
msgstr ""
#. js-lingui-id: Z4WP0F
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "The address your workspace will send and receive email from (e.g. support@mycompany.com). Outbound sending requires the domain to be verified in Outbound Domains."
msgstr ""
#. js-lingui-id: oVH0Mt
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
msgid "The API endpoint for your OpenAI-compatible provider"
@@ -15303,11 +15368,6 @@ msgstr ""
msgid "The email associated to your account"
msgstr "Sähköposti, joka on liitetty tilillesi"
#. js-lingui-id: TQGLgF
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "The external address whose mail is forwarded into the workspace."
msgstr ""
#. js-lingui-id: diO3fm
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
msgid "The icon your workflow trigger will display in the command menu"
@@ -16104,6 +16164,7 @@ msgstr "Kaksivaiheisen todennuksen asennus on valmis!"
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
@@ -16819,8 +16880,6 @@ msgstr "Voimassaolotunnus päivitettiin onnistuneesti"
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableValueInput.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableValueInput.tsx
#: src/modules/page-layout/widgets/graph/graph-widget-gauge-chart/components/GraphWidgetGaugeChart.tsx
#: src/modules/page-layout/widgets/graph/graph-widget-gauge-chart/components/GraphWidgetGaugeChart.tsx
msgid "Value"
msgstr "Arvo"
@@ -16870,6 +16929,11 @@ msgstr "Vahvista"
msgid "Verify code from the app"
msgstr "Vahvista koodi sovelluksesta"
#. js-lingui-id: hdyekU
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Verify domains so the workspace can send outbound email through them."
msgstr ""
#. js-lingui-id: zS/rMV
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
msgid "Verify the code from the app"
@@ -17383,6 +17447,7 @@ msgid "Workflows"
msgstr "Työnkulut"
#. js-lingui-id: pmUArF
#: src/pages/settings/SettingsWorkspaceEmail.tsx
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsUsageUserDetail.tsx
#: src/pages/settings/SettingsUsage.tsx
@@ -17536,11 +17601,6 @@ msgstr ""
msgid "Workspace views require manage views permission"
msgstr "Työtilan näkymät vaativat oikeudet hallintaan."
#. js-lingui-id: 9Bn3vI
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Workspace-level shared addresses that receive forwarded mail."
msgstr ""
#. js-lingui-id: pmt7u4
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
msgid "Workspaces"
@@ -17802,11 +17862,6 @@ msgstr "Enterprise-ominaisuudet poistetaan käytöstä"
msgid "Your enterprise features will remain active until {cancelAtDate}."
msgstr "Enterprise-ominaisuudet pysyvät aktiivisina {cancelAtDate} asti."
#. js-lingui-id: 5TsUUL
#: src/modules/information-banner/components/enterprise/InformationBannerInvalidEnterpriseKey.tsx
msgid "Your enterprise key is no longer valid. Activate a new key to continue using enterprise features."
msgstr ""
#. js-lingui-id: NTpA4U
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise subscription has been canceled."
+129 -74
View File
@@ -161,6 +161,7 @@ msgstr "{0, plural, one {Vous n'avez pas la permission d'accéder au champ {fiel
#. js-lingui-id: pZCK0D
#. placeholder {0}: registration.name
#: src/pages/settings/applications/components/SettingsApplicationRegistrationConfigVariableDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationConfigVariableDetail.tsx
msgid "{0} - Config"
msgstr ""
@@ -210,6 +211,12 @@ msgstr ""
msgid "{0} widgets"
msgstr ""
#. js-lingui-id: 2UKfhY
#. placeholder {0}: selectedItemNames.length
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInput.tsx
msgid "{0} workspace members"
msgstr ""
#. js-lingui-id: xTgz1F
#. placeholder {1}: provider.displayName
#: src/pages/settings/applications/tabs/SettingsApplicationConnectionsSection.tsx
@@ -221,6 +228,11 @@ msgstr ""
msgid "{advancedFilterCount, plural, one {{advancedFilterCount} advanced rule} other {{advancedFilterCount} advanced rules}}"
msgstr "{advancedFilterCount, plural, one {{advancedFilterCount} règle avancée} other {{advancedFilterCount} règles avancées}}"
#. js-lingui-id: XWd9bY
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "{agentCount, plural, one {{agentCount} agent} other {{agentCount} agents}}"
msgstr ""
#. js-lingui-id: WGnqk6
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/hooks/useWorkflowAiAgentPermissionActions.ts
msgid "{agentDisplayName} role ({agentIdPrefix})"
@@ -236,6 +248,11 @@ msgstr "Rôle d'agent {agentLabel}"
msgid "{aggregateLabel} of {fieldLabel}"
msgstr "{aggregateLabel} de {fieldLabel}"
#. js-lingui-id: WhHyQh
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "{apiKeyCount, plural, one {{apiKeyCount} API key} other {{apiKeyCount} API keys}}"
msgstr ""
#. js-lingui-id: u1mVnV
#: src/modules/marketplace/components/SettingsApplicationInstallPermissionValidationModal.tsx
msgid "{appDisplayName} would like to:"
@@ -395,6 +412,11 @@ msgstr "{jobCount, plural, one {Ceci va réessayer la tâche sélectionnée. Ell
msgid "{label} list"
msgstr ""
#. js-lingui-id: 1DrH/j
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "{memberCount, plural, one {{memberCount} member} other {{memberCount} members}}"
msgstr ""
#. js-lingui-id: Y32cMj
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadIntermediaryMessages.tsx
msgid "{messagesLength} emails"
@@ -523,6 +545,11 @@ msgstr ""
msgid "{visibleFieldsCount} shown"
msgstr "{visibleFieldsCount} affichés"
#. js-lingui-id: WjjsAL
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
msgid "{visibleFieldsCount} visible fields"
msgstr ""
#. js-lingui-id: riMLMq
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowIteratorSubStepSwitcher.tsx
msgid "{workflowRunIteratorSubStepIterationsCount, plural, one {# item} other {# items}}"
@@ -901,7 +928,6 @@ msgstr "Actions que les utilisateurs peuvent effectuer sur cet objet"
#: src/modules/settings/data-model/objects/components/SettingsObjectInactiveMenuDropDown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
#: src/modules/information-banner/components/enterprise/InformationBannerInvalidEnterpriseKey.tsx
msgid "Activate"
msgstr "Activer"
@@ -1036,16 +1062,15 @@ msgstr "Ajouter des instructions personnalisées propres à votre espace de trav
msgid "Add Custom Provider"
msgstr "Ajouter un fournisseur personnalisé"
#. js-lingui-id: 33pO0a
#. js-lingui-id: +Gf1IN
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Add email group"
msgid "Add email handle"
msgstr ""
#. js-lingui-id: 3O3+7h
#: src/pages/settings/emailing-domains/SettingsEmailingDomains.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomains.tsx
msgid "Add Emailing Domain"
msgstr "Ajouter Domaine Email"
#. js-lingui-id: HMM0Sc
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Add emailing domain"
msgstr ""
#. js-lingui-id: DpV70M
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
@@ -1312,7 +1337,6 @@ msgid "Added {beautifiedCreatedAt}"
msgstr "Ajouté {beautifiedCreatedAt}"
#. js-lingui-id: jEHeq+
#: src/pages/settings/emailing-domains/SettingsEmailingDomains.tsx
#: src/modules/settings/security/components/approvedAccessDomains/SettingsApprovedAccessDomainsListCard.tsx
msgid "Added {beautifyPastDateRelative}"
msgstr "Ajouté {beautifyPastDateRelative}"
@@ -1361,6 +1385,7 @@ msgstr ""
#. js-lingui-id: 2GX/U+
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationConfigVariableDetail.tsx
msgid "Admin Panel - Apps"
msgstr ""
@@ -1954,6 +1979,7 @@ msgstr "Une erreur inattendue s'est produite. Veuillez réessayer."
#. js-lingui-id: HZFm5R
#: src/utils/date-utils.ts
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
#: src/modules/auth/sign-in-up/components/FooterNote.tsx
msgid "and"
msgstr "et"
@@ -2188,7 +2214,6 @@ msgstr ""
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/applications/SettingsApplicationConnectionDetail.tsx
#: src/pages/settings/applications/SettingsApplicationCommandMenuItemDetail.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Applications"
msgstr "Applications"
@@ -2220,7 +2245,6 @@ msgid "Approved Domains"
msgstr "Domaines approuvés"
#. js-lingui-id: VDvaN2
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/domains/components/SettingPublicDomain.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
@@ -2257,9 +2281,15 @@ msgstr "Les fichiers d'archive ne peuvent pas être prévisualisés. Veuillez t
msgid "Archived"
msgstr ""
#. js-lingui-id: mk25CW
#. js-lingui-id: Yzbh3i
#. placeholder {0}: emailingDomain.domain
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
msgid "Are you sure you want to delete {0}? Outbound mail through this domain will stop working."
msgstr ""
#. js-lingui-id: Faev6R
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Are you sure you want to delete {sourceHandle}? Forwarded emails will no longer arrive in this workspace."
msgid "Are you sure you want to delete {sourceHandle}? Inbound mail forwarded to this address and outbound replies from it will stop working."
msgstr ""
#. js-lingui-id: 4CHeVx
@@ -3509,6 +3539,11 @@ msgstr "Éditeur de code"
msgid "Code Execution"
msgstr "Exécution de code"
#. js-lingui-id: T9qjpu
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Code Interpreter"
msgstr ""
#. js-lingui-id: bKJYIa
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionCodeEditorTab.tsx
msgid "Code your function"
@@ -3723,11 +3758,6 @@ msgstr "Configurer une connexion SSO"
msgid "Configure and customize your calendar preferences."
msgstr "Configurer et personnaliser vos préférences de calendrier."
#. js-lingui-id: 5i71HM
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Configure and verify domains for emailing from this workspace."
msgstr "Configurer et vérifier les domaines pour envoyer des e-mails depuis cet espace de travail."
#. js-lingui-id: 6MDr1S
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure CalDAV settings to sync your calendar events."
@@ -3816,10 +3846,15 @@ msgstr "Confirmer"
msgid "Confirm changing your current resource credit allocation."
msgstr ""
#. js-lingui-id: FbJ7Si
#. js-lingui-id: SU6Tym
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
msgstr "Confirmer la suppression du rôle {roleName} ? Cela ne peut pas être annulé. Tous les membres seront réassignés au rôle par défaut."
msgid "Confirm deletion of {roleName} role? This cannot be undone."
msgstr ""
#. js-lingui-id: W7S+Tm
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. {reassignSubject} will be reassigned to the default role."
msgstr ""
#. js-lingui-id: kZkFSm
#: src/modules/settings/billing/components/internal/ResourceCreditPriceSelector.tsx
@@ -5089,6 +5124,8 @@ msgstr "supprimer"
#. js-lingui-id: cnGeoo
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -5110,7 +5147,6 @@ msgstr "supprimer"
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
#: src/modules/settings/emailing-domains/components/SettingsEmailingDomainRowDropdownMenu.tsx
#: src/modules/settings/domains/components/SettingPublicDomainRowDropdownMenu.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -5194,9 +5230,14 @@ msgstr ""
msgid "Delete chat"
msgstr ""
#. js-lingui-id: /BTna7
#. js-lingui-id: cC09EO
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Delete email group"
msgid "Delete email handle"
msgstr ""
#. js-lingui-id: yZyuut
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
msgid "Delete emailing domain"
msgstr ""
#. js-lingui-id: gf2eXy
@@ -5537,6 +5578,7 @@ msgstr "Ne contient pas"
#. js-lingui-id: EoKe5U
#: src/pages/settings/security/SettingsSecurityApprovedAccessDomain.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Domain"
msgstr "Domaine"
@@ -5903,9 +5945,14 @@ msgid "else if"
msgstr "sinon si"
#. js-lingui-id: O3oNi5
#: src/pages/settings/SettingsWorkspaceEmail.tsx
#: src/pages/settings/SettingsWorkspaceEmail.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/members/tabs/SettingsWorkspaceMembersTeamTab.tsx
#: src/pages/settings/members/tabs/SettingsWorkspaceMembersInviteTab.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
#: src/pages/auth/PasswordReset.tsx
@@ -5914,7 +5961,9 @@ msgstr "sinon si"
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTableHeader.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
#: src/modules/settings/members/components/MemberInfosTab.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
#: src/modules/object-record/record-field/ui/meta-types/input/components/EmailsFieldInput.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpEmailField.tsx
msgid "Email"
@@ -5943,9 +5992,9 @@ msgstr "Email copié dans le presse-papiers"
msgid "Email Editor"
msgstr "Éditeur dEmail"
#. js-lingui-id: KQM9eG
#. js-lingui-id: nsVRM/
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Email Groups"
msgid "Email Handles"
msgstr ""
#. js-lingui-id: lfQsvW
@@ -6015,14 +6064,12 @@ msgid "Emailing domain created successfully. Please verify the domain to start u
msgstr "E-mail domaine créé avec succès. Veuillez vérifier le domaine pour commencer à l'utiliser."
#. js-lingui-id: XDpopO
#: src/modules/settings/emailing-domains/components/SettingsEmailingDomainRowDropdownMenu.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
msgid "Emailing domain deleted successfully"
msgstr "Domaine d'envoi d'e-mail supprimé avec succès"
#. js-lingui-id: axQccV
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Emailing Domains"
msgstr "Domaines d'envoi d'e-mail"
@@ -6200,6 +6247,11 @@ msgstr "Saisissez un nombre"
msgid "Enter a UUID"
msgstr "Saisissez un UUID"
#. js-lingui-id: 0AYT5C
#: src/modules/settings/application-registrations/components/ApplicationRegistrationConfigVariableEditForm.tsx
msgid "Enter a value"
msgstr ""
#. js-lingui-id: oiVP/+
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableValueInput.tsx
msgid "Enter a value to store in database"
@@ -6344,11 +6396,6 @@ msgstr ""
msgid "Enter the credentials to set the connection"
msgstr "Entrez les identifiants pour établir la connexion"
#. js-lingui-id: PTGfBH
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "Enter the email address you want to forward emails from (e.g. support@mycompany.com)."
msgstr ""
#. js-lingui-id: rGWgcm
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Enter the infos to set the connection"
@@ -6955,9 +7002,9 @@ msgstr "Échec de l'ajout du modèle"
msgid "Failed to add provider"
msgstr "Échec de l'ajout du fournisseur"
#. js-lingui-id: d+6i8z
#. js-lingui-id: L9UnOU
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "Failed to create email group channel. Email group may not be configured on this server."
msgid "Failed to create email handle. Email handles may not be configured on this server."
msgstr ""
#. js-lingui-id: WM7GKt
@@ -6965,9 +7012,9 @@ msgstr ""
msgid "Failed to create tool"
msgstr "Échec de la création de l'outil"
#. js-lingui-id: W4hzLB
#. js-lingui-id: lWoewm
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Failed to delete email group channel."
msgid "Failed to delete email handle."
msgstr ""
#. js-lingui-id: pUligB
@@ -7293,7 +7340,9 @@ msgstr "champs"
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.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/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
@@ -7682,16 +7731,9 @@ msgstr "Nom de la fonction"
msgid "Functions - Settings"
msgstr "Fonctions - Paramètres"
#. js-lingui-id: vYj1cC
#: src/modules/side-panel/pages/page-layout/constants/GraphTypeInformation.ts
#: src/modules/page-layout/utils/getWidgetTitle.ts
msgid "Gauge Chart"
msgstr ""
#. js-lingui-id: Weq9zb
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
#: src/pages/settings/applications/components/SettingsApplicationRegistrationGeneralInfo.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationDetail.tsx
@@ -7699,7 +7741,6 @@ msgstr ""
#: src/modules/settings/domains/components/SettingsSubdomain.tsx
#: src/modules/settings/domains/components/SettingsCustomDomain.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroupsForDisplay.ts
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
msgid "General"
@@ -8656,10 +8697,11 @@ msgstr "Email ou domaine invalide"
msgid "Invalid email verification link."
msgstr "Lien de vérification de l'email invalide."
#. js-lingui-id: uzxr9u
#. js-lingui-id: 4D6/HO
#. placeholder {0}: samlMetadataParsed.reason
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Invalid File"
msgstr "Fichier invalide"
msgid "Invalid file: {0}"
msgstr ""
#. js-lingui-id: 04zLGG
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
@@ -9778,6 +9820,8 @@ msgstr "Serveur MCP"
#. js-lingui-id: upbzgm
#: src/modules/views/hooks/useComputeRecordRelationFilterLabelValue.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionValueInput.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInput.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInput.tsx
msgid "Me"
msgstr "Moi"
@@ -10349,10 +10393,10 @@ msgstr "Nouvelle conversation"
msgid "New Email"
msgstr ""
#. js-lingui-id: TmlJkc
#. js-lingui-id: VJZNJt
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "New Email Group"
msgid "New Email Handle"
msgstr ""
#. js-lingui-id: wqoYqp
@@ -11687,9 +11731,11 @@ msgstr "Organiser"
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationConfigVariableDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/sign-in-background-mock/components/BackgroundMockNavigationDrawer.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
@@ -13355,6 +13401,11 @@ msgstr ""
msgid "Run a workflow and return here to view its executions"
msgstr "Exécutez un workflow et revenez ici pour voir ses exécutions"
#. js-lingui-id: rRyKdg
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Run code to analyze files and data"
msgstr ""
#. js-lingui-id: UPaWvi
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTestTab.tsx
msgid "Run Function"
@@ -13840,6 +13891,7 @@ msgstr ""
#. js-lingui-id: rG3WVm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/components/columns.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/components/SelectColumn.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInputTrigger.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordFieldChip.tsx
msgid "Select"
msgstr "Sélectionner"
@@ -14180,11 +14232,6 @@ msgstr ""
msgid "Set your application configuration variables"
msgstr "Configurer les variables de configuration de votre application"
#. js-lingui-id: 9qcWSO
#: src/pages/settings/applications/components/SettingsApplicationRegistrationConfigVariableDetail.tsx
msgid "set-config-value"
msgstr ""
#. js-lingui-id: dQsqpC
#: src/pages/onboarding/CreateWorkspace.tsx
msgid "Setting up your database..."
@@ -14264,6 +14311,11 @@ msgstr ""
msgid "Share your app to other workspaces without pushing it on the marketplace"
msgstr ""
#. js-lingui-id: 9ZxCpH
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Shared addresses your workspace uses to send and receive email."
msgstr ""
#. js-lingui-id: NyIsOu
#: src/pages/settings/applications/components/SettingsApplicationRegistrationShareLinkButtons.tsx
msgid "Sharing link copied to clipboard"
@@ -14735,6 +14787,7 @@ msgstr "État"
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminInstanceStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/signing-keys/components/SettingsAdminSigningKeysTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
@@ -15137,6 +15190,8 @@ msgstr "Paramètres de l'onglet"
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
@@ -15228,6 +15283,16 @@ msgstr "Texte copié dans le presse-papiers"
msgid "Text Editor"
msgstr "Éditeur de texte"
#. js-lingui-id: KJjmr/
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "The address your workspace sends and receives email from."
msgstr ""
#. js-lingui-id: Z4WP0F
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "The address your workspace will send and receive email from (e.g. support@mycompany.com). Outbound sending requires the domain to be verified in Outbound Domains."
msgstr ""
#. js-lingui-id: oVH0Mt
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
msgid "The API endpoint for your OpenAI-compatible provider"
@@ -15303,11 +15368,6 @@ msgstr ""
msgid "The email associated to your account"
msgstr "L'email associé à votre compte"
#. js-lingui-id: TQGLgF
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "The external address whose mail is forwarded into the workspace."
msgstr ""
#. js-lingui-id: diO3fm
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
msgid "The icon your workflow trigger will display in the command menu"
@@ -16106,6 +16166,7 @@ msgstr "Configuration de l'authentification à deux facteurs terminée avec succ
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
@@ -16821,8 +16882,6 @@ msgstr "Jeton de validité actualisé avec succès"
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableValueInput.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableValueInput.tsx
#: src/modules/page-layout/widgets/graph/graph-widget-gauge-chart/components/GraphWidgetGaugeChart.tsx
#: src/modules/page-layout/widgets/graph/graph-widget-gauge-chart/components/GraphWidgetGaugeChart.tsx
msgid "Value"
msgstr "Valeur"
@@ -16872,6 +16931,11 @@ msgstr "Vérifier"
msgid "Verify code from the app"
msgstr "Vérifiez le code depuis l'application"
#. js-lingui-id: hdyekU
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Verify domains so the workspace can send outbound email through them."
msgstr ""
#. js-lingui-id: zS/rMV
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
msgid "Verify the code from the app"
@@ -17385,6 +17449,7 @@ msgid "Workflows"
msgstr "Workflows"
#. js-lingui-id: pmUArF
#: src/pages/settings/SettingsWorkspaceEmail.tsx
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsUsageUserDetail.tsx
#: src/pages/settings/SettingsUsage.tsx
@@ -17538,11 +17603,6 @@ msgstr ""
msgid "Workspace views require manage views permission"
msgstr "Les vues de l'espace de travail nécessitent l'autorisation de gestion des vues"
#. js-lingui-id: 9Bn3vI
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Workspace-level shared addresses that receive forwarded mail."
msgstr ""
#. js-lingui-id: pmt7u4
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
msgid "Workspaces"
@@ -17804,11 +17864,6 @@ msgstr "Vos fonctionnalités Enterprise seront désactivées"
msgid "Your enterprise features will remain active until {cancelAtDate}."
msgstr "Vos fonctionnalités Enterprise resteront actives jusqu'au {cancelAtDate}."
#. js-lingui-id: 5TsUUL
#: src/modules/information-banner/components/enterprise/InformationBannerInvalidEnterpriseKey.tsx
msgid "Your enterprise key is no longer valid. Activate a new key to continue using enterprise features."
msgstr ""
#. js-lingui-id: NTpA4U
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise subscription has been canceled."
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
+129 -74
View File
@@ -161,6 +161,7 @@ msgstr "{0, plural, one {אין לך גישה לשדה {fieldsList}} two {אין
#. js-lingui-id: pZCK0D
#. placeholder {0}: registration.name
#: src/pages/settings/applications/components/SettingsApplicationRegistrationConfigVariableDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationConfigVariableDetail.tsx
msgid "{0} - Config"
msgstr ""
@@ -210,6 +211,12 @@ msgstr ""
msgid "{0} widgets"
msgstr ""
#. js-lingui-id: 2UKfhY
#. placeholder {0}: selectedItemNames.length
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInput.tsx
msgid "{0} workspace members"
msgstr ""
#. js-lingui-id: xTgz1F
#. placeholder {1}: provider.displayName
#: src/pages/settings/applications/tabs/SettingsApplicationConnectionsSection.tsx
@@ -221,6 +228,11 @@ msgstr ""
msgid "{advancedFilterCount, plural, one {{advancedFilterCount} advanced rule} other {{advancedFilterCount} advanced rules}}"
msgstr "{advancedFilterCount, plural, one {{advancedFilterCount} כלל מתקדם} two {{advancedFilterCount} כללים מתקדמים} many {{advancedFilterCount} כללים מתקדמים} other {{advancedFilterCount} כללים מתקדמים}}"
#. js-lingui-id: XWd9bY
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "{agentCount, plural, one {{agentCount} agent} other {{agentCount} agents}}"
msgstr ""
#. js-lingui-id: WGnqk6
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/hooks/useWorkflowAiAgentPermissionActions.ts
msgid "{agentDisplayName} role ({agentIdPrefix})"
@@ -236,6 +248,11 @@ msgstr "תפקיד הסוכן {agentLabel}"
msgid "{aggregateLabel} of {fieldLabel}"
msgstr "{aggregateLabel} של {fieldLabel}"
#. js-lingui-id: WhHyQh
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "{apiKeyCount, plural, one {{apiKeyCount} API key} other {{apiKeyCount} API keys}}"
msgstr ""
#. js-lingui-id: u1mVnV
#: src/modules/marketplace/components/SettingsApplicationInstallPermissionValidationModal.tsx
msgid "{appDisplayName} would like to:"
@@ -395,6 +412,11 @@ msgstr "{jobCount, plural, one {זה ינסה להפעיל מחדש את העב
msgid "{label} list"
msgstr ""
#. js-lingui-id: 1DrH/j
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "{memberCount, plural, one {{memberCount} member} other {{memberCount} members}}"
msgstr ""
#. js-lingui-id: Y32cMj
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadIntermediaryMessages.tsx
msgid "{messagesLength} emails"
@@ -523,6 +545,11 @@ msgstr ""
msgid "{visibleFieldsCount} shown"
msgstr "מוצגים {visibleFieldsCount}"
#. js-lingui-id: WjjsAL
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
msgid "{visibleFieldsCount} visible fields"
msgstr ""
#. js-lingui-id: riMLMq
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowIteratorSubStepSwitcher.tsx
msgid "{workflowRunIteratorSubStepIterationsCount, plural, one {# item} other {# items}}"
@@ -901,7 +928,6 @@ msgstr "פעולות משתמשים יכולים לבצע על אובייקט ז
#: src/modules/settings/data-model/objects/components/SettingsObjectInactiveMenuDropDown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
#: src/modules/information-banner/components/enterprise/InformationBannerInvalidEnterpriseKey.tsx
msgid "Activate"
msgstr "הפעל"
@@ -1036,16 +1062,15 @@ msgstr "הוסף הנחיות מותאמות אישית ספציפיות לסב
msgid "Add Custom Provider"
msgstr "הוסף ספק מותאם אישית"
#. js-lingui-id: 33pO0a
#. js-lingui-id: +Gf1IN
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Add email group"
msgid "Add email handle"
msgstr ""
#. js-lingui-id: 3O3+7h
#: src/pages/settings/emailing-domains/SettingsEmailingDomains.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomains.tsx
msgid "Add Emailing Domain"
msgstr "הוסף דומיין למשלוח דואר"
#. js-lingui-id: HMM0Sc
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Add emailing domain"
msgstr ""
#. js-lingui-id: DpV70M
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
@@ -1312,7 +1337,6 @@ msgid "Added {beautifiedCreatedAt}"
msgstr "נוסף ב-{beautifiedCreatedAt}"
#. js-lingui-id: jEHeq+
#: src/pages/settings/emailing-domains/SettingsEmailingDomains.tsx
#: src/modules/settings/security/components/approvedAccessDomains/SettingsApprovedAccessDomainsListCard.tsx
msgid "Added {beautifyPastDateRelative}"
msgstr "נוסף ב-{beautifyPastDateRelative}"
@@ -1361,6 +1385,7 @@ msgstr ""
#. js-lingui-id: 2GX/U+
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationConfigVariableDetail.tsx
msgid "Admin Panel - Apps"
msgstr ""
@@ -1954,6 +1979,7 @@ msgstr "אירעה שגיאה בלתי צפויה. נא לנסות שוב."
#. js-lingui-id: HZFm5R
#: src/utils/date-utils.ts
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
#: src/modules/auth/sign-in-up/components/FooterNote.tsx
msgid "and"
msgstr "וגם"
@@ -2188,7 +2214,6 @@ msgstr ""
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/applications/SettingsApplicationConnectionDetail.tsx
#: src/pages/settings/applications/SettingsApplicationCommandMenuItemDetail.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Applications"
msgstr "יישומים"
@@ -2220,7 +2245,6 @@ msgid "Approved Domains"
msgstr "דומיינים מאושרים"
#. js-lingui-id: VDvaN2
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/domains/components/SettingPublicDomain.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
@@ -2257,9 +2281,15 @@ msgstr "לא ניתן להציג תצוגה מקדימה של קובצי ארכ
msgid "Archived"
msgstr ""
#. js-lingui-id: mk25CW
#. js-lingui-id: Yzbh3i
#. placeholder {0}: emailingDomain.domain
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
msgid "Are you sure you want to delete {0}? Outbound mail through this domain will stop working."
msgstr ""
#. js-lingui-id: Faev6R
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Are you sure you want to delete {sourceHandle}? Forwarded emails will no longer arrive in this workspace."
msgid "Are you sure you want to delete {sourceHandle}? Inbound mail forwarded to this address and outbound replies from it will stop working."
msgstr ""
#. js-lingui-id: 4CHeVx
@@ -3509,6 +3539,11 @@ msgstr "עורך קוד"
msgid "Code Execution"
msgstr "ביצוע קוד"
#. js-lingui-id: T9qjpu
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Code Interpreter"
msgstr ""
#. js-lingui-id: bKJYIa
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionCodeEditorTab.tsx
msgid "Code your function"
@@ -3723,11 +3758,6 @@ msgstr "הגדר חיבור SSO"
msgid "Configure and customize your calendar preferences."
msgstr "הגדר והתאם אישית את העדפות לוח השנה שלך."
#. js-lingui-id: 5i71HM
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Configure and verify domains for emailing from this workspace."
msgstr "<span dir=\"rtl\">הגדר ואמת דומיינים לשליחת מיילים מתוך סביבת עבודה זו.</span>"
#. js-lingui-id: 6MDr1S
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure CalDAV settings to sync your calendar events."
@@ -3816,10 +3846,15 @@ msgstr "אישור"
msgid "Confirm changing your current resource credit allocation."
msgstr ""
#. js-lingui-id: FbJ7Si
#. js-lingui-id: SU6Tym
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
msgstr "אישור מחיקת תפקיד {roleName}? לא ניתן לבטל זאת. כל החברים יוקצו לתפקיד ברירת המחדל."
msgid "Confirm deletion of {roleName} role? This cannot be undone."
msgstr ""
#. js-lingui-id: W7S+Tm
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. {reassignSubject} will be reassigned to the default role."
msgstr ""
#. js-lingui-id: kZkFSm
#: src/modules/settings/billing/components/internal/ResourceCreditPriceSelector.tsx
@@ -5089,6 +5124,8 @@ msgstr "מחק"
#. js-lingui-id: cnGeoo
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -5110,7 +5147,6 @@ msgstr "מחק"
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
#: src/modules/settings/emailing-domains/components/SettingsEmailingDomainRowDropdownMenu.tsx
#: src/modules/settings/domains/components/SettingPublicDomainRowDropdownMenu.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -5194,9 +5230,14 @@ msgstr "מחק אפליקציה"
msgid "Delete chat"
msgstr ""
#. js-lingui-id: /BTna7
#. js-lingui-id: cC09EO
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Delete email group"
msgid "Delete email handle"
msgstr ""
#. js-lingui-id: yZyuut
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
msgid "Delete emailing domain"
msgstr ""
#. js-lingui-id: gf2eXy
@@ -5537,6 +5578,7 @@ msgstr "לא כולל"
#. js-lingui-id: EoKe5U
#: src/pages/settings/security/SettingsSecurityApprovedAccessDomain.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Domain"
msgstr "תחום"
@@ -5903,9 +5945,14 @@ msgid "else if"
msgstr "אחרת אם"
#. js-lingui-id: O3oNi5
#: src/pages/settings/SettingsWorkspaceEmail.tsx
#: src/pages/settings/SettingsWorkspaceEmail.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/members/tabs/SettingsWorkspaceMembersTeamTab.tsx
#: src/pages/settings/members/tabs/SettingsWorkspaceMembersInviteTab.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
#: src/pages/auth/PasswordReset.tsx
@@ -5914,7 +5961,9 @@ msgstr "אחרת אם"
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTableHeader.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
#: src/modules/settings/members/components/MemberInfosTab.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
#: src/modules/object-record/record-field/ui/meta-types/input/components/EmailsFieldInput.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpEmailField.tsx
msgid "Email"
@@ -5943,9 +5992,9 @@ msgstr "האימייל הועתק ללוח הגזירים"
msgid "Email Editor"
msgstr "עורך האימיילים"
#. js-lingui-id: KQM9eG
#. js-lingui-id: nsVRM/
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Email Groups"
msgid "Email Handles"
msgstr ""
#. js-lingui-id: lfQsvW
@@ -6015,14 +6064,12 @@ msgid "Emailing domain created successfully. Please verify the domain to start u
msgstr "<span dir=\"rtl\">דומיין לשליחת מיילים נוצר בהצלחה. נא לאמת את הדומיין כדי להתחיל להשתמש בו.</span>"
#. js-lingui-id: XDpopO
#: src/modules/settings/emailing-domains/components/SettingsEmailingDomainRowDropdownMenu.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
msgid "Emailing domain deleted successfully"
msgstr "<span dir=\"rtl\">דומיין לשליחת מיילים נמחק בהצלחה</span>"
#. js-lingui-id: axQccV
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Emailing Domains"
msgstr "<span dir=\"rtl\">דומיינים לשליחת מיילים</span>"
@@ -6200,6 +6247,11 @@ msgstr "הזן מספר"
msgid "Enter a UUID"
msgstr "הזן UUID"
#. js-lingui-id: 0AYT5C
#: src/modules/settings/application-registrations/components/ApplicationRegistrationConfigVariableEditForm.tsx
msgid "Enter a value"
msgstr ""
#. js-lingui-id: oiVP/+
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableValueInput.tsx
msgid "Enter a value to store in database"
@@ -6344,11 +6396,6 @@ msgstr ""
msgid "Enter the credentials to set the connection"
msgstr "הזן את הנתונים האישיים כדי להגדיר את החיבור"
#. js-lingui-id: PTGfBH
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "Enter the email address you want to forward emails from (e.g. support@mycompany.com)."
msgstr ""
#. js-lingui-id: rGWgcm
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Enter the infos to set the connection"
@@ -6955,9 +7002,9 @@ msgstr "הוספת המודל נכשלה"
msgid "Failed to add provider"
msgstr "הוספת הספק נכשלה"
#. js-lingui-id: d+6i8z
#. js-lingui-id: L9UnOU
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "Failed to create email group channel. Email group may not be configured on this server."
msgid "Failed to create email handle. Email handles may not be configured on this server."
msgstr ""
#. js-lingui-id: WM7GKt
@@ -6965,9 +7012,9 @@ msgstr ""
msgid "Failed to create tool"
msgstr "יצירת הכלי נכשלה"
#. js-lingui-id: W4hzLB
#. js-lingui-id: lWoewm
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Failed to delete email group channel."
msgid "Failed to delete email handle."
msgstr ""
#. js-lingui-id: pUligB
@@ -7293,7 +7340,9 @@ msgstr "שדות"
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.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/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
@@ -7682,16 +7731,9 @@ msgstr "שם הפונקציה"
msgid "Functions - Settings"
msgstr "פונקציות - הגדרות"
#. js-lingui-id: vYj1cC
#: src/modules/side-panel/pages/page-layout/constants/GraphTypeInformation.ts
#: src/modules/page-layout/utils/getWidgetTitle.ts
msgid "Gauge Chart"
msgstr "תרשים מד"
#. js-lingui-id: Weq9zb
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
#: src/pages/settings/applications/components/SettingsApplicationRegistrationGeneralInfo.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationDetail.tsx
@@ -7699,7 +7741,6 @@ msgstr "תרשים מד"
#: src/modules/settings/domains/components/SettingsSubdomain.tsx
#: src/modules/settings/domains/components/SettingsCustomDomain.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroupsForDisplay.ts
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
msgid "General"
@@ -8656,10 +8697,11 @@ msgstr "דוא\"ל או דומיין לא חוקי"
msgid "Invalid email verification link."
msgstr "קישור אימות דוא\"ל לא תקין."
#. js-lingui-id: uzxr9u
#. js-lingui-id: 4D6/HO
#. placeholder {0}: samlMetadataParsed.reason
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Invalid File"
msgstr "קובץ לא תקין"
msgid "Invalid file: {0}"
msgstr ""
#. js-lingui-id: 04zLGG
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
@@ -9778,6 +9820,8 @@ msgstr "שרת MCP"
#. js-lingui-id: upbzgm
#: src/modules/views/hooks/useComputeRecordRelationFilterLabelValue.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionValueInput.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInput.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInput.tsx
msgid "Me"
msgstr "אני"
@@ -10349,10 +10393,10 @@ msgstr "שיחה חדשה"
msgid "New Email"
msgstr ""
#. js-lingui-id: TmlJkc
#. js-lingui-id: VJZNJt
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "New Email Group"
msgid "New Email Handle"
msgstr ""
#. js-lingui-id: wqoYqp
@@ -11687,9 +11731,11 @@ msgstr "ארגון"
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationConfigVariableDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/sign-in-background-mock/components/BackgroundMockNavigationDrawer.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
@@ -13355,6 +13401,11 @@ msgstr ""
msgid "Run a workflow and return here to view its executions"
msgstr "\\"
#. js-lingui-id: rRyKdg
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Run code to analyze files and data"
msgstr ""
#. js-lingui-id: UPaWvi
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTestTab.tsx
msgid "Run Function"
@@ -13840,6 +13891,7 @@ msgstr ""
#. js-lingui-id: rG3WVm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/components/columns.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/components/SelectColumn.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInputTrigger.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordFieldChip.tsx
msgid "Select"
msgstr "בחר"
@@ -14180,11 +14232,6 @@ msgstr ""
msgid "Set your application configuration variables"
msgstr "קבע את משתני תצורת היישום שלך"
#. js-lingui-id: 9qcWSO
#: src/pages/settings/applications/components/SettingsApplicationRegistrationConfigVariableDetail.tsx
msgid "set-config-value"
msgstr ""
#. js-lingui-id: dQsqpC
#: src/pages/onboarding/CreateWorkspace.tsx
msgid "Setting up your database..."
@@ -14264,6 +14311,11 @@ msgstr ""
msgid "Share your app to other workspaces without pushing it on the marketplace"
msgstr ""
#. js-lingui-id: 9ZxCpH
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Shared addresses your workspace uses to send and receive email."
msgstr ""
#. js-lingui-id: NyIsOu
#: src/pages/settings/applications/components/SettingsApplicationRegistrationShareLinkButtons.tsx
msgid "Sharing link copied to clipboard"
@@ -14735,6 +14787,7 @@ msgstr "מצב"
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminInstanceStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/signing-keys/components/SettingsAdminSigningKeysTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
@@ -15137,6 +15190,8 @@ msgstr "הגדרות כרטיסייה"
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
@@ -15228,6 +15283,16 @@ msgstr "הטקסט הועתק ללוח הגזירים"
msgid "Text Editor"
msgstr "עורך טקסט"
#. js-lingui-id: KJjmr/
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "The address your workspace sends and receives email from."
msgstr ""
#. js-lingui-id: Z4WP0F
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "The address your workspace will send and receive email from (e.g. support@mycompany.com). Outbound sending requires the domain to be verified in Outbound Domains."
msgstr ""
#. js-lingui-id: oVH0Mt
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
msgid "The API endpoint for your OpenAI-compatible provider"
@@ -15303,11 +15368,6 @@ msgstr ""
msgid "The email associated to your account"
msgstr "\\"
#. js-lingui-id: TQGLgF
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "The external address whose mail is forwarded into the workspace."
msgstr ""
#. js-lingui-id: diO3fm
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
msgid "The icon your workflow trigger will display in the command menu"
@@ -16104,6 +16164,7 @@ msgstr "הגדרת האימות הדו-שלבי הושלמה בהצלחה!"
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
@@ -16819,8 +16880,6 @@ msgstr "אסימון התוקף רוענן בהצלחה"
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableValueInput.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableValueInput.tsx
#: src/modules/page-layout/widgets/graph/graph-widget-gauge-chart/components/GraphWidgetGaugeChart.tsx
#: src/modules/page-layout/widgets/graph/graph-widget-gauge-chart/components/GraphWidgetGaugeChart.tsx
msgid "Value"
msgstr "ערך"
@@ -16870,6 +16929,11 @@ msgstr "אמת"
msgid "Verify code from the app"
msgstr "אמת קוד מהאפליקציה"
#. js-lingui-id: hdyekU
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Verify domains so the workspace can send outbound email through them."
msgstr ""
#. js-lingui-id: zS/rMV
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
msgid "Verify the code from the app"
@@ -17383,6 +17447,7 @@ msgid "Workflows"
msgstr "זרימות עבודה"
#. js-lingui-id: pmUArF
#: src/pages/settings/SettingsWorkspaceEmail.tsx
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsUsageUserDetail.tsx
#: src/pages/settings/SettingsUsage.tsx
@@ -17536,11 +17601,6 @@ msgstr ""
msgid "Workspace views require manage views permission"
msgstr "התצוגות של מרחב העבודה דורשות הרשאת ניהול תצוגות"
#. js-lingui-id: 9Bn3vI
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Workspace-level shared addresses that receive forwarded mail."
msgstr ""
#. js-lingui-id: pmt7u4
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
msgid "Workspaces"
@@ -17802,11 +17862,6 @@ msgstr "תכונות ה-Enterprise שלך יושבתו"
msgid "Your enterprise features will remain active until {cancelAtDate}."
msgstr "תכונות ה-Enterprise שלך יישארו פעילות עד {cancelAtDate}."
#. js-lingui-id: 5TsUUL
#: src/modules/information-banner/components/enterprise/InformationBannerInvalidEnterpriseKey.tsx
msgid "Your enterprise key is no longer valid. Activate a new key to continue using enterprise features."
msgstr ""
#. js-lingui-id: NTpA4U
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise subscription has been canceled."
+129 -74
View File
@@ -161,6 +161,7 @@ msgstr "{0, plural, one {Nincs jogosultsága a(z) {fieldsList} mező eléréséh
#. js-lingui-id: pZCK0D
#. placeholder {0}: registration.name
#: src/pages/settings/applications/components/SettingsApplicationRegistrationConfigVariableDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationConfigVariableDetail.tsx
msgid "{0} - Config"
msgstr ""
@@ -210,6 +211,12 @@ msgstr ""
msgid "{0} widgets"
msgstr ""
#. js-lingui-id: 2UKfhY
#. placeholder {0}: selectedItemNames.length
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInput.tsx
msgid "{0} workspace members"
msgstr ""
#. js-lingui-id: xTgz1F
#. placeholder {1}: provider.displayName
#: src/pages/settings/applications/tabs/SettingsApplicationConnectionsSection.tsx
@@ -221,6 +228,11 @@ msgstr ""
msgid "{advancedFilterCount, plural, one {{advancedFilterCount} advanced rule} other {{advancedFilterCount} advanced rules}}"
msgstr "{advancedFilterCount, plural, one {{advancedFilterCount} haladó szabály} other {{advancedFilterCount} haladó szabályok}}"
#. js-lingui-id: XWd9bY
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "{agentCount, plural, one {{agentCount} agent} other {{agentCount} agents}}"
msgstr ""
#. js-lingui-id: WGnqk6
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/hooks/useWorkflowAiAgentPermissionActions.ts
msgid "{agentDisplayName} role ({agentIdPrefix})"
@@ -236,6 +248,11 @@ msgstr "{agentLabel} ügynök szerepköre"
msgid "{aggregateLabel} of {fieldLabel}"
msgstr "{aggregateLabel} a(z) {fieldLabel} alapján"
#. js-lingui-id: WhHyQh
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "{apiKeyCount, plural, one {{apiKeyCount} API key} other {{apiKeyCount} API keys}}"
msgstr ""
#. js-lingui-id: u1mVnV
#: src/modules/marketplace/components/SettingsApplicationInstallPermissionValidationModal.tsx
msgid "{appDisplayName} would like to:"
@@ -395,6 +412,11 @@ msgstr "{jobCount, plural, one {Ez újraindítja a kijelölt állást. Újra vé
msgid "{label} list"
msgstr ""
#. js-lingui-id: 1DrH/j
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "{memberCount, plural, one {{memberCount} member} other {{memberCount} members}}"
msgstr ""
#. js-lingui-id: Y32cMj
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadIntermediaryMessages.tsx
msgid "{messagesLength} emails"
@@ -523,6 +545,11 @@ msgstr ""
msgid "{visibleFieldsCount} shown"
msgstr "{visibleFieldsCount} megjelenítve"
#. js-lingui-id: WjjsAL
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
msgid "{visibleFieldsCount} visible fields"
msgstr ""
#. js-lingui-id: riMLMq
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowIteratorSubStepSwitcher.tsx
msgid "{workflowRunIteratorSubStepIterationsCount, plural, one {# item} other {# items}}"
@@ -901,7 +928,6 @@ msgstr "Műveletek, amelyeket a felhasználók ezen az objektumon végrehajthatn
#: src/modules/settings/data-model/objects/components/SettingsObjectInactiveMenuDropDown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
#: src/modules/information-banner/components/enterprise/InformationBannerInvalidEnterpriseKey.tsx
msgid "Activate"
msgstr "Aktiválás"
@@ -1036,16 +1062,15 @@ msgstr "Adjon hozzá a munkaterületére jellemző egyéni utasításokat (a ren
msgid "Add Custom Provider"
msgstr "Egyéni szolgáltató hozzáadása"
#. js-lingui-id: 33pO0a
#. js-lingui-id: +Gf1IN
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Add email group"
msgid "Add email handle"
msgstr ""
#. js-lingui-id: 3O3+7h
#: src/pages/settings/emailing-domains/SettingsEmailingDomains.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomains.tsx
msgid "Add Emailing Domain"
msgstr "Email domain hozzáadása"
#. js-lingui-id: HMM0Sc
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Add emailing domain"
msgstr ""
#. js-lingui-id: DpV70M
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
@@ -1312,7 +1337,6 @@ msgid "Added {beautifiedCreatedAt}"
msgstr "Hozzáadva {beautifiedCreatedAt}"
#. js-lingui-id: jEHeq+
#: src/pages/settings/emailing-domains/SettingsEmailingDomains.tsx
#: src/modules/settings/security/components/approvedAccessDomains/SettingsApprovedAccessDomainsListCard.tsx
msgid "Added {beautifyPastDateRelative}"
msgstr "Hozzáadva {beautifyPastDateRelative}"
@@ -1361,6 +1385,7 @@ msgstr ""
#. js-lingui-id: 2GX/U+
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationConfigVariableDetail.tsx
msgid "Admin Panel - Apps"
msgstr ""
@@ -1954,6 +1979,7 @@ msgstr "Váratlan hiba történt. Kérjük, próbálja meg újra."
#. js-lingui-id: HZFm5R
#: src/utils/date-utils.ts
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
#: src/modules/auth/sign-in-up/components/FooterNote.tsx
msgid "and"
msgstr "és"
@@ -2188,7 +2214,6 @@ msgstr ""
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/applications/SettingsApplicationConnectionDetail.tsx
#: src/pages/settings/applications/SettingsApplicationCommandMenuItemDetail.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Applications"
msgstr "Alkalmazások"
@@ -2220,7 +2245,6 @@ msgid "Approved Domains"
msgstr "Jóváhagyott tartományok"
#. js-lingui-id: VDvaN2
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/domains/components/SettingPublicDomain.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
@@ -2257,9 +2281,15 @@ msgstr "Az archívumok nem tekinthetők meg előnézetben. Töltse le a fájlt,
msgid "Archived"
msgstr ""
#. js-lingui-id: mk25CW
#. js-lingui-id: Yzbh3i
#. placeholder {0}: emailingDomain.domain
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
msgid "Are you sure you want to delete {0}? Outbound mail through this domain will stop working."
msgstr ""
#. js-lingui-id: Faev6R
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Are you sure you want to delete {sourceHandle}? Forwarded emails will no longer arrive in this workspace."
msgid "Are you sure you want to delete {sourceHandle}? Inbound mail forwarded to this address and outbound replies from it will stop working."
msgstr ""
#. js-lingui-id: 4CHeVx
@@ -3509,6 +3539,11 @@ msgstr "Kódszerkesztő"
msgid "Code Execution"
msgstr "Kódvégrehajtás"
#. js-lingui-id: T9qjpu
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Code Interpreter"
msgstr ""
#. js-lingui-id: bKJYIa
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionCodeEditorTab.tsx
msgid "Code your function"
@@ -3723,11 +3758,6 @@ msgstr "SSO kapcsolat beállítása"
msgid "Configure and customize your calendar preferences."
msgstr "Állítsa be és szabja személyre a naptári beállításokat."
#. js-lingui-id: 5i71HM
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Configure and verify domains for emailing from this workspace."
msgstr "Munkaterület emailküldési tartományainak beállítása és ellenőrzése."
#. js-lingui-id: 6MDr1S
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure CalDAV settings to sync your calendar events."
@@ -3816,10 +3846,15 @@ msgstr "Megerősítés"
msgid "Confirm changing your current resource credit allocation."
msgstr ""
#. js-lingui-id: FbJ7Si
#. js-lingui-id: SU6Tym
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
msgstr "Megerősíti a(z) {roleName} szerepkör törlését? Ez nem vonható vissza. Minden tagot átmenetileg az alapértelmezett szerepkörbe helyez."
msgid "Confirm deletion of {roleName} role? This cannot be undone."
msgstr ""
#. js-lingui-id: W7S+Tm
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. {reassignSubject} will be reassigned to the default role."
msgstr ""
#. js-lingui-id: kZkFSm
#: src/modules/settings/billing/components/internal/ResourceCreditPriceSelector.tsx
@@ -5089,6 +5124,8 @@ msgstr "törlés"
#. js-lingui-id: cnGeoo
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -5110,7 +5147,6 @@ msgstr "törlés"
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
#: src/modules/settings/emailing-domains/components/SettingsEmailingDomainRowDropdownMenu.tsx
#: src/modules/settings/domains/components/SettingPublicDomainRowDropdownMenu.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -5194,9 +5230,14 @@ msgstr "Alkalmazás törlése"
msgid "Delete chat"
msgstr ""
#. js-lingui-id: /BTna7
#. js-lingui-id: cC09EO
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Delete email group"
msgid "Delete email handle"
msgstr ""
#. js-lingui-id: yZyuut
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
msgid "Delete emailing domain"
msgstr ""
#. js-lingui-id: gf2eXy
@@ -5537,6 +5578,7 @@ msgstr "Nem tartalmazza"
#. js-lingui-id: EoKe5U
#: src/pages/settings/security/SettingsSecurityApprovedAccessDomain.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Domain"
msgstr "Domain"
@@ -5903,9 +5945,14 @@ msgid "else if"
msgstr "különben ha"
#. js-lingui-id: O3oNi5
#: src/pages/settings/SettingsWorkspaceEmail.tsx
#: src/pages/settings/SettingsWorkspaceEmail.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/members/tabs/SettingsWorkspaceMembersTeamTab.tsx
#: src/pages/settings/members/tabs/SettingsWorkspaceMembersInviteTab.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
#: src/pages/auth/PasswordReset.tsx
@@ -5914,7 +5961,9 @@ msgstr "különben ha"
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTableHeader.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
#: src/modules/settings/members/components/MemberInfosTab.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
#: src/modules/object-record/record-field/ui/meta-types/input/components/EmailsFieldInput.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpEmailField.tsx
msgid "Email"
@@ -5943,9 +5992,9 @@ msgstr "E-mail vágólapra másolva"
msgid "Email Editor"
msgstr "Email szerkesztő"
#. js-lingui-id: KQM9eG
#. js-lingui-id: nsVRM/
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Email Groups"
msgid "Email Handles"
msgstr ""
#. js-lingui-id: lfQsvW
@@ -6015,14 +6064,12 @@ msgid "Emailing domain created successfully. Please verify the domain to start u
msgstr "Emailküldési tartomány sikeresen létrehozva. Kérjük, ellenőrizze a tartományt a használat előtt."
#. js-lingui-id: XDpopO
#: src/modules/settings/emailing-domains/components/SettingsEmailingDomainRowDropdownMenu.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
msgid "Emailing domain deleted successfully"
msgstr "Emailküldési tartomány sikeresen törölve"
#. js-lingui-id: axQccV
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Emailing Domains"
msgstr "Emailküldési Tartományok"
@@ -6200,6 +6247,11 @@ msgstr "Adjon meg egy számot"
msgid "Enter a UUID"
msgstr "Adjon meg egy UUID-t"
#. js-lingui-id: 0AYT5C
#: src/modules/settings/application-registrations/components/ApplicationRegistrationConfigVariableEditForm.tsx
msgid "Enter a value"
msgstr ""
#. js-lingui-id: oiVP/+
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableValueInput.tsx
msgid "Enter a value to store in database"
@@ -6344,11 +6396,6 @@ msgstr ""
msgid "Enter the credentials to set the connection"
msgstr "Adja meg a hitelesítési adatokat a kapcsolat beállításához"
#. js-lingui-id: PTGfBH
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "Enter the email address you want to forward emails from (e.g. support@mycompany.com)."
msgstr ""
#. js-lingui-id: rGWgcm
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Enter the infos to set the connection"
@@ -6955,9 +7002,9 @@ msgstr "Nem sikerült hozzáadni a modellt"
msgid "Failed to add provider"
msgstr "Nem sikerült hozzáadni a szolgáltatót"
#. js-lingui-id: d+6i8z
#. js-lingui-id: L9UnOU
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "Failed to create email group channel. Email group may not be configured on this server."
msgid "Failed to create email handle. Email handles may not be configured on this server."
msgstr ""
#. js-lingui-id: WM7GKt
@@ -6965,9 +7012,9 @@ msgstr ""
msgid "Failed to create tool"
msgstr "Nem sikerült létrehozni az eszközt"
#. js-lingui-id: W4hzLB
#. js-lingui-id: lWoewm
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Failed to delete email group channel."
msgid "Failed to delete email handle."
msgstr ""
#. js-lingui-id: pUligB
@@ -7293,7 +7340,9 @@ msgstr "mezők"
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.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/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
@@ -7682,16 +7731,9 @@ msgstr "Függvény neve"
msgid "Functions - Settings"
msgstr "Funkciók - Beállítások"
#. js-lingui-id: vYj1cC
#: src/modules/side-panel/pages/page-layout/constants/GraphTypeInformation.ts
#: src/modules/page-layout/utils/getWidgetTitle.ts
msgid "Gauge Chart"
msgstr "Mérőműszer diagram"
#. js-lingui-id: Weq9zb
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
#: src/pages/settings/applications/components/SettingsApplicationRegistrationGeneralInfo.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationDetail.tsx
@@ -7699,7 +7741,6 @@ msgstr "Mérőműszer diagram"
#: src/modules/settings/domains/components/SettingsSubdomain.tsx
#: src/modules/settings/domains/components/SettingsCustomDomain.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroupsForDisplay.ts
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
msgid "General"
@@ -8656,10 +8697,11 @@ msgstr "Érvénytelen email vagy domain"
msgid "Invalid email verification link."
msgstr "Érvénytelen email hitelesítési link."
#. js-lingui-id: uzxr9u
#. js-lingui-id: 4D6/HO
#. placeholder {0}: samlMetadataParsed.reason
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Invalid File"
msgstr "Érvénytelen fájl"
msgid "Invalid file: {0}"
msgstr ""
#. js-lingui-id: 04zLGG
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
@@ -9778,6 +9820,8 @@ msgstr "MCP szerver"
#. js-lingui-id: upbzgm
#: src/modules/views/hooks/useComputeRecordRelationFilterLabelValue.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionValueInput.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInput.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInput.tsx
msgid "Me"
msgstr "Én"
@@ -10349,10 +10393,10 @@ msgstr "Új beszélgetés"
msgid "New Email"
msgstr ""
#. js-lingui-id: TmlJkc
#. js-lingui-id: VJZNJt
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "New Email Group"
msgid "New Email Handle"
msgstr ""
#. js-lingui-id: wqoYqp
@@ -11687,9 +11731,11 @@ msgstr "Rendszerezés"
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationConfigVariableDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/sign-in-background-mock/components/BackgroundMockNavigationDrawer.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
@@ -13355,6 +13401,11 @@ msgstr ""
msgid "Run a workflow and return here to view its executions"
msgstr "Futtasson egy munkafolyamatot, és térjen vissza ide a végrehajtások megtekintéséhez"
#. js-lingui-id: rRyKdg
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Run code to analyze files and data"
msgstr ""
#. js-lingui-id: UPaWvi
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTestTab.tsx
msgid "Run Function"
@@ -13840,6 +13891,7 @@ msgstr ""
#. js-lingui-id: rG3WVm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/components/columns.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/components/SelectColumn.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInputTrigger.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordFieldChip.tsx
msgid "Select"
msgstr "Kiválasztás"
@@ -14180,11 +14232,6 @@ msgstr ""
msgid "Set your application configuration variables"
msgstr "Alkalmazás konfigurációs változóinak beállítása"
#. js-lingui-id: 9qcWSO
#: src/pages/settings/applications/components/SettingsApplicationRegistrationConfigVariableDetail.tsx
msgid "set-config-value"
msgstr ""
#. js-lingui-id: dQsqpC
#: src/pages/onboarding/CreateWorkspace.tsx
msgid "Setting up your database..."
@@ -14264,6 +14311,11 @@ msgstr ""
msgid "Share your app to other workspaces without pushing it on the marketplace"
msgstr ""
#. js-lingui-id: 9ZxCpH
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Shared addresses your workspace uses to send and receive email."
msgstr ""
#. js-lingui-id: NyIsOu
#: src/pages/settings/applications/components/SettingsApplicationRegistrationShareLinkButtons.tsx
msgid "Sharing link copied to clipboard"
@@ -14735,6 +14787,7 @@ msgstr "Állapot"
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminInstanceStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/signing-keys/components/SettingsAdminSigningKeysTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
@@ -15137,6 +15190,8 @@ msgstr "Fül beállítások"
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
@@ -15228,6 +15283,16 @@ msgstr "Szöveg vágólapra másolva"
msgid "Text Editor"
msgstr "Szövegszerkesztő"
#. js-lingui-id: KJjmr/
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "The address your workspace sends and receives email from."
msgstr ""
#. js-lingui-id: Z4WP0F
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "The address your workspace will send and receive email from (e.g. support@mycompany.com). Outbound sending requires the domain to be verified in Outbound Domains."
msgstr ""
#. js-lingui-id: oVH0Mt
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
msgid "The API endpoint for your OpenAI-compatible provider"
@@ -15303,11 +15368,6 @@ msgstr ""
msgid "The email associated to your account"
msgstr "E-mail cím, amely a fiókjához tartozik"
#. js-lingui-id: TQGLgF
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "The external address whose mail is forwarded into the workspace."
msgstr ""
#. js-lingui-id: diO3fm
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
msgid "The icon your workflow trigger will display in the command menu"
@@ -16104,6 +16164,7 @@ msgstr "Kétfaktoros hitelesítési beállítás sikeresen befejezve!"
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
@@ -16819,8 +16880,6 @@ msgstr "Az érvényességi token sikeresen frissítve"
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableValueInput.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableValueInput.tsx
#: src/modules/page-layout/widgets/graph/graph-widget-gauge-chart/components/GraphWidgetGaugeChart.tsx
#: src/modules/page-layout/widgets/graph/graph-widget-gauge-chart/components/GraphWidgetGaugeChart.tsx
msgid "Value"
msgstr "Érték"
@@ -16870,6 +16929,11 @@ msgstr "Ellenőrzés"
msgid "Verify code from the app"
msgstr "Ellenőrizze a kódot az alkalmazásból"
#. js-lingui-id: hdyekU
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Verify domains so the workspace can send outbound email through them."
msgstr ""
#. js-lingui-id: zS/rMV
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
msgid "Verify the code from the app"
@@ -17383,6 +17447,7 @@ msgid "Workflows"
msgstr "Munkafolyamatok"
#. js-lingui-id: pmUArF
#: src/pages/settings/SettingsWorkspaceEmail.tsx
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsUsageUserDetail.tsx
#: src/pages/settings/SettingsUsage.tsx
@@ -17536,11 +17601,6 @@ msgstr ""
msgid "Workspace views require manage views permission"
msgstr "A munkaterület nézetekhez nézetek kezelési engedély szükséges"
#. js-lingui-id: 9Bn3vI
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Workspace-level shared addresses that receive forwarded mail."
msgstr ""
#. js-lingui-id: pmt7u4
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
msgid "Workspaces"
@@ -17802,11 +17862,6 @@ msgstr "Az Enterprise funkciók le lesznek tiltva"
msgid "Your enterprise features will remain active until {cancelAtDate}."
msgstr "Az Enterprise funkciók {cancelAtDate} időpontig maradnak aktívak."
#. js-lingui-id: 5TsUUL
#: src/modules/information-banner/components/enterprise/InformationBannerInvalidEnterpriseKey.tsx
msgid "Your enterprise key is no longer valid. Activate a new key to continue using enterprise features."
msgstr ""
#. js-lingui-id: NTpA4U
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise subscription has been canceled."
+129 -74
View File
@@ -161,6 +161,7 @@ msgstr "{0, plural, one {Non hai il permesso di accedere al campo {fieldsList}}
#. js-lingui-id: pZCK0D
#. placeholder {0}: registration.name
#: src/pages/settings/applications/components/SettingsApplicationRegistrationConfigVariableDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationConfigVariableDetail.tsx
msgid "{0} - Config"
msgstr ""
@@ -210,6 +211,12 @@ msgstr ""
msgid "{0} widgets"
msgstr ""
#. js-lingui-id: 2UKfhY
#. placeholder {0}: selectedItemNames.length
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInput.tsx
msgid "{0} workspace members"
msgstr ""
#. js-lingui-id: xTgz1F
#. placeholder {1}: provider.displayName
#: src/pages/settings/applications/tabs/SettingsApplicationConnectionsSection.tsx
@@ -221,6 +228,11 @@ msgstr ""
msgid "{advancedFilterCount, plural, one {{advancedFilterCount} advanced rule} other {{advancedFilterCount} advanced rules}}"
msgstr "{advancedFilterCount, plural, one {{advancedFilterCount} regola avanzata} other {{advancedFilterCount} regole avanzate}}"
#. js-lingui-id: XWd9bY
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "{agentCount, plural, one {{agentCount} agent} other {{agentCount} agents}}"
msgstr ""
#. js-lingui-id: WGnqk6
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/hooks/useWorkflowAiAgentPermissionActions.ts
msgid "{agentDisplayName} role ({agentIdPrefix})"
@@ -236,6 +248,11 @@ msgstr "Ruolo dell'agente {agentLabel}"
msgid "{aggregateLabel} of {fieldLabel}"
msgstr "{aggregateLabel} di {fieldLabel}"
#. js-lingui-id: WhHyQh
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "{apiKeyCount, plural, one {{apiKeyCount} API key} other {{apiKeyCount} API keys}}"
msgstr ""
#. js-lingui-id: u1mVnV
#: src/modules/marketplace/components/SettingsApplicationInstallPermissionValidationModal.tsx
msgid "{appDisplayName} would like to:"
@@ -395,6 +412,11 @@ msgstr "{jobCount, plural, one {Questo riproverà il lavoro selezionato. Verrà
msgid "{label} list"
msgstr ""
#. js-lingui-id: 1DrH/j
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "{memberCount, plural, one {{memberCount} member} other {{memberCount} members}}"
msgstr ""
#. js-lingui-id: Y32cMj
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadIntermediaryMessages.tsx
msgid "{messagesLength} emails"
@@ -523,6 +545,11 @@ msgstr ""
msgid "{visibleFieldsCount} shown"
msgstr "{visibleFieldsCount} visualizzati"
#. js-lingui-id: WjjsAL
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
msgid "{visibleFieldsCount} visible fields"
msgstr ""
#. js-lingui-id: riMLMq
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowIteratorSubStepSwitcher.tsx
msgid "{workflowRunIteratorSubStepIterationsCount, plural, one {# item} other {# items}}"
@@ -901,7 +928,6 @@ msgstr "Azioni che gli utenti possono eseguire su questo oggetto"
#: src/modules/settings/data-model/objects/components/SettingsObjectInactiveMenuDropDown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
#: src/modules/information-banner/components/enterprise/InformationBannerInvalidEnterpriseKey.tsx
msgid "Activate"
msgstr "Attiva"
@@ -1036,16 +1062,15 @@ msgstr "Aggiungi istruzioni personalizzate specifiche per il tuo spazio di lavor
msgid "Add Custom Provider"
msgstr "Aggiungi provider personalizzato"
#. js-lingui-id: 33pO0a
#. js-lingui-id: +Gf1IN
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Add email group"
msgid "Add email handle"
msgstr ""
#. js-lingui-id: 3O3+7h
#: src/pages/settings/emailing-domains/SettingsEmailingDomains.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomains.tsx
msgid "Add Emailing Domain"
msgstr "Aggiungi Dominio Emailing"
#. js-lingui-id: HMM0Sc
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Add emailing domain"
msgstr ""
#. js-lingui-id: DpV70M
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
@@ -1312,7 +1337,6 @@ msgid "Added {beautifiedCreatedAt}"
msgstr "Aggiunto {beautifiedCreatedAt}"
#. js-lingui-id: jEHeq+
#: src/pages/settings/emailing-domains/SettingsEmailingDomains.tsx
#: src/modules/settings/security/components/approvedAccessDomains/SettingsApprovedAccessDomainsListCard.tsx
msgid "Added {beautifyPastDateRelative}"
msgstr "Aggiunto {beautifyPastDateRelative}"
@@ -1361,6 +1385,7 @@ msgstr ""
#. js-lingui-id: 2GX/U+
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationConfigVariableDetail.tsx
msgid "Admin Panel - Apps"
msgstr ""
@@ -1954,6 +1979,7 @@ msgstr "Si è verificato un errore imprevisto. Riprova."
#. js-lingui-id: HZFm5R
#: src/utils/date-utils.ts
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
#: src/modules/auth/sign-in-up/components/FooterNote.tsx
msgid "and"
msgstr "e"
@@ -2188,7 +2214,6 @@ msgstr ""
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/applications/SettingsApplicationConnectionDetail.tsx
#: src/pages/settings/applications/SettingsApplicationCommandMenuItemDetail.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Applications"
msgstr "Applicazioni"
@@ -2220,7 +2245,6 @@ msgid "Approved Domains"
msgstr "Domini approvati"
#. js-lingui-id: VDvaN2
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/domains/components/SettingPublicDomain.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
@@ -2257,9 +2281,15 @@ msgstr "I file archivio non possono essere visualizzati in anteprima. Scarica il
msgid "Archived"
msgstr ""
#. js-lingui-id: mk25CW
#. js-lingui-id: Yzbh3i
#. placeholder {0}: emailingDomain.domain
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
msgid "Are you sure you want to delete {0}? Outbound mail through this domain will stop working."
msgstr ""
#. js-lingui-id: Faev6R
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Are you sure you want to delete {sourceHandle}? Forwarded emails will no longer arrive in this workspace."
msgid "Are you sure you want to delete {sourceHandle}? Inbound mail forwarded to this address and outbound replies from it will stop working."
msgstr ""
#. js-lingui-id: 4CHeVx
@@ -3509,6 +3539,11 @@ msgstr "Editor di Codice"
msgid "Code Execution"
msgstr "Esecuzione del codice"
#. js-lingui-id: T9qjpu
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Code Interpreter"
msgstr ""
#. js-lingui-id: bKJYIa
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionCodeEditorTab.tsx
msgid "Code your function"
@@ -3723,11 +3758,6 @@ msgstr "Configura una connessione SSO"
msgid "Configure and customize your calendar preferences."
msgstr "Configura e personalizza le preferenze del calendario."
#. js-lingui-id: 5i71HM
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Configure and verify domains for emailing from this workspace."
msgstr "Configura e verifica i domini per inviare email da questo spazio di lavoro."
#. js-lingui-id: 6MDr1S
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure CalDAV settings to sync your calendar events."
@@ -3816,10 +3846,15 @@ msgstr "Conferma"
msgid "Confirm changing your current resource credit allocation."
msgstr ""
#. js-lingui-id: FbJ7Si
#. js-lingui-id: SU6Tym
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
msgstr "Conferma l'eliminazione del ruolo {roleName}? Questo non può essere annullato. Tutti i membri verranno riassegnati al ruolo predefinito."
msgid "Confirm deletion of {roleName} role? This cannot be undone."
msgstr ""
#. js-lingui-id: W7S+Tm
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. {reassignSubject} will be reassigned to the default role."
msgstr ""
#. js-lingui-id: kZkFSm
#: src/modules/settings/billing/components/internal/ResourceCreditPriceSelector.tsx
@@ -5089,6 +5124,8 @@ msgstr "elimina"
#. js-lingui-id: cnGeoo
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -5110,7 +5147,6 @@ msgstr "elimina"
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
#: src/modules/settings/emailing-domains/components/SettingsEmailingDomainRowDropdownMenu.tsx
#: src/modules/settings/domains/components/SettingPublicDomainRowDropdownMenu.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -5194,9 +5230,14 @@ msgstr "Elimina app"
msgid "Delete chat"
msgstr ""
#. js-lingui-id: /BTna7
#. js-lingui-id: cC09EO
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Delete email group"
msgid "Delete email handle"
msgstr ""
#. js-lingui-id: yZyuut
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
msgid "Delete emailing domain"
msgstr ""
#. js-lingui-id: gf2eXy
@@ -5537,6 +5578,7 @@ msgstr "Non contiene"
#. js-lingui-id: EoKe5U
#: src/pages/settings/security/SettingsSecurityApprovedAccessDomain.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Domain"
msgstr "Dominio"
@@ -5903,9 +5945,14 @@ msgid "else if"
msgstr "altrimenti se"
#. js-lingui-id: O3oNi5
#: src/pages/settings/SettingsWorkspaceEmail.tsx
#: src/pages/settings/SettingsWorkspaceEmail.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/members/tabs/SettingsWorkspaceMembersTeamTab.tsx
#: src/pages/settings/members/tabs/SettingsWorkspaceMembersInviteTab.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
#: src/pages/auth/PasswordReset.tsx
@@ -5914,7 +5961,9 @@ msgstr "altrimenti se"
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTableHeader.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
#: src/modules/settings/members/components/MemberInfosTab.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
#: src/modules/object-record/record-field/ui/meta-types/input/components/EmailsFieldInput.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpEmailField.tsx
msgid "Email"
@@ -5943,9 +5992,9 @@ msgstr "Email copiata negli appunti"
msgid "Email Editor"
msgstr "Editor di email"
#. js-lingui-id: KQM9eG
#. js-lingui-id: nsVRM/
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Email Groups"
msgid "Email Handles"
msgstr ""
#. js-lingui-id: lfQsvW
@@ -6015,14 +6064,12 @@ msgid "Emailing domain created successfully. Please verify the domain to start u
msgstr "Dominio di email creato con successo. Verifica il dominio per iniziare a usarlo."
#. js-lingui-id: XDpopO
#: src/modules/settings/emailing-domains/components/SettingsEmailingDomainRowDropdownMenu.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
msgid "Emailing domain deleted successfully"
msgstr "Dominio di email eliminato con successo"
#. js-lingui-id: axQccV
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Emailing Domains"
msgstr "Domini di email"
@@ -6200,6 +6247,11 @@ msgstr "Inserisci un numero"
msgid "Enter a UUID"
msgstr "Inserisci un UUID"
#. js-lingui-id: 0AYT5C
#: src/modules/settings/application-registrations/components/ApplicationRegistrationConfigVariableEditForm.tsx
msgid "Enter a value"
msgstr ""
#. js-lingui-id: oiVP/+
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableValueInput.tsx
msgid "Enter a value to store in database"
@@ -6344,11 +6396,6 @@ msgstr ""
msgid "Enter the credentials to set the connection"
msgstr "Inserisci le credenziali per impostare la connessione"
#. js-lingui-id: PTGfBH
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "Enter the email address you want to forward emails from (e.g. support@mycompany.com)."
msgstr ""
#. js-lingui-id: rGWgcm
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Enter the infos to set the connection"
@@ -6955,9 +7002,9 @@ msgstr "Impossibile aggiungere il modello"
msgid "Failed to add provider"
msgstr "Impossibile aggiungere il provider"
#. js-lingui-id: d+6i8z
#. js-lingui-id: L9UnOU
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "Failed to create email group channel. Email group may not be configured on this server."
msgid "Failed to create email handle. Email handles may not be configured on this server."
msgstr ""
#. js-lingui-id: WM7GKt
@@ -6965,9 +7012,9 @@ msgstr ""
msgid "Failed to create tool"
msgstr "Impossibile creare lo strumento"
#. js-lingui-id: W4hzLB
#. js-lingui-id: lWoewm
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Failed to delete email group channel."
msgid "Failed to delete email handle."
msgstr ""
#. js-lingui-id: pUligB
@@ -7293,7 +7340,9 @@ msgstr "campi"
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.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/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
@@ -7682,16 +7731,9 @@ msgstr "Nome della funzione"
msgid "Functions - Settings"
msgstr "Funzioni - Impostazioni"
#. js-lingui-id: vYj1cC
#: src/modules/side-panel/pages/page-layout/constants/GraphTypeInformation.ts
#: src/modules/page-layout/utils/getWidgetTitle.ts
msgid "Gauge Chart"
msgstr "Grafico a Indicatore"
#. js-lingui-id: Weq9zb
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
#: src/pages/settings/applications/components/SettingsApplicationRegistrationGeneralInfo.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationDetail.tsx
@@ -7699,7 +7741,6 @@ msgstr "Grafico a Indicatore"
#: src/modules/settings/domains/components/SettingsSubdomain.tsx
#: src/modules/settings/domains/components/SettingsCustomDomain.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroupsForDisplay.ts
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
msgid "General"
@@ -8656,10 +8697,11 @@ msgstr "Email o dominio non valido"
msgid "Invalid email verification link."
msgstr "Link di verifica email non valido."
#. js-lingui-id: uzxr9u
#. js-lingui-id: 4D6/HO
#. placeholder {0}: samlMetadataParsed.reason
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Invalid File"
msgstr "File non valido"
msgid "Invalid file: {0}"
msgstr ""
#. js-lingui-id: 04zLGG
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
@@ -9778,6 +9820,8 @@ msgstr "Server MCP"
#. js-lingui-id: upbzgm
#: src/modules/views/hooks/useComputeRecordRelationFilterLabelValue.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionValueInput.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInput.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInput.tsx
msgid "Me"
msgstr "Io"
@@ -10349,10 +10393,10 @@ msgstr "Nuova conversazione"
msgid "New Email"
msgstr ""
#. js-lingui-id: TmlJkc
#. js-lingui-id: VJZNJt
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "New Email Group"
msgid "New Email Handle"
msgstr ""
#. js-lingui-id: wqoYqp
@@ -11687,9 +11731,11 @@ msgstr "Organizza"
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationConfigVariableDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/sign-in-background-mock/components/BackgroundMockNavigationDrawer.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
@@ -13355,6 +13401,11 @@ msgstr ""
msgid "Run a workflow and return here to view its executions"
msgstr "Esegui un workflow e torna qui per visualizzare le esecuzioni"
#. js-lingui-id: rRyKdg
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Run code to analyze files and data"
msgstr ""
#. js-lingui-id: UPaWvi
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTestTab.tsx
msgid "Run Function"
@@ -13840,6 +13891,7 @@ msgstr ""
#. js-lingui-id: rG3WVm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/components/columns.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/components/SelectColumn.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInputTrigger.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordFieldChip.tsx
msgid "Select"
msgstr "Seleziona"
@@ -14180,11 +14232,6 @@ msgstr ""
msgid "Set your application configuration variables"
msgstr "Configura le variabili di configurazione della tua applicazione"
#. js-lingui-id: 9qcWSO
#: src/pages/settings/applications/components/SettingsApplicationRegistrationConfigVariableDetail.tsx
msgid "set-config-value"
msgstr ""
#. js-lingui-id: dQsqpC
#: src/pages/onboarding/CreateWorkspace.tsx
msgid "Setting up your database..."
@@ -14264,6 +14311,11 @@ msgstr ""
msgid "Share your app to other workspaces without pushing it on the marketplace"
msgstr ""
#. js-lingui-id: 9ZxCpH
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Shared addresses your workspace uses to send and receive email."
msgstr ""
#. js-lingui-id: NyIsOu
#: src/pages/settings/applications/components/SettingsApplicationRegistrationShareLinkButtons.tsx
msgid "Sharing link copied to clipboard"
@@ -14735,6 +14787,7 @@ msgstr "Stato"
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminInstanceStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/signing-keys/components/SettingsAdminSigningKeysTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
@@ -15137,6 +15190,8 @@ msgstr "Impostazioni scheda"
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
@@ -15228,6 +15283,16 @@ msgstr "Testo copiato negli appunti"
msgid "Text Editor"
msgstr "Editor di testo"
#. js-lingui-id: KJjmr/
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "The address your workspace sends and receives email from."
msgstr ""
#. js-lingui-id: Z4WP0F
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "The address your workspace will send and receive email from (e.g. support@mycompany.com). Outbound sending requires the domain to be verified in Outbound Domains."
msgstr ""
#. js-lingui-id: oVH0Mt
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
msgid "The API endpoint for your OpenAI-compatible provider"
@@ -15303,11 +15368,6 @@ msgstr ""
msgid "The email associated to your account"
msgstr "L'email associata al tuo account"
#. js-lingui-id: TQGLgF
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "The external address whose mail is forwarded into the workspace."
msgstr ""
#. js-lingui-id: diO3fm
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
msgid "The icon your workflow trigger will display in the command menu"
@@ -16106,6 +16166,7 @@ msgstr "Configurazione dell'autenticazione a due fattori completata con successo
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
@@ -16821,8 +16882,6 @@ msgstr "Token di validità aggiornato correttamente"
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableValueInput.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableValueInput.tsx
#: src/modules/page-layout/widgets/graph/graph-widget-gauge-chart/components/GraphWidgetGaugeChart.tsx
#: src/modules/page-layout/widgets/graph/graph-widget-gauge-chart/components/GraphWidgetGaugeChart.tsx
msgid "Value"
msgstr "Valore"
@@ -16872,6 +16931,11 @@ msgstr "Verifica"
msgid "Verify code from the app"
msgstr "Verifica il codice dall'app"
#. js-lingui-id: hdyekU
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Verify domains so the workspace can send outbound email through them."
msgstr ""
#. js-lingui-id: zS/rMV
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
msgid "Verify the code from the app"
@@ -17385,6 +17449,7 @@ msgid "Workflows"
msgstr "Workflows"
#. js-lingui-id: pmUArF
#: src/pages/settings/SettingsWorkspaceEmail.tsx
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsUsageUserDetail.tsx
#: src/pages/settings/SettingsUsage.tsx
@@ -17538,11 +17603,6 @@ msgstr ""
msgid "Workspace views require manage views permission"
msgstr "Le viste dello spazio di lavoro richiedono il permesso di gestire le viste"
#. js-lingui-id: 9Bn3vI
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Workspace-level shared addresses that receive forwarded mail."
msgstr ""
#. js-lingui-id: pmt7u4
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
msgid "Workspaces"
@@ -17804,11 +17864,6 @@ msgstr "Le tue funzionalità Enterprise verranno disabilitate"
msgid "Your enterprise features will remain active until {cancelAtDate}."
msgstr "Le tue funzionalità Enterprise rimarranno attive fino al {cancelAtDate}."
#. js-lingui-id: 5TsUUL
#: src/modules/information-banner/components/enterprise/InformationBannerInvalidEnterpriseKey.tsx
msgid "Your enterprise key is no longer valid. Activate a new key to continue using enterprise features."
msgstr ""
#. js-lingui-id: NTpA4U
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise subscription has been canceled."
+129 -74
View File
@@ -161,6 +161,7 @@ msgstr "{0, plural, other {フィールド {fieldsList} にアクセスする権
#. js-lingui-id: pZCK0D
#. placeholder {0}: registration.name
#: src/pages/settings/applications/components/SettingsApplicationRegistrationConfigVariableDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationConfigVariableDetail.tsx
msgid "{0} - Config"
msgstr ""
@@ -210,6 +211,12 @@ msgstr ""
msgid "{0} widgets"
msgstr ""
#. js-lingui-id: 2UKfhY
#. placeholder {0}: selectedItemNames.length
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInput.tsx
msgid "{0} workspace members"
msgstr ""
#. js-lingui-id: xTgz1F
#. placeholder {1}: provider.displayName
#: src/pages/settings/applications/tabs/SettingsApplicationConnectionsSection.tsx
@@ -221,6 +228,11 @@ msgstr ""
msgid "{advancedFilterCount, plural, one {{advancedFilterCount} advanced rule} other {{advancedFilterCount} advanced rules}}"
msgstr "{advancedFilterCount, plural, other {{advancedFilterCount} 件の高度なルール}}"
#. js-lingui-id: XWd9bY
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "{agentCount, plural, one {{agentCount} agent} other {{agentCount} agents}}"
msgstr ""
#. js-lingui-id: WGnqk6
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/hooks/useWorkflowAiAgentPermissionActions.ts
msgid "{agentDisplayName} role ({agentIdPrefix})"
@@ -236,6 +248,11 @@ msgstr "{agentLabel} のエージェントの役割"
msgid "{aggregateLabel} of {fieldLabel}"
msgstr "{fieldLabel}の{aggregateLabel}"
#. js-lingui-id: WhHyQh
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "{apiKeyCount, plural, one {{apiKeyCount} API key} other {{apiKeyCount} API keys}}"
msgstr ""
#. js-lingui-id: u1mVnV
#: src/modules/marketplace/components/SettingsApplicationInstallPermissionValidationModal.tsx
msgid "{appDisplayName} would like to:"
@@ -395,6 +412,11 @@ msgstr "{jobCount, plural, other {選択されたジョブを再試行します
msgid "{label} list"
msgstr ""
#. js-lingui-id: 1DrH/j
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "{memberCount, plural, one {{memberCount} member} other {{memberCount} members}}"
msgstr ""
#. js-lingui-id: Y32cMj
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadIntermediaryMessages.tsx
msgid "{messagesLength} emails"
@@ -523,6 +545,11 @@ msgstr ""
msgid "{visibleFieldsCount} shown"
msgstr "{visibleFieldsCount} 件を表示中"
#. js-lingui-id: WjjsAL
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
msgid "{visibleFieldsCount} visible fields"
msgstr ""
#. js-lingui-id: riMLMq
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowIteratorSubStepSwitcher.tsx
msgid "{workflowRunIteratorSubStepIterationsCount, plural, one {# item} other {# items}}"
@@ -901,7 +928,6 @@ msgstr "このオブジェクトにユーザーが行えるアクション"
#: src/modules/settings/data-model/objects/components/SettingsObjectInactiveMenuDropDown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
#: src/modules/information-banner/components/enterprise/InformationBannerInvalidEnterpriseKey.tsx
msgid "Activate"
msgstr "有効化"
@@ -1036,16 +1062,15 @@ msgstr "ワークスペース固有のカスタム指示を追加(システム
msgid "Add Custom Provider"
msgstr "カスタムプロバイダーを追加"
#. js-lingui-id: 33pO0a
#. js-lingui-id: +Gf1IN
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Add email group"
msgid "Add email handle"
msgstr ""
#. js-lingui-id: 3O3+7h
#: src/pages/settings/emailing-domains/SettingsEmailingDomains.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomains.tsx
msgid "Add Emailing Domain"
msgstr "メール送信ドメインを追加"
#. js-lingui-id: HMM0Sc
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Add emailing domain"
msgstr ""
#. js-lingui-id: DpV70M
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
@@ -1312,7 +1337,6 @@ msgid "Added {beautifiedCreatedAt}"
msgstr "{beautifiedCreatedAt}に追加"
#. js-lingui-id: jEHeq+
#: src/pages/settings/emailing-domains/SettingsEmailingDomains.tsx
#: src/modules/settings/security/components/approvedAccessDomains/SettingsApprovedAccessDomainsListCard.tsx
msgid "Added {beautifyPastDateRelative}"
msgstr "{beautifyPastDateRelative}に追加"
@@ -1361,6 +1385,7 @@ msgstr ""
#. js-lingui-id: 2GX/U+
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationConfigVariableDetail.tsx
msgid "Admin Panel - Apps"
msgstr ""
@@ -1954,6 +1979,7 @@ msgstr "予期しないエラーが発生しました。もう一度お試しく
#. js-lingui-id: HZFm5R
#: src/utils/date-utils.ts
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
#: src/modules/auth/sign-in-up/components/FooterNote.tsx
msgid "and"
msgstr "および"
@@ -2188,7 +2214,6 @@ msgstr ""
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/applications/SettingsApplicationConnectionDetail.tsx
#: src/pages/settings/applications/SettingsApplicationCommandMenuItemDetail.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Applications"
msgstr "アプリケーション"
@@ -2220,7 +2245,6 @@ msgid "Approved Domains"
msgstr "承認されたドメイン"
#. js-lingui-id: VDvaN2
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/domains/components/SettingPublicDomain.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
@@ -2257,9 +2281,15 @@ msgstr "アーカイブファイルはプレビューできません。内容に
msgid "Archived"
msgstr ""
#. js-lingui-id: mk25CW
#. js-lingui-id: Yzbh3i
#. placeholder {0}: emailingDomain.domain
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
msgid "Are you sure you want to delete {0}? Outbound mail through this domain will stop working."
msgstr ""
#. js-lingui-id: Faev6R
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Are you sure you want to delete {sourceHandle}? Forwarded emails will no longer arrive in this workspace."
msgid "Are you sure you want to delete {sourceHandle}? Inbound mail forwarded to this address and outbound replies from it will stop working."
msgstr ""
#. js-lingui-id: 4CHeVx
@@ -3509,6 +3539,11 @@ msgstr "コードエディタ"
msgid "Code Execution"
msgstr "コード実行"
#. js-lingui-id: T9qjpu
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Code Interpreter"
msgstr ""
#. js-lingui-id: bKJYIa
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionCodeEditorTab.tsx
msgid "Code your function"
@@ -3723,11 +3758,6 @@ msgstr "SSO接続を設定"
msgid "Configure and customize your calendar preferences."
msgstr "カレンダーの設定を行い、カスタマイズする。"
#. js-lingui-id: 5i71HM
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Configure and verify domains for emailing from this workspace."
msgstr "このワークスペースからのメール送信のためにドメインを設定して確認します。"
#. js-lingui-id: 6MDr1S
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure CalDAV settings to sync your calendar events."
@@ -3816,10 +3846,15 @@ msgstr "確認"
msgid "Confirm changing your current resource credit allocation."
msgstr ""
#. js-lingui-id: FbJ7Si
#. js-lingui-id: SU6Tym
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
msgstr "{roleName}のロールを削除しますか?この操作は元に戻せません。すべてのメンバーはデフォルトのロールに再割り当てされます。"
msgid "Confirm deletion of {roleName} role? This cannot be undone."
msgstr ""
#. js-lingui-id: W7S+Tm
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. {reassignSubject} will be reassigned to the default role."
msgstr ""
#. js-lingui-id: kZkFSm
#: src/modules/settings/billing/components/internal/ResourceCreditPriceSelector.tsx
@@ -5089,6 +5124,8 @@ msgstr "削除"
#. js-lingui-id: cnGeoo
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -5110,7 +5147,6 @@ msgstr "削除"
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
#: src/modules/settings/emailing-domains/components/SettingsEmailingDomainRowDropdownMenu.tsx
#: src/modules/settings/domains/components/SettingPublicDomainRowDropdownMenu.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -5194,9 +5230,14 @@ msgstr "アプリを削除"
msgid "Delete chat"
msgstr ""
#. js-lingui-id: /BTna7
#. js-lingui-id: cC09EO
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Delete email group"
msgid "Delete email handle"
msgstr ""
#. js-lingui-id: yZyuut
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
msgid "Delete emailing domain"
msgstr ""
#. js-lingui-id: gf2eXy
@@ -5537,6 +5578,7 @@ msgstr "含まない"
#. js-lingui-id: EoKe5U
#: src/pages/settings/security/SettingsSecurityApprovedAccessDomain.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Domain"
msgstr "ドメイン"
@@ -5903,9 +5945,14 @@ msgid "else if"
msgstr "追加条件"
#. js-lingui-id: O3oNi5
#: src/pages/settings/SettingsWorkspaceEmail.tsx
#: src/pages/settings/SettingsWorkspaceEmail.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/members/tabs/SettingsWorkspaceMembersTeamTab.tsx
#: src/pages/settings/members/tabs/SettingsWorkspaceMembersInviteTab.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
#: src/pages/auth/PasswordReset.tsx
@@ -5914,7 +5961,9 @@ msgstr "追加条件"
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTableHeader.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
#: src/modules/settings/members/components/MemberInfosTab.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
#: src/modules/object-record/record-field/ui/meta-types/input/components/EmailsFieldInput.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpEmailField.tsx
msgid "Email"
@@ -5943,9 +5992,9 @@ msgstr "メールがクリップボードにコピーされました"
msgid "Email Editor"
msgstr "メールエディター"
#. js-lingui-id: KQM9eG
#. js-lingui-id: nsVRM/
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Email Groups"
msgid "Email Handles"
msgstr ""
#. js-lingui-id: lfQsvW
@@ -6015,14 +6064,12 @@ msgid "Emailing domain created successfully. Please verify the domain to start u
msgstr "メール送信用ドメインが正常に作成されました。使用を開始するにはドメインを確認してください。"
#. js-lingui-id: XDpopO
#: src/modules/settings/emailing-domains/components/SettingsEmailingDomainRowDropdownMenu.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
msgid "Emailing domain deleted successfully"
msgstr "メール送信用ドメインが正常に削除されました"
#. js-lingui-id: axQccV
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Emailing Domains"
msgstr "メール送信用ドメイン"
@@ -6200,6 +6247,11 @@ msgstr "数値を入力"
msgid "Enter a UUID"
msgstr "UUID を入力"
#. js-lingui-id: 0AYT5C
#: src/modules/settings/application-registrations/components/ApplicationRegistrationConfigVariableEditForm.tsx
msgid "Enter a value"
msgstr ""
#. js-lingui-id: oiVP/+
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableValueInput.tsx
msgid "Enter a value to store in database"
@@ -6344,11 +6396,6 @@ msgstr ""
msgid "Enter the credentials to set the connection"
msgstr "接続を設定するための資格情報を入力してください"
#. js-lingui-id: PTGfBH
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "Enter the email address you want to forward emails from (e.g. support@mycompany.com)."
msgstr ""
#. js-lingui-id: rGWgcm
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Enter the infos to set the connection"
@@ -6955,9 +7002,9 @@ msgstr "モデルの追加に失敗しました"
msgid "Failed to add provider"
msgstr "プロバイダーの追加に失敗しました"
#. js-lingui-id: d+6i8z
#. js-lingui-id: L9UnOU
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "Failed to create email group channel. Email group may not be configured on this server."
msgid "Failed to create email handle. Email handles may not be configured on this server."
msgstr ""
#. js-lingui-id: WM7GKt
@@ -6965,9 +7012,9 @@ msgstr ""
msgid "Failed to create tool"
msgstr "ツールの作成に失敗しました"
#. js-lingui-id: W4hzLB
#. js-lingui-id: lWoewm
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Failed to delete email group channel."
msgid "Failed to delete email handle."
msgstr ""
#. js-lingui-id: pUligB
@@ -7293,7 +7340,9 @@ msgstr "フィールド"
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.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/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
@@ -7682,16 +7731,9 @@ msgstr "関数名"
msgid "Functions - Settings"
msgstr "機能 - 設定"
#. js-lingui-id: vYj1cC
#: src/modules/side-panel/pages/page-layout/constants/GraphTypeInformation.ts
#: src/modules/page-layout/utils/getWidgetTitle.ts
msgid "Gauge Chart"
msgstr "ゲージチャート"
#. js-lingui-id: Weq9zb
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
#: src/pages/settings/applications/components/SettingsApplicationRegistrationGeneralInfo.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationDetail.tsx
@@ -7699,7 +7741,6 @@ msgstr "ゲージチャート"
#: src/modules/settings/domains/components/SettingsSubdomain.tsx
#: src/modules/settings/domains/components/SettingsCustomDomain.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroupsForDisplay.ts
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
msgid "General"
@@ -8656,10 +8697,11 @@ msgstr "無効なメールアドレスまたはドメイン"
msgid "Invalid email verification link."
msgstr "無効なメール認証リンクです。"
#. js-lingui-id: uzxr9u
#. js-lingui-id: 4D6/HO
#. placeholder {0}: samlMetadataParsed.reason
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Invalid File"
msgstr "無効なファイル"
msgid "Invalid file: {0}"
msgstr ""
#. js-lingui-id: 04zLGG
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
@@ -9778,6 +9820,8 @@ msgstr "MCP サーバー"
#. js-lingui-id: upbzgm
#: src/modules/views/hooks/useComputeRecordRelationFilterLabelValue.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionValueInput.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInput.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInput.tsx
msgid "Me"
msgstr ""
@@ -10349,10 +10393,10 @@ msgstr "新しい会話"
msgid "New Email"
msgstr ""
#. js-lingui-id: TmlJkc
#. js-lingui-id: VJZNJt
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "New Email Group"
msgid "New Email Handle"
msgstr ""
#. js-lingui-id: wqoYqp
@@ -11687,9 +11731,11 @@ msgstr "整理"
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationConfigVariableDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/sign-in-background-mock/components/BackgroundMockNavigationDrawer.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
@@ -13355,6 +13401,11 @@ msgstr ""
msgid "Run a workflow and return here to view its executions"
msgstr "ワークフローを実行し、その実行内容を見るためにここに戻る"
#. js-lingui-id: rRyKdg
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Run code to analyze files and data"
msgstr ""
#. js-lingui-id: UPaWvi
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTestTab.tsx
msgid "Run Function"
@@ -13840,6 +13891,7 @@ msgstr ""
#. js-lingui-id: rG3WVm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/components/columns.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/components/SelectColumn.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInputTrigger.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordFieldChip.tsx
msgid "Select"
msgstr "選択"
@@ -14180,11 +14232,6 @@ msgstr ""
msgid "Set your application configuration variables"
msgstr "アプリケーション設定変数を設定する"
#. js-lingui-id: 9qcWSO
#: src/pages/settings/applications/components/SettingsApplicationRegistrationConfigVariableDetail.tsx
msgid "set-config-value"
msgstr ""
#. js-lingui-id: dQsqpC
#: src/pages/onboarding/CreateWorkspace.tsx
msgid "Setting up your database..."
@@ -14264,6 +14311,11 @@ msgstr ""
msgid "Share your app to other workspaces without pushing it on the marketplace"
msgstr ""
#. js-lingui-id: 9ZxCpH
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Shared addresses your workspace uses to send and receive email."
msgstr ""
#. js-lingui-id: NyIsOu
#: src/pages/settings/applications/components/SettingsApplicationRegistrationShareLinkButtons.tsx
msgid "Sharing link copied to clipboard"
@@ -14735,6 +14787,7 @@ msgstr "状態"
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminInstanceStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/signing-keys/components/SettingsAdminSigningKeysTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
@@ -15137,6 +15190,8 @@ msgstr "タブ設定"
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
@@ -15228,6 +15283,16 @@ msgstr "テキストがクリップボードにコピーされました"
msgid "Text Editor"
msgstr "テキストエディタ"
#. js-lingui-id: KJjmr/
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "The address your workspace sends and receives email from."
msgstr ""
#. js-lingui-id: Z4WP0F
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "The address your workspace will send and receive email from (e.g. support@mycompany.com). Outbound sending requires the domain to be verified in Outbound Domains."
msgstr ""
#. js-lingui-id: oVH0Mt
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
msgid "The API endpoint for your OpenAI-compatible provider"
@@ -15303,11 +15368,6 @@ msgstr ""
msgid "The email associated to your account"
msgstr "アカウントに関連付けられたメール"
#. js-lingui-id: TQGLgF
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "The external address whose mail is forwarded into the workspace."
msgstr ""
#. js-lingui-id: diO3fm
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
msgid "The icon your workflow trigger will display in the command menu"
@@ -16104,6 +16164,7 @@ msgstr "二要素認証のセットアップが正常に完了しました!"
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
@@ -16819,8 +16880,6 @@ msgstr "有効性トークンを正常に更新しました"
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableValueInput.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableValueInput.tsx
#: src/modules/page-layout/widgets/graph/graph-widget-gauge-chart/components/GraphWidgetGaugeChart.tsx
#: src/modules/page-layout/widgets/graph/graph-widget-gauge-chart/components/GraphWidgetGaugeChart.tsx
msgid "Value"
msgstr "値"
@@ -16870,6 +16929,11 @@ msgstr "確認"
msgid "Verify code from the app"
msgstr "アプリからのコードを確認"
#. js-lingui-id: hdyekU
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Verify domains so the workspace can send outbound email through them."
msgstr ""
#. js-lingui-id: zS/rMV
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
msgid "Verify the code from the app"
@@ -17383,6 +17447,7 @@ msgid "Workflows"
msgstr "ワークフロー"
#. js-lingui-id: pmUArF
#: src/pages/settings/SettingsWorkspaceEmail.tsx
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsUsageUserDetail.tsx
#: src/pages/settings/SettingsUsage.tsx
@@ -17536,11 +17601,6 @@ msgstr ""
msgid "Workspace views require manage views permission"
msgstr "ワークスペースビューには管理ビューの権限が必要"
#. js-lingui-id: 9Bn3vI
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Workspace-level shared addresses that receive forwarded mail."
msgstr ""
#. js-lingui-id: pmt7u4
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
msgid "Workspaces"
@@ -17802,11 +17862,6 @@ msgstr "Enterprise 機能は無効になります"
msgid "Your enterprise features will remain active until {cancelAtDate}."
msgstr "Enterprise 機能は {cancelAtDate} まで有効のままです。"
#. js-lingui-id: 5TsUUL
#: src/modules/information-banner/components/enterprise/InformationBannerInvalidEnterpriseKey.tsx
msgid "Your enterprise key is no longer valid. Activate a new key to continue using enterprise features."
msgstr ""
#. js-lingui-id: NTpA4U
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise subscription has been canceled."
+129 -74
View File
@@ -161,6 +161,7 @@ msgstr "{0, plural, other {귀하는 {fieldsList} 필드를 액세스할 권한
#. js-lingui-id: pZCK0D
#. placeholder {0}: registration.name
#: src/pages/settings/applications/components/SettingsApplicationRegistrationConfigVariableDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationConfigVariableDetail.tsx
msgid "{0} - Config"
msgstr ""
@@ -210,6 +211,12 @@ msgstr ""
msgid "{0} widgets"
msgstr ""
#. js-lingui-id: 2UKfhY
#. placeholder {0}: selectedItemNames.length
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInput.tsx
msgid "{0} workspace members"
msgstr ""
#. js-lingui-id: xTgz1F
#. placeholder {1}: provider.displayName
#: src/pages/settings/applications/tabs/SettingsApplicationConnectionsSection.tsx
@@ -221,6 +228,11 @@ msgstr ""
msgid "{advancedFilterCount, plural, one {{advancedFilterCount} advanced rule} other {{advancedFilterCount} advanced rules}}"
msgstr "{advancedFilterCount, plural, other {{advancedFilterCount}개 고급 규칙}}"
#. js-lingui-id: XWd9bY
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "{agentCount, plural, one {{agentCount} agent} other {{agentCount} agents}}"
msgstr ""
#. js-lingui-id: WGnqk6
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/hooks/useWorkflowAiAgentPermissionActions.ts
msgid "{agentDisplayName} role ({agentIdPrefix})"
@@ -236,6 +248,11 @@ msgstr "{agentLabel} 에이전트 역할"
msgid "{aggregateLabel} of {fieldLabel}"
msgstr "{fieldLabel}의 {aggregateLabel}"
#. js-lingui-id: WhHyQh
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "{apiKeyCount, plural, one {{apiKeyCount} API key} other {{apiKeyCount} API keys}}"
msgstr ""
#. js-lingui-id: u1mVnV
#: src/modules/marketplace/components/SettingsApplicationInstallPermissionValidationModal.tsx
msgid "{appDisplayName} would like to:"
@@ -395,6 +412,11 @@ msgstr "{jobCount, plural, other {선택된 작업들을 재시도합니다. 처
msgid "{label} list"
msgstr ""
#. js-lingui-id: 1DrH/j
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "{memberCount, plural, one {{memberCount} member} other {{memberCount} members}}"
msgstr ""
#. js-lingui-id: Y32cMj
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadIntermediaryMessages.tsx
msgid "{messagesLength} emails"
@@ -523,6 +545,11 @@ msgstr ""
msgid "{visibleFieldsCount} shown"
msgstr "{visibleFieldsCount}개 표시됨"
#. js-lingui-id: WjjsAL
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
msgid "{visibleFieldsCount} visible fields"
msgstr ""
#. js-lingui-id: riMLMq
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowIteratorSubStepSwitcher.tsx
msgid "{workflowRunIteratorSubStepIterationsCount, plural, one {# item} other {# items}}"
@@ -901,7 +928,6 @@ msgstr "사용자가 이 객체에서 수행할 수 있는 작업"
#: src/modules/settings/data-model/objects/components/SettingsObjectInactiveMenuDropDown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
#: src/modules/information-banner/components/enterprise/InformationBannerInvalidEnterpriseKey.tsx
msgid "Activate"
msgstr "활성화"
@@ -1036,16 +1062,15 @@ msgstr "워크스페이스에 특화된 맞춤 지침을 추가하세요 (시스
msgid "Add Custom Provider"
msgstr "사용자 지정 공급자 추가"
#. js-lingui-id: 33pO0a
#. js-lingui-id: +Gf1IN
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Add email group"
msgid "Add email handle"
msgstr ""
#. js-lingui-id: 3O3+7h
#: src/pages/settings/emailing-domains/SettingsEmailingDomains.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomains.tsx
msgid "Add Emailing Domain"
msgstr "이메일 도메인 추가"
#. js-lingui-id: HMM0Sc
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Add emailing domain"
msgstr ""
#. js-lingui-id: DpV70M
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
@@ -1312,7 +1337,6 @@ msgid "Added {beautifiedCreatedAt}"
msgstr "{beautifiedCreatedAt} 추가"
#. js-lingui-id: jEHeq+
#: src/pages/settings/emailing-domains/SettingsEmailingDomains.tsx
#: src/modules/settings/security/components/approvedAccessDomains/SettingsApprovedAccessDomainsListCard.tsx
msgid "Added {beautifyPastDateRelative}"
msgstr "{beautifyPastDateRelative} 추가"
@@ -1361,6 +1385,7 @@ msgstr ""
#. js-lingui-id: 2GX/U+
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationConfigVariableDetail.tsx
msgid "Admin Panel - Apps"
msgstr ""
@@ -1954,6 +1979,7 @@ msgstr "예기치 않은 오류가 발생했습니다. 다시 시도해 주세
#. js-lingui-id: HZFm5R
#: src/utils/date-utils.ts
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
#: src/modules/auth/sign-in-up/components/FooterNote.tsx
msgid "and"
msgstr "및"
@@ -2188,7 +2214,6 @@ msgstr ""
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/applications/SettingsApplicationConnectionDetail.tsx
#: src/pages/settings/applications/SettingsApplicationCommandMenuItemDetail.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Applications"
msgstr "응용 프로그램"
@@ -2220,7 +2245,6 @@ msgid "Approved Domains"
msgstr "승인된 도메인"
#. js-lingui-id: VDvaN2
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/domains/components/SettingPublicDomain.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
@@ -2257,9 +2281,15 @@ msgstr "압축 파일은 미리 볼 수 없습니다. 파일을 다운로드하
msgid "Archived"
msgstr ""
#. js-lingui-id: mk25CW
#. js-lingui-id: Yzbh3i
#. placeholder {0}: emailingDomain.domain
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
msgid "Are you sure you want to delete {0}? Outbound mail through this domain will stop working."
msgstr ""
#. js-lingui-id: Faev6R
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Are you sure you want to delete {sourceHandle}? Forwarded emails will no longer arrive in this workspace."
msgid "Are you sure you want to delete {sourceHandle}? Inbound mail forwarded to this address and outbound replies from it will stop working."
msgstr ""
#. js-lingui-id: 4CHeVx
@@ -3509,6 +3539,11 @@ msgstr "코드 편집기"
msgid "Code Execution"
msgstr "코드 실행"
#. js-lingui-id: T9qjpu
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Code Interpreter"
msgstr ""
#. js-lingui-id: bKJYIa
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionCodeEditorTab.tsx
msgid "Code your function"
@@ -3723,11 +3758,6 @@ msgstr "SSO 연결 구성"
msgid "Configure and customize your calendar preferences."
msgstr "캘린더 환경설정을 구성하고 사용자 지정하세요."
#. js-lingui-id: 5i71HM
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Configure and verify domains for emailing from this workspace."
msgstr "이 작업 공간에서 이메일 전송을 위한 도메인을 설정하고 확인합니다."
#. js-lingui-id: 6MDr1S
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure CalDAV settings to sync your calendar events."
@@ -3816,10 +3846,15 @@ msgstr "확인"
msgid "Confirm changing your current resource credit allocation."
msgstr ""
#. js-lingui-id: FbJ7Si
#. js-lingui-id: SU6Tym
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
msgstr "{roleName} 역할 삭제를 확인하시겠습니까? 이 작업은 되돌릴 수 없습니다. 모든 구성원은 기본 역할로 재할당됩니다."
msgid "Confirm deletion of {roleName} role? This cannot be undone."
msgstr ""
#. js-lingui-id: W7S+Tm
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. {reassignSubject} will be reassigned to the default role."
msgstr ""
#. js-lingui-id: kZkFSm
#: src/modules/settings/billing/components/internal/ResourceCreditPriceSelector.tsx
@@ -5089,6 +5124,8 @@ msgstr "삭제"
#. js-lingui-id: cnGeoo
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -5110,7 +5147,6 @@ msgstr "삭제"
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
#: src/modules/settings/emailing-domains/components/SettingsEmailingDomainRowDropdownMenu.tsx
#: src/modules/settings/domains/components/SettingPublicDomainRowDropdownMenu.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -5194,9 +5230,14 @@ msgstr "앱 삭제"
msgid "Delete chat"
msgstr ""
#. js-lingui-id: /BTna7
#. js-lingui-id: cC09EO
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Delete email group"
msgid "Delete email handle"
msgstr ""
#. js-lingui-id: yZyuut
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
msgid "Delete emailing domain"
msgstr ""
#. js-lingui-id: gf2eXy
@@ -5537,6 +5578,7 @@ msgstr "포함하지 않음"
#. js-lingui-id: EoKe5U
#: src/pages/settings/security/SettingsSecurityApprovedAccessDomain.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Domain"
msgstr "도메인"
@@ -5903,9 +5945,14 @@ msgid "else if"
msgstr "그 외의 조건"
#. js-lingui-id: O3oNi5
#: src/pages/settings/SettingsWorkspaceEmail.tsx
#: src/pages/settings/SettingsWorkspaceEmail.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/members/tabs/SettingsWorkspaceMembersTeamTab.tsx
#: src/pages/settings/members/tabs/SettingsWorkspaceMembersInviteTab.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
#: src/pages/auth/PasswordReset.tsx
@@ -5914,7 +5961,9 @@ msgstr "그 외의 조건"
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTableHeader.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
#: src/modules/settings/members/components/MemberInfosTab.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
#: src/modules/object-record/record-field/ui/meta-types/input/components/EmailsFieldInput.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpEmailField.tsx
msgid "Email"
@@ -5943,9 +5992,9 @@ msgstr "이메일이 클립보드에 복사되었습니다"
msgid "Email Editor"
msgstr "이메일 편집기"
#. js-lingui-id: KQM9eG
#. js-lingui-id: nsVRM/
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Email Groups"
msgid "Email Handles"
msgstr ""
#. js-lingui-id: lfQsvW
@@ -6015,14 +6064,12 @@ msgid "Emailing domain created successfully. Please verify the domain to start u
msgstr "이메일 도메인이 성공적으로 생성되었습니다. 사용을 시작하려면 도메인을 인증하십시오."
#. js-lingui-id: XDpopO
#: src/modules/settings/emailing-domains/components/SettingsEmailingDomainRowDropdownMenu.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
msgid "Emailing domain deleted successfully"
msgstr "이메일 도메인이 성공적으로 삭제되었습니다."
#. js-lingui-id: axQccV
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Emailing Domains"
msgstr "이메일 도메인"
@@ -6200,6 +6247,11 @@ msgstr "숫자를 입력하세요"
msgid "Enter a UUID"
msgstr "UUID를 입력하세요"
#. js-lingui-id: 0AYT5C
#: src/modules/settings/application-registrations/components/ApplicationRegistrationConfigVariableEditForm.tsx
msgid "Enter a value"
msgstr ""
#. js-lingui-id: oiVP/+
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableValueInput.tsx
msgid "Enter a value to store in database"
@@ -6344,11 +6396,6 @@ msgstr ""
msgid "Enter the credentials to set the connection"
msgstr "연결 설정을 위해 자격 증명을 입력하세요"
#. js-lingui-id: PTGfBH
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "Enter the email address you want to forward emails from (e.g. support@mycompany.com)."
msgstr ""
#. js-lingui-id: rGWgcm
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Enter the infos to set the connection"
@@ -6955,9 +7002,9 @@ msgstr "모델을 추가하지 못했습니다"
msgid "Failed to add provider"
msgstr "공급자를 추가하지 못했습니다"
#. js-lingui-id: d+6i8z
#. js-lingui-id: L9UnOU
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "Failed to create email group channel. Email group may not be configured on this server."
msgid "Failed to create email handle. Email handles may not be configured on this server."
msgstr ""
#. js-lingui-id: WM7GKt
@@ -6965,9 +7012,9 @@ msgstr ""
msgid "Failed to create tool"
msgstr "도구 생성 실패"
#. js-lingui-id: W4hzLB
#. js-lingui-id: lWoewm
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Failed to delete email group channel."
msgid "Failed to delete email handle."
msgstr ""
#. js-lingui-id: pUligB
@@ -7293,7 +7340,9 @@ msgstr "필드"
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.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/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
@@ -7682,16 +7731,9 @@ msgstr "함수 이름"
msgid "Functions - Settings"
msgstr "기능 - 설정"
#. js-lingui-id: vYj1cC
#: src/modules/side-panel/pages/page-layout/constants/GraphTypeInformation.ts
#: src/modules/page-layout/utils/getWidgetTitle.ts
msgid "Gauge Chart"
msgstr "게이지 차트"
#. js-lingui-id: Weq9zb
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
#: src/pages/settings/applications/components/SettingsApplicationRegistrationGeneralInfo.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationDetail.tsx
@@ -7699,7 +7741,6 @@ msgstr "게이지 차트"
#: src/modules/settings/domains/components/SettingsSubdomain.tsx
#: src/modules/settings/domains/components/SettingsCustomDomain.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroupsForDisplay.ts
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
msgid "General"
@@ -8656,10 +8697,11 @@ msgstr "잘못된 이메일 또는 도메인"
msgid "Invalid email verification link."
msgstr "잘못된 이메일 인증 링크입니다."
#. js-lingui-id: uzxr9u
#. js-lingui-id: 4D6/HO
#. placeholder {0}: samlMetadataParsed.reason
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Invalid File"
msgstr "잘못된 파일"
msgid "Invalid file: {0}"
msgstr ""
#. js-lingui-id: 04zLGG
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
@@ -9778,6 +9820,8 @@ msgstr "MCP 서버"
#. js-lingui-id: upbzgm
#: src/modules/views/hooks/useComputeRecordRelationFilterLabelValue.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionValueInput.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInput.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInput.tsx
msgid "Me"
msgstr "나"
@@ -10349,10 +10393,10 @@ msgstr "새 대화"
msgid "New Email"
msgstr ""
#. js-lingui-id: TmlJkc
#. js-lingui-id: VJZNJt
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "New Email Group"
msgid "New Email Handle"
msgstr ""
#. js-lingui-id: wqoYqp
@@ -11687,9 +11731,11 @@ msgstr "정리"
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationConfigVariableDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/sign-in-background-mock/components/BackgroundMockNavigationDrawer.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
@@ -13355,6 +13401,11 @@ msgstr ""
msgid "Run a workflow and return here to view its executions"
msgstr "워크플로를 실행하고 여기로 돌아와 실행 결과를 확인하세요"
#. js-lingui-id: rRyKdg
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Run code to analyze files and data"
msgstr ""
#. js-lingui-id: UPaWvi
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTestTab.tsx
msgid "Run Function"
@@ -13840,6 +13891,7 @@ msgstr ""
#. js-lingui-id: rG3WVm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/components/columns.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/components/SelectColumn.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInputTrigger.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordFieldChip.tsx
msgid "Select"
msgstr "선택"
@@ -14180,11 +14232,6 @@ msgstr ""
msgid "Set your application configuration variables"
msgstr "애플리케이션 구성 변수 설정"
#. js-lingui-id: 9qcWSO
#: src/pages/settings/applications/components/SettingsApplicationRegistrationConfigVariableDetail.tsx
msgid "set-config-value"
msgstr ""
#. js-lingui-id: dQsqpC
#: src/pages/onboarding/CreateWorkspace.tsx
msgid "Setting up your database..."
@@ -14264,6 +14311,11 @@ msgstr ""
msgid "Share your app to other workspaces without pushing it on the marketplace"
msgstr ""
#. js-lingui-id: 9ZxCpH
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Shared addresses your workspace uses to send and receive email."
msgstr ""
#. js-lingui-id: NyIsOu
#: src/pages/settings/applications/components/SettingsApplicationRegistrationShareLinkButtons.tsx
msgid "Sharing link copied to clipboard"
@@ -14735,6 +14787,7 @@ msgstr "상태"
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminInstanceStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/signing-keys/components/SettingsAdminSigningKeysTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
@@ -15137,6 +15190,8 @@ msgstr "탭 설정"
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
@@ -15228,6 +15283,16 @@ msgstr "텍스트가 클립보드에 복사되었습니다"
msgid "Text Editor"
msgstr "텍스트 편집기"
#. js-lingui-id: KJjmr/
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "The address your workspace sends and receives email from."
msgstr ""
#. js-lingui-id: Z4WP0F
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "The address your workspace will send and receive email from (e.g. support@mycompany.com). Outbound sending requires the domain to be verified in Outbound Domains."
msgstr ""
#. js-lingui-id: oVH0Mt
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
msgid "The API endpoint for your OpenAI-compatible provider"
@@ -15303,11 +15368,6 @@ msgstr ""
msgid "The email associated to your account"
msgstr "계정에 연결된 이메일"
#. js-lingui-id: TQGLgF
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "The external address whose mail is forwarded into the workspace."
msgstr ""
#. js-lingui-id: diO3fm
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
msgid "The icon your workflow trigger will display in the command menu"
@@ -16104,6 +16164,7 @@ msgstr "이중 인증 설정이 성공적으로 완료되었습니다!"
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
@@ -16819,8 +16880,6 @@ msgstr "유효성 토큰이 성공적으로 새로 고침되었습니다"
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableValueInput.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableValueInput.tsx
#: src/modules/page-layout/widgets/graph/graph-widget-gauge-chart/components/GraphWidgetGaugeChart.tsx
#: src/modules/page-layout/widgets/graph/graph-widget-gauge-chart/components/GraphWidgetGaugeChart.tsx
msgid "Value"
msgstr "값"
@@ -16870,6 +16929,11 @@ msgstr "확인"
msgid "Verify code from the app"
msgstr "앱에서 인증 코드 확인"
#. js-lingui-id: hdyekU
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Verify domains so the workspace can send outbound email through them."
msgstr ""
#. js-lingui-id: zS/rMV
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
msgid "Verify the code from the app"
@@ -17383,6 +17447,7 @@ msgid "Workflows"
msgstr "Workflows"
#. js-lingui-id: pmUArF
#: src/pages/settings/SettingsWorkspaceEmail.tsx
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsUsageUserDetail.tsx
#: src/pages/settings/SettingsUsage.tsx
@@ -17536,11 +17601,6 @@ msgstr ""
msgid "Workspace views require manage views permission"
msgstr "워크스페이스 보기에 관리 권한 필요"
#. js-lingui-id: 9Bn3vI
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Workspace-level shared addresses that receive forwarded mail."
msgstr ""
#. js-lingui-id: pmt7u4
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
msgid "Workspaces"
@@ -17802,11 +17862,6 @@ msgstr "엔터프라이즈 기능이 비활성화됩니다"
msgid "Your enterprise features will remain active until {cancelAtDate}."
msgstr "엔터프라이즈 기능은 {cancelAtDate}까지 계속 활성화됩니다."
#. js-lingui-id: 5TsUUL
#: src/modules/information-banner/components/enterprise/InformationBannerInvalidEnterpriseKey.tsx
msgid "Your enterprise key is no longer valid. Activate a new key to continue using enterprise features."
msgstr ""
#. js-lingui-id: NTpA4U
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise subscription has been canceled."
+129 -74
View File
@@ -161,6 +161,7 @@ msgstr "{0, plural, one {U heeft geen toestemming om toegang te krijgen tot het
#. js-lingui-id: pZCK0D
#. placeholder {0}: registration.name
#: src/pages/settings/applications/components/SettingsApplicationRegistrationConfigVariableDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationConfigVariableDetail.tsx
msgid "{0} - Config"
msgstr ""
@@ -210,6 +211,12 @@ msgstr ""
msgid "{0} widgets"
msgstr ""
#. js-lingui-id: 2UKfhY
#. placeholder {0}: selectedItemNames.length
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInput.tsx
msgid "{0} workspace members"
msgstr ""
#. js-lingui-id: xTgz1F
#. placeholder {1}: provider.displayName
#: src/pages/settings/applications/tabs/SettingsApplicationConnectionsSection.tsx
@@ -221,6 +228,11 @@ msgstr ""
msgid "{advancedFilterCount, plural, one {{advancedFilterCount} advanced rule} other {{advancedFilterCount} advanced rules}}"
msgstr "{advancedFilterCount, plural, one {{advancedFilterCount} geavanceerde regel} other {{advancedFilterCount} geavanceerde regels}}"
#. js-lingui-id: XWd9bY
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "{agentCount, plural, one {{agentCount} agent} other {{agentCount} agents}}"
msgstr ""
#. js-lingui-id: WGnqk6
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/hooks/useWorkflowAiAgentPermissionActions.ts
msgid "{agentDisplayName} role ({agentIdPrefix})"
@@ -236,6 +248,11 @@ msgstr "Agentrol {agentLabel}"
msgid "{aggregateLabel} of {fieldLabel}"
msgstr "{aggregateLabel} van {fieldLabel}"
#. js-lingui-id: WhHyQh
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "{apiKeyCount, plural, one {{apiKeyCount} API key} other {{apiKeyCount} API keys}}"
msgstr ""
#. js-lingui-id: u1mVnV
#: src/modules/marketplace/components/SettingsApplicationInstallPermissionValidationModal.tsx
msgid "{appDisplayName} would like to:"
@@ -395,6 +412,11 @@ msgstr "{jobCount, plural, one {Dit zal de geselecteerde taak opnieuw proberen.
msgid "{label} list"
msgstr ""
#. js-lingui-id: 1DrH/j
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "{memberCount, plural, one {{memberCount} member} other {{memberCount} members}}"
msgstr ""
#. js-lingui-id: Y32cMj
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadIntermediaryMessages.tsx
msgid "{messagesLength} emails"
@@ -523,6 +545,11 @@ msgstr ""
msgid "{visibleFieldsCount} shown"
msgstr "{visibleFieldsCount} weergegeven"
#. js-lingui-id: WjjsAL
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
msgid "{visibleFieldsCount} visible fields"
msgstr ""
#. js-lingui-id: riMLMq
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowIteratorSubStepSwitcher.tsx
msgid "{workflowRunIteratorSubStepIterationsCount, plural, one {# item} other {# items}}"
@@ -901,7 +928,6 @@ msgstr "Acties die gebruikers op dit object kunnen uitvoeren"
#: src/modules/settings/data-model/objects/components/SettingsObjectInactiveMenuDropDown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
#: src/modules/information-banner/components/enterprise/InformationBannerInvalidEnterpriseKey.tsx
msgid "Activate"
msgstr "Activeren"
@@ -1036,16 +1062,15 @@ msgstr "Voeg aangepaste instructies toe die specifiek zijn voor je werkruimte (t
msgid "Add Custom Provider"
msgstr "Aangepaste aanbieder toevoegen"
#. js-lingui-id: 33pO0a
#. js-lingui-id: +Gf1IN
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Add email group"
msgid "Add email handle"
msgstr ""
#. js-lingui-id: 3O3+7h
#: src/pages/settings/emailing-domains/SettingsEmailingDomains.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomains.tsx
msgid "Add Emailing Domain"
msgstr "Voeg E-maildomein toe"
#. js-lingui-id: HMM0Sc
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Add emailing domain"
msgstr ""
#. js-lingui-id: DpV70M
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
@@ -1312,7 +1337,6 @@ msgid "Added {beautifiedCreatedAt}"
msgstr "Toegevoegd {beautifiedCreatedAt}"
#. js-lingui-id: jEHeq+
#: src/pages/settings/emailing-domains/SettingsEmailingDomains.tsx
#: src/modules/settings/security/components/approvedAccessDomains/SettingsApprovedAccessDomainsListCard.tsx
msgid "Added {beautifyPastDateRelative}"
msgstr "Toegevoegd {beautifyPastDateRelative}"
@@ -1361,6 +1385,7 @@ msgstr ""
#. js-lingui-id: 2GX/U+
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationConfigVariableDetail.tsx
msgid "Admin Panel - Apps"
msgstr ""
@@ -1954,6 +1979,7 @@ msgstr "Er is een onverwachte fout opgetreden. Probeer het opnieuw."
#. js-lingui-id: HZFm5R
#: src/utils/date-utils.ts
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
#: src/modules/auth/sign-in-up/components/FooterNote.tsx
msgid "and"
msgstr "en"
@@ -2188,7 +2214,6 @@ msgstr ""
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/applications/SettingsApplicationConnectionDetail.tsx
#: src/pages/settings/applications/SettingsApplicationCommandMenuItemDetail.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Applications"
msgstr "Applicaties"
@@ -2220,7 +2245,6 @@ msgid "Approved Domains"
msgstr "Goedgekeurde Domeinen"
#. js-lingui-id: VDvaN2
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/domains/components/SettingPublicDomain.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
@@ -2257,9 +2281,15 @@ msgstr "Voor archiefbestanden is geen voorbeeldweergave mogelijk. Download het b
msgid "Archived"
msgstr ""
#. js-lingui-id: mk25CW
#. js-lingui-id: Yzbh3i
#. placeholder {0}: emailingDomain.domain
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
msgid "Are you sure you want to delete {0}? Outbound mail through this domain will stop working."
msgstr ""
#. js-lingui-id: Faev6R
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Are you sure you want to delete {sourceHandle}? Forwarded emails will no longer arrive in this workspace."
msgid "Are you sure you want to delete {sourceHandle}? Inbound mail forwarded to this address and outbound replies from it will stop working."
msgstr ""
#. js-lingui-id: 4CHeVx
@@ -3509,6 +3539,11 @@ msgstr "Codebewerkingsprogramma"
msgid "Code Execution"
msgstr "Code-uitvoering"
#. js-lingui-id: T9qjpu
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Code Interpreter"
msgstr ""
#. js-lingui-id: bKJYIa
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionCodeEditorTab.tsx
msgid "Code your function"
@@ -3723,11 +3758,6 @@ msgstr "Configureer een SSO-verbinding"
msgid "Configure and customize your calendar preferences."
msgstr "Configureer en pas uw kalendervoorkeuren aan."
#. js-lingui-id: 5i71HM
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Configure and verify domains for emailing from this workspace."
msgstr "Configureer en verifieer domeinen voor e-mailen vanuit deze werkruimte."
#. js-lingui-id: 6MDr1S
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure CalDAV settings to sync your calendar events."
@@ -3816,10 +3846,15 @@ msgstr "Bevestigen"
msgid "Confirm changing your current resource credit allocation."
msgstr ""
#. js-lingui-id: FbJ7Si
#. js-lingui-id: SU6Tym
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
msgstr "Bevestigen verwijderen van rol {roleName}? Dit kan niet ongedaan worden gemaakt. Alle leden zullen worden herverdeeld naar de standaard rol."
msgid "Confirm deletion of {roleName} role? This cannot be undone."
msgstr ""
#. js-lingui-id: W7S+Tm
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. {reassignSubject} will be reassigned to the default role."
msgstr ""
#. js-lingui-id: kZkFSm
#: src/modules/settings/billing/components/internal/ResourceCreditPriceSelector.tsx
@@ -5089,6 +5124,8 @@ msgstr "verwijderen"
#. js-lingui-id: cnGeoo
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -5110,7 +5147,6 @@ msgstr "verwijderen"
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
#: src/modules/settings/emailing-domains/components/SettingsEmailingDomainRowDropdownMenu.tsx
#: src/modules/settings/domains/components/SettingPublicDomainRowDropdownMenu.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -5194,9 +5230,14 @@ msgstr "App verwijderen"
msgid "Delete chat"
msgstr ""
#. js-lingui-id: /BTna7
#. js-lingui-id: cC09EO
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Delete email group"
msgid "Delete email handle"
msgstr ""
#. js-lingui-id: yZyuut
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
msgid "Delete emailing domain"
msgstr ""
#. js-lingui-id: gf2eXy
@@ -5537,6 +5578,7 @@ msgstr "Bevat niet"
#. js-lingui-id: EoKe5U
#: src/pages/settings/security/SettingsSecurityApprovedAccessDomain.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Domain"
msgstr "Domein"
@@ -5903,9 +5945,14 @@ msgid "else if"
msgstr "anders als"
#. js-lingui-id: O3oNi5
#: src/pages/settings/SettingsWorkspaceEmail.tsx
#: src/pages/settings/SettingsWorkspaceEmail.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/members/tabs/SettingsWorkspaceMembersTeamTab.tsx
#: src/pages/settings/members/tabs/SettingsWorkspaceMembersInviteTab.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
#: src/pages/auth/PasswordReset.tsx
@@ -5914,7 +5961,9 @@ msgstr "anders als"
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTableHeader.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
#: src/modules/settings/members/components/MemberInfosTab.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
#: src/modules/object-record/record-field/ui/meta-types/input/components/EmailsFieldInput.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpEmailField.tsx
msgid "Email"
@@ -5943,9 +5992,9 @@ msgstr "E-mail gekopieerd naar klembord"
msgid "Email Editor"
msgstr "Email Editor"
#. js-lingui-id: KQM9eG
#. js-lingui-id: nsVRM/
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Email Groups"
msgid "Email Handles"
msgstr ""
#. js-lingui-id: lfQsvW
@@ -6015,14 +6064,12 @@ msgid "Emailing domain created successfully. Please verify the domain to start u
msgstr "E-maildomein succesvol aangemaakt. Verifieer alstublieft het domein voordat u het kunt gebruiken."
#. js-lingui-id: XDpopO
#: src/modules/settings/emailing-domains/components/SettingsEmailingDomainRowDropdownMenu.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
msgid "Emailing domain deleted successfully"
msgstr "E-maildomein succesvol verwijderd"
#. js-lingui-id: axQccV
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Emailing Domains"
msgstr "E-maildomeinen"
@@ -6200,6 +6247,11 @@ msgstr "Voer een getal in"
msgid "Enter a UUID"
msgstr "Voer een UUID in"
#. js-lingui-id: 0AYT5C
#: src/modules/settings/application-registrations/components/ApplicationRegistrationConfigVariableEditForm.tsx
msgid "Enter a value"
msgstr ""
#. js-lingui-id: oiVP/+
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableValueInput.tsx
msgid "Enter a value to store in database"
@@ -6344,11 +6396,6 @@ msgstr ""
msgid "Enter the credentials to set the connection"
msgstr "Voer de inloggegevens in om de verbinding in te stellen"
#. js-lingui-id: PTGfBH
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "Enter the email address you want to forward emails from (e.g. support@mycompany.com)."
msgstr ""
#. js-lingui-id: rGWgcm
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Enter the infos to set the connection"
@@ -6955,9 +7002,9 @@ msgstr "Het toevoegen van het model is mislukt"
msgid "Failed to add provider"
msgstr "Het toevoegen van de aanbieder is mislukt"
#. js-lingui-id: d+6i8z
#. js-lingui-id: L9UnOU
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "Failed to create email group channel. Email group may not be configured on this server."
msgid "Failed to create email handle. Email handles may not be configured on this server."
msgstr ""
#. js-lingui-id: WM7GKt
@@ -6965,9 +7012,9 @@ msgstr ""
msgid "Failed to create tool"
msgstr "Aanmaken van tool mislukt"
#. js-lingui-id: W4hzLB
#. js-lingui-id: lWoewm
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Failed to delete email group channel."
msgid "Failed to delete email handle."
msgstr ""
#. js-lingui-id: pUligB
@@ -7293,7 +7340,9 @@ msgstr "velden"
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.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/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
@@ -7682,16 +7731,9 @@ msgstr "Functienaam"
msgid "Functions - Settings"
msgstr "Functies - Instellingen"
#. js-lingui-id: vYj1cC
#: src/modules/side-panel/pages/page-layout/constants/GraphTypeInformation.ts
#: src/modules/page-layout/utils/getWidgetTitle.ts
msgid "Gauge Chart"
msgstr ""
#. js-lingui-id: Weq9zb
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
#: src/pages/settings/applications/components/SettingsApplicationRegistrationGeneralInfo.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationDetail.tsx
@@ -7699,7 +7741,6 @@ msgstr ""
#: src/modules/settings/domains/components/SettingsSubdomain.tsx
#: src/modules/settings/domains/components/SettingsCustomDomain.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroupsForDisplay.ts
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
msgid "General"
@@ -8656,10 +8697,11 @@ msgstr "Ongeldig e-mailadres of domein"
msgid "Invalid email verification link."
msgstr "Ongeldige e-mailverificatielink."
#. js-lingui-id: uzxr9u
#. js-lingui-id: 4D6/HO
#. placeholder {0}: samlMetadataParsed.reason
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Invalid File"
msgstr "Ongeldig bestand"
msgid "Invalid file: {0}"
msgstr ""
#. js-lingui-id: 04zLGG
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
@@ -9778,6 +9820,8 @@ msgstr "MCP Server"
#. js-lingui-id: upbzgm
#: src/modules/views/hooks/useComputeRecordRelationFilterLabelValue.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionValueInput.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInput.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInput.tsx
msgid "Me"
msgstr "Ik"
@@ -10349,10 +10393,10 @@ msgstr "Nieuw gesprek"
msgid "New Email"
msgstr ""
#. js-lingui-id: TmlJkc
#. js-lingui-id: VJZNJt
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "New Email Group"
msgid "New Email Handle"
msgstr ""
#. js-lingui-id: wqoYqp
@@ -11687,9 +11731,11 @@ msgstr "Ordenen"
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationConfigVariableDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/sign-in-background-mock/components/BackgroundMockNavigationDrawer.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
@@ -13355,6 +13401,11 @@ msgstr ""
msgid "Run a workflow and return here to view its executions"
msgstr "Voer een workflow uit en keer hier terug om de uitvoeringen te bekijken"
#. js-lingui-id: rRyKdg
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Run code to analyze files and data"
msgstr ""
#. js-lingui-id: UPaWvi
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTestTab.tsx
msgid "Run Function"
@@ -13840,6 +13891,7 @@ msgstr ""
#. js-lingui-id: rG3WVm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/components/columns.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/components/SelectColumn.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInputTrigger.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordFieldChip.tsx
msgid "Select"
msgstr "Selecteren"
@@ -14180,11 +14232,6 @@ msgstr ""
msgid "Set your application configuration variables"
msgstr "Stel je applicatieconfiguratievariabelen in"
#. js-lingui-id: 9qcWSO
#: src/pages/settings/applications/components/SettingsApplicationRegistrationConfigVariableDetail.tsx
msgid "set-config-value"
msgstr ""
#. js-lingui-id: dQsqpC
#: src/pages/onboarding/CreateWorkspace.tsx
msgid "Setting up your database..."
@@ -14264,6 +14311,11 @@ msgstr ""
msgid "Share your app to other workspaces without pushing it on the marketplace"
msgstr ""
#. js-lingui-id: 9ZxCpH
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Shared addresses your workspace uses to send and receive email."
msgstr ""
#. js-lingui-id: NyIsOu
#: src/pages/settings/applications/components/SettingsApplicationRegistrationShareLinkButtons.tsx
msgid "Sharing link copied to clipboard"
@@ -14735,6 +14787,7 @@ msgstr "Status"
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminInstanceStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/signing-keys/components/SettingsAdminSigningKeysTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
@@ -15137,6 +15190,8 @@ msgstr "Tabblad Instellingen"
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
@@ -15228,6 +15283,16 @@ msgstr "Tekst gekopieerd naar klembord"
msgid "Text Editor"
msgstr "Teksteditor"
#. js-lingui-id: KJjmr/
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "The address your workspace sends and receives email from."
msgstr ""
#. js-lingui-id: Z4WP0F
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "The address your workspace will send and receive email from (e.g. support@mycompany.com). Outbound sending requires the domain to be verified in Outbound Domains."
msgstr ""
#. js-lingui-id: oVH0Mt
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
msgid "The API endpoint for your OpenAI-compatible provider"
@@ -15303,11 +15368,6 @@ msgstr ""
msgid "The email associated to your account"
msgstr "Het e-mailadres geassocieerd met uw account"
#. js-lingui-id: TQGLgF
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "The external address whose mail is forwarded into the workspace."
msgstr ""
#. js-lingui-id: diO3fm
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
msgid "The icon your workflow trigger will display in the command menu"
@@ -16106,6 +16166,7 @@ msgstr "Two-factor authenticatie setup met succes voltooid!"
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
@@ -16821,8 +16882,6 @@ msgstr "Geldigheidstoken succesvol vernieuwd"
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableValueInput.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableValueInput.tsx
#: src/modules/page-layout/widgets/graph/graph-widget-gauge-chart/components/GraphWidgetGaugeChart.tsx
#: src/modules/page-layout/widgets/graph/graph-widget-gauge-chart/components/GraphWidgetGaugeChart.tsx
msgid "Value"
msgstr "Waarde"
@@ -16872,6 +16931,11 @@ msgstr "Verifiëren"
msgid "Verify code from the app"
msgstr "Verifieer code vanuit de app"
#. js-lingui-id: hdyekU
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Verify domains so the workspace can send outbound email through them."
msgstr ""
#. js-lingui-id: zS/rMV
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
msgid "Verify the code from the app"
@@ -17385,6 +17449,7 @@ msgid "Workflows"
msgstr "Workstrooms"
#. js-lingui-id: pmUArF
#: src/pages/settings/SettingsWorkspaceEmail.tsx
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsUsageUserDetail.tsx
#: src/pages/settings/SettingsUsage.tsx
@@ -17538,11 +17603,6 @@ msgstr ""
msgid "Workspace views require manage views permission"
msgstr "Werkruimteweergaven vereisen beheer van weergavenrechten"
#. js-lingui-id: 9Bn3vI
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Workspace-level shared addresses that receive forwarded mail."
msgstr ""
#. js-lingui-id: pmt7u4
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
msgid "Workspaces"
@@ -17804,11 +17864,6 @@ msgstr "Uw Enterprise-functies worden uitgeschakeld"
msgid "Your enterprise features will remain active until {cancelAtDate}."
msgstr "Uw Enterprise-functies blijven actief tot {cancelAtDate}."
#. js-lingui-id: 5TsUUL
#: src/modules/information-banner/components/enterprise/InformationBannerInvalidEnterpriseKey.tsx
msgid "Your enterprise key is no longer valid. Activate a new key to continue using enterprise features."
msgstr ""
#. js-lingui-id: NTpA4U
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise subscription has been canceled."
+129 -74
View File
@@ -161,6 +161,7 @@ msgstr "{0, plural, one {Du har ikke tillatelse til å få tilgang til feltet {f
#. js-lingui-id: pZCK0D
#. placeholder {0}: registration.name
#: src/pages/settings/applications/components/SettingsApplicationRegistrationConfigVariableDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationConfigVariableDetail.tsx
msgid "{0} - Config"
msgstr ""
@@ -210,6 +211,12 @@ msgstr ""
msgid "{0} widgets"
msgstr ""
#. js-lingui-id: 2UKfhY
#. placeholder {0}: selectedItemNames.length
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInput.tsx
msgid "{0} workspace members"
msgstr ""
#. js-lingui-id: xTgz1F
#. placeholder {1}: provider.displayName
#: src/pages/settings/applications/tabs/SettingsApplicationConnectionsSection.tsx
@@ -221,6 +228,11 @@ msgstr ""
msgid "{advancedFilterCount, plural, one {{advancedFilterCount} advanced rule} other {{advancedFilterCount} advanced rules}}"
msgstr "{advancedFilterCount, plural, one {{advancedFilterCount} avansert regel} other {{advancedFilterCount} avanserte regler}}"
#. js-lingui-id: XWd9bY
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "{agentCount, plural, one {{agentCount} agent} other {{agentCount} agents}}"
msgstr ""
#. js-lingui-id: WGnqk6
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/hooks/useWorkflowAiAgentPermissionActions.ts
msgid "{agentDisplayName} role ({agentIdPrefix})"
@@ -236,6 +248,11 @@ msgstr "{agentLabel} agentrolle"
msgid "{aggregateLabel} of {fieldLabel}"
msgstr "{aggregateLabel} av {fieldLabel}"
#. js-lingui-id: WhHyQh
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "{apiKeyCount, plural, one {{apiKeyCount} API key} other {{apiKeyCount} API keys}}"
msgstr ""
#. js-lingui-id: u1mVnV
#: src/modules/marketplace/components/SettingsApplicationInstallPermissionValidationModal.tsx
msgid "{appDisplayName} would like to:"
@@ -395,6 +412,11 @@ msgstr "{jobCount, plural, one {Dette vil prøve den valgte jobben på nytt. Den
msgid "{label} list"
msgstr ""
#. js-lingui-id: 1DrH/j
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "{memberCount, plural, one {{memberCount} member} other {{memberCount} members}}"
msgstr ""
#. js-lingui-id: Y32cMj
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadIntermediaryMessages.tsx
msgid "{messagesLength} emails"
@@ -523,6 +545,11 @@ msgstr ""
msgid "{visibleFieldsCount} shown"
msgstr "{visibleFieldsCount} vist"
#. js-lingui-id: WjjsAL
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
msgid "{visibleFieldsCount} visible fields"
msgstr ""
#. js-lingui-id: riMLMq
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowIteratorSubStepSwitcher.tsx
msgid "{workflowRunIteratorSubStepIterationsCount, plural, one {# item} other {# items}}"
@@ -901,7 +928,6 @@ msgstr "Handlinger brukere kan utføre på dette objektet"
#: src/modules/settings/data-model/objects/components/SettingsObjectInactiveMenuDropDown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
#: src/modules/information-banner/components/enterprise/InformationBannerInvalidEnterpriseKey.tsx
msgid "Activate"
msgstr "Aktiver"
@@ -1036,16 +1062,15 @@ msgstr "Legg til egendefinerte instruksjoner som er spesifikke for arbeidsområd
msgid "Add Custom Provider"
msgstr "Legg til egendefinert tilbyder"
#. js-lingui-id: 33pO0a
#. js-lingui-id: +Gf1IN
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Add email group"
msgid "Add email handle"
msgstr ""
#. js-lingui-id: 3O3+7h
#: src/pages/settings/emailing-domains/SettingsEmailingDomains.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomains.tsx
msgid "Add Emailing Domain"
msgstr "Legg til e-postdomene"
#. js-lingui-id: HMM0Sc
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Add emailing domain"
msgstr ""
#. js-lingui-id: DpV70M
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
@@ -1312,7 +1337,6 @@ msgid "Added {beautifiedCreatedAt}"
msgstr "Lagt til {beautifiedCreatedAt}"
#. js-lingui-id: jEHeq+
#: src/pages/settings/emailing-domains/SettingsEmailingDomains.tsx
#: src/modules/settings/security/components/approvedAccessDomains/SettingsApprovedAccessDomainsListCard.tsx
msgid "Added {beautifyPastDateRelative}"
msgstr "Lagt til {beautifyPastDateRelative}"
@@ -1361,6 +1385,7 @@ msgstr ""
#. js-lingui-id: 2GX/U+
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationConfigVariableDetail.tsx
msgid "Admin Panel - Apps"
msgstr ""
@@ -1954,6 +1979,7 @@ msgstr "Det oppstod en uventet feil. Vennligst prøv igjen."
#. js-lingui-id: HZFm5R
#: src/utils/date-utils.ts
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
#: src/modules/auth/sign-in-up/components/FooterNote.tsx
msgid "and"
msgstr "og"
@@ -2188,7 +2214,6 @@ msgstr ""
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/applications/SettingsApplicationConnectionDetail.tsx
#: src/pages/settings/applications/SettingsApplicationCommandMenuItemDetail.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Applications"
msgstr "Applikasjoner"
@@ -2220,7 +2245,6 @@ msgid "Approved Domains"
msgstr "Godkjente domener"
#. js-lingui-id: VDvaN2
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/domains/components/SettingPublicDomain.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
@@ -2257,9 +2281,15 @@ msgstr "Arkivfiler kan ikke forhåndsvises. Last ned filen for å få tilgang ti
msgid "Archived"
msgstr ""
#. js-lingui-id: mk25CW
#. js-lingui-id: Yzbh3i
#. placeholder {0}: emailingDomain.domain
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
msgid "Are you sure you want to delete {0}? Outbound mail through this domain will stop working."
msgstr ""
#. js-lingui-id: Faev6R
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Are you sure you want to delete {sourceHandle}? Forwarded emails will no longer arrive in this workspace."
msgid "Are you sure you want to delete {sourceHandle}? Inbound mail forwarded to this address and outbound replies from it will stop working."
msgstr ""
#. js-lingui-id: 4CHeVx
@@ -3509,6 +3539,11 @@ msgstr "Koderedigerer"
msgid "Code Execution"
msgstr "Kodekjøring"
#. js-lingui-id: T9qjpu
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Code Interpreter"
msgstr ""
#. js-lingui-id: bKJYIa
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionCodeEditorTab.tsx
msgid "Code your function"
@@ -3723,11 +3758,6 @@ msgstr "Konfigurer en SSO-forbindelse"
msgid "Configure and customize your calendar preferences."
msgstr "Konfigurer og tilpass dine kalenderinnstillinger."
#. js-lingui-id: 5i71HM
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Configure and verify domains for emailing from this workspace."
msgstr "Konfigurer og verifiser domener for å sende e-post fra denne arbeidsplassen."
#. js-lingui-id: 6MDr1S
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure CalDAV settings to sync your calendar events."
@@ -3816,10 +3846,15 @@ msgstr "Bekreft"
msgid "Confirm changing your current resource credit allocation."
msgstr ""
#. js-lingui-id: FbJ7Si
#. js-lingui-id: SU6Tym
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
msgstr "Bekreft sletting av {roleName}-rolle? Dette kan ikke angres. Alle medlemmer vil bli tildelt standardrollen."
msgid "Confirm deletion of {roleName} role? This cannot be undone."
msgstr ""
#. js-lingui-id: W7S+Tm
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. {reassignSubject} will be reassigned to the default role."
msgstr ""
#. js-lingui-id: kZkFSm
#: src/modules/settings/billing/components/internal/ResourceCreditPriceSelector.tsx
@@ -5089,6 +5124,8 @@ msgstr "slett"
#. js-lingui-id: cnGeoo
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -5110,7 +5147,6 @@ msgstr "slett"
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
#: src/modules/settings/emailing-domains/components/SettingsEmailingDomainRowDropdownMenu.tsx
#: src/modules/settings/domains/components/SettingPublicDomainRowDropdownMenu.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -5194,9 +5230,14 @@ msgstr "Slett app"
msgid "Delete chat"
msgstr ""
#. js-lingui-id: /BTna7
#. js-lingui-id: cC09EO
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Delete email group"
msgid "Delete email handle"
msgstr ""
#. js-lingui-id: yZyuut
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
msgid "Delete emailing domain"
msgstr ""
#. js-lingui-id: gf2eXy
@@ -5537,6 +5578,7 @@ msgstr "Inneholder ikke"
#. js-lingui-id: EoKe5U
#: src/pages/settings/security/SettingsSecurityApprovedAccessDomain.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Domain"
msgstr "Domene"
@@ -5903,9 +5945,14 @@ msgid "else if"
msgstr "ellers hvis"
#. js-lingui-id: O3oNi5
#: src/pages/settings/SettingsWorkspaceEmail.tsx
#: src/pages/settings/SettingsWorkspaceEmail.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/members/tabs/SettingsWorkspaceMembersTeamTab.tsx
#: src/pages/settings/members/tabs/SettingsWorkspaceMembersInviteTab.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
#: src/pages/auth/PasswordReset.tsx
@@ -5914,7 +5961,9 @@ msgstr "ellers hvis"
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTableHeader.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
#: src/modules/settings/members/components/MemberInfosTab.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
#: src/modules/object-record/record-field/ui/meta-types/input/components/EmailsFieldInput.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpEmailField.tsx
msgid "Email"
@@ -5943,9 +5992,9 @@ msgstr "E-post kopiert til utklippstavlen"
msgid "Email Editor"
msgstr "E-postredigering"
#. js-lingui-id: KQM9eG
#. js-lingui-id: nsVRM/
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Email Groups"
msgid "Email Handles"
msgstr ""
#. js-lingui-id: lfQsvW
@@ -6015,14 +6064,12 @@ msgid "Emailing domain created successfully. Please verify the domain to start u
msgstr "E-postdomene opprettet vellykket. Vennligst verifiser domenet for å begynne å bruke det."
#. js-lingui-id: XDpopO
#: src/modules/settings/emailing-domains/components/SettingsEmailingDomainRowDropdownMenu.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
msgid "Emailing domain deleted successfully"
msgstr "E-postdomene slettet vellykket"
#. js-lingui-id: axQccV
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Emailing Domains"
msgstr "E-postdomener"
@@ -6200,6 +6247,11 @@ msgstr "Skriv inn et tall"
msgid "Enter a UUID"
msgstr "Skriv inn en UUID"
#. js-lingui-id: 0AYT5C
#: src/modules/settings/application-registrations/components/ApplicationRegistrationConfigVariableEditForm.tsx
msgid "Enter a value"
msgstr ""
#. js-lingui-id: oiVP/+
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableValueInput.tsx
msgid "Enter a value to store in database"
@@ -6344,11 +6396,6 @@ msgstr ""
msgid "Enter the credentials to set the connection"
msgstr "Skriv inn legitimasjonen for å sette opp tilkoblingen"
#. js-lingui-id: PTGfBH
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "Enter the email address you want to forward emails from (e.g. support@mycompany.com)."
msgstr ""
#. js-lingui-id: rGWgcm
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Enter the infos to set the connection"
@@ -6955,9 +7002,9 @@ msgstr "Kunne ikke legge til modell"
msgid "Failed to add provider"
msgstr "Kunne ikke legge til tilbyder"
#. js-lingui-id: d+6i8z
#. js-lingui-id: L9UnOU
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "Failed to create email group channel. Email group may not be configured on this server."
msgid "Failed to create email handle. Email handles may not be configured on this server."
msgstr ""
#. js-lingui-id: WM7GKt
@@ -6965,9 +7012,9 @@ msgstr ""
msgid "Failed to create tool"
msgstr "Kunne ikke opprette verktøy"
#. js-lingui-id: W4hzLB
#. js-lingui-id: lWoewm
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Failed to delete email group channel."
msgid "Failed to delete email handle."
msgstr ""
#. js-lingui-id: pUligB
@@ -7293,7 +7340,9 @@ msgstr "felter"
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.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/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
@@ -7682,16 +7731,9 @@ msgstr "Funksjonsnavn"
msgid "Functions - Settings"
msgstr "Funksjoner - Innstillinger"
#. js-lingui-id: vYj1cC
#: src/modules/side-panel/pages/page-layout/constants/GraphTypeInformation.ts
#: src/modules/page-layout/utils/getWidgetTitle.ts
msgid "Gauge Chart"
msgstr "Målediagram"
#. js-lingui-id: Weq9zb
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
#: src/pages/settings/applications/components/SettingsApplicationRegistrationGeneralInfo.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationDetail.tsx
@@ -7699,7 +7741,6 @@ msgstr "Målediagram"
#: src/modules/settings/domains/components/SettingsSubdomain.tsx
#: src/modules/settings/domains/components/SettingsCustomDomain.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroupsForDisplay.ts
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
msgid "General"
@@ -8656,10 +8697,11 @@ msgstr "Ugyldig e-post eller domene"
msgid "Invalid email verification link."
msgstr "Ugyldig e-postbekreftelseslenke."
#. js-lingui-id: uzxr9u
#. js-lingui-id: 4D6/HO
#. placeholder {0}: samlMetadataParsed.reason
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Invalid File"
msgstr "Ugyldig fil"
msgid "Invalid file: {0}"
msgstr ""
#. js-lingui-id: 04zLGG
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
@@ -9778,6 +9820,8 @@ msgstr "MCP Server"
#. js-lingui-id: upbzgm
#: src/modules/views/hooks/useComputeRecordRelationFilterLabelValue.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionValueInput.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInput.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInput.tsx
msgid "Me"
msgstr "Meg"
@@ -10349,10 +10393,10 @@ msgstr "Ny samtale"
msgid "New Email"
msgstr ""
#. js-lingui-id: TmlJkc
#. js-lingui-id: VJZNJt
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "New Email Group"
msgid "New Email Handle"
msgstr ""
#. js-lingui-id: wqoYqp
@@ -11687,9 +11731,11 @@ msgstr "Organiser"
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationConfigVariableDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/sign-in-background-mock/components/BackgroundMockNavigationDrawer.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
@@ -13355,6 +13401,11 @@ msgstr ""
msgid "Run a workflow and return here to view its executions"
msgstr "Kjør en arbeidsflyt og kom tilbake her for å se på kjøringene"
#. js-lingui-id: rRyKdg
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Run code to analyze files and data"
msgstr ""
#. js-lingui-id: UPaWvi
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTestTab.tsx
msgid "Run Function"
@@ -13840,6 +13891,7 @@ msgstr ""
#. js-lingui-id: rG3WVm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/components/columns.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/components/SelectColumn.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInputTrigger.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordFieldChip.tsx
msgid "Select"
msgstr "Velg"
@@ -14180,11 +14232,6 @@ msgstr ""
msgid "Set your application configuration variables"
msgstr "Sett dine programkonfigurasjonsvariabler"
#. js-lingui-id: 9qcWSO
#: src/pages/settings/applications/components/SettingsApplicationRegistrationConfigVariableDetail.tsx
msgid "set-config-value"
msgstr ""
#. js-lingui-id: dQsqpC
#: src/pages/onboarding/CreateWorkspace.tsx
msgid "Setting up your database..."
@@ -14264,6 +14311,11 @@ msgstr ""
msgid "Share your app to other workspaces without pushing it on the marketplace"
msgstr ""
#. js-lingui-id: 9ZxCpH
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Shared addresses your workspace uses to send and receive email."
msgstr ""
#. js-lingui-id: NyIsOu
#: src/pages/settings/applications/components/SettingsApplicationRegistrationShareLinkButtons.tsx
msgid "Sharing link copied to clipboard"
@@ -14735,6 +14787,7 @@ msgstr "Tilstand"
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminInstanceStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/signing-keys/components/SettingsAdminSigningKeysTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
@@ -15137,6 +15190,8 @@ msgstr "Faneinnstillinger"
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
@@ -15228,6 +15283,16 @@ msgstr "Tekst kopiert til utklippstavlen"
msgid "Text Editor"
msgstr "Tekstredigering"
#. js-lingui-id: KJjmr/
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "The address your workspace sends and receives email from."
msgstr ""
#. js-lingui-id: Z4WP0F
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "The address your workspace will send and receive email from (e.g. support@mycompany.com). Outbound sending requires the domain to be verified in Outbound Domains."
msgstr ""
#. js-lingui-id: oVH0Mt
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
msgid "The API endpoint for your OpenAI-compatible provider"
@@ -15303,11 +15368,6 @@ msgstr ""
msgid "The email associated to your account"
msgstr "E-posten knyttet til kontoen din"
#. js-lingui-id: TQGLgF
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "The external address whose mail is forwarded into the workspace."
msgstr ""
#. js-lingui-id: diO3fm
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
msgid "The icon your workflow trigger will display in the command menu"
@@ -16104,6 +16164,7 @@ msgstr "Tofaktorautentiseringsoppsett fullført!"
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
@@ -16819,8 +16880,6 @@ msgstr "Gyldighetstokenet ble oppdatert."
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableValueInput.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableValueInput.tsx
#: src/modules/page-layout/widgets/graph/graph-widget-gauge-chart/components/GraphWidgetGaugeChart.tsx
#: src/modules/page-layout/widgets/graph/graph-widget-gauge-chart/components/GraphWidgetGaugeChart.tsx
msgid "Value"
msgstr "Verdi"
@@ -16870,6 +16929,11 @@ msgstr "Verifiser"
msgid "Verify code from the app"
msgstr "Verifiser koden fra appen"
#. js-lingui-id: hdyekU
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Verify domains so the workspace can send outbound email through them."
msgstr ""
#. js-lingui-id: zS/rMV
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
msgid "Verify the code from the app"
@@ -17383,6 +17447,7 @@ msgid "Workflows"
msgstr "Arbeidsflyter"
#. js-lingui-id: pmUArF
#: src/pages/settings/SettingsWorkspaceEmail.tsx
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsUsageUserDetail.tsx
#: src/pages/settings/SettingsUsage.tsx
@@ -17536,11 +17601,6 @@ msgstr ""
msgid "Workspace views require manage views permission"
msgstr "Arbeidsområdevisninger krever administrasjonsrettigheter for visninger"
#. js-lingui-id: 9Bn3vI
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Workspace-level shared addresses that receive forwarded mail."
msgstr ""
#. js-lingui-id: pmt7u4
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
msgid "Workspaces"
@@ -17802,11 +17862,6 @@ msgstr "Enterprise-funksjonene dine vil bli deaktivert"
msgid "Your enterprise features will remain active until {cancelAtDate}."
msgstr "Enterprise-funksjonene dine forblir aktive til {cancelAtDate}."
#. js-lingui-id: 5TsUUL
#: src/modules/information-banner/components/enterprise/InformationBannerInvalidEnterpriseKey.tsx
msgid "Your enterprise key is no longer valid. Activate a new key to continue using enterprise features."
msgstr ""
#. js-lingui-id: NTpA4U
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise subscription has been canceled."
+129 -74
View File
@@ -161,6 +161,7 @@ msgstr "{0, plural, one {Nie masz uprawnienia do dostępu do pola {fieldsList}}
#. js-lingui-id: pZCK0D
#. placeholder {0}: registration.name
#: src/pages/settings/applications/components/SettingsApplicationRegistrationConfigVariableDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationConfigVariableDetail.tsx
msgid "{0} - Config"
msgstr ""
@@ -210,6 +211,12 @@ msgstr ""
msgid "{0} widgets"
msgstr ""
#. js-lingui-id: 2UKfhY
#. placeholder {0}: selectedItemNames.length
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInput.tsx
msgid "{0} workspace members"
msgstr ""
#. js-lingui-id: xTgz1F
#. placeholder {1}: provider.displayName
#: src/pages/settings/applications/tabs/SettingsApplicationConnectionsSection.tsx
@@ -221,6 +228,11 @@ msgstr ""
msgid "{advancedFilterCount, plural, one {{advancedFilterCount} advanced rule} other {{advancedFilterCount} advanced rules}}"
msgstr "{advancedFilterCount, plural, one {{advancedFilterCount} zaawansowana zasada} few {{advancedFilterCount} zaawansowane zasady} many {{advancedFilterCount} zaawansowanych zasad} other {{advancedFilterCount} zaawansowanych zasad}}"
#. js-lingui-id: XWd9bY
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "{agentCount, plural, one {{agentCount} agent} other {{agentCount} agents}}"
msgstr ""
#. js-lingui-id: WGnqk6
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/hooks/useWorkflowAiAgentPermissionActions.ts
msgid "{agentDisplayName} role ({agentIdPrefix})"
@@ -236,6 +248,11 @@ msgstr "Rola agenta {agentLabel}"
msgid "{aggregateLabel} of {fieldLabel}"
msgstr "{aggregateLabel} z {fieldLabel}"
#. js-lingui-id: WhHyQh
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "{apiKeyCount, plural, one {{apiKeyCount} API key} other {{apiKeyCount} API keys}}"
msgstr ""
#. js-lingui-id: u1mVnV
#: src/modules/marketplace/components/SettingsApplicationInstallPermissionValidationModal.tsx
msgid "{appDisplayName} would like to:"
@@ -395,6 +412,11 @@ msgstr "{jobCount, plural, one {To ponownie uruchomi wybrane zadanie. Zostanie o
msgid "{label} list"
msgstr ""
#. js-lingui-id: 1DrH/j
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "{memberCount, plural, one {{memberCount} member} other {{memberCount} members}}"
msgstr ""
#. js-lingui-id: Y32cMj
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadIntermediaryMessages.tsx
msgid "{messagesLength} emails"
@@ -523,6 +545,11 @@ msgstr ""
msgid "{visibleFieldsCount} shown"
msgstr "Wyświetlono {visibleFieldsCount}"
#. js-lingui-id: WjjsAL
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
msgid "{visibleFieldsCount} visible fields"
msgstr ""
#. js-lingui-id: riMLMq
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowIteratorSubStepSwitcher.tsx
msgid "{workflowRunIteratorSubStepIterationsCount, plural, one {# item} other {# items}}"
@@ -901,7 +928,6 @@ msgstr "Działania, które użytkownicy mogą wykonywać na tym obiekcie"
#: src/modules/settings/data-model/objects/components/SettingsObjectInactiveMenuDropDown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
#: src/modules/information-banner/components/enterprise/InformationBannerInvalidEnterpriseKey.tsx
msgid "Activate"
msgstr "Aktywuj"
@@ -1036,16 +1062,15 @@ msgstr "Dodaj niestandardowe instrukcje specyficzne dla Twojego obszaru roboczeg
msgid "Add Custom Provider"
msgstr "Dodaj niestandardowego dostawcę"
#. js-lingui-id: 33pO0a
#. js-lingui-id: +Gf1IN
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Add email group"
msgid "Add email handle"
msgstr ""
#. js-lingui-id: 3O3+7h
#: src/pages/settings/emailing-domains/SettingsEmailingDomains.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomains.tsx
msgid "Add Emailing Domain"
msgstr "Dodaj domenę e-mailową"
#. js-lingui-id: HMM0Sc
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Add emailing domain"
msgstr ""
#. js-lingui-id: DpV70M
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
@@ -1312,7 +1337,6 @@ msgid "Added {beautifiedCreatedAt}"
msgstr "Dodano {beautifiedCreatedAt}"
#. js-lingui-id: jEHeq+
#: src/pages/settings/emailing-domains/SettingsEmailingDomains.tsx
#: src/modules/settings/security/components/approvedAccessDomains/SettingsApprovedAccessDomainsListCard.tsx
msgid "Added {beautifyPastDateRelative}"
msgstr "Dodano {beautifyPastDateRelative}"
@@ -1361,6 +1385,7 @@ msgstr ""
#. js-lingui-id: 2GX/U+
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationConfigVariableDetail.tsx
msgid "Admin Panel - Apps"
msgstr ""
@@ -1954,6 +1979,7 @@ msgstr "Wystąpił nieoczekiwany błąd. Spróbuj ponownie."
#. js-lingui-id: HZFm5R
#: src/utils/date-utils.ts
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
#: src/modules/auth/sign-in-up/components/FooterNote.tsx
msgid "and"
msgstr "i"
@@ -2188,7 +2214,6 @@ msgstr ""
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/applications/SettingsApplicationConnectionDetail.tsx
#: src/pages/settings/applications/SettingsApplicationCommandMenuItemDetail.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Applications"
msgstr "Aplikacje"
@@ -2220,7 +2245,6 @@ msgid "Approved Domains"
msgstr "Zatwierdzone domeny"
#. js-lingui-id: VDvaN2
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/domains/components/SettingPublicDomain.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
@@ -2257,9 +2281,15 @@ msgstr "Nie można wyświetlić podglądu archiwów. Pobierz plik, aby uzyskać
msgid "Archived"
msgstr ""
#. js-lingui-id: mk25CW
#. js-lingui-id: Yzbh3i
#. placeholder {0}: emailingDomain.domain
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
msgid "Are you sure you want to delete {0}? Outbound mail through this domain will stop working."
msgstr ""
#. js-lingui-id: Faev6R
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Are you sure you want to delete {sourceHandle}? Forwarded emails will no longer arrive in this workspace."
msgid "Are you sure you want to delete {sourceHandle}? Inbound mail forwarded to this address and outbound replies from it will stop working."
msgstr ""
#. js-lingui-id: 4CHeVx
@@ -3509,6 +3539,11 @@ msgstr "Edytor kodu"
msgid "Code Execution"
msgstr "Wykonywanie kodu"
#. js-lingui-id: T9qjpu
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Code Interpreter"
msgstr ""
#. js-lingui-id: bKJYIa
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionCodeEditorTab.tsx
msgid "Code your function"
@@ -3723,11 +3758,6 @@ msgstr "Skonfiguruj połączenie SSO"
msgid "Configure and customize your calendar preferences."
msgstr "Skonfiguruj i dostosuj swoje preferencje kalendarza."
#. js-lingui-id: 5i71HM
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Configure and verify domains for emailing from this workspace."
msgstr "Skonfiguruj i zweryfikuj domeny do wysyłki e-maili z tego miejsca pracy."
#. js-lingui-id: 6MDr1S
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure CalDAV settings to sync your calendar events."
@@ -3816,10 +3846,15 @@ msgstr "Potwierdź"
msgid "Confirm changing your current resource credit allocation."
msgstr ""
#. js-lingui-id: FbJ7Si
#. js-lingui-id: SU6Tym
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
msgstr "Potwierdzić usunięcie roli {roleName}? Tego nie można cofnąć. Wszyscy członkowie zostaną przypisani do domyślnej roli."
msgid "Confirm deletion of {roleName} role? This cannot be undone."
msgstr ""
#. js-lingui-id: W7S+Tm
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. {reassignSubject} will be reassigned to the default role."
msgstr ""
#. js-lingui-id: kZkFSm
#: src/modules/settings/billing/components/internal/ResourceCreditPriceSelector.tsx
@@ -5089,6 +5124,8 @@ msgstr "usuń"
#. js-lingui-id: cnGeoo
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -5110,7 +5147,6 @@ msgstr "usuń"
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
#: src/modules/settings/emailing-domains/components/SettingsEmailingDomainRowDropdownMenu.tsx
#: src/modules/settings/domains/components/SettingPublicDomainRowDropdownMenu.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -5194,9 +5230,14 @@ msgstr "Usuń aplikację"
msgid "Delete chat"
msgstr ""
#. js-lingui-id: /BTna7
#. js-lingui-id: cC09EO
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Delete email group"
msgid "Delete email handle"
msgstr ""
#. js-lingui-id: yZyuut
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
msgid "Delete emailing domain"
msgstr ""
#. js-lingui-id: gf2eXy
@@ -5537,6 +5578,7 @@ msgstr "Nie zawiera"
#. js-lingui-id: EoKe5U
#: src/pages/settings/security/SettingsSecurityApprovedAccessDomain.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Domain"
msgstr "Domena"
@@ -5903,9 +5945,14 @@ msgid "else if"
msgstr "w przeciwnym razie jeśli"
#. js-lingui-id: O3oNi5
#: src/pages/settings/SettingsWorkspaceEmail.tsx
#: src/pages/settings/SettingsWorkspaceEmail.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/members/tabs/SettingsWorkspaceMembersTeamTab.tsx
#: src/pages/settings/members/tabs/SettingsWorkspaceMembersInviteTab.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
#: src/pages/auth/PasswordReset.tsx
@@ -5914,7 +5961,9 @@ msgstr "w przeciwnym razie jeśli"
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTableHeader.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
#: src/modules/settings/members/components/MemberInfosTab.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
#: src/modules/object-record/record-field/ui/meta-types/input/components/EmailsFieldInput.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpEmailField.tsx
msgid "Email"
@@ -5943,9 +5992,9 @@ msgstr "Email został skopiowany do schowka"
msgid "Email Editor"
msgstr "Edytor Email"
#. js-lingui-id: KQM9eG
#. js-lingui-id: nsVRM/
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Email Groups"
msgid "Email Handles"
msgstr ""
#. js-lingui-id: lfQsvW
@@ -6015,14 +6064,12 @@ msgid "Emailing domain created successfully. Please verify the domain to start u
msgstr "Domena e-mailowa utworzona pomyślnie. Proszę zweryfikować domenę, aby rozpocząć jej używanie."
#. js-lingui-id: XDpopO
#: src/modules/settings/emailing-domains/components/SettingsEmailingDomainRowDropdownMenu.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
msgid "Emailing domain deleted successfully"
msgstr "Domena e-mailowa usunięta pomyślnie"
#. js-lingui-id: axQccV
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Emailing Domains"
msgstr "Domeny wysyłkowe"
@@ -6200,6 +6247,11 @@ msgstr "Wprowadź liczbę"
msgid "Enter a UUID"
msgstr "Wprowadź UUID"
#. js-lingui-id: 0AYT5C
#: src/modules/settings/application-registrations/components/ApplicationRegistrationConfigVariableEditForm.tsx
msgid "Enter a value"
msgstr ""
#. js-lingui-id: oiVP/+
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableValueInput.tsx
msgid "Enter a value to store in database"
@@ -6344,11 +6396,6 @@ msgstr ""
msgid "Enter the credentials to set the connection"
msgstr "Wprowadź dane uwierzytelniające, aby ustawić połączenie"
#. js-lingui-id: PTGfBH
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "Enter the email address you want to forward emails from (e.g. support@mycompany.com)."
msgstr ""
#. js-lingui-id: rGWgcm
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Enter the infos to set the connection"
@@ -6955,9 +7002,9 @@ msgstr "Nie udało się dodać modelu"
msgid "Failed to add provider"
msgstr "Nie udało się dodać dostawcy"
#. js-lingui-id: d+6i8z
#. js-lingui-id: L9UnOU
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "Failed to create email group channel. Email group may not be configured on this server."
msgid "Failed to create email handle. Email handles may not be configured on this server."
msgstr ""
#. js-lingui-id: WM7GKt
@@ -6965,9 +7012,9 @@ msgstr ""
msgid "Failed to create tool"
msgstr "Nie udało się utworzyć narzędzia"
#. js-lingui-id: W4hzLB
#. js-lingui-id: lWoewm
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "Failed to delete email group channel."
msgid "Failed to delete email handle."
msgstr ""
#. js-lingui-id: pUligB
@@ -7293,7 +7340,9 @@ msgstr "pola"
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.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/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
@@ -7682,16 +7731,9 @@ msgstr "Nazwa funkcji"
msgid "Functions - Settings"
msgstr "Funkcje - Ustawienia"
#. js-lingui-id: vYj1cC
#: src/modules/side-panel/pages/page-layout/constants/GraphTypeInformation.ts
#: src/modules/page-layout/utils/getWidgetTitle.ts
msgid "Gauge Chart"
msgstr ""
#. js-lingui-id: Weq9zb
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
#: src/pages/settings/applications/components/SettingsApplicationRegistrationGeneralInfo.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationDetail.tsx
@@ -7699,7 +7741,6 @@ msgstr ""
#: src/modules/settings/domains/components/SettingsSubdomain.tsx
#: src/modules/settings/domains/components/SettingsCustomDomain.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroupsForDisplay.ts
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
msgid "General"
@@ -8656,10 +8697,11 @@ msgstr "Nieprawidłowy adres e-mail lub domena"
msgid "Invalid email verification link."
msgstr "Nieprawidłowy link weryfikacyjny e-maila."
#. js-lingui-id: uzxr9u
#. js-lingui-id: 4D6/HO
#. placeholder {0}: samlMetadataParsed.reason
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Invalid File"
msgstr "Nieprawidłowy plik"
msgid "Invalid file: {0}"
msgstr ""
#. js-lingui-id: 04zLGG
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
@@ -9778,6 +9820,8 @@ msgstr "Serwer MCP"
#. js-lingui-id: upbzgm
#: src/modules/views/hooks/useComputeRecordRelationFilterLabelValue.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionValueInput.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInput.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInput.tsx
msgid "Me"
msgstr "Ja"
@@ -10349,10 +10393,10 @@ msgstr "Nowa konwersacja"
msgid "New Email"
msgstr ""
#. js-lingui-id: TmlJkc
#. js-lingui-id: VJZNJt
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "New Email Group"
msgid "New Email Handle"
msgstr ""
#. js-lingui-id: wqoYqp
@@ -11687,9 +11731,11 @@ msgstr "Organizuj"
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminApplicationRegistrationConfigVariableDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/sign-in-background-mock/components/BackgroundMockNavigationDrawer.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
@@ -13355,6 +13401,11 @@ msgstr ""
msgid "Run a workflow and return here to view its executions"
msgstr "Uruchom workflow i wróć tutaj, aby zobaczyć jego wykonania"
#. js-lingui-id: rRyKdg
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Run code to analyze files and data"
msgstr ""
#. js-lingui-id: UPaWvi
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTestTab.tsx
msgid "Run Function"
@@ -13840,6 +13891,7 @@ msgstr ""
#. js-lingui-id: rG3WVm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/components/columns.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/components/SelectColumn.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormWorkspaceMemberFilterValueInputTrigger.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordFieldChip.tsx
msgid "Select"
msgstr "Wybierz"
@@ -14180,11 +14232,6 @@ msgstr ""
msgid "Set your application configuration variables"
msgstr "Ustaw zmienne konfiguracyjne aplikacji"
#. js-lingui-id: 9qcWSO
#: src/pages/settings/applications/components/SettingsApplicationRegistrationConfigVariableDetail.tsx
msgid "set-config-value"
msgstr ""
#. js-lingui-id: dQsqpC
#: src/pages/onboarding/CreateWorkspace.tsx
msgid "Setting up your database..."
@@ -14264,6 +14311,11 @@ msgstr ""
msgid "Share your app to other workspaces without pushing it on the marketplace"
msgstr ""
#. js-lingui-id: 9ZxCpH
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Shared addresses your workspace uses to send and receive email."
msgstr ""
#. js-lingui-id: NyIsOu
#: src/pages/settings/applications/components/SettingsApplicationRegistrationShareLinkButtons.tsx
msgid "Sharing link copied to clipboard"
@@ -14735,6 +14787,7 @@ msgstr "Stan"
#: src/pages/settings/admin-panel/SettingsAdminWorkspaceDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminInstanceStatus.tsx
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/signing-keys/components/SettingsAdminSigningKeysTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
@@ -15137,6 +15190,8 @@ msgstr "Ustawienia Zakładki"
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
@@ -15228,6 +15283,16 @@ msgstr "Tekst skopiowany do schowka"
msgid "Text Editor"
msgstr "Edytor tekstu"
#. js-lingui-id: KJjmr/
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "The address your workspace sends and receives email from."
msgstr ""
#. js-lingui-id: Z4WP0F
#: src/modules/settings/accounts/components/SettingsAccountsNewEmailGroupChannel.tsx
msgid "The address your workspace will send and receive email from (e.g. support@mycompany.com). Outbound sending requires the domain to be verified in Outbound Domains."
msgstr ""
#. js-lingui-id: oVH0Mt
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
msgid "The API endpoint for your OpenAI-compatible provider"
@@ -15303,11 +15368,6 @@ msgstr ""
msgid "The email associated to your account"
msgstr "Email powiązany z Twoim kontem"
#. js-lingui-id: TQGLgF
#: src/pages/settings/workspace/SettingsWorkspaceEmailGroupChannelDetail.tsx
msgid "The external address whose mail is forwarded into the workspace."
msgstr ""
#. js-lingui-id: diO3fm
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
msgid "The icon your workflow trigger will display in the command menu"
@@ -16104,6 +16164,7 @@ msgstr "Konfiguracja uwierzytelniania dwuskładnikowego zakończona pomyślnie!"
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
@@ -16819,8 +16880,6 @@ msgstr "Pomyślnie odświeżono token ważności"
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableValueInput.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableValueInput.tsx
#: src/modules/page-layout/widgets/graph/graph-widget-gauge-chart/components/GraphWidgetGaugeChart.tsx
#: src/modules/page-layout/widgets/graph/graph-widget-gauge-chart/components/GraphWidgetGaugeChart.tsx
msgid "Value"
msgstr "Wartość"
@@ -16870,6 +16929,11 @@ msgstr "Zweryfikuj"
msgid "Verify code from the app"
msgstr "Zweryfikuj kod z aplikacji"
#. js-lingui-id: hdyekU
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailingDomainsSection.tsx
msgid "Verify domains so the workspace can send outbound email through them."
msgstr ""
#. js-lingui-id: zS/rMV
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
msgid "Verify the code from the app"
@@ -17383,6 +17447,7 @@ msgid "Workflows"
msgstr "Przepływy pracy"
#. js-lingui-id: pmUArF
#: src/pages/settings/SettingsWorkspaceEmail.tsx
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsUsageUserDetail.tsx
#: src/pages/settings/SettingsUsage.tsx
@@ -17536,11 +17601,6 @@ msgstr ""
msgid "Workspace views require manage views permission"
msgstr "Widoki przestrzeni roboczej wymagają pozwolenia na zarządzanie widokami"
#. js-lingui-id: 9Bn3vI
#: src/modules/settings/workspace/components/SettingsWorkspaceEmailGroupSection.tsx
msgid "Workspace-level shared addresses that receive forwarded mail."
msgstr ""
#. js-lingui-id: pmt7u4
#: src/pages/settings/admin-panel/SettingsAdminUserDetail.tsx
msgid "Workspaces"
@@ -17802,11 +17862,6 @@ msgstr "Twoje funkcje Enterprise zostaną wyłączone"
msgid "Your enterprise features will remain active until {cancelAtDate}."
msgstr "Twoje funkcje Enterprise pozostaną aktywne do {cancelAtDate}."
#. js-lingui-id: 5TsUUL
#: src/modules/information-banner/components/enterprise/InformationBannerInvalidEnterpriseKey.tsx
msgid "Your enterprise key is no longer valid. Activate a new key to continue using enterprise features."
msgstr ""
#. js-lingui-id: NTpA4U
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise subscription has been canceled."

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