Compare commits

..
Author SHA1 Message Date
Sonarly Claude Code 2586059ace Reply button throws unhandled error for IMAP/SMTP email accounts
https://sonarly.com/issue/14482?type=bug

Clicking "Reply" on an email thread in the side panel throws an unhandled "Account provider not supported" error for users with IMAP/SMTP connected accounts, crashing the UI.

Fix: **Two bugs fixed in `SidePanelMessageThreadPage.tsx`:**

**1. IMAP Reply crash (commit 7c8d362772):** The IMAP Driver Integration PR added `IMAP_SMTP_CALDAV` to `ALLOWED_REPLY_PROVIDERS` and added `canReply` logic for IMAP accounts with SMTP params, but left `handleReplyClick` with a `throw new Error('Account provider not supported')` placeholder for the IMAP case. Unlike Google (Gmail URL) and Microsoft (Outlook URL), IMAP has no webmail URL to deep-link to for replies.

**Fix:** Removed `IMAP_SMTP_CALDAV` from `ALLOWED_REPLY_PROVIDERS` so the Reply button is hidden for IMAP users. The switch statement keeps `IMAP_SMTP_CALDAV` as a no-op `break` to satisfy TypeScript exhaustiveness checking via `assertUnreachable`. Removed the now-unused `connectedAccountConnectionParameters` destructuring and IMAP-specific `canReply` condition.

**2. `isDefined(canReply)` regression (commit 9d57bc39e5):** The ESLint-to-OxLint migration mechanically replaced `canReply` truthiness checks with `isDefined(canReply)`. Since `canReply` is a boolean (from `useMemo`), `isDefined(false)` returns `true`, which meant: the Reply button was always rendered (line 169), never disabled (line 176), and the guard in `handleReplyClick` (line 106) never triggered.

**Fix:** Reverted `isDefined(canReply)` back to `canReply` in the three affected locations: the render condition, the disabled prop, and the click handler guard.
2026-03-13 16:24:35 +00:00
Sonarly Claude Code 4880265088 chore: additional changes for Google reCAPTCHA verification timeout during Check 2026-03-13 16:20:01 +00:00
Sonarly Claude Code a1d148694e chore: improve monitoring for Google reCAPTCHA verification timeout during Check
**`captcha.guard.ts`** — Added a `Logger` instance and a `warn`-level log when the captcha error indicates provider unreachability (`captcha-provider-unreachable` prefix). This ensures:

1. Network-level captcha failures are logged at `warn` level (not `error`) — they're transient infrastructure issues, not application bugs, so they shouldn't trigger error-level alerts
2. The error code (ETIMEDOUT, ENETUNREACH, etc.) is included in the log message for debugging
3. The existing `MetricsService.incrementCounter` call already captures the error in the `InvalidCaptcha` metric attributes, so the new log complements (not duplicates) the metric — logs give immediate visibility in pod logs, metrics give aggregate dashboard views

Previously, these failures would surface as unhandled `AggregateError` exceptions in Sentry with no application-level context. Now they're captured as structured warn logs + metric attributes, and Sentry will see a `CaptchaException` (which is a handled, expected error type) instead of a raw network error.
2026-03-13 16:19:58 +00:00
Sonarly Claude Code 24fab28025 Google reCAPTCHA verification timeout during CheckUserExists query
https://sonarly.com/issue/4574?type=bug

The twenty-server cannot reach Google's reCAPTCHA verification endpoint (`https://www.google.com/recaptcha/api/siteverify`) from its AWS eu-central-1 pod, causing the `CheckUserExists` GraphQL query to fail with an unhandled `AggregateError [ETIMEDOUT]`.

Fix: **Problem:** `GoogleRecaptchaDriver.validate()` and `TurnstileDriver.validate()` make HTTP POST requests to external captcha providers with no timeout and no error handling. When the provider is unreachable (ETIMEDOUT/ENETUNREACH), the raw `AggregateError` bubbles up through the NestJS guard chain as an unhandled 500 error.

**Fix (3 changes):**

1. **`captcha.module.ts`** — Added `timeout: 10_000` (10 seconds) to both captcha HTTP clients. This bounds the maximum wait time instead of relying on OS-level TCP timeout (~75-120s). This follows the team's existing pattern (webhook job uses `timeout: 5_000`); captcha gets a slightly higher timeout since it blocks user login.

2. **`google-recaptcha.driver.ts`** and **`turnstile.driver.ts`** — Wrapped the HTTP POST in try/catch. Network errors are caught and returned as `{ success: false, error: 'captcha-provider-unreachable: ETIMEDOUT' }` instead of throwing. This uses the existing `CaptchaValidateResult` contract, so the guard's existing failure path handles it correctly — the user sees "Invalid Captcha, please try another device" instead of a raw 500 error.

The error is NOT silently swallowed — it flows through the normal captcha failure path which increments the `InvalidCaptcha` metric counter with the error code in attributes, and then throws a `CaptchaException`.
2026-03-13 16:19:56 +00:00
49bdcd6bd5 i18n - docs translations (#18621)
Created by Github action

Co-authored-by: github-actions <github-actions@twenty.com>
2026-03-13 17:16:43 +01:00
3f01249967 i18n - translations (#18620)
Created by Github action

---------

Co-authored-by: github-actions <github-actions@twenty.com>
2026-03-13 17:16:32 +01:00
4b6c8d52e5 Improve type safety and remove unnecessary store operations (#18622)
## Summary
This PR improves type safety across the codebase by replacing generic
`any` types with proper TypeScript types, removes unnecessary record
store operations, and adds TODO comments for future refactoring of
useEffect hooks.

## Key Changes

### Type Safety Improvements
- **SettingsAgentTurnDetail.tsx**: Replaced `any` type annotations with
proper `AgentMessage` type from generated GraphQL types
- **useCreateManyRecords.ts**: Added `RecordGqlNode` type for better
type safety when handling mutation responses
- **useLazyFindOneRecord.ts**: Replaced generic `Record<string, any>`
with `Record<string, RecordGqlNode>` for improved type checking

### Removed Unnecessary Operations
- **EventCardCalendarEvent.tsx**: Removed unused
`useUpsertRecordsInStore` hook and its associated useEffect that was
upserting calendar event records to the store
- **EventCardMessage.tsx**: Removed unused `useUpsertRecordsInStore`
hook and its associated useEffect that was upserting message records to
the store

### Conditional Query Execution
- **useLoadCurrentUser.ts**: Made the `FindAllCoreViewsDocument` query
conditional - only executes when `isOnAWorkspace` is true, preventing
unnecessary queries for users not on a workspace

### Documentation
- Added TODO comments in multiple files (`useAgentChatData.ts`,
`useWorkspaceFromInviteHash.ts`, `useGetPublicWorkspaceDataByDomain.ts`,
`useFindManyRecords.ts`, `useSingleRecordPickerPerformSearch.ts`)
referencing PR #18584 for future refactoring of useEffect hooks to avoid
unnecessary re-renders

## Implementation Details
- The removal of store upsert operations suggests these records are
already being managed elsewhere or the operations were redundant
- Type improvements maintain backward compatibility while providing
better IDE support and compile-time checking
- Conditional query execution reduces unnecessary network requests and
improves performance for non-workspace users

https://claude.ai/code/session_01YQErkoHotMvM6VL3JkWAqV

---------

Co-authored-by: Claude <noreply@anthropic.com>
2026-03-13 17:14:56 +01:00
b470cb21a1 Upgrade Apollo Client to v4 and refactor error handling (#18584)
## Summary
This PR upgrades Apollo Client from v3.10.0 to v4 and refactors error
handling patterns across the codebase to use a new centralized
`useSnackBarOnQueryError` hook.

## Key Changes

- **Dependency Update**: Upgraded `@apollo/client` from `^3.10.0` to
`^3.11.0` in root package.json
- **New Hook**: Added `useSnackBarOnQueryError` hook for centralized
Apollo query error handling with snack bar notifications
- **Error Handling Refactor**: Updated 100+ files to use the new error
handling pattern:
  - Removed direct `ApolloError` imports where no longer needed
- Replaced manual error handling logic with `useSnackBarOnQueryError`
hook
- Simplified error handling in hooks and components across multiple
modules
- **GraphQL Codegen**: Updated codegen configuration files to work with
Apollo Client v3.11.0
- **Type Definitions**: Added TypeScript declaration file for
`apollo-upload-client` module
- **Test Updates**: Updated test files to reflect new error handling
patterns

## Notable Implementation Details

- The new `useSnackBarOnQueryError` hook provides a consistent way to
handle Apollo query errors with automatic snack bar notifications
- Changes span across multiple feature areas: auth, object records,
settings, workflows, billing, and more
- All changes maintain backward compatibility while improving code
maintainability and reducing duplication
- Jest configuration updated to work with the new Apollo Client version

https://claude.ai/code/session_019WGZ6Rd7sEHuBg9sTrXRqJ

---------

Co-authored-by: Claude <noreply@anthropic.com>
2026-03-13 14:59:46 +01:00
172bbd01bc Add Gemini 3.1 Flash Lite model to AI registry (#18597)
## Summary
- Adds `gemini-3.1-flash-lite-preview` to the Google AI models registry
- Ultra-low-cost Gemini model ($0.25/M input, $1.50/M output) — half the
price of Gemini 3 Flash
- 1M context window, 64K max output, supports dynamic thinking
- No service code changes needed — the existing `AiModelRegistryService`
auto-discovers models from constants

## Changes
- `ai-models-types.const.ts`: Added `gemini-3.1-flash-lite-preview` to
the `ModelId` type union
- `google-models.const.ts`: Added model configuration with pricing,
context window, and capabilities

## Test plan
- [ ] `npx nx typecheck twenty-server` passes
- [ ] `npx nx lint twenty-server` passes
- [ ] With `GOOGLE_API_KEY` set, model appears in available models list
- [ ] Existing Gemini models unaffected

---------

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-13 13:22:08 +00:00
58f534939c i18n - docs translations (#18617)
Created by Github action

Co-authored-by: github-actions <github-actions@twenty.com>
2026-03-13 13:36:07 +01:00
Charles BochetandGitHub 0379aea0b1 fix: split tsvector migration, add configurable DB timeout, reorder 1.19 commands (#18614)
## Summary

- **Split tsvector migration into individual per-field transactions**:
each tsvector field now runs in its own
`workspaceMigrationRunnerService.run()` call (its own DB transaction).
Since STORED generated columns trigger full table rewrites, a timeout on
one large table (e.g. `timelineActivity`) no longer rolls back the
others. Each field has its own idempotency check, so the migration is
fully resumable.
- **Add configurable `DATABASE_STATEMENT_TIMEOUT_MS` env var** (default
15000ms): controls the `query_timeout` on the core datasource globally,
allowing operators to raise it for long-running upgrade commands without
code changes.
- **Reorder 1.19 upgrade commands**: move
`fixRoleAndAgentUniversalIdentifiersCommand` first so that subsequent
commands see corrected universal identifiers.
2026-03-13 12:59:31 +01:00
martmullGitHubcubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com>Copilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com>
f3e0c12ce6 Fix app install file upload (#18593)
remove wrong file path based file selection

---------

Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com>
2026-03-13 11:06:14 +00:00
Baptiste DevessierandGitHub 0641e07ca6 Bring back relations notes tasks targets (#18600)
## Demo when view isn't defined (front-end mock)


https://github.com/user-attachments/assets/2414076b-a96e-49ef-af02-c72a8e0e80de

## Demo when view is defined


https://github.com/user-attachments/assets/a94487a3-68ec-4d5f-8b33-d6b7242455d4
2026-03-13 10:57:33 +00:00
Thomas TrompetteandGitHub dfd28f5b4a Separate create draft cases op (#18613)
Bug: When creating a draft from an activated workflow version, the draft
row was inserted into the database without steps and trigger, then
updated with them in a separate operation. The SSE create-one event
fired on the INSERT, causing the frontend to refetch the draft before
the UPDATE — resulting in steps: null and trigger: null, which crashed
the step editor.

Fix: Reorder the operations so steps are duplicated first, then either
insert a new draft or update an existing one with steps and trigger
already populated. The row never exists in the database without complete
data.
2026-03-13 10:43:20 +00:00
Raphaël BosiandGitHub 349bfc8462 Backfill existing workspaces with standard command menu items (#18596)
Create a command to backfill command menu items.
2026-03-13 09:03:15 +00:00
Baptiste DevessierandGitHub 262f9f5fe1 Re-fetch conditional display property in the frontend (#18601) 2026-03-13 08:32:53 +00:00
Félix MalfaitGitHubcubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com>claude[bot] <41898282+claude[bot]@users.noreply.github.com>Claude Opus 4.6
5f558e5539 fix: accept production enterprise keys in development environment (#18611)
## Problem
When `NODE_ENV` is development, the server was only using the dev public
key to verify enterprise JWTs. Production keys are signed with the
production private key, so they failed verification with the dev public
key, resulting in "Invalid enterprise key" errors.

## Solution
Try both production and dev public keys when in development, so
production keys work when testing locally. In production, only the
production key is used (unchanged behavior).

## Changes
- `enterprise-plan.service.ts`: Replaced `getPublicKey()` with
`getPublicKeysToTry()` that returns both keys in development; updated
`verifyJwt()` to try each key until one succeeds
- `enterprise-plan.service.spec.ts`: Added test for production key
acceptance when `NODE_ENV` is development

Made with [Cursor](https://cursor.com)

---------

Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com>
Co-authored-by: claude[bot] <41898282+claude[bot]@users.noreply.github.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-13 09:20:14 +01:00
WeikoandGitHub 1cb4c98cb3 Add dataloader and read from cache for view entities (#18594)
## Context
Improve view resolution using cache and dataloader

## Performance Comparison

|Run|Main (no DataLoaders/cache)|Feature Branch (DataLoaders +
cache)|Speedup|
|---|---|---|---|
|1 (cold)|418ms|95ms|~4.4x faster|
|2|42ms|19ms|~2.2x faster|
|3|37ms|19ms|~1.9x faster|
|4|39ms|12ms|~3.2x faster|
|5|33ms|13ms|~2.5x faster|

The biggest improvement is to use dataloaders for the multiple relations
associated with views. Cache is a bit less significant since there are
other cache mechanism such as PostgreSQL buffer cache but it will
probably be more meaningful with bigger workspaces
2026-03-12 18:05:30 +00:00
CopilotGitHubcopilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>Devessier
a3c392ce8b Reset selected widget when exiting record page layout edit mode (#18603)
## Before


https://github.com/user-attachments/assets/b9720898-3433-488b-b784-1fa78e4e68f7

## After


https://github.com/user-attachments/assets/8f3fdde5-773d-44c4-a0f5-cca683736782

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: Devessier <29370468+Devessier@users.noreply.github.com>
2026-03-12 17:55:01 +00:00
Charles BochetandGitHub ab13020e2b Fix wrong uuid error on field metadata (#18598)
## Summary
- Same fix as #18590 but applied to `FieldMetadataDTO`
- Changed `universalIdentifier` from `UUID` to `String` type since field
metadata universal identifiers are not necessarily valid UUIDs
- Removed `universalIdentifier` from `FieldFilter` (was using
`UUIDFilterComparison`)
- Updated generated SDK and frontend types accordingly
2026-03-12 18:51:42 +01:00
WeikoandGitHub 3f420c84d7 Fix Flow tab missing for workflow run (#18602)
## Context
Conditional tab rendering was recently introduced for system objects
that now have record page layouts. However Workflow run is a system
object and has a specific "Flow" tab that was not displayed anymore

## Before
<img width="1191" height="640" alt="Screenshot 2026-03-12 at 18 10 03"
src="https://github.com/user-attachments/assets/6f2c6319-6ddf-4906-a83c-0db8a27a8267"
/>

## After
<img width="1299" height="802" alt="Screenshot 2026-03-12 at 18 09 35"
src="https://github.com/user-attachments/assets/35e1e356-e995-43a2-9207-adc0f67cc426"
/>
2026-03-12 17:25:12 +00:00
0ef4741473 i18n - translations (#18595)
Created by Github action

---------

Co-authored-by: github-actions <github-actions@twenty.com>
2026-03-12 18:17:42 +01:00
WeikoandGitHub b5db955ac8 Fix sdk metadata client codegen (#18599)
## Context
Previous token was tied to a non-existing token and codegen was failing
locally due to the server throwing.
This is due to a regression introduced here
https://github.com/twentyhq/twenty/pull/18590/changes#diff-848fff5d5b6f9858c8e2391212dfa9da5151cd3b1325d410df8a82250a229558L26
where a token is hardcoded instead of using the one from the ENV
2026-03-12 18:13:37 +01:00
Baptiste DevessierandGitHub 2a6fcfcfb3 Side Panel Sub Page Framework® (#18579)
Replace hard-coded implementations for sub pages in the side panel with
a proper framework
2026-03-12 15:17:29 +00:00
5bfa4c5c39 Fix wrong uuid error (#18590)
as title

---------

Co-authored-by: Charles Bochet <charles@twenty.com>
2026-03-12 16:12:30 +01:00
1685d066be i18n - translations (#18591)
Created by Github action

Co-authored-by: github-actions <github-actions@twenty.com>
2026-03-12 15:55:51 +01:00
Thomas TrompetteandGitHub 6a3281a18d Bug fix batches (#18588)
- clear sse state on logout
- fix no record not selectable through keyboard
- fix book a call design
- fix error notif design
2026-03-12 15:55:30 +01:00
Raphaël BosiandGitHub 741e9a8f81 Update yarn lock (#18589)
https://github.com/twentyhq/twenty/pull/18075
2026-03-12 15:42:01 +01:00
Charles BochetandGitHub 0897575fd0 Fix flaky return-to-path e2e tests (#18580)
## Summary

Fixes flaky `return-to-path` e2e tests that were failing intermittently
in CI merge queue runs.

**Root cause:** In the multi-workspace environment used by CI
(`IS_MULTIWORKSPACE_ENABLED=true`), navigating to
`localhost:3001/settings/accounts` triggers a full page redirect to
`app.localhost:3001/welcome` via `useRedirectToDefaultDomain`. This
redirect is a hard navigation (not a React Router transition), which
clears all in-memory Jotai state — including the `returnToPathState`
atom that stores the path the user should be redirected to after login.
After the redirect, the app has no memory of the intended destination
and falls back to `/objects/companies`.

**Fix:** Before performing the cross-domain redirect in
`useRedirectToDefaultDomain`, read the `returnToPath` from the Jotai
store and pass it as a URL search parameter. On the new page load,
`useInitializeQueryParamState` picks it up from the URL and re-hydrates
the Jotai atom, preserving the return-to-path across the full page
reload.

## Test plan

- [x] Verified locally against production build (`serve -s build`) with
`IS_MULTIWORKSPACE_ENABLED=true` — 33/33 consecutive passes of
`return-to-path.spec.ts`
- [x] Lint passes (`npx nx lint:diff-with-main twenty-front`)
2026-03-12 15:29:35 +01:00
501fcc737f i18n - translations (#18586)
Created by Github action

---------

Co-authored-by: github-actions <github-actions@twenty.com>
2026-03-12 15:18:16 +01:00
Raphaël BosiandGitHub c9deab4373 [COMMAND MENU ITEMS] Remove standard front components (#18581)
All standard command menu items will link to an engine component instead
of standard front components.
2026-03-12 15:18:00 +01:00
MarieandGitHub c1da7be6d7 Billing for self-hosts (#18075)
## Summary

Implements enterprise licensing and per-seat billing for self-hosted
environments, with Stripe as the single source of truth for subscription
data.

### Components

- **twenty-website** hosts the private key to sign `ENTERPRISE_KEY` and
`ENTERPRISE_VALIDITY_TOKEN`. It communicates with Stripe to emit the
daily `ENTERPRISE_VALIDITY_TOKEN` if the subscription is active, based
on the user's Stripe subscription ID stored in `ENTERPRISE_KEY`.
- **Stripe** is the single source of truth for subscription data
(status, seats, billing).
- **The client** (twenty-server + DB + workers) saves `ENTERPRISE_KEY`
in the `keyValuePair` table (or `.env` if
`IS_CONFIG_VARIABLES_IN_DB_ENABLED` is false) and the daily-renewed
`ENTERPRISE_VALIDITY_TOKEN` in the `appToken` table.
`ENTERPRISE_VALIDITY_TOKEN` is verified client-side using a public key
to grant access to enterprise features (RLS, SSO, audit logs, etc.).

### Flow

1. When requesting an upgrade to an enterprise plan (from **Enterprise**
in settings), the user is shown a modal to choose monthly/yearly
billing, then redirected to Stripe to enter payment details. After
checkout, they land on twenty-website where they are exposed to their
`ENTERPRISE_KEY`, which they paste in the UI. It is saved in the
`keyValuePair` table. On activation, a first `ENTERPRISE_VALIDITY_TOKEN`
with 30-day validity is stored in the `appToken` table.

2. **Every day**, a cron job runs and does two things:
- **Refreshes the validity token**: communicates with twenty-website to
get a new `ENTERPRISE_VALIDITY_TOKEN` with 30-day validity if the Stripe
subscription is still active. If the subscription is in cancellation,
the emitted token has a validity equal to the cancellation date. If it's
no longer valid, the token is not replaced. The cron only needs to run
every 30 days in practice, but runs daily so it's resilient to
occasional failures.
- **Reports seat count**: counts active (non-soft-deleted)
`UserWorkspace` entries and sends the count to twenty-website, which
updates the Stripe subscription quantity with proration. Seats are also
reported on first activation. If the subscription is canceled or
scheduled for cancellation, the seat update is skipped.

3. `ENTERPRISE_VALIDITY_TOKEN` is verified server-side via a public key
to grant access to enterprise features.

### Key concepts

Three distinct checks are exposed as GraphQL fields on `Workspace`:

| Field | Meaning |
|---|---|
| `hasValidEnterpriseKey` | Has any valid enterprise key (signed JWT
**or** legacy plain string) |
| `hasValidSignedEnterpriseKey` | `ENTERPRISE_KEY` is a properly signed
JWT (billing portal makes sense) |
| `hasValidEnterpriseValidityToken` | `ENTERPRISE_VALIDITY_TOKEN` is
present and not expired (expiration depends on signed token payload, not
on "expiresAt" on appToken table which is only indicative) |

Feature access is gated by `isValid()` =
`hasValidEnterpriseValidityToken || hasValidEnterpriseKey` (to support
both new and legacy keys during transition). After transition isValid()
= hasValidEnterpriseValidityToken

### Frontend states

The Enterprise settings page handles multiple states:
- **No key**: show "Get Enterprise" with checkout modal
- **Orphaned validity token** (token valid but no signed key): prompt
user to set a valid enterprise key
- **Active/trialing but no validity token**: show subscription status
with a "Reload validity token" action
- **Active/trialing**: show full subscription info, billing portal
access, cancel option
- **Cancellation scheduled**: show cancellation date, billing portal
- **Canceled**: show billing history link and option to start a new
subscription
- **Past due / Incomplete**: prompt to update payment or restart

### Temporary retro-compatibility: legacy plain-text keys

Previously, enterprise features were gated by a simple check: any
non-empty string in `ENTERPRISE_KEY` granted access. With this PR, we
transition to a controlled system relying on signed JWTs.

To avoid breaking existing self-hosted users:
- **Legacy plain-text keys still grant access** to enterprise features.
`hasValidEnterpriseKey` returns `true` for both signed JWTs and plain
strings, and `isValid()` checks `hasValidEnterpriseKey` as a fallback
when no validity token is present.
- **A deprecation banner** is shown at the top of the app when
`hasValidEnterpriseKey` is `true` but `hasValidSignedEnterpriseKey` is
`false`, informing the user that their key format is deprecated and they
should activate a new signed key.
- **No billing portal or subscription management** is available for
legacy keys since there is no Stripe subscription to manage.

This retro-compatibility will be removed in a future version. At that
point, `isValid()` will only check `hasValidEnterpriseValidityToken`.

### Edge cases

- **Air-gapped / production environments**: for self-hosted clients that
block external traffic (or for our own production), provide a long-lived
`ENTERPRISE_VALIDITY_TOKEN` (e.g. 99 years) directly in the `appToken`
table, with no `ENTERPRISE_KEY`. The daily cron will skip the refresh
(no enterprise key to authenticate with), but the pre-seeded validity
token will be used to grant feature access. No billing or seat reporting
occurs in this mode.
- **`IS_CONFIG_VARIABLES_IN_DB_ENABLED` is false**: if the user tries to
activate an enterprise key but DB config writes are disabled, the
backend returns a clear error asking them to add `ENTERPRISE_KEY` to
their `.env` file manually.
- **Canceled subscriptions**: the `/seats` endpoint skips Stripe updates
for canceled or cancellation-scheduled subscriptions to avoid Stripe API
errors.

### How to test
- launch twenty-website on a different url (eg localhost:1002)
- add ENTERPRISE_API_URL=http://localhost:3002/api/enterprise (or else)
in your server .env
- ask me for twenty-website's .env file content (STRIPE_SECRET_KEY;
STRIPE_ENTERPRISE_MONTHLY_PRICE_ID;STRIPE_ENTERPRISE_YEARLY_PRICE_ID;
ENTERPRISE_JWT_PRIVATE_KEY; ENTERPRISE_JWT_PUBLIC_KEY;
NEXT_PUBLIC_WEBSITE_URL)
- visit Admin panel / enterprise
2026-03-12 15:07:53 +01:00
WeikoandGitHub c59f420d21 Hide tabs for system objects (#18583)
<img width="1286" height="793" alt="Screenshot 2026-03-12 at 13 57 16"
src="https://github.com/user-attachments/assets/bebfd23f-3172-424a-95ee-ba95358a6196"
/>
2026-03-12 14:46:15 +01:00
WeikoandGitHub 06d4d62e90 Move 1.19 backfill pagelayout and views to 1.20 (#18582) 2026-03-12 13:46:07 +01:00
WeikoandGitHub eb4665bc98 Create missing standard table and fields widget views (#18543) 2026-03-12 13:28:05 +01:00
f19fcd0010 i18n - translations (#18578)
Created by Github action

---------

Co-authored-by: github-actions <github-actions@twenty.com>
2026-03-12 13:23:54 +01:00
Lucas BordeauandGitHub cb3e32df86 Fix AI demo workspace skill (#18575)
This PR fixes what allows to have a working demo workspace skill.

- Skill updated many times into something that works
- Fixed infinite loop in AI chat by memoizing ai-sdk output
- Finished navigateToView implementation
- Increased MAX_STEPS to 300 so the chat don't quit in the middle of a
long running skill
- Added CreateManyRelationFields
2026-03-12 13:19:01 +01:00
Hamza FaidiandGitHub db5b4d9c6c fix: replace unsafe JSON.parse casts with parseJson in filter dropdowns (#18513)
## Problem

Four filter dropdown components were calling `JSON.parse(filter.value)
as string[]` to parse stored filter state. This throws a `SyntaxError`
if the value is malformed (truncated URL, stale localStorage, migration
artifact), crashing the entire dropdown with no recovery.

## Solution

Replace with the existing `parseJson<string[]>` utility from
`twenty-shared`, which wraps `JSON.parse` in a try/catch and returns
`null` on failure. The `?? []` fallback gracefully degrades to an empty
selection instead of crashing.

All four files had an explicit `// TODO: replace by a safe parse`
marking this as a known issue.

## Testing


No new tests — `parseJson` is already tested in `twenty-shared`. No new
logic introduced.

## issue link 
#18514
2026-03-12 13:15:22 +01:00
Charles BochetandGitHub 660536d6bb Fix onboarding flow: workspace creation modal and invite team skip (#18577)
## Summary

- **Fix create-profile modal not showing after workspace creation**:
After activating a workspace, `CreateWorkspace.onSubmit` called
`refreshObjectMetadataItems()` which only updated the
`objectMetadataItemsState` atom but never marked the metadata store as
ready (`metadataStoreState` stayed at `'empty'`). Since `MetadataGater`
excludes `CreateWorkspace` but not `CreateProfile` from its loading
check, navigating to `/create/profile` triggered the skeleton loader
instead of the modal. The fix adds the full metadata pipeline after
refresh — `updateDraft('objectMetadataItems')` + `applyChanges()` for
objects, and `fetchAndLoadIndexViews()` for views — so
`isAppMetadataReady` is `true` before navigation.

- **Fix invite-team "Skip" not persisting to server**: Clicking "Skip"
on the invite-team page called `setNextOnboardingStatus()` which only
updated the local Jotai atom. The early return for empty emails bypassed
`sendInvitation`, so the server never cleared the
`ONBOARDING_INVITE_TEAM_PENDING` user var. On page refresh,
`GetCurrentUser` returned `INVITE_TEAM` and the user was stuck. The fix
removes the early return so `sendInvitation({ emails: [] })` always runs
— the server handles empty arrays fine and clears the pending flag.
2026-03-12 13:15:05 +01:00
e8f8189167 [COMMAND MENU ITEMS] Add engine component key (#18554)
## PR Description

In the process of migrating all the existing commands to the backend, we
stumbled across a couple of problems that made us reconsider the full
migration. This PR introduces a way for command menu items to bypass
front components and to directly reference a frontend component from
twenty front.

It:
- Introduces a `engineFrontComponentKey` field on `CommandMenuItem` as
an alternative to `frontComponentId` and `workflowVersionId`, allowing
command menu items to reference frontend components by key directly
rather than requiring a FrontComponent entity
- Updates the DB constraint to allow exactly one of `workflowVersionId`,
`frontComponentId`, or `engineFrontComponentKey`

### All standard command menu items from the frontend which use
`standardFrontComponentKey`

These are all commands that execute a GraphQL query or a mutation.
Two mains concerned have been raised that made us go with this
(temporary) architecture instead:
- If those commands are part of the standard application, they can only
alter objects from that application and not custom objects.
- We would need to implement a way to trigger optimistic rendering from
the front components, which might take some time to implement.

List:
- Create new record
- Delete (single record)
- Delete records (multiple)
- Restore record
- Restore records (multiple)
- Permanently destroy record
- Permanently destroy records (multiple)
- Add to favorites
- Remove from favorites
- Merge records
- Duplicate Dashboard
- Save Dashboard
- Save Page Layout
- Activate Workflow
- Deactivate Workflow
- Discard Draft (workflow)
- Test Workflow
- Tidy up workflow
- Duplicate Workflow
- Stop (workflow run)
- Use as draft (workflow version)

---------

Co-authored-by: Charles Bochet <charles@twenty.com>
2026-03-12 13:14:45 +01:00
martmullandGitHub 78473a606a Fix app dev flickering (#18562)
- fix ticker issue
- fix too many rendering
2026-03-12 11:58:44 +01:00
neo773andGitHub b21fb4aa6f Fix PDF Upload edge case (#18533)
we were using an older version of `file-type` which has limited support
for PDF as it's a complex spec
Updated to latest version which includes support for plugins and added
`@file-type/pdf` which has extensive spec compliant detection approach

fixes TWENTY-SERVER-FAN
2026-03-12 10:34:24 +00:00
38664249cf i18n - translations (#18576)
Created by Github action

---------

Co-authored-by: github-actions <github-actions@twenty.com>
2026-03-12 11:24:07 +01:00
Baptiste DevessierandGitHub 69542898a1 Display a single Add a Section button (#18563)
- Display a single Add a Section button at the end of the list
- Move other buttons to the section's dropdown menu


https://github.com/user-attachments/assets/b51d8846-635a-477a-9205-bf3266cfcff4
2026-03-12 10:01:48 +00:00
984 changed files with 28994 additions and 27097 deletions
@@ -1,66 +0,0 @@
name: CI Twenty Standard Front Component
on:
pull_request:
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
jobs:
changed-files-check:
uses: ./.github/workflows/changed-files.yaml
with:
files: |
package.json
yarn.lock
packages/twenty-standard-application/**
packages/twenty-sdk/**
packages/twenty-shared/**
standard-front-component-build-check:
needs: changed-files-check
if: needs.changed-files-check.outputs.any_changed == 'true'
timeout-minutes: 30
runs-on: ubuntu-latest
steps:
- name: Fetch custom Github Actions and base branch history
uses: actions/checkout@v4
with:
fetch-depth: 10
- name: Install dependencies
uses: ./.github/actions/yarn-install
- name: Build twenty-shared
run: npx nx build twenty-shared
- name: Build twenty-sdk
run: npx nx build twenty-sdk
- name: Build twenty-standard-application
run: npx nx build twenty-standard-application
- name: Check for pending standard front component build
run: |
if ! git diff --quiet -- packages/twenty-standard-application/src/build packages/twenty-standard-application/src/standard-front-component-build-manifest.ts; then
echo "::error::Standard front component build output is out of date. Please run 'npx nx build twenty-standard-application' and commit the changes."
echo ""
echo "The following changes were detected:"
echo "==================================================="
git diff -- packages/twenty-standard-application/src/build packages/twenty-standard-application/src/standard-front-component-build-manifest.ts
echo "==================================================="
exit 1
fi
ci-twenty-standard-front-component-status-check:
if: always() && !cancelled()
timeout-minutes: 5
runs-on: ubuntu-latest
needs:
[
changed-files-check,
standard-front-component-build-check,
]
steps:
- name: Fail job if any needs failed
if: contains(needs.*.result, 'failure')
run: exit 1
+1 -2
View File
@@ -1,7 +1,7 @@
{
"private": true,
"dependencies": {
"@apollo/client": "^3.7.17",
"@apollo/client": "^4.0.0",
"@floating-ui/react": "^0.24.3",
"@linaria/core": "^6.2.0",
"@linaria/react": "^6.2.1",
@@ -207,7 +207,6 @@
"packages/twenty-e2e-testing",
"packages/twenty-shared",
"packages/twenty-sdk",
"packages/twenty-standard-application",
"packages/twenty-apps",
"packages/twenty-cli",
"packages/create-twenty-app",
+28 -11
View File
@@ -58,6 +58,12 @@ yarn twenty function:execute --preInstall
# Execute the post-install function
yarn twenty function:execute --postInstall
# Build the app for distribution
yarn twenty app:build
# Publish the app to npm or directly to a Twenty server
yarn twenty app:publish
# Uninstall the application from the current workspace
yarn twenty app:uninstall
```
@@ -109,29 +115,40 @@ npx create-twenty-app@latest my-app -m
- Use `yarn twenty app:dev` while you iterate — it watches, builds, and syncs changes to your workspace in real time.
- `CoreApiClient` (for workspace data via `/graphql`) is auto-generated by `yarn twenty app:dev`. `MetadataApiClient` (for workspace configuration and file uploads via `/metadata`) ships pre-built with the SDK. Both are available via `import { CoreApiClient, MetadataApiClient } from 'twenty-sdk/clients'`.
## Publish your application
## Build and publish your application
Applications are currently stored in `twenty/packages/twenty-apps`.
Once your app is ready, build and publish it using the CLI:
You can share your application with all Twenty users:
```bash
# Build the app (output goes to .twenty/output/)
yarn twenty app:build
# Build and create a tarball (.tgz) for distribution
yarn twenty app:build --tarball
# Publish to npm (requires npm login)
yarn twenty app:publish
# Publish with a dist-tag (e.g. beta, next)
yarn twenty app:publish --tag beta
# Publish directly to a Twenty server (builds, uploads, and installs in one step)
yarn twenty app:publish --server https://app.twenty.com
```
### Publish to the Twenty marketplace
You can also contribute your application to the curated marketplace:
```bash
# pull the Twenty project
git clone https://github.com/twentyhq/twenty.git
cd twenty
# create a new branch
git checkout -b feature/my-awesome-app
```
- Copy your app folder into `twenty/packages/twenty-apps`.
- Commit your changes and open a pull request on https://github.com/twentyhq/twenty
```bash
git commit -m "Add new application"
git push
```
Our team reviews contributions for quality, security, and reusability before merging.
## Troubleshooting
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "create-twenty-app",
"version": "0.7.0-canary.0",
"version": "0.7.0",
"description": "Command-line interface to create Twenty application",
"main": "dist/cli.cjs",
"bin": "dist/cli.cjs",
+1 -4
View File
@@ -15,7 +15,6 @@ COPY ./packages/twenty-ui/package.json /app/packages/twenty-ui/
COPY ./packages/twenty-shared/package.json /app/packages/twenty-shared/
COPY ./packages/twenty-front/package.json /app/packages/twenty-front/
COPY ./packages/twenty-sdk/package.json /app/packages/twenty-sdk/
COPY ./packages/twenty-standard-application/package.json /app/packages/twenty-standard-application/
# Install all dependencies
RUN yarn && yarn cache clean && npx nx reset
@@ -29,13 +28,11 @@ COPY ./packages/twenty-emails /app/packages/twenty-emails
COPY ./packages/twenty-shared /app/packages/twenty-shared
COPY ./packages/twenty-ui /app/packages/twenty-ui
COPY ./packages/twenty-sdk /app/packages/twenty-sdk
COPY ./packages/twenty-standard-application /app/packages/twenty-standard-application
COPY ./packages/twenty-server /app/packages/twenty-server
RUN npx nx build twenty-standard-application
RUN npx nx run twenty-server:build
RUN yarn workspaces focus --production twenty-emails twenty-shared twenty-sdk twenty-standard-application twenty-server
RUN yarn workspaces focus --production twenty-emails twenty-shared twenty-sdk twenty-server
# Build the front
FROM common-deps AS twenty-front-build
@@ -63,6 +63,12 @@ yarn twenty function:execute --preInstall
# Execute the post-install function
yarn twenty function:execute --postInstall
# Build the app for distribution
yarn twenty app:build
# Publish the app to npm or a Twenty server
yarn twenty app:publish
# Uninstall the application from the current workspace
yarn twenty app:uninstall
@@ -1224,6 +1230,113 @@ Key points:
Explore a minimal, end-to-end example that demonstrates objects, logic functions, front components, and multiple triggers [here](https://github.com/twentyhq/twenty/tree/main/packages/twenty-apps/hello-world):
## Building your app
Once you've developed your app with `app:dev`, use `app:build` to compile it into a distributable package.
```bash filename="Terminal"
# Build the app (output goes to .twenty/output/)
yarn twenty app:build
# Build and create a tarball (.tgz) for distribution
yarn twenty app:build --tarball
```
The build process:
1. **Parses and validates the manifest** — reads all `defineX()` entities from your source files and validates the manifest structure.
2. **Compiles logic functions and front components** — bundles TypeScript sources into ESM `.mjs` files using esbuild.
3. **Generates checksums** — computes MD5 hashes for each built file, stored in the manifest as `builtHandlerChecksum` / `builtComponentChecksum`.
4. **Generates the typed API client** — introspects the GraphQL schema and generates typed `CoreApiClient` and `MetadataApiClient` clients.
5. **Runs a TypeScript type check** — runs `tsc --noEmit` to catch type errors before publishing.
6. **Rebuilds with the generated client** — performs a second compilation pass so the generated client types are included.
7. **Optionally creates a tarball** — if `--tarball` is passed, runs `npm pack` to create a `.tgz` file ready for distribution.
The build output in `.twenty/output/` contains:
```text
.twenty/output/
├── manifest.json # Manifest with checksums for all built files
├── package.json # Copied from app root
├── yarn.lock # Copied from app root
├── src/
│ ├── logic-functions/ # Compiled .mjs logic function files
│ └── front-components/ # Compiled .mjs front component files
├── public/ # Static assets (if any)
└── my-app-1.0.0.tgz # Only with --tarball flag
```
| Option | Description |
|--------|-------------|
| `[appPath]` | Path to the app directory (defaults to current directory) |
| `--tarball` | Also pack the output into a `.tgz` tarball |
## Publishing your app
Use `app:publish` to distribute your app — either to the npm registry or directly to a Twenty server.
### Publish to npm (default)
```bash filename="Terminal"
# Publish to npm (requires npm login)
yarn twenty app:publish
# Publish with a dist-tag (e.g. beta, next)
yarn twenty app:publish --tag beta
```
This builds the app and runs `npm publish` from the `.twenty/output/` directory. The published package can then be installed from the Twenty marketplace by any workspace.
### Publish to a Twenty server
```bash filename="Terminal"
# Publish directly to a Twenty server
yarn twenty app:publish --server https://app.twenty.com
```
This builds the app with a tarball, uploads it to the server via the `uploadAppTarball` GraphQL mutation, and triggers installation in one step. This is useful for private deployments or testing against a specific server.
| Option | Description |
|--------|-------------|
| `[appPath]` | Path to the app directory (defaults to current directory) |
| `--server <url>` | Publish to a Twenty server instead of npm |
| `--token <token>` | Authentication token for the target server |
| `--tag <tag>` | npm dist-tag (e.g. `beta`, `next`) — only for npm publish |
## Application registration
Before an app can be installed in a workspace, it must be **registered**. A registration is a metadata record that describes where the app comes from and how to authenticate it. This is handled automatically by the CLI in most cases.
### Source types
Each registration has a **source type** that determines how the app's files are resolved during installation:
| Source type | How files are resolved | Typical use case |
|-------------|----------------------|------------------|
| `LOCAL` | Files are synced in real-time by the CLI watcher — installation is skipped | Development with `app:dev` |
| `NPM` | Fetched from the npm registry via the `sourcePackage` field | Published apps on npm |
| `TARBALL` | Extracted from an uploaded `.tgz` file stored on the server | Private apps published with `--server` |
### How registration happens
- **`app:dev`** — automatically creates a `LOCAL` registration the first time you run dev mode against a workspace.
- **`app:publish --server`** — uploads a tarball and creates (or updates) a `TARBALL` registration, then installs the app.
- **npm marketplace** — `NPM` registrations are created when apps are synced from the npm registry into the Twenty marketplace catalog.
- **GraphQL API** — you can also create registrations programmatically via the `createApplicationRegistration` mutation.
### Registration vs installation
**Registration** and **installation** are separate concepts:
- A **registration** (`ApplicationRegistration`) is a global metadata record describing the app: its name, source type, OAuth credentials, and marketplace listing status. It exists independently of any workspace.
- An **installation** (`Application`) is a per-workspace instance. When a user installs an app, Twenty resolves the package from the registration's source, writes the built files to storage, and synchronizes the manifest (creating objects, fields, logic functions, etc.) in that workspace.
One registration can be installed in many workspaces. Each workspace gets its own copy of the app's files and data model.
### OAuth credentials
Each registration includes OAuth credentials (`oAuthClientId` and `oAuthClientSecret`) generated at creation time. These are used by the app to authenticate API requests on behalf of users. The client secret is returned **once** at creation — store it securely. You can rotate it later via the `rotateApplicationRegistrationClientSecret` mutation.
## Manual setup (without the scaffolder)
While we recommend using `create-twenty-app` for the best getting-started experience, you can also set up a project manually. Do not install the CLI globally. Instead, add `twenty-sdk` as a local dependency and wire a single script in your package.json:
@@ -64,6 +64,12 @@ yarn twenty function:execute --preInstall
# نفّذ دالة ما بعد التثبيت
yarn twenty function:execute --postInstall
# ابنِ التطبيق للتوزيع
yarn twenty app:build
# انشر التطبيق إلى npm أو إلى خادم Twenty
yarn twenty app:publish
# أزل تثبيت التطبيق من مساحة العمل الحالية
yarn twenty app:uninstall
@@ -1240,6 +1246,113 @@ uploadFile(
استكشف مثالًا بسيطًا شاملًا من البداية إلى النهاية يوضح الكائنات والوظائف المنطقية والمكوّنات الأمامية ومشغّلات متعددة [هنا](https://github.com/twentyhq/twenty/tree/main/packages/twenty-apps/hello-world):
## بناء تطبيقك
بمجرد أن تطوّر تطبيقك باستخدام `app:dev`، استخدم `app:build` لإنشاء حزمة قابلة للتوزيع منه.
```bash filename="Terminal"
# ابنِ التطبيق (الإخراج يذهب إلى .twenty/output/)
yarn twenty app:build
# ابنِ وأنشئ ملف tarball (.tgz) للتوزيع
yarn twenty app:build --tarball
```
عملية البناء:
1. **يقوم بتحليل ملف البيان والتحقق من صحته** — يقرأ جميع الكيانات `defineX()` من ملفات المصدر لديك ويُتحقّق من بنية ملف البيان.
2. **يُصرِّف دوال المنطق ومكوّنات الواجهة** — يُجمّع مصادر TypeScript إلى ملفات ESM `.mjs` باستخدام esbuild.
3. **يولّد قيم التحقّق** — يحسب تجزئات MD5 لكل ملف مُبنًى، وتُخزَّن في ملف البيان كـ `builtHandlerChecksum` / `builtComponentChecksum`.
4. **Generates the typed API client** — introspects the GraphQL schema and generates typed `CoreApiClient` and `MetadataApiClient` clients.
5. **Runs a TypeScript type check** — runs `tsc --noEmit` to catch type errors before publishing.
6. **Rebuilds with the generated client** — performs a second compilation pass so the generated client types are included.
7. **Optionally creates a tarball** — if `--tarball` is passed, runs `npm pack` to create a `.tgz` file ready for distribution.
The build output in `.twenty/output/` contains:
```text
.twenty/output/
├── manifest.json # Manifest with checksums for all built files
├── package.json # Copied from app root
├── yarn.lock # Copied from app root
├── src/
│ ├── logic-functions/ # Compiled .mjs logic function files
│ └── front-components/ # Compiled .mjs front component files
├── public/ # Static assets (if any)
└── my-app-1.0.0.tgz # Only with --tarball flag
```
| الخيار | الوصف |
| ----------- | --------------------------------------------------------- |
| `[appPath]` | Path to the app directory (defaults to current directory) |
| `--tarball` | Also pack the output into a `.tgz` tarball |
## Publishing your app
Use `app:publish` to distribute your app — either to the npm registry or directly to a Twenty server.
### Publish to npm (default)
```bash filename="Terminal"
# Publish to npm (requires npm login)
yarn twenty app:publish
# Publish with a dist-tag (e.g. beta, next)
yarn twenty app:publish --tag beta
```
This builds the app and runs `npm publish` from the `.twenty/output/` directory. The published package can then be installed from the Twenty marketplace by any workspace.
### Publish to a Twenty server
```bash filename="Terminal"
# Publish directly to a Twenty server
yarn twenty app:publish --server https://app.twenty.com
```
This builds the app with a tarball, uploads it to the server via the `uploadAppTarball` GraphQL mutation, and triggers installation in one step. This is useful for private deployments or testing against a specific server.
| الخيار | الوصف |
| ----------------- | --------------------------------------------------------- |
| `[appPath]` | Path to the app directory (defaults to current directory) |
| `--server <url>` | Publish to a Twenty server instead of npm |
| `--token <token>` | Authentication token for the target server |
| `--tag <tag>` | npm dist-tag (e.g. `beta`, `next`) — only for npm publish |
## Application registration
Before an app can be installed in a workspace, it must be **registered**. A registration is a metadata record that describes where the app comes from and how to authenticate it. This is handled automatically by the CLI in most cases.
### Source types
Each registration has a **source type** that determines how the app's files are resolved during installation:
| Source type | How files are resolved | Typical use case |
| ----------- | -------------------------------------------------------------------------- | -------------------------------------- |
| `LOCAL` | Files are synced in real-time by the CLI watcher — installation is skipped | Development with `app:dev` |
| `NPM` | Fetched from the npm registry via the `sourcePackage` field | Published apps on npm |
| `TARBALL` | Extracted from an uploaded `.tgz` file stored on the server | Private apps published with `--server` |
### How registration happens
* **`app:dev`** — automatically creates a `LOCAL` registration the first time you run dev mode against a workspace.
* **`app:publish --server`** — uploads a tarball and creates (or updates) a `TARBALL` registration, then installs the app.
* **npm marketplace** — `NPM` registrations are created when apps are synced from the npm registry into the Twenty marketplace catalog.
* **GraphQL API** — you can also create registrations programmatically via the `createApplicationRegistration` mutation.
### Registration vs installation
**Registration** and **installation** are separate concepts:
* A **registration** (`ApplicationRegistration`) is a global metadata record describing the app: its name, source type, OAuth credentials, and marketplace listing status. It exists independently of any workspace.
* An **installation** (`Application`) is a per-workspace instance. When a user installs an app, Twenty resolves the package from the registration's source, writes the built files to storage, and synchronizes the manifest (creating objects, fields, logic functions, etc.) in that workspace.
One registration can be installed in many workspaces. Each workspace gets its own copy of the app's files and data model.
### OAuth credentials
Each registration includes OAuth credentials (`oAuthClientId` and `oAuthClientSecret`) generated at creation time. These are used by the app to authenticate API requests on behalf of users. The client secret is returned **once** at creation — store it securely. You can rotate it later via the `rotateApplicationRegistrationClientSecret` mutation.
## إعداد يدوي (بدون المهيئ)
بينما نوصي باستخدام `create-twenty-app` للحصول على أفضل تجربة للبدء، يمكنك أيضًا إعداد مشروع يدويًا. لا تثبّت CLI عالميًا. بدل ذلك، أضف `twenty-sdk` كاعتماد محلي واربط سكربتًا واحدًا في ملف package.json لديك:
@@ -64,11 +64,17 @@ yarn twenty function:execute --preInstall
# Die Post-Installationsfunktion ausführen
yarn twenty function:execute --postInstall
# Die Anwendung für die Verteilung erstellen
yarn twenty app:build
# Die Anwendung auf npm oder einen Twenty-Server veröffentlichen
yarn twenty app:publish
# Die Anwendung aus dem aktuellen Arbeitsbereich deinstallieren
yarn twenty app:uninstall
# Hilfe zu Befehlen anzeigen
yarn twenty help},{
yarn twenty help
```
Siehe auch: die CLI-Referenzseiten für [create-twenty-app](https://www.npmjs.com/package/create-twenty-app) und [twenty-sdk CLI](https://www.npmjs.com/package/twenty-sdk).
@@ -1240,6 +1246,113 @@ Hauptpunkte:
Ein minimales End-to-End-Beispiel, das Objekte, Logikfunktionen, Frontend-Komponenten und mehrere Trigger demonstriert, finden Sie [hier](https://github.com/twentyhq/twenty/tree/main/packages/twenty-apps/hello-world):
## Erstellen Ihrer App
Sobald Sie Ihre App mit `app:dev` entwickelt haben, verwenden Sie `app:build`, um sie in ein verteilbares Paket zu kompilieren.
```bash filename="Terminal"
# Die App erstellen (Ausgabe nach .twenty/output/)
yarn twenty app:build
# Build ausführen und ein Tarball (.tgz) für die Verteilung erstellen
yarn twenty app:build --tarball
```
Der Build-Prozess:
1. **Parst und validiert das Manifest** — liest alle `defineX()`-Entitäten aus Ihren Quelldateien und validiert die Manifeststruktur.
2. **Kompiliert Logikfunktionen und Front-Komponenten** — bündelt TypeScript-Quellcode in ESM `.mjs`-Dateien mit esbuild.
3. **Erzeugt Checksummen** — berechnet MD5-Hashes für jede erstellte Datei, die im Manifest als `builtHandlerChecksum` / `builtComponentChecksum` gespeichert werden.
4. **Generates the typed API client** — introspects the GraphQL schema and generates typed `CoreApiClient` and `MetadataApiClient` clients.
5. **Runs a TypeScript type check** — runs `tsc --noEmit` to catch type errors before publishing.
6. **Rebuilds with the generated client** — performs a second compilation pass so the generated client types are included.
7. **Optionally creates a tarball** — if `--tarball` is passed, runs `npm pack` to create a `.tgz` file ready for distribution.
The build output in `.twenty/output/` contains:
```text
.twenty/output/
├── manifest.json # Manifest with checksums for all built files
├── package.json # Copied from app root
├── yarn.lock # Copied from app root
├── src/
│ ├── logic-functions/ # Compiled .mjs logic function files
│ └── front-components/ # Compiled .mjs front component files
├── public/ # Static assets (if any)
└── my-app-1.0.0.tgz # Only with --tarball flag
```
| Option | Beschreibung |
| ----------- | --------------------------------------------------------- |
| `[appPath]` | Path to the app directory (defaults to current directory) |
| `--tarball` | Also pack the output into a `.tgz` tarball |
## Publishing your app
Use `app:publish` to distribute your app — either to the npm registry or directly to a Twenty server.
### Publish to npm (default)
```bash filename="Terminal"
# Publish to npm (requires npm login)
yarn twenty app:publish
# Publish with a dist-tag (e.g. beta, next)
yarn twenty app:publish --tag beta
```
This builds the app and runs `npm publish` from the `.twenty/output/` directory. The published package can then be installed from the Twenty marketplace by any workspace.
### Publish to a Twenty server
```bash filename="Terminal"
# Publish directly to a Twenty server
yarn twenty app:publish --server https://app.twenty.com
```
This builds the app with a tarball, uploads it to the server via the `uploadAppTarball` GraphQL mutation, and triggers installation in one step. This is useful for private deployments or testing against a specific server.
| Option | Beschreibung |
| ----------------- | --------------------------------------------------------- |
| `[appPath]` | Path to the app directory (defaults to current directory) |
| `--server <url>` | Publish to a Twenty server instead of npm |
| `--token <token>` | Authentication token for the target server |
| `--tag <tag>` | npm dist-tag (e.g. `beta`, `next`) — only for npm publish |
## Application registration
Before an app can be installed in a workspace, it must be **registered**. A registration is a metadata record that describes where the app comes from and how to authenticate it. This is handled automatically by the CLI in most cases.
### Source types
Each registration has a **source type** that determines how the app's files are resolved during installation:
| Source type | How files are resolved | Typical use case |
| ----------- | -------------------------------------------------------------------------- | -------------------------------------- |
| `LOCAL` | Files are synced in real-time by the CLI watcher — installation is skipped | Development with `app:dev` |
| `NPM` | Fetched from the npm registry via the `sourcePackage` field | Published apps on npm |
| `TARBALL` | Extracted from an uploaded `.tgz` file stored on the server | Private apps published with `--server` |
### How registration happens
* **`app:dev`** — automatically creates a `LOCAL` registration the first time you run dev mode against a workspace.
* **`app:publish --server`** — uploads a tarball and creates (or updates) a `TARBALL` registration, then installs the app.
* **npm marketplace** — `NPM` registrations are created when apps are synced from the npm registry into the Twenty marketplace catalog.
* **GraphQL API** — you can also create registrations programmatically via the `createApplicationRegistration` mutation.
### Registration vs installation
**Registration** and **installation** are separate concepts:
* A **registration** (`ApplicationRegistration`) is a global metadata record describing the app: its name, source type, OAuth credentials, and marketplace listing status. It exists independently of any workspace.
* An **installation** (`Application`) is a per-workspace instance. When a user installs an app, Twenty resolves the package from the registration's source, writes the built files to storage, and synchronizes the manifest (creating objects, fields, logic functions, etc.) in that workspace.
One registration can be installed in many workspaces. Each workspace gets its own copy of the app's files and data model.
### OAuth credentials
Each registration includes OAuth credentials (`oAuthClientId` and `oAuthClientSecret`) generated at creation time. These are used by the app to authenticate API requests on behalf of users. The client secret is returned **once** at creation — store it securely. You can rotate it later via the `rotateApplicationRegistrationClientSecret` mutation.
## Manuelle Einrichtung (ohne Scaffolder)
Wir empfehlen zwar `create-twenty-app` für das beste Einstiegserlebnis, Sie können ein Projekt aber auch manuell einrichten. Installieren Sie die CLI nicht global. Fügen Sie stattdessen `twenty-sdk` als lokale Abhängigkeit hinzu und binden Sie ein einzelnes Skript in Ihrer package.json ein:
@@ -64,6 +64,12 @@ yarn twenty function:execute --preInstall
# Esegui la funzione post-installazione
yarn twenty function:execute --postInstall
# Compila l'app per la distribuzione
yarn twenty app:build
# Pubblica l'app su npm o su un server Twenty
yarn twenty app:publish
# Disinstalla l'applicazione dallo spazio di lavoro corrente
yarn twenty app:uninstall
@@ -1240,6 +1246,113 @@ Punti chiave:
Esplora un esempio minimale end-to-end che dimostra oggetti, funzioni logiche, componenti front-end e trigger multipli [qui](https://github.com/twentyhq/twenty/tree/main/packages/twenty-apps/hello-world):
## Compilazione della tua app
Una volta che hai sviluppato la tua app con `app:dev`, usa `app:build` per compilarla in un pacchetto distribuibile.
```bash filename="Terminal"
# Compila l'app (l'output va in .twenty/output/)
yarn twenty app:build
# Compila e crea un tarball (.tgz) per la distribuzione
yarn twenty app:build --tarball
```
Il processo di compilazione:
1. **Analizza e convalida il manifest** — legge tutte le entità `defineX()` dai tuoi file sorgente e convalida la struttura del manifest.
2. **Compila le funzioni di logica e i componenti front-end** — raggruppa i sorgenti TypeScript in file ESM `.mjs` usando esbuild.
3. **Genera i checksum** — calcola gli hash MD5 per ogni file compilato, memorizzati nel manifest come `builtHandlerChecksum` / `builtComponentChecksum`.
4. **Generates the typed API client** — introspects the GraphQL schema and generates typed `CoreApiClient` and `MetadataApiClient` clients.
5. **Runs a TypeScript type check** — runs `tsc --noEmit` to catch type errors before publishing.
6. **Rebuilds with the generated client** — performs a second compilation pass so the generated client types are included.
7. **Optionally creates a tarball** — if `--tarball` is passed, runs `npm pack` to create a `.tgz` file ready for distribution.
The build output in `.twenty/output/` contains:
```text
.twenty/output/
├── manifest.json # Manifest with checksums for all built files
├── package.json # Copied from app root
├── yarn.lock # Copied from app root
├── src/
│ ├── logic-functions/ # Compiled .mjs logic function files
│ └── front-components/ # Compiled .mjs front component files
├── public/ # Static assets (if any)
└── my-app-1.0.0.tgz # Only with --tarball flag
```
| Opzione | Descrizione |
| ----------- | --------------------------------------------------------- |
| `[appPath]` | Path to the app directory (defaults to current directory) |
| `--tarball` | Also pack the output into a `.tgz` tarball |
## Publishing your app
Use `app:publish` to distribute your app — either to the npm registry or directly to a Twenty server.
### Publish to npm (default)
```bash filename="Terminal"
# Publish to npm (requires npm login)
yarn twenty app:publish
# Publish with a dist-tag (e.g. beta, next)
yarn twenty app:publish --tag beta
```
This builds the app and runs `npm publish` from the `.twenty/output/` directory. The published package can then be installed from the Twenty marketplace by any workspace.
### Publish to a Twenty server
```bash filename="Terminal"
# Publish directly to a Twenty server
yarn twenty app:publish --server https://app.twenty.com
```
This builds the app with a tarball, uploads it to the server via the `uploadAppTarball` GraphQL mutation, and triggers installation in one step. This is useful for private deployments or testing against a specific server.
| Opzione | Descrizione |
| ----------------- | --------------------------------------------------------- |
| `[appPath]` | Path to the app directory (defaults to current directory) |
| `--server <url>` | Publish to a Twenty server instead of npm |
| `--token <token>` | Authentication token for the target server |
| `--tag <tag>` | npm dist-tag (e.g. `beta`, `next`) — only for npm publish |
## Application registration
Before an app can be installed in a workspace, it must be **registered**. A registration is a metadata record that describes where the app comes from and how to authenticate it. This is handled automatically by the CLI in most cases.
### Source types
Each registration has a **source type** that determines how the app's files are resolved during installation:
| Source type | How files are resolved | Typical use case |
| ----------- | -------------------------------------------------------------------------- | -------------------------------------- |
| `LOCAL` | Files are synced in real-time by the CLI watcher — installation is skipped | Development with `app:dev` |
| `NPM` | Fetched from the npm registry via the `sourcePackage` field | Published apps on npm |
| `TARBALL` | Extracted from an uploaded `.tgz` file stored on the server | Private apps published with `--server` |
### How registration happens
* **`app:dev`** — automatically creates a `LOCAL` registration the first time you run dev mode against a workspace.
* **`app:publish --server`** — uploads a tarball and creates (or updates) a `TARBALL` registration, then installs the app.
* **npm marketplace** — `NPM` registrations are created when apps are synced from the npm registry into the Twenty marketplace catalog.
* **GraphQL API** — you can also create registrations programmatically via the `createApplicationRegistration` mutation.
### Registration vs installation
**Registration** and **installation** are separate concepts:
* A **registration** (`ApplicationRegistration`) is a global metadata record describing the app: its name, source type, OAuth credentials, and marketplace listing status. It exists independently of any workspace.
* An **installation** (`Application`) is a per-workspace instance. When a user installs an app, Twenty resolves the package from the registration's source, writes the built files to storage, and synchronizes the manifest (creating objects, fields, logic functions, etc.) in that workspace.
One registration can be installed in many workspaces. Each workspace gets its own copy of the app's files and data model.
### OAuth credentials
Each registration includes OAuth credentials (`oAuthClientId` and `oAuthClientSecret`) generated at creation time. These are used by the app to authenticate API requests on behalf of users. The client secret is returned **once** at creation — store it securely. You can rotate it later via the `rotateApplicationRegistrationClientSecret` mutation.
## Configurazione manuale (senza lo scaffolder)
Sebbene consigliamo di utilizzare `create-twenty-app` per la migliore esperienza iniziale, puoi anche configurare un progetto manualmente. Non installare la CLI globalmente. Invece, aggiungi `twenty-sdk` come dipendenza locale e collega un unico script nel tuo package.json:
@@ -49,25 +49,31 @@ npx create-twenty-app@latest my-app --minimal
A partir daqui você pode:
```bash filename="Terminal"
# Add a new entity to your application (guided)
# Adicionar uma nova entidade à sua aplicação (assistido)
yarn twenty entity:add
# Watch your application's function logs
# Acompanhar os logs das funções da sua aplicação
yarn twenty function:logs
# Execute a function by name
# Executar uma função pelo nome
yarn twenty function:execute -n my-function -p '{"name": "test"}'
# Execute the pre-install function
# Executar a função de pré-instalação
yarn twenty function:execute --preInstall
# Execute the post-install function
# Executar a função de pós-instalação
yarn twenty function:execute --postInstall
# Uninstall the application from the current workspace
# Compilar a aplicação para distribuição
yarn twenty app:build
# Publicar a aplicação no npm ou em um servidor Twenty
yarn twenty app:publish
# Desinstalar a aplicação do espaço de trabalho atual
yarn twenty app:uninstall
# Display commands' help
# Exibir a ajuda dos comandos
yarn twenty help
```
@@ -1241,6 +1247,113 @@ Pontos-chave:
Explore um exemplo mínimo de ponta a ponta que demonstra objetos, funções de lógica, componentes de front-end e vários gatilhos [aqui](https://github.com/twentyhq/twenty/tree/main/packages/twenty-apps/hello-world):
## Compilando seu app
Depois de desenvolver seu app com `app:dev`, use `app:build` para compilá-lo em um pacote distribuível.
```bash filename="Terminal"
# Compilar o app (a saída vai para .twenty/output/)
yarn twenty app:build
# Compilar e criar um tarball (.tgz) para distribuição
yarn twenty app:build --tarball
```
O processo de build:
1. **Analisa e valida o manifesto** — lê todas as entidades `defineX()` dos seus arquivos de código-fonte e valida a estrutura do manifesto.
2. **Compila funções de lógica e componentes de front-end** — empacota o código-fonte TypeScript em arquivos ESM `.mjs` usando o esbuild.
3. **Gera checksums** — calcula hashes MD5 para cada arquivo gerado, armazenados no manifesto como `builtHandlerChecksum` / `builtComponentChecksum`.
4. **Generates the typed API client** — introspects the GraphQL schema and generates typed `CoreApiClient` and `MetadataApiClient` clients.
5. **Runs a TypeScript type check** — runs `tsc --noEmit` to catch type errors before publishing.
6. **Rebuilds with the generated client** — performs a second compilation pass so the generated client types are included.
7. **Optionally creates a tarball** — if `--tarball` is passed, runs `npm pack` to create a `.tgz` file ready for distribution.
The build output in `.twenty/output/` contains:
```text
.twenty/output/
├── manifest.json # Manifest with checksums for all built files
├── package.json # Copied from app root
├── yarn.lock # Copied from app root
├── src/
│ ├── logic-functions/ # Compiled .mjs logic function files
│ └── front-components/ # Compiled .mjs front component files
├── public/ # Static assets (if any)
└── my-app-1.0.0.tgz # Only with --tarball flag
```
| Opção | Descrição |
| ----------- | --------------------------------------------------------- |
| `[appPath]` | Path to the app directory (defaults to current directory) |
| `--tarball` | Also pack the output into a `.tgz` tarball |
## Publishing your app
Use `app:publish` to distribute your app — either to the npm registry or directly to a Twenty server.
### Publish to npm (default)
```bash filename="Terminal"
# Publish to npm (requires npm login)
yarn twenty app:publish
# Publish with a dist-tag (e.g. beta, next)
yarn twenty app:publish --tag beta
```
This builds the app and runs `npm publish` from the `.twenty/output/` directory. The published package can then be installed from the Twenty marketplace by any workspace.
### Publish to a Twenty server
```bash filename="Terminal"
# Publish directly to a Twenty server
yarn twenty app:publish --server https://app.twenty.com
```
This builds the app with a tarball, uploads it to the server via the `uploadAppTarball` GraphQL mutation, and triggers installation in one step. This is useful for private deployments or testing against a specific server.
| Opção | Descrição |
| ----------------- | --------------------------------------------------------- |
| `[appPath]` | Path to the app directory (defaults to current directory) |
| `--server <url>` | Publish to a Twenty server instead of npm |
| `--token <token>` | Authentication token for the target server |
| `--tag <tag>` | npm dist-tag (e.g. `beta`, `next`) — only for npm publish |
## Application registration
Before an app can be installed in a workspace, it must be **registered**. A registration is a metadata record that describes where the app comes from and how to authenticate it. This is handled automatically by the CLI in most cases.
### Source types
Each registration has a **source type** that determines how the app's files are resolved during installation:
| Source type | How files are resolved | Typical use case |
| ----------- | -------------------------------------------------------------------------- | -------------------------------------- |
| `LOCAL` | Files are synced in real-time by the CLI watcher — installation is skipped | Development with `app:dev` |
| `NPM` | Fetched from the npm registry via the `sourcePackage` field | Published apps on npm |
| `TARBALL` | Extracted from an uploaded `.tgz` file stored on the server | Private apps published with `--server` |
### How registration happens
* **`app:dev`** — automatically creates a `LOCAL` registration the first time you run dev mode against a workspace.
* **`app:publish --server`** — uploads a tarball and creates (or updates) a `TARBALL` registration, then installs the app.
* **npm marketplace** — `NPM` registrations are created when apps are synced from the npm registry into the Twenty marketplace catalog.
* **GraphQL API** — you can also create registrations programmatically via the `createApplicationRegistration` mutation.
### Registration vs installation
**Registration** and **installation** are separate concepts:
* A **registration** (`ApplicationRegistration`) is a global metadata record describing the app: its name, source type, OAuth credentials, and marketplace listing status. It exists independently of any workspace.
* An **installation** (`Application`) is a per-workspace instance. When a user installs an app, Twenty resolves the package from the registration's source, writes the built files to storage, and synchronizes the manifest (creating objects, fields, logic functions, etc.) in that workspace.
One registration can be installed in many workspaces. Each workspace gets its own copy of the app's files and data model.
### OAuth credentials
Each registration includes OAuth credentials (`oAuthClientId` and `oAuthClientSecret`) generated at creation time. These are used by the app to authenticate API requests on behalf of users. The client secret is returned **once** at creation — store it securely. You can rotate it later via the `rotateApplicationRegistrationClientSecret` mutation.
## Configuração manual (sem o gerador)
Embora recomendemos usar `create-twenty-app` para a melhor experiência inicial, você também pode configurar um projeto manualmente. Não instale a CLI globalmente. Em vez disso, adicione `twenty-sdk` como uma dependência local e configure um único script no seu package.json:
@@ -49,26 +49,32 @@ npx create-twenty-app@latest my-app --minimal
De aici puteți:
```bash filename="Terminal"
# Adaugă o entitate nouă în aplicația ta (ghidat)
# Add a new entity to your application (guided)
yarn twenty entity:add
# Urmărește jurnalele funcțiilor aplicației tale
# Watch your application's function logs
yarn twenty function:logs
# Execută o funcție după nume
# Execute a function by name
yarn twenty function:execute -n my-function -p '{"name": "test"}'
# Execută funcția de pre-instalare
# Execute the pre-install function
yarn twenty function:execute --preInstall
# Execută funcția post-instalare
# Execute the post-install function
yarn twenty function:execute --postInstall
# Dezinstalează aplicația din spațiul de lucru curent
# Build the app for distribution
yarn twenty app:build
# Publish the app to npm or a Twenty server
yarn twenty app:publish
# Uninstall the application from the current workspace
yarn twenty app:uninstall
# Afișează ajutorul pentru comenzi
yarn twenty help},{
# Display commands' help
yarn twenty help
```
Consultați și: paginile de referință CLI pentru [create-twenty-app](https://www.npmjs.com/package/create-twenty-app) și [twenty-sdk CLI](https://www.npmjs.com/package/twenty-sdk).
@@ -1240,6 +1246,113 @@ Puncte cheie:
Explorați un exemplu minim, cap la cap, care demonstrează obiecte, funcții de logică, componente Front și declanșatoare multiple [aici](https://github.com/twentyhq/twenty/tree/main/packages/twenty-apps/hello-world):
## Building your app
Once you've developed your app with `app:dev`, use `app:build` to compile it into a distributable package.
```bash filename="Terminal"
# Build the app (output goes to .twenty/output/)
yarn twenty app:build
# Build and create a tarball (.tgz) for distribution
yarn twenty app:build --tarball
```
The build process:
1. **Parses and validates the manifest** — reads all `defineX()` entities from your source files and validates the manifest structure.
2. **Compiles logic functions and front components** — bundles TypeScript sources into ESM `.mjs` files using esbuild.
3. **Generates checksums** — computes MD5 hashes for each built file, stored in the manifest as `builtHandlerChecksum` / `builtComponentChecksum`.
4. **Generates the typed API client** — introspects the GraphQL schema and generates typed `CoreApiClient` and `MetadataApiClient` clients.
5. **Runs a TypeScript type check** — runs `tsc --noEmit` to catch type errors before publishing.
6. **Rebuilds with the generated client** — performs a second compilation pass so the generated client types are included.
7. **Optionally creates a tarball** — if `--tarball` is passed, runs `npm pack` to create a `.tgz` file ready for distribution.
The build output in `.twenty/output/` contains:
```text
.twenty/output/
├── manifest.json # Manifest with checksums for all built files
├── package.json # Copied from app root
├── yarn.lock # Copied from app root
├── src/
│ ├── logic-functions/ # Compiled .mjs logic function files
│ └── front-components/ # Compiled .mjs front component files
├── public/ # Static assets (if any)
└── my-app-1.0.0.tgz # Only with --tarball flag
```
| Opțiune | Descriere |
| ----------- | --------------------------------------------------------- |
| `[appPath]` | Path to the app directory (defaults to current directory) |
| `--tarball` | Also pack the output into a `.tgz` tarball |
## Publishing your app
Use `app:publish` to distribute your app — either to the npm registry or directly to a Twenty server.
### Publish to npm (default)
```bash filename="Terminal"
# Publish to npm (requires npm login)
yarn twenty app:publish
# Publish with a dist-tag (e.g. beta, next)
yarn twenty app:publish --tag beta
```
This builds the app and runs `npm publish` from the `.twenty/output/` directory. The published package can then be installed from the Twenty marketplace by any workspace.
### Publish to a Twenty server
```bash filename="Terminal"
# Publish directly to a Twenty server
yarn twenty app:publish --server https://app.twenty.com
```
This builds the app with a tarball, uploads it to the server via the `uploadAppTarball` GraphQL mutation, and triggers installation in one step. This is useful for private deployments or testing against a specific server.
| Opțiune | Descriere |
| ----------------- | --------------------------------------------------------- |
| `[appPath]` | Path to the app directory (defaults to current directory) |
| `--server <url>` | Publish to a Twenty server instead of npm |
| `--token <token>` | Authentication token for the target server |
| `--tag <tag>` | npm dist-tag (e.g. `beta`, `next`) — only for npm publish |
## Application registration
Before an app can be installed in a workspace, it must be **registered**. A registration is a metadata record that describes where the app comes from and how to authenticate it. This is handled automatically by the CLI in most cases.
### Source types
Each registration has a **source type** that determines how the app's files are resolved during installation:
| Source type | How files are resolved | Typical use case |
| ----------- | -------------------------------------------------------------------------- | -------------------------------------- |
| `LOCAL` | Files are synced in real-time by the CLI watcher — installation is skipped | Development with `app:dev` |
| `NPM` | Fetched from the npm registry via the `sourcePackage` field | Published apps on npm |
| `TARBALL` | Extracted from an uploaded `.tgz` file stored on the server | Private apps published with `--server` |
### How registration happens
* **`app:dev`** — automatically creates a `LOCAL` registration the first time you run dev mode against a workspace.
* **`app:publish --server`** — uploads a tarball and creates (or updates) a `TARBALL` registration, then installs the app.
* **npm marketplace** — `NPM` registrations are created when apps are synced from the npm registry into the Twenty marketplace catalog.
* **GraphQL API** — you can also create registrations programmatically via the `createApplicationRegistration` mutation.
### Registration vs installation
**Registration** and **installation** are separate concepts:
* A **registration** (`ApplicationRegistration`) is a global metadata record describing the app: its name, source type, OAuth credentials, and marketplace listing status. It exists independently of any workspace.
* An **installation** (`Application`) is a per-workspace instance. When a user installs an app, Twenty resolves the package from the registration's source, writes the built files to storage, and synchronizes the manifest (creating objects, fields, logic functions, etc.) in that workspace.
One registration can be installed in many workspaces. Each workspace gets its own copy of the app's files and data model.
### OAuth credentials
Each registration includes OAuth credentials (`oAuthClientId` and `oAuthClientSecret`) generated at creation time. These are used by the app to authenticate API requests on behalf of users. The client secret is returned **once** at creation — store it securely. You can rotate it later via the `rotateApplicationRegistrationClientSecret` mutation.
## Configurare manuală (fără generator)
Deși recomandăm utilizarea `create-twenty-app` pentru cea mai bună experiență de început, puteți configura și un proiect manual. Nu instalați CLI-ul global. În schimb, adăugați `twenty-sdk` ca dependență locală și conectați un singur script în package.json-ul dvs.:
@@ -64,6 +64,12 @@ yarn twenty function:execute --preInstall
# Выполнить послеустановочную функцию
yarn twenty function:execute --postInstall
# Собрать приложение для распространения
yarn twenty app:build
# Опубликовать приложение в npm или на сервер Twenty
yarn twenty app:publish
# Удалить приложение из текущего рабочего пространства
yarn twenty app:uninstall
@@ -1240,6 +1246,113 @@ uploadFile(
Ознакомьтесь с минимальным сквозным примером, демонстрирующим объекты, логические функции, фронт-компоненты и несколько триггеров, [здесь](https://github.com/twentyhq/twenty/tree/main/packages/twenty-apps/hello-world):
## Сборка вашего приложения
После того как вы разработали приложение с помощью `app:dev`, используйте `app:build`, чтобы скомпилировать его в распространяемый пакет.
```bash filename="Terminal"
# Собрать приложение (результат сохраняется в .twenty/output/)
yarn twenty app:build
# Собрать и создать tarball (.tgz) для распространения
yarn twenty app:build --tarball
```
Процесс сборки:
1. **Разбирает и проверяет манифест** — читает все сущности `defineX()` из ваших исходных файлов и проверяет структуру манифеста.
2. **Компилирует логические функции и фронтенд-компоненты** — упаковывает исходники TypeScript в ESM-файлы `.mjs` с помощью esbuild.
3. **Генерирует контрольные суммы** — вычисляет хэши MD5 для каждого собранного файла, сохраняемые в манифесте как `builtHandlerChecksum` / `builtComponentChecksum`.
4. **Generates the typed API client** — introspects the GraphQL schema and generates typed `CoreApiClient` and `MetadataApiClient` clients.
5. **Runs a TypeScript type check** — runs `tsc --noEmit` to catch type errors before publishing.
6. **Rebuilds with the generated client** — performs a second compilation pass so the generated client types are included.
7. **Optionally creates a tarball** — if `--tarball` is passed, runs `npm pack` to create a `.tgz` file ready for distribution.
The build output in `.twenty/output/` contains:
```text
.twenty/output/
├── manifest.json # Manifest with checksums for all built files
├── package.json # Copied from app root
├── yarn.lock # Copied from app root
├── src/
│ ├── logic-functions/ # Compiled .mjs logic function files
│ └── front-components/ # Compiled .mjs front component files
├── public/ # Static assets (if any)
└── my-app-1.0.0.tgz # Only with --tarball flag
```
| Вариант | Описание |
| ----------- | --------------------------------------------------------- |
| `[appPath]` | Path to the app directory (defaults to current directory) |
| `--tarball` | Also pack the output into a `.tgz` tarball |
## Publishing your app
Use `app:publish` to distribute your app — either to the npm registry or directly to a Twenty server.
### Publish to npm (default)
```bash filename="Terminal"
# Publish to npm (requires npm login)
yarn twenty app:publish
# Publish with a dist-tag (e.g. beta, next)
yarn twenty app:publish --tag beta
```
This builds the app and runs `npm publish` from the `.twenty/output/` directory. The published package can then be installed from the Twenty marketplace by any workspace.
### Publish to a Twenty server
```bash filename="Terminal"
# Publish directly to a Twenty server
yarn twenty app:publish --server https://app.twenty.com
```
This builds the app with a tarball, uploads it to the server via the `uploadAppTarball` GraphQL mutation, and triggers installation in one step. This is useful for private deployments or testing against a specific server.
| Вариант | Описание |
| ----------------- | --------------------------------------------------------- |
| `[appPath]` | Path to the app directory (defaults to current directory) |
| `--server <url>` | Publish to a Twenty server instead of npm |
| `--token <token>` | Authentication token for the target server |
| `--tag <tag>` | npm dist-tag (e.g. `beta`, `next`) — only for npm publish |
## Application registration
Before an app can be installed in a workspace, it must be **registered**. A registration is a metadata record that describes where the app comes from and how to authenticate it. This is handled automatically by the CLI in most cases.
### Source types
Each registration has a **source type** that determines how the app's files are resolved during installation:
| Source type | How files are resolved | Typical use case |
| ----------- | -------------------------------------------------------------------------- | -------------------------------------- |
| `LOCAL` | Files are synced in real-time by the CLI watcher — installation is skipped | Development with `app:dev` |
| `NPM` | Fetched from the npm registry via the `sourcePackage` field | Published apps on npm |
| `TARBALL` | Extracted from an uploaded `.tgz` file stored on the server | Private apps published with `--server` |
### How registration happens
* **`app:dev`** — automatically creates a `LOCAL` registration the first time you run dev mode against a workspace.
* **`app:publish --server`** — uploads a tarball and creates (or updates) a `TARBALL` registration, then installs the app.
* **npm marketplace** — `NPM` registrations are created when apps are synced from the npm registry into the Twenty marketplace catalog.
* **GraphQL API** — you can also create registrations programmatically via the `createApplicationRegistration` mutation.
### Registration vs installation
**Registration** and **installation** are separate concepts:
* A **registration** (`ApplicationRegistration`) is a global metadata record describing the app: its name, source type, OAuth credentials, and marketplace listing status. It exists independently of any workspace.
* An **installation** (`Application`) is a per-workspace instance. When a user installs an app, Twenty resolves the package from the registration's source, writes the built files to storage, and synchronizes the manifest (creating objects, fields, logic functions, etc.) in that workspace.
One registration can be installed in many workspaces. Each workspace gets its own copy of the app's files and data model.
### OAuth credentials
Each registration includes OAuth credentials (`oAuthClientId` and `oAuthClientSecret`) generated at creation time. These are used by the app to authenticate API requests on behalf of users. The client secret is returned **once** at creation — store it securely. You can rotate it later via the `rotateApplicationRegistrationClientSecret` mutation.
## Ручная настройка (без генератора)
Хотя мы рекомендуем использовать `create-twenty-app` для наилучшего старта, вы также можете настроить проект вручную. Не устанавливайте CLI глобально. Вместо этого добавьте `twenty-sdk` как локальную зависимость и настройте один скрипт в вашем package.json:
@@ -64,6 +64,12 @@ yarn twenty function:execute --preInstall
# Execute the post-install function
yarn twenty function:execute --postInstall
# Build the app for distribution
yarn twenty app:build
# Publish the app to npm or a Twenty server
yarn twenty app:publish
# Uninstall the application from the current workspace
yarn twenty app:uninstall
@@ -1240,6 +1246,113 @@ uploadFile(
Nesneleri, mantık fonksiyonlarını, ön uç bileşenlerini ve birden çok tetikleyiciyi gösteren minimal, uçtan uca bir örneği [buradan](https://github.com/twentyhq/twenty/tree/main/packages/twenty-apps/hello-world) inceleyin:
## Building your app
Once you've developed your app with `app:dev`, use `app:build` to compile it into a distributable package.
```bash filename="Terminal"
# Build the app (output goes to .twenty/output/)
yarn twenty app:build
# Build and create a tarball (.tgz) for distribution
yarn twenty app:build --tarball
```
The build process:
1. **Parses and validates the manifest** — reads all `defineX()` entities from your source files and validates the manifest structure.
2. **Compiles logic functions and front components** — bundles TypeScript sources into ESM `.mjs` files using esbuild.
3. **Generates checksums** — computes MD5 hashes for each built file, stored in the manifest as `builtHandlerChecksum` / `builtComponentChecksum`.
4. **Generates the typed API client** — introspects the GraphQL schema and generates typed `CoreApiClient` and `MetadataApiClient` clients.
5. **Runs a TypeScript type check** — runs `tsc --noEmit` to catch type errors before publishing.
6. **Rebuilds with the generated client** — performs a second compilation pass so the generated client types are included.
7. **Optionally creates a tarball** — if `--tarball` is passed, runs `npm pack` to create a `.tgz` file ready for distribution.
The build output in `.twenty/output/` contains:
```text
.twenty/output/
├── manifest.json # Manifest with checksums for all built files
├── package.json # Copied from app root
├── yarn.lock # Copied from app root
├── src/
│ ├── logic-functions/ # Compiled .mjs logic function files
│ └── front-components/ # Compiled .mjs front component files
├── public/ # Static assets (if any)
└── my-app-1.0.0.tgz # Only with --tarball flag
```
| Seçenek | Açıklama |
| ----------- | --------------------------------------------------------- |
| `[appPath]` | Path to the app directory (defaults to current directory) |
| `--tarball` | Also pack the output into a `.tgz` tarball |
## Publishing your app
Use `app:publish` to distribute your app — either to the npm registry or directly to a Twenty server.
### Publish to npm (default)
```bash filename="Terminal"
# Publish to npm (requires npm login)
yarn twenty app:publish
# Publish with a dist-tag (e.g. beta, next)
yarn twenty app:publish --tag beta
```
This builds the app and runs `npm publish` from the `.twenty/output/` directory. The published package can then be installed from the Twenty marketplace by any workspace.
### Publish to a Twenty server
```bash filename="Terminal"
# Publish directly to a Twenty server
yarn twenty app:publish --server https://app.twenty.com
```
This builds the app with a tarball, uploads it to the server via the `uploadAppTarball` GraphQL mutation, and triggers installation in one step. This is useful for private deployments or testing against a specific server.
| Seçenek | Açıklama |
| ----------------- | --------------------------------------------------------- |
| `[appPath]` | Path to the app directory (defaults to current directory) |
| `--server <url>` | Publish to a Twenty server instead of npm |
| `--token <token>` | Authentication token for the target server |
| `--tag <tag>` | npm dist-tag (e.g. `beta`, `next`) — only for npm publish |
## Application registration
Before an app can be installed in a workspace, it must be **registered**. A registration is a metadata record that describes where the app comes from and how to authenticate it. This is handled automatically by the CLI in most cases.
### Source types
Each registration has a **source type** that determines how the app's files are resolved during installation:
| Source type | How files are resolved | Typical use case |
| ----------- | -------------------------------------------------------------------------- | -------------------------------------- |
| `LOCAL` | Files are synced in real-time by the CLI watcher — installation is skipped | Development with `app:dev` |
| `NPM` | Fetched from the npm registry via the `sourcePackage` field | Published apps on npm |
| `TARBALL` | Extracted from an uploaded `.tgz` file stored on the server | Private apps published with `--server` |
### How registration happens
* **`app:dev`** — automatically creates a `LOCAL` registration the first time you run dev mode against a workspace.
* **`app:publish --server`** — uploads a tarball and creates (or updates) a `TARBALL` registration, then installs the app.
* **npm marketplace** — `NPM` registrations are created when apps are synced from the npm registry into the Twenty marketplace catalog.
* **GraphQL API** — you can also create registrations programmatically via the `createApplicationRegistration` mutation.
### Registration vs installation
**Registration** and **installation** are separate concepts:
* A **registration** (`ApplicationRegistration`) is a global metadata record describing the app: its name, source type, OAuth credentials, and marketplace listing status. It exists independently of any workspace.
* An **installation** (`Application`) is a per-workspace instance. When a user installs an app, Twenty resolves the package from the registration's source, writes the built files to storage, and synchronizes the manifest (creating objects, fields, logic functions, etc.) in that workspace.
One registration can be installed in many workspaces. Each workspace gets its own copy of the app's files and data model.
### OAuth credentials
Each registration includes OAuth credentials (`oAuthClientId` and `oAuthClientSecret`) generated at creation time. These are used by the app to authenticate API requests on behalf of users. The client secret is returned **once** at creation — store it securely. You can rotate it later via the `rotateApplicationRegistrationClientSecret` mutation.
## Manuel kurulum (scaffolder olmadan)
En iyi başlangıç deneyimi için `create-twenty-app` kullanmanızı önersek de, bir projeyi manuel olarak da kurabilirsiniz. CLI'yi global olarak kurmayın. Bunun yerine `twenty-sdk`'yi yerel bir bağımlılık olarak ekleyin ve package.json içinde tek bir betik tanımlayın:
@@ -49,25 +49,31 @@ npx create-twenty-app@latest my-app --minimal
从这里您可以:
```bash filename="Terminal"
# 向你的应用添加一个新实体(引导式)
# Add a new entity to your application (guided)
yarn twenty entity:add
# 监听你的应用函数日志
# Watch your application's function logs
yarn twenty function:logs
# 按名称执行一个函数
# Execute a function by name
yarn twenty function:execute -n my-function -p '{"name": "test"}'
# 执行安装前函数
# Execute the pre-install function
yarn twenty function:execute --preInstall
# 执行安装后函数
# Execute the post-install function
yarn twenty function:execute --postInstall
# 从当前工作区卸载该应用
# Build the app for distribution
yarn twenty app:build
# Publish the app to npm or a Twenty server
yarn twenty app:publish
# Uninstall the application from the current workspace
yarn twenty app:uninstall
# 显示命令帮助
# Display commands' help
yarn twenty help
```
@@ -1240,6 +1246,113 @@ uploadFile(
在[此处](https://github.com/twentyhq/twenty/tree/main/packages/twenty-apps/hello-world)查看一个最小的端到端示例,展示对象、逻辑函数、前端组件和多种触发器:
## Building your app
Once you've developed your app with `app:dev`, use `app:build` to compile it into a distributable package.
```bash filename="Terminal"
# Build the app (output goes to .twenty/output/)
yarn twenty app:build
# Build and create a tarball (.tgz) for distribution
yarn twenty app:build --tarball
```
The build process:
1. **Parses and validates the manifest** — reads all `defineX()` entities from your source files and validates the manifest structure.
2. **Compiles logic functions and front components** — bundles TypeScript sources into ESM `.mjs` files using esbuild.
3. **Generates checksums** — computes MD5 hashes for each built file, stored in the manifest as `builtHandlerChecksum` / `builtComponentChecksum`.
4. **Generates the typed API client** — introspects the GraphQL schema and generates typed `CoreApiClient` and `MetadataApiClient` clients.
5. **Runs a TypeScript type check** — runs `tsc --noEmit` to catch type errors before publishing.
6. **Rebuilds with the generated client** — performs a second compilation pass so the generated client types are included.
7. **Optionally creates a tarball** — if `--tarball` is passed, runs `npm pack` to create a `.tgz` file ready for distribution.
The build output in `.twenty/output/` contains:
```text
.twenty/output/
├── manifest.json # Manifest with checksums for all built files
├── package.json # Copied from app root
├── yarn.lock # Copied from app root
├── src/
│ ├── logic-functions/ # Compiled .mjs logic function files
│ └── front-components/ # Compiled .mjs front component files
├── public/ # Static assets (if any)
└── my-app-1.0.0.tgz # Only with --tarball flag
```
| 选项 | 描述 |
| ----------- | --------------------------------------------------------- |
| `[appPath]` | Path to the app directory (defaults to current directory) |
| `--tarball` | Also pack the output into a `.tgz` tarball |
## Publishing your app
Use `app:publish` to distribute your app — either to the npm registry or directly to a Twenty server.
### Publish to npm (default)
```bash filename="Terminal"
# Publish to npm (requires npm login)
yarn twenty app:publish
# Publish with a dist-tag (e.g. beta, next)
yarn twenty app:publish --tag beta
```
This builds the app and runs `npm publish` from the `.twenty/output/` directory. The published package can then be installed from the Twenty marketplace by any workspace.
### Publish to a Twenty server
```bash filename="Terminal"
# Publish directly to a Twenty server
yarn twenty app:publish --server https://app.twenty.com
```
This builds the app with a tarball, uploads it to the server via the `uploadAppTarball` GraphQL mutation, and triggers installation in one step. This is useful for private deployments or testing against a specific server.
| 选项 | 描述 |
| ----------------- | --------------------------------------------------------- |
| `[appPath]` | Path to the app directory (defaults to current directory) |
| `--server <url>` | Publish to a Twenty server instead of npm |
| `--token <token>` | Authentication token for the target server |
| `--tag <tag>` | npm dist-tag (e.g. `beta`, `next`) — only for npm publish |
## Application registration
Before an app can be installed in a workspace, it must be **registered**. A registration is a metadata record that describes where the app comes from and how to authenticate it. This is handled automatically by the CLI in most cases.
### Source types
Each registration has a **source type** that determines how the app's files are resolved during installation:
| Source type | How files are resolved | Typical use case |
| ----------- | -------------------------------------------------------------------------- | -------------------------------------- |
| `LOCAL` | Files are synced in real-time by the CLI watcher — installation is skipped | Development with `app:dev` |
| `NPM` | Fetched from the npm registry via the `sourcePackage` field | Published apps on npm |
| `TARBALL` | Extracted from an uploaded `.tgz` file stored on the server | Private apps published with `--server` |
### How registration happens
* **`app:dev`** — automatically creates a `LOCAL` registration the first time you run dev mode against a workspace.
* **`app:publish --server`** — uploads a tarball and creates (or updates) a `TARBALL` registration, then installs the app.
* **npm marketplace** — `NPM` registrations are created when apps are synced from the npm registry into the Twenty marketplace catalog.
* **GraphQL API** — you can also create registrations programmatically via the `createApplicationRegistration` mutation.
### Registration vs installation
**Registration** and **installation** are separate concepts:
* A **registration** (`ApplicationRegistration`) is a global metadata record describing the app: its name, source type, OAuth credentials, and marketplace listing status. It exists independently of any workspace.
* An **installation** (`Application`) is a per-workspace instance. When a user installs an app, Twenty resolves the package from the registration's source, writes the built files to storage, and synchronizes the manifest (creating objects, fields, logic functions, etc.) in that workspace.
One registration can be installed in many workspaces. Each workspace gets its own copy of the app's files and data model.
### OAuth credentials
Each registration includes OAuth credentials (`oAuthClientId` and `oAuthClientSecret`) generated at creation time. These are used by the app to authenticate API requests on behalf of users. The client secret is returned **once** at creation — store it securely. You can rotate it later via the `rotateApplicationRegistrationClientSecret` mutation.
## 手动设置(不使用脚手架)
虽然我们建议使用 `create-twenty-app` 以获得最佳的上手体验,但你也可以手动设置项目。 不要全局安装 CLI。 相反,请将 `twenty-sdk` 添加为本地依赖,并在你的 package.json 中配置一个脚本:
+1 -4
View File
@@ -45,13 +45,10 @@ module.exports = {
plugins: [
'typescript',
'typescript-operations',
'typescript-react-apollo',
'typed-document-node',
],
config: {
skipTypename: false,
withHooks: true,
withHOC: false,
withComponent: false,
scalars: {
DateTime: 'string',
UUID: 'string',
+1 -4
View File
@@ -21,13 +21,10 @@ module.exports = {
plugins: [
'typescript',
'typescript-operations',
'typescript-react-apollo',
'typed-document-node',
],
config: {
skipTypename: false,
withHooks: true,
withHOC: false,
withComponent: false,
scalars: {
DateTime: 'string',
},
+5 -5
View File
@@ -24,12 +24,12 @@ const jestConfig = {
testEnvironmentOptions: {},
transformIgnorePatterns: [
'/node_modules/(?!(twenty-ui)/.*)',
'../../node_modules/(?!(twenty-ui)/.*)',
'/node_modules/(?!(twenty-ui|apollo-upload-client|extract-files|is-plain-obj)/.*)',
'../../node_modules/(?!(twenty-ui|apollo-upload-client|extract-files|is-plain-obj)/.*)',
'../../twenty-ui/',
],
transform: {
'^.+\\.(ts|js|tsx|jsx)$': [
'^.+\\.(ts|js|tsx|jsx|mjs)$': [
'@swc/jest',
{
jsc: {
@@ -61,8 +61,8 @@ const jestConfig = {
extensionsToTreatAsEsm: ['.ts', '.tsx'],
coverageThreshold: {
global: {
statements: 49.1,
lines: 47.7,
statements: 49,
lines: 47.6,
functions: 39.5,
},
},
+3 -4
View File
@@ -30,7 +30,7 @@
},
"dependencies": {
"@ai-sdk/react": "3.0.99",
"@apollo/client": "^3.7.17",
"@apollo/client": "^4.0.0",
"@blocknote/mantine": "^0.47.1",
"@blocknote/react": "^0.47.1",
"@blocknote/xl-docx-exporter": "^0.47.1",
@@ -77,8 +77,8 @@
"@types/marked": "^6.0.0",
"@xyflow/react": "^12.4.2",
"ai": "6.0.97",
"apollo-link-rest": "^0.9.0",
"apollo-upload-client": "^17.0.0",
"apollo-link-rest": "^0.10.0-rc.2",
"apollo-upload-client": "^19.0.0",
"buffer": "^6.0.3",
"cron-parser": "5.1.1",
"date-fns": "^2.30.0",
@@ -126,7 +126,6 @@
"@lingui/vite-plugin": "^5.1.2",
"@playwright/test": "^1.56.1",
"@tiptap/suggestion": "3.4.2",
"@types/apollo-upload-client": "^17.0.2",
"@types/file-saver": "^2.0.7",
"@types/js-cookie": "^3.0.3",
"@types/json-logic-js": "^2",
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large Load Diff
@@ -1,4 +1,4 @@
import { getOperationName } from '@apollo/client/utilities';
import { getOperationName } from '~/utils/getOperationName';
import { type Meta, type StoryObj } from '@storybook/react-vite';
import { HttpResponse, graphql, http } from 'msw';
import { expect, within } from 'storybook/test';
+327 -38
View File
@@ -752,23 +752,37 @@ msgid "Actions users can perform on this object"
msgstr "Aksies gebruikers kan uitvoer op hierdie voorwerp"
#. js-lingui-id: FQBaXG
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
#: src/modules/settings/data-model/objects/components/SettingsObjectInactiveMenuDropDown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
msgid "Activate"
msgstr "Aktiveer"
#. js-lingui-id: eqeFkF
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Activate Enterprise Key"
msgstr ""
#. js-lingui-id: tu8A/k
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
msgid "Activate Workflow"
msgstr "Aktiveer Werkstroom"
#. js-lingui-id: jSZacs
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Activating..."
msgstr ""
#. js-lingui-id: F6pfE9
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/domains/components/SettingsWorkspaceDomainCard.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Active"
@@ -806,6 +820,13 @@ msgstr "Voeg \"{trimmedName}\" by opsies"
msgid "Add a {objectLabelSingular}"
msgstr "Voeg 'n {objectLabelSingular} by"
#. js-lingui-id: 7W8nJr
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
msgid "Add a Group"
msgstr ""
#. js-lingui-id: CZDwqQ
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
@@ -818,16 +839,10 @@ msgid "Add a node"
msgstr "Voeg 'n nodus by"
#. js-lingui-id: nGv1DN
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Add a record"
msgstr ""
#. js-lingui-id: r8W+9y
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
msgid "Add a Section"
msgstr ""
#. js-lingui-id: eMc2xs
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
msgid "Add a step"
@@ -1429,7 +1444,7 @@ msgid "All set!"
msgstr "Alles reg!"
#. js-lingui-id: CHvT6e
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectFlow.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
@@ -1574,6 +1589,7 @@ msgstr "'n Fout het voorgekom tydens die oplaai van die prent."
#. js-lingui-id: XyOToQ
#: src/utils/get-error-message-from-apollo-error.util.ts
#: src/utils/get-error-message-from-apollo-error.util.ts
#: src/modules/views/hooks/internal/usePerformViewSortAPIPersist.ts
#: src/modules/views/hooks/internal/usePerformViewGroupAPIPersist.ts
#: src/modules/views/hooks/internal/usePerformViewFilterAPIPersist.ts
@@ -1664,6 +1680,7 @@ msgstr "API"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "API & Webhooks"
msgstr "API & Webtuistes"
@@ -1940,6 +1957,7 @@ msgstr "Oplopend"
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Ask AI"
msgstr "Vra AI"
@@ -2078,6 +2096,11 @@ msgstr ""
msgid "Attachments"
msgstr "Aanhegsels"
#. js-lingui-id: y2W2Hg
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Audit logs"
msgstr ""
#. js-lingui-id: EPEFrH
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
@@ -2306,6 +2329,11 @@ msgstr "tussen die {startOrdinal} en {endOrdinal} van die maand"
msgid "Billing"
msgstr "Fakturering"
#. js-lingui-id: dSjFxR
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Billing history"
msgstr ""
#. js-lingui-id: nJGwRf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Billing interval"
@@ -2563,6 +2591,7 @@ msgid "Cancel metered tier switching?"
msgstr "Kanselleer gemeterde vlakwisseling?"
#. js-lingui-id: rRK/Lf
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel Plan"
msgstr "Kanselleer Plan"
@@ -2578,10 +2607,26 @@ msgid "Cancel plan switching?"
msgstr "Kanselleer planwisseling?"
#. js-lingui-id: N6gPiD
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel your subscription"
msgstr "Kanselleer jou intekening"
#. js-lingui-id: GGWsTU
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Canceled"
msgstr ""
#. js-lingui-id: y4uH7j
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Cancelling"
msgstr ""
#. js-lingui-id: WbPx+C
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Cancels on"
msgstr ""
#. js-lingui-id: XDbjjW
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Cannot delete the only view"
@@ -3077,11 +3122,6 @@ msgstr ""
msgid "Configure fallback login methods for users with SSO bypass permissions"
msgstr "Konfigureer terugval-aanmeldmetodes vir gebruikers met SSO omseil toestemmings"
#. js-lingui-id: c7wznw
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
msgid "Configure filters"
msgstr "Stel filters op"
#. js-lingui-id: ghdb7+
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
msgid "Configure how we should display your events in your calendar"
@@ -3279,6 +3319,7 @@ msgstr ""
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
msgid "Continue"
msgstr "Gaan voort"
@@ -3438,6 +3479,21 @@ msgstr "Koste per 1k ekstra krediette"
msgid "Could not delete approved access domain"
msgstr "Kon nie goedgekeurde toegangsdomein uitvee nie"
#. js-lingui-id: KqYYBp
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not open billing portal. Please check your enterprise key is present, or contact support."
msgstr ""
#. js-lingui-id: ZuI4Sl
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Could not open Stripe. Please contact support."
msgstr ""
#. js-lingui-id: wVw4Am
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not refresh validity token. Please contact support."
msgstr ""
#. js-lingui-id: s8lFtq
#: src/hooks/useCopyToClipboard.tsx
msgid "Couldn't copy to clipboard"
@@ -3815,6 +3871,7 @@ msgstr "Pasgemaakte domein opgedateer"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Custom objects"
msgstr "Pasgemaakte voorwerpe"
@@ -4917,6 +4974,8 @@ msgid "Edit own profile information"
msgstr ""
#. js-lingui-id: h2KoTu
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Edit payment method, see your invoices and more"
msgstr "Redigeer betalingsmetode, sien jou fakture en meer"
@@ -5216,6 +5275,11 @@ msgstr "Verhoog sekuriteit deur 'n kode saam met jou wagwoord te vereis"
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr "Geniet 'n {withCreditCardTrialPeriodDuration}-dae gratis proeftydperk"
#. js-lingui-id: 6iUnle
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Enjoy a 30-day free trial"
msgstr ""
#. js-lingui-id: T/N+2Z
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormRawJsonFieldInput.tsx
@@ -5422,6 +5486,9 @@ msgstr "Voer jou API-sleutel in"
#. js-lingui-id: GpB8YV
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
msgid "Enterprise"
msgstr "Onderneming"
@@ -5430,6 +5497,22 @@ msgstr "Onderneming"
msgid "Enterprise Feature"
msgstr ""
#. js-lingui-id: S5c4pl
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Enterprise License"
msgstr ""
#. js-lingui-id: KGE5g0
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Enterprise license activated successfully"
msgstr ""
#. js-lingui-id: SLuq/l
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Entity ID"
@@ -5470,6 +5553,11 @@ msgstr "Easy wiping van rekords wat sag verwyder is"
msgid "Error"
msgstr "Fout"
#. js-lingui-id: VouTsQ
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error activating enterprise license"
msgstr ""
#. js-lingui-id: GHKxvg
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error deleting api key."
@@ -5495,11 +5583,6 @@ msgstr "Fout met die verwydering van SSO Identiteitsverskaffer"
msgid "Error editing SSO Identity Provider"
msgstr "Fout met die redigering van SSO Identiteitsverskaffer"
#. js-lingui-id: GsIfmO
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerMetricsGraph.tsx
msgid "Error fetching worker metrics: {errorMessage}"
msgstr "Fout met die ophaal van werkermetrieke: {errorMessage}"
#. js-lingui-id: GdBN5t
#: src/modules/error-handler/components/AppRootErrorFallback.tsx
msgid "Error illustration"
@@ -5530,11 +5613,26 @@ msgstr "Fout met die laai van boodskap"
msgid "Error Message"
msgstr "Foutboodskap"
#. js-lingui-id: Mox63G
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error opening billing portal"
msgstr ""
#. js-lingui-id: e/eieW
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Error opening Stripe"
msgstr ""
#. js-lingui-id: bT/0cM
#: src/modules/ui/field/display/components/PhonesDisplay.tsx
msgid "Error parsing additional phones: {error}"
msgstr "Fout met ontleding van bykomende fone: {error}"
#. js-lingui-id: zRXcyv
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error refreshing validity token. Please contact support."
msgstr ""
#. js-lingui-id: PfAip2
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error regenerating api key."
@@ -5997,6 +6095,11 @@ msgstr ""
msgid "Failed to {translatedOperationType} {translatedMetadataName}. Related {relatedEntityNames} validation failed. Please check your configuration and try again."
msgstr ""
#. js-lingui-id: R1XJV1
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Failed to activate enterprise license. Please check your key or contact support."
msgstr ""
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to activate skill"
@@ -6374,7 +6477,6 @@ msgstr ""
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/views/components/ViewBarFilterButton.tsx
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
#: src/modules/settings/roles/components/SettingsRolesList.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
@@ -6397,6 +6499,7 @@ msgid "Filter group rule options"
msgstr "Opsies vir filterreëlgroep"
#. js-lingui-id: cSev+j
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
msgid "Filters"
msgstr "Filtreerders"
@@ -6467,6 +6570,11 @@ msgstr "Voornaam"
msgid "First name can not be empty"
msgstr "Voornaam kan nie leeg wees nie"
#. js-lingui-id: JREYkg
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Fix the payment issue to keep your enterprise features active."
msgstr ""
#. js-lingui-id: ylQd2j
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
@@ -6486,7 +6594,7 @@ msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
msgid "Folders"
msgstr "Lêers"
@@ -6635,6 +6743,22 @@ msgstr "Gegenereerde lêers"
msgid "German"
msgstr "Duits"
#. js-lingui-id: sqtljx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Get Enterprise"
msgstr ""
#. js-lingui-id: o2kSwB
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Get Enterprise Key"
msgstr ""
#. js-lingui-id: NXEW3h
#: src/pages/onboarding/InviteTeam.tsx
msgid "Get the most out of your workspace by inviting your team."
@@ -6655,6 +6779,12 @@ msgstr "Globaal"
msgid "Go Back"
msgstr ""
#. js-lingui-id: Hb4Cgz
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Go to billing portal"
msgstr ""
#. js-lingui-id: mUbv8L
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
msgid "Go to Companies"
@@ -7240,6 +7370,11 @@ msgstr ""
msgid "Inbox"
msgstr "Inboks"
#. js-lingui-id: mtGDyy
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Incomplete"
msgstr ""
#. js-lingui-id: O5wNUa
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "index"
@@ -7882,9 +8017,8 @@ msgid "Launch manually"
msgstr "Begin handmatig"
#. js-lingui-id: rdU729
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsLayout.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -7957,6 +8091,12 @@ msgstr ""
msgid "Less than or equal"
msgstr "Kleiner as of gelyk aan"
#. js-lingui-id: 3qg5Ro
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Licensee"
msgstr ""
#. js-lingui-id: 1njn7W
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownThemesComponents.tsx
@@ -8260,6 +8400,8 @@ msgid "Manage billing and subscriptions"
msgstr "Bestuur rekening en intekeninge"
#. js-lingui-id: nvgUPq
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Manage billing information"
msgstr "Bestuur faktuurinligting"
@@ -8612,6 +8754,11 @@ msgstr "Maand van die jaar"
msgid "monthly"
msgstr "maandeliks"
#. js-lingui-id: Sew/cK
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Monthly subscription"
msgstr ""
#. js-lingui-id: 6jefe3
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
@@ -8673,7 +8820,7 @@ msgid "Move right"
msgstr "Skuif regs"
#. js-lingui-id: 6qDVmw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Move to a folder"
msgstr ""
@@ -9274,13 +9421,13 @@ msgid "No Files"
msgstr "Geen Lêers Nie"
#. js-lingui-id: pYblOw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
msgid "No folder"
msgstr "Geen vouer"
#. js-lingui-id: 6XMhqL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folders available"
msgstr ""
@@ -9454,8 +9601,8 @@ msgstr "Geen Resultate"
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/side-panel/components/SidePanelList.tsx
msgid "No results found"
msgstr "Geen resultate gevind nie"
@@ -10188,11 +10335,26 @@ msgstr "Wagwoord herstel skakel is na die e-pos gestuur"
msgid "Paste the code below"
msgstr "Plak die kode hieronder"
#. js-lingui-id: raz2Pm
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Paste your enterprise key below to activate"
msgstr ""
#. js-lingui-id: dNdgvF
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Paste your enterprise key here"
msgstr ""
#. js-lingui-id: I6gXOa
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "Path"
msgstr "Pad"
#. js-lingui-id: QmXBEc
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Payment issue"
msgstr ""
#. js-lingui-id: UbRKMZ
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
#: src/modules/settings/security/components/approvedAccessDomains/SettingsApprovedAccessDomainsListCard.tsx
@@ -10329,13 +10491,13 @@ msgid "Pick a {objectLabel} record"
msgstr "Kies 'n {objectLabel} rekord"
#. js-lingui-id: JqqNlC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Pick a view"
msgstr ""
#. js-lingui-id: Wlba2h
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Pick an object"
msgstr ""
@@ -10953,6 +11115,16 @@ msgstr "Vrystellings"
msgid "Reload"
msgstr "Herlaai"
#. js-lingui-id: qbM5In
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Reload validity token"
msgstr ""
#. js-lingui-id: MZWnSC
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Reloading..."
msgstr ""
#. js-lingui-id: qlAIQ1
#: src/modules/object-metadata/components/RemoteNavigationDrawerSection.tsx
msgid "Remote"
@@ -11228,7 +11400,7 @@ msgstr "Resultaat"
#. js-lingui-id: kx0s+n
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Results"
msgstr "Resultate"
@@ -11367,6 +11539,11 @@ msgstr ""
msgid "row level permission predicate group"
msgstr ""
#. js-lingui-id: xPaeO2
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Row-level security"
msgstr ""
#. js-lingui-id: 7jTlsu
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Ruby"
@@ -11485,6 +11662,8 @@ msgstr ""
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Search"
msgstr "Soek"
@@ -11521,7 +11700,7 @@ msgid "Search a field..."
msgstr "Soek 'n veld..."
#. js-lingui-id: ITQFzL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Search a folder..."
msgstr ""
@@ -11689,7 +11868,7 @@ msgid "Search records"
msgstr "Soek rekords"
#. js-lingui-id: rRklUH
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Search records..."
msgstr ""
@@ -11724,11 +11903,13 @@ msgid "Searching the web for {query}"
msgstr ""
#. js-lingui-id: 8sgZS9
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month"
msgstr "sitplek / maand"
#. js-lingui-id: aQnWwf
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month - billed yearly"
msgstr "sitplek / maand - jaarliks gefaktureer"
@@ -12556,6 +12737,7 @@ msgstr "EGS"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
@@ -12600,6 +12782,16 @@ msgstr ""
msgid "Start"
msgstr "Begin"
#. js-lingui-id: ASqWQi
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Start a new enterprise subscription to re-enable enterprise features."
msgstr ""
#. js-lingui-id: OC6rnK
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Start a new enterprise subscription."
msgstr ""
#. js-lingui-id: D3iCkb
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
msgid "Start Date"
@@ -12625,6 +12817,11 @@ msgid "State"
msgstr "Staat"
#. js-lingui-id: uAQUqI
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
@@ -12920,11 +13117,11 @@ msgstr ""
#. js-lingui-id: 0apULK
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -13227,6 +13424,11 @@ msgstr "Daar is vereiste kolomme wat nie ooreenstem of geïgnoreer is nie. Wil j
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
msgstr "Daar is nog steeds rye wat foute bevat. Rye met foute sal geïgnoreer word wanneer ingedien word."
#. js-lingui-id: CA9PTn
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "There is a payment issue with your subscription. Please update your payment method."
msgstr ""
#. js-lingui-id: WQk7Cf
#: src/modules/activities/timeline-activities/components/TimelineCard.tsx
msgid "There is no activity associated with this record."
@@ -13339,9 +13541,9 @@ msgstr ""
msgid "This database value overrides environment settings. "
msgstr "Hierdie databasis waarde oorskry omgewingsinstellings."
#. js-lingui-id: qHAJQ2
#. js-lingui-id: 8IRnd6
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "This feature is part of the Organization Plan"
msgid "This feature is part of the Enterprise Plan"
msgstr ""
#. js-lingui-id: own57K
@@ -13650,6 +13852,8 @@ msgid "Transfer ownership"
msgstr ""
#. js-lingui-id: lhkaAC
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/internal/PlansTags.tsx
msgid "Trial"
msgstr "Proeflopie"
@@ -13840,7 +14044,7 @@ msgid "Type anything..."
msgstr "Tik enigiets..."
#. js-lingui-id: UhqKcC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Type to search records"
msgstr ""
@@ -13998,6 +14202,11 @@ msgstr "Onbeperkte kontakte"
msgid "Unlisted"
msgstr "Ongepubliseer"
#. js-lingui-id: Ep1uUU
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
msgstr ""
#. js-lingui-id: eQMhFX
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "unordered"
@@ -14067,6 +14276,11 @@ msgstr "opdateer"
msgid "Update"
msgstr "Opdateer"
#. js-lingui-id: Y69tSP
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Update payment method"
msgstr ""
#. js-lingui-id: 0KAL3W
#: src/modules/side-panel/hooks/useOpenUpdateMultipleRecordsPageInSidePanel.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
@@ -14305,11 +14519,22 @@ msgstr "Gebruik verstek toepassing waarde. Stel in via omgewingsveranderlikes."
msgid "Using default value. Set a custom value to override."
msgstr "Gebruik verstek waarde. Stel 'n pasgemaakte waarde om te oorskryf."
#. js-lingui-id: zzp4XX
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Valid until"
msgstr ""
#. js-lingui-id: Clr4qp
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Validate Data"
msgstr "Valideer data"
#. js-lingui-id: PWZBIT
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Validity token refreshed successfully"
msgstr ""
#. js-lingui-id: wMHvYH
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/KeyValuePairInput.tsx
@@ -14436,6 +14661,8 @@ msgid "View and filter events, page views, object changes"
msgstr ""
#. js-lingui-id: KANz0G
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "View billing details"
msgstr "Sien faktuurbesonderhede"
@@ -14485,6 +14712,11 @@ msgstr "bekyk Groep"
msgid "View installed app"
msgstr ""
#. js-lingui-id: B02hom
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "View invoices"
msgstr ""
#. js-lingui-id: lh5BED
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerQueueMetricsSection.tsx
msgid "View Jobs"
@@ -14503,6 +14735,7 @@ msgstr ""
#. js-lingui-id: ecVcAx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "View Previous AI Chats"
msgstr "Sien Vorige KI-kletse"
@@ -14852,6 +15085,7 @@ msgstr "Werksvloeie"
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/domains/SettingsDomains.tsx
@@ -15018,6 +15252,11 @@ msgstr "Jaar"
msgid "yearly"
msgstr "jaarliks"
#. js-lingui-id: Y1GwUe
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Yearly subscription"
msgstr ""
#. js-lingui-id: +BGee5
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
msgid "years"
@@ -15150,6 +15389,36 @@ msgstr "Jou e-posonderwerpe en vergadertitels sal met jou span gedeel word."
msgid "Your emails and events content will be shared with your team."
msgstr "Jou e-pos en gebeurtenisinhalte sal met jou span gedeel word."
#. js-lingui-id: ahEwS4
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features are active"
msgstr ""
#. js-lingui-id: XMZLU/
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features are active but your enterprise key is missing or invalid. This may be expected, but if not, please set a valid signed enterprise key to manage your subscription, or contact support."
msgstr ""
#. js-lingui-id: AxcwNj
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features will be disabled"
msgstr ""
#. js-lingui-id: PT137K
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features will remain active until {cancelAtDate}."
msgstr ""
#. js-lingui-id: 69Siss
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
msgid "Your enterprise key format is deprecated. Please activate a new key to keep enterprise features."
msgstr ""
#. js-lingui-id: NTpA4U
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise subscription has been canceled."
msgstr ""
#. js-lingui-id: 9ivpwk
#: src/pages/settings/SettingsProfile.tsx
msgid "Your name as it will be displayed"
@@ -15160,6 +15429,26 @@ msgstr "Jou naam soos dit vertoon sal word"
msgid "Your name as it will be displayed on the app"
msgstr "Jou naam soos dit op die app vertoon sal word"
#. js-lingui-id: 319YPG
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription is active but your validity token is invalid or has expired. Try reloading it or contact support."
msgstr ""
#. js-lingui-id: Fx0axg
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription is scheduled for cancellation"
msgstr ""
#. js-lingui-id: XgIa/8
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription setup was not completed."
msgstr ""
#. js-lingui-id: Z9kbt6
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription status is: {statusLabel}"
msgstr ""
#. js-lingui-id: QOd24n
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and "
+327 -38
View File
@@ -752,23 +752,37 @@ msgid "Actions users can perform on this object"
msgstr "الإجراءات التي يمكن للمستخدمين تنفيذها على هذا الكائن"
#. js-lingui-id: FQBaXG
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
#: src/modules/settings/data-model/objects/components/SettingsObjectInactiveMenuDropDown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
msgid "Activate"
msgstr "تفعيل"
#. js-lingui-id: eqeFkF
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Activate Enterprise Key"
msgstr ""
#. js-lingui-id: tu8A/k
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
msgid "Activate Workflow"
msgstr "تفعيل سير العمل"
#. js-lingui-id: jSZacs
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Activating..."
msgstr ""
#. js-lingui-id: F6pfE9
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/domains/components/SettingsWorkspaceDomainCard.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Active"
@@ -806,6 +820,13 @@ msgstr "أضف \"{trimmedName}\" إلى الخيارات"
msgid "Add a {objectLabelSingular}"
msgstr "أضف {objectLabelSingular}"
#. js-lingui-id: 7W8nJr
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
msgid "Add a Group"
msgstr ""
#. js-lingui-id: CZDwqQ
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
@@ -818,16 +839,10 @@ msgid "Add a node"
msgstr "إضافة عقدة"
#. js-lingui-id: nGv1DN
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Add a record"
msgstr ""
#. js-lingui-id: r8W+9y
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
msgid "Add a Section"
msgstr ""
#. js-lingui-id: eMc2xs
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
msgid "Add a step"
@@ -1429,7 +1444,7 @@ msgid "All set!"
msgstr "كل شيء جاهز!"
#. js-lingui-id: CHvT6e
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectFlow.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
@@ -1574,6 +1589,7 @@ msgstr "حدث خطأ أثناء تحميل الصورة."
#. js-lingui-id: XyOToQ
#: src/utils/get-error-message-from-apollo-error.util.ts
#: src/utils/get-error-message-from-apollo-error.util.ts
#: src/modules/views/hooks/internal/usePerformViewSortAPIPersist.ts
#: src/modules/views/hooks/internal/usePerformViewGroupAPIPersist.ts
#: src/modules/views/hooks/internal/usePerformViewFilterAPIPersist.ts
@@ -1664,6 +1680,7 @@ msgstr "واجهة برمجة التطبيقات"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "API & Webhooks"
msgstr "واجهة برمجة التطبيقات والويب هوك"
@@ -1940,6 +1957,7 @@ msgstr "تصاعدي"
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Ask AI"
msgstr "اسأل الذكاء الاصطناعي"
@@ -2078,6 +2096,11 @@ msgstr ""
msgid "Attachments"
msgstr "المرفقات"
#. js-lingui-id: y2W2Hg
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Audit logs"
msgstr ""
#. js-lingui-id: EPEFrH
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
@@ -2306,6 +2329,11 @@ msgstr "بين {startOrdinal} و {endOrdinal} من الشهر"
msgid "Billing"
msgstr "الفوترة"
#. js-lingui-id: dSjFxR
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Billing history"
msgstr ""
#. js-lingui-id: nJGwRf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Billing interval"
@@ -2563,6 +2591,7 @@ msgid "Cancel metered tier switching?"
msgstr "إلغاء تبديل الطبقة المقاسة؟"
#. js-lingui-id: rRK/Lf
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel Plan"
msgstr "إلغاء الخطة"
@@ -2578,10 +2607,26 @@ msgid "Cancel plan switching?"
msgstr "إلغاء تبديل الخطة؟"
#. js-lingui-id: N6gPiD
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel your subscription"
msgstr "إلغاء الاشتراك"
#. js-lingui-id: GGWsTU
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Canceled"
msgstr ""
#. js-lingui-id: y4uH7j
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Cancelling"
msgstr ""
#. js-lingui-id: WbPx+C
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Cancels on"
msgstr ""
#. js-lingui-id: XDbjjW
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Cannot delete the only view"
@@ -3077,11 +3122,6 @@ msgstr ""
msgid "Configure fallback login methods for users with SSO bypass permissions"
msgstr "تكوين طرق تسجيل دخول احتياطية للمستخدمين الذين لديهم صلاحيات تجاوز SSO"
#. js-lingui-id: c7wznw
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
msgid "Configure filters"
msgstr "تكوين الفلاتر"
#. js-lingui-id: ghdb7+
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
msgid "Configure how we should display your events in your calendar"
@@ -3279,6 +3319,7 @@ msgstr ""
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
msgid "Continue"
msgstr "استمر"
@@ -3438,6 +3479,21 @@ msgstr "التكلفة لكل 1k من الإعتمادات الإضافية"
msgid "Could not delete approved access domain"
msgstr "تعذر حذف نطاق الوصول الموافق عليه"
#. js-lingui-id: KqYYBp
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not open billing portal. Please check your enterprise key is present, or contact support."
msgstr ""
#. js-lingui-id: ZuI4Sl
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Could not open Stripe. Please contact support."
msgstr ""
#. js-lingui-id: wVw4Am
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not refresh validity token. Please contact support."
msgstr ""
#. js-lingui-id: s8lFtq
#: src/hooks/useCopyToClipboard.tsx
msgid "Couldn't copy to clipboard"
@@ -3815,6 +3871,7 @@ msgstr "النطاق المخصص محدث"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Custom objects"
msgstr "كائنات مخصصة"
@@ -4917,6 +4974,8 @@ msgid "Edit own profile information"
msgstr ""
#. js-lingui-id: h2KoTu
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Edit payment method, see your invoices and more"
msgstr "تعديل طريقة الدفع، ومشاهدة الفواتير والمزيد"
@@ -5216,6 +5275,11 @@ msgstr "يعزز الأمان من خلال طلب رمز مع كلمة المر
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr "استمتع بفترة تجربة مجانية لمدة {withCreditCardTrialPeriodDuration} أيام"
#. js-lingui-id: 6iUnle
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Enjoy a 30-day free trial"
msgstr ""
#. js-lingui-id: T/N+2Z
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormRawJsonFieldInput.tsx
@@ -5422,6 +5486,9 @@ msgstr "أدخل مفتاح API الخاص بك"
#. js-lingui-id: GpB8YV
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
msgid "Enterprise"
msgstr "مؤسسة"
@@ -5430,6 +5497,22 @@ msgstr "مؤسسة"
msgid "Enterprise Feature"
msgstr ""
#. js-lingui-id: S5c4pl
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Enterprise License"
msgstr ""
#. js-lingui-id: KGE5g0
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Enterprise license activated successfully"
msgstr ""
#. js-lingui-id: SLuq/l
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Entity ID"
@@ -5470,6 +5553,11 @@ msgstr "محو السجلات المحذوفة مؤقتًا"
msgid "Error"
msgstr "خطأ"
#. js-lingui-id: VouTsQ
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error activating enterprise license"
msgstr ""
#. js-lingui-id: GHKxvg
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error deleting api key."
@@ -5495,11 +5583,6 @@ msgstr "خطأ في حذف موفر هوية الدخول الأحادي SSO"
msgid "Error editing SSO Identity Provider"
msgstr "خطأ في تحرير موفر هوية الدخول الأحادي SSO"
#. js-lingui-id: GsIfmO
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerMetricsGraph.tsx
msgid "Error fetching worker metrics: {errorMessage}"
msgstr "خطأ في جلب مقاييس العامل: {errorMessage}"
#. js-lingui-id: GdBN5t
#: src/modules/error-handler/components/AppRootErrorFallback.tsx
msgid "Error illustration"
@@ -5530,11 +5613,26 @@ msgstr "خطأ في تحميل الرسالة"
msgid "Error Message"
msgstr "رسالة الخطأ"
#. js-lingui-id: Mox63G
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error opening billing portal"
msgstr ""
#. js-lingui-id: e/eieW
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Error opening Stripe"
msgstr ""
#. js-lingui-id: bT/0cM
#: src/modules/ui/field/display/components/PhonesDisplay.tsx
msgid "Error parsing additional phones: {error}"
msgstr "خطأ في تحليل أرقام الهواتف الإضافية: {error}"
#. js-lingui-id: zRXcyv
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error refreshing validity token. Please contact support."
msgstr ""
#. js-lingui-id: PfAip2
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error regenerating api key."
@@ -5997,6 +6095,11 @@ msgstr ""
msgid "Failed to {translatedOperationType} {translatedMetadataName}. Related {relatedEntityNames} validation failed. Please check your configuration and try again."
msgstr ""
#. js-lingui-id: R1XJV1
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Failed to activate enterprise license. Please check your key or contact support."
msgstr ""
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to activate skill"
@@ -6374,7 +6477,6 @@ msgstr ""
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/views/components/ViewBarFilterButton.tsx
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
#: src/modules/settings/roles/components/SettingsRolesList.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
@@ -6397,6 +6499,7 @@ msgid "Filter group rule options"
msgstr "خيارات قواعد مجموعة التصفية"
#. js-lingui-id: cSev+j
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
msgid "Filters"
msgstr "الفلاتر"
@@ -6467,6 +6570,11 @@ msgstr "الاسم الأول"
msgid "First name can not be empty"
msgstr "لا يمكن أن يكون الاسم الأول فارغًا"
#. js-lingui-id: JREYkg
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Fix the payment issue to keep your enterprise features active."
msgstr ""
#. js-lingui-id: ylQd2j
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
@@ -6486,7 +6594,7 @@ msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
msgid "Folders"
msgstr "مجلدات"
@@ -6635,6 +6743,22 @@ msgstr "الملفات المُولَّدة"
msgid "German"
msgstr "الألمانية"
#. js-lingui-id: sqtljx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Get Enterprise"
msgstr ""
#. js-lingui-id: o2kSwB
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Get Enterprise Key"
msgstr ""
#. js-lingui-id: NXEW3h
#: src/pages/onboarding/InviteTeam.tsx
msgid "Get the most out of your workspace by inviting your team."
@@ -6655,6 +6779,12 @@ msgstr "عالمي"
msgid "Go Back"
msgstr ""
#. js-lingui-id: Hb4Cgz
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Go to billing portal"
msgstr ""
#. js-lingui-id: mUbv8L
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
msgid "Go to Companies"
@@ -7240,6 +7370,11 @@ msgstr ""
msgid "Inbox"
msgstr "صندوق الوارد"
#. js-lingui-id: mtGDyy
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Incomplete"
msgstr ""
#. js-lingui-id: O5wNUa
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "index"
@@ -7882,9 +8017,8 @@ msgid "Launch manually"
msgstr "التشغيل يدويًا"
#. js-lingui-id: rdU729
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsLayout.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -7957,6 +8091,12 @@ msgstr ""
msgid "Less than or equal"
msgstr "أقل من أو يساوي"
#. js-lingui-id: 3qg5Ro
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Licensee"
msgstr ""
#. js-lingui-id: 1njn7W
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownThemesComponents.tsx
@@ -8260,6 +8400,8 @@ msgid "Manage billing and subscriptions"
msgstr "إدارة الفوترة والاشتراكات"
#. js-lingui-id: nvgUPq
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Manage billing information"
msgstr "إدارة معلومات الفوترة"
@@ -8612,6 +8754,11 @@ msgstr "شهر من السنة"
msgid "monthly"
msgstr "شهري"
#. js-lingui-id: Sew/cK
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Monthly subscription"
msgstr ""
#. js-lingui-id: 6jefe3
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
@@ -8673,7 +8820,7 @@ msgid "Move right"
msgstr "نقل إلى اليمين"
#. js-lingui-id: 6qDVmw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Move to a folder"
msgstr ""
@@ -9274,13 +9421,13 @@ msgid "No Files"
msgstr "لا توجد ملفات"
#. js-lingui-id: pYblOw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
msgid "No folder"
msgstr "لا يوجد مجلد"
#. js-lingui-id: 6XMhqL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folders available"
msgstr ""
@@ -9454,8 +9601,8 @@ msgstr "لا توجد نتائج"
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/side-panel/components/SidePanelList.tsx
msgid "No results found"
msgstr "لم يتم العثور على نتائج"
@@ -10188,11 +10335,26 @@ msgstr "تم إرسال رابط إعادة تعيين كلمة السر إلى
msgid "Paste the code below"
msgstr "الصق الرمز أدناه"
#. js-lingui-id: raz2Pm
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Paste your enterprise key below to activate"
msgstr ""
#. js-lingui-id: dNdgvF
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Paste your enterprise key here"
msgstr ""
#. js-lingui-id: I6gXOa
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "Path"
msgstr "مسار"
#. js-lingui-id: QmXBEc
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Payment issue"
msgstr ""
#. js-lingui-id: UbRKMZ
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
#: src/modules/settings/security/components/approvedAccessDomains/SettingsApprovedAccessDomainsListCard.tsx
@@ -10329,13 +10491,13 @@ msgid "Pick a {objectLabel} record"
msgstr "اختر سجل {objectLabel}"
#. js-lingui-id: JqqNlC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Pick a view"
msgstr ""
#. js-lingui-id: Wlba2h
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Pick an object"
msgstr ""
@@ -10953,6 +11115,16 @@ msgstr "\\\\"
msgid "Reload"
msgstr "إعادة تحميل"
#. js-lingui-id: qbM5In
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Reload validity token"
msgstr ""
#. js-lingui-id: MZWnSC
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Reloading..."
msgstr ""
#. js-lingui-id: qlAIQ1
#: src/modules/object-metadata/components/RemoteNavigationDrawerSection.tsx
msgid "Remote"
@@ -11228,7 +11400,7 @@ msgstr "النتيجة"
#. js-lingui-id: kx0s+n
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Results"
msgstr "\\\\"
@@ -11367,6 +11539,11 @@ msgstr ""
msgid "row level permission predicate group"
msgstr ""
#. js-lingui-id: xPaeO2
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Row-level security"
msgstr ""
#. js-lingui-id: 7jTlsu
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Ruby"
@@ -11485,6 +11662,8 @@ msgstr ""
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Search"
msgstr "\\\\"
@@ -11521,7 +11700,7 @@ msgid "Search a field..."
msgstr "ابحث عن حقل..."
#. js-lingui-id: ITQFzL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Search a folder..."
msgstr ""
@@ -11689,7 +11868,7 @@ msgid "Search records"
msgstr "\\\\"
#. js-lingui-id: rRklUH
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Search records..."
msgstr ""
@@ -11724,11 +11903,13 @@ msgid "Searching the web for {query}"
msgstr ""
#. js-lingui-id: 8sgZS9
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month"
msgstr "مقعد / شهر"
#. js-lingui-id: aQnWwf
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month - billed yearly"
msgstr "مقعد / شهر - مدفوع سنويًا"
@@ -12556,6 +12737,7 @@ msgstr "التسجيل الموحد"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "SSO (SAML / OIDC)"
msgstr "تسجيل الدخول الأحادي (SAML / OIDC)"
@@ -12600,6 +12782,16 @@ msgstr ""
msgid "Start"
msgstr "ابدأ"
#. js-lingui-id: ASqWQi
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Start a new enterprise subscription to re-enable enterprise features."
msgstr ""
#. js-lingui-id: OC6rnK
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Start a new enterprise subscription."
msgstr ""
#. js-lingui-id: D3iCkb
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
msgid "Start Date"
@@ -12625,6 +12817,11 @@ msgid "State"
msgstr "الولاية"
#. js-lingui-id: uAQUqI
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
@@ -12920,11 +13117,11 @@ msgstr ""
#. js-lingui-id: 0apULK
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -13227,6 +13424,11 @@ msgstr "هناك أعمدة مطلوبة لم يتم مطابقتها أو تج
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
msgstr "لا تزال هناك بعض الصفوف التي تحتوي على أخطاء. سيتم تجاهل الصفوف التي تحتوي على أخطاء عند الإرسال."
#. js-lingui-id: CA9PTn
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "There is a payment issue with your subscription. Please update your payment method."
msgstr ""
#. js-lingui-id: WQk7Cf
#: src/modules/activities/timeline-activities/components/TimelineCard.tsx
msgid "There is no activity associated with this record."
@@ -13339,9 +13541,9 @@ msgstr ""
msgid "This database value overrides environment settings. "
msgstr "هذه القيمة في قاعدة البيانات تتخطى إعدادات البيئة."
#. js-lingui-id: qHAJQ2
#. js-lingui-id: 8IRnd6
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "This feature is part of the Organization Plan"
msgid "This feature is part of the Enterprise Plan"
msgstr ""
#. js-lingui-id: own57K
@@ -13650,6 +13852,8 @@ msgid "Transfer ownership"
msgstr ""
#. js-lingui-id: lhkaAC
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/internal/PlansTags.tsx
msgid "Trial"
msgstr "تجربة"
@@ -13840,7 +14044,7 @@ msgid "Type anything..."
msgstr "اكتب أي شيء..."
#. js-lingui-id: UhqKcC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Type to search records"
msgstr ""
@@ -13998,6 +14202,11 @@ msgstr "جهات اتصال غير محدودة"
msgid "Unlisted"
msgstr "غير مدرج"
#. js-lingui-id: Ep1uUU
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
msgstr ""
#. js-lingui-id: eQMhFX
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "unordered"
@@ -14067,6 +14276,11 @@ msgstr "تحديث"
msgid "Update"
msgstr "تحديث"
#. js-lingui-id: Y69tSP
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Update payment method"
msgstr ""
#. js-lingui-id: 0KAL3W
#: src/modules/side-panel/hooks/useOpenUpdateMultipleRecordsPageInSidePanel.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
@@ -14305,11 +14519,22 @@ msgstr "يتم استخدام قيمة التطبيق الافتراضية. قم
msgid "Using default value. Set a custom value to override."
msgstr "يتم استخدام القيمة الافتراضية. اضبط قيمة مخصصة للتجاوز."
#. js-lingui-id: zzp4XX
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Valid until"
msgstr ""
#. js-lingui-id: Clr4qp
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Validate Data"
msgstr "تحقق من البيانات"
#. js-lingui-id: PWZBIT
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Validity token refreshed successfully"
msgstr ""
#. js-lingui-id: wMHvYH
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/KeyValuePairInput.tsx
@@ -14436,6 +14661,8 @@ msgid "View and filter events, page views, object changes"
msgstr ""
#. js-lingui-id: KANz0G
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "View billing details"
msgstr "عرض تفاصيل الفوترة"
@@ -14485,6 +14712,11 @@ msgstr "مجموعة العرض"
msgid "View installed app"
msgstr ""
#. js-lingui-id: B02hom
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "View invoices"
msgstr ""
#. js-lingui-id: lh5BED
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerQueueMetricsSection.tsx
msgid "View Jobs"
@@ -14503,6 +14735,7 @@ msgstr ""
#. js-lingui-id: ecVcAx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "View Previous AI Chats"
msgstr "عرض الذكاءات الاصطناعية السابقة"
@@ -14850,6 +15083,7 @@ msgstr "سير العمل"
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/domains/SettingsDomains.tsx
@@ -15016,6 +15250,11 @@ msgstr "عام"
msgid "yearly"
msgstr "سنوي"
#. js-lingui-id: Y1GwUe
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Yearly subscription"
msgstr ""
#. js-lingui-id: +BGee5
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
msgid "years"
@@ -15148,6 +15387,36 @@ msgstr "سوف يتم مشاركة مواضيع بريدك واجتماعاتك
msgid "Your emails and events content will be shared with your team."
msgstr "محتوى بريدك وأحداثك سوف يتم مشاركته مع فريقك."
#. js-lingui-id: ahEwS4
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features are active"
msgstr ""
#. js-lingui-id: XMZLU/
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features are active but your enterprise key is missing or invalid. This may be expected, but if not, please set a valid signed enterprise key to manage your subscription, or contact support."
msgstr ""
#. js-lingui-id: AxcwNj
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features will be disabled"
msgstr ""
#. js-lingui-id: PT137K
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features will remain active until {cancelAtDate}."
msgstr ""
#. js-lingui-id: 69Siss
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
msgid "Your enterprise key format is deprecated. Please activate a new key to keep enterprise features."
msgstr ""
#. js-lingui-id: NTpA4U
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise subscription has been canceled."
msgstr ""
#. js-lingui-id: 9ivpwk
#: src/pages/settings/SettingsProfile.tsx
msgid "Your name as it will be displayed"
@@ -15158,6 +15427,26 @@ msgstr "اسمك كما سيتم عرضه"
msgid "Your name as it will be displayed on the app"
msgstr "اسمك كما سيتم عرضه على التطبيق"
#. js-lingui-id: 319YPG
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription is active but your validity token is invalid or has expired. Try reloading it or contact support."
msgstr ""
#. js-lingui-id: Fx0axg
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription is scheduled for cancellation"
msgstr ""
#. js-lingui-id: XgIa/8
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription setup was not completed."
msgstr ""
#. js-lingui-id: Z9kbt6
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription status is: {statusLabel}"
msgstr ""
#. js-lingui-id: QOd24n
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and "
+327 -38
View File
@@ -752,23 +752,37 @@ msgid "Actions users can perform on this object"
msgstr "Accions que poden realitzar els usuaris en aquest objecte"
#. js-lingui-id: FQBaXG
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
#: src/modules/settings/data-model/objects/components/SettingsObjectInactiveMenuDropDown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
msgid "Activate"
msgstr "Activa"
#. js-lingui-id: eqeFkF
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Activate Enterprise Key"
msgstr ""
#. js-lingui-id: tu8A/k
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
msgid "Activate Workflow"
msgstr "Activa el flux de treball"
#. js-lingui-id: jSZacs
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Activating..."
msgstr ""
#. js-lingui-id: F6pfE9
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/domains/components/SettingsWorkspaceDomainCard.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Active"
@@ -806,6 +820,13 @@ msgstr "Afegeix \"{trimmedName}\" a les opcions"
msgid "Add a {objectLabelSingular}"
msgstr "Afegeix un {objectLabelSingular}"
#. js-lingui-id: 7W8nJr
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
msgid "Add a Group"
msgstr ""
#. js-lingui-id: CZDwqQ
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
@@ -818,16 +839,10 @@ msgid "Add a node"
msgstr "Afegeix un node"
#. js-lingui-id: nGv1DN
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Add a record"
msgstr ""
#. js-lingui-id: r8W+9y
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
msgid "Add a Section"
msgstr ""
#. js-lingui-id: eMc2xs
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
msgid "Add a step"
@@ -1429,7 +1444,7 @@ msgid "All set!"
msgstr "Tot a punt!"
#. js-lingui-id: CHvT6e
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectFlow.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
@@ -1574,6 +1589,7 @@ msgstr "S'ha produït un error en carregar la imatge."
#. js-lingui-id: XyOToQ
#: src/utils/get-error-message-from-apollo-error.util.ts
#: src/utils/get-error-message-from-apollo-error.util.ts
#: src/modules/views/hooks/internal/usePerformViewSortAPIPersist.ts
#: src/modules/views/hooks/internal/usePerformViewGroupAPIPersist.ts
#: src/modules/views/hooks/internal/usePerformViewFilterAPIPersist.ts
@@ -1664,6 +1680,7 @@ msgstr "API"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "API & Webhooks"
msgstr "API i Webhooks"
@@ -1940,6 +1957,7 @@ msgstr "Ascendent"
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Ask AI"
msgstr "Pregunta a l'IA"
@@ -2078,6 +2096,11 @@ msgstr ""
msgid "Attachments"
msgstr "Adjunts"
#. js-lingui-id: y2W2Hg
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Audit logs"
msgstr ""
#. js-lingui-id: EPEFrH
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
@@ -2306,6 +2329,11 @@ msgstr "entre el {startOrdinal} i el {endOrdinal} del mes"
msgid "Billing"
msgstr "Facturació"
#. js-lingui-id: dSjFxR
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Billing history"
msgstr ""
#. js-lingui-id: nJGwRf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Billing interval"
@@ -2563,6 +2591,7 @@ msgid "Cancel metered tier switching?"
msgstr "Cancel·lar el canvi de nivell mesurat?"
#. js-lingui-id: rRK/Lf
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel Plan"
msgstr "Cancel·la el pla"
@@ -2578,10 +2607,26 @@ msgid "Cancel plan switching?"
msgstr "Cancel·lar el canvi de pla?"
#. js-lingui-id: N6gPiD
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel your subscription"
msgstr "Cancel·la la subscripció"
#. js-lingui-id: GGWsTU
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Canceled"
msgstr ""
#. js-lingui-id: y4uH7j
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Cancelling"
msgstr ""
#. js-lingui-id: WbPx+C
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Cancels on"
msgstr ""
#. js-lingui-id: XDbjjW
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Cannot delete the only view"
@@ -3077,11 +3122,6 @@ msgstr ""
msgid "Configure fallback login methods for users with SSO bypass permissions"
msgstr "Configura els mètodes de connexió d'emergència per a usuaris amb permisos per saltar SSO"
#. js-lingui-id: c7wznw
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
msgid "Configure filters"
msgstr "Configuració de filtres"
#. js-lingui-id: ghdb7+
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
msgid "Configure how we should display your events in your calendar"
@@ -3279,6 +3319,7 @@ msgstr ""
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
msgid "Continue"
msgstr "Continua"
@@ -3438,6 +3479,21 @@ msgstr "Cost per 1 k Crèdits Extres"
msgid "Could not delete approved access domain"
msgstr "No s'ha pogut eliminar el domini d'accés aprovat"
#. js-lingui-id: KqYYBp
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not open billing portal. Please check your enterprise key is present, or contact support."
msgstr ""
#. js-lingui-id: ZuI4Sl
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Could not open Stripe. Please contact support."
msgstr ""
#. js-lingui-id: wVw4Am
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not refresh validity token. Please contact support."
msgstr ""
#. js-lingui-id: s8lFtq
#: src/hooks/useCopyToClipboard.tsx
msgid "Couldn't copy to clipboard"
@@ -3815,6 +3871,7 @@ msgstr "Domini personalitzat actualitzat"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Custom objects"
msgstr "Objectes personalitzats"
@@ -4917,6 +4974,8 @@ msgid "Edit own profile information"
msgstr ""
#. js-lingui-id: h2KoTu
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Edit payment method, see your invoices and more"
msgstr "Edita el mètode de pagament, veure les factures i més"
@@ -5216,6 +5275,11 @@ msgstr "Millora la seguretat requerint un codi juntament amb la teva contrasenya
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr "Gaudeix d'un període de prova gratuït de {withCreditCardTrialPeriodDuration} dies"
#. js-lingui-id: 6iUnle
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Enjoy a 30-day free trial"
msgstr ""
#. js-lingui-id: T/N+2Z
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormRawJsonFieldInput.tsx
@@ -5422,6 +5486,9 @@ msgstr "Introdueix la teva clau API"
#. js-lingui-id: GpB8YV
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
msgid "Enterprise"
msgstr "Empresa"
@@ -5430,6 +5497,22 @@ msgstr "Empresa"
msgid "Enterprise Feature"
msgstr ""
#. js-lingui-id: S5c4pl
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Enterprise License"
msgstr ""
#. js-lingui-id: KGE5g0
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Enterprise license activated successfully"
msgstr ""
#. js-lingui-id: SLuq/l
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Entity ID"
@@ -5470,6 +5553,11 @@ msgstr "Esborrament de registres eliminats suaument"
msgid "Error"
msgstr "Error"
#. js-lingui-id: VouTsQ
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error activating enterprise license"
msgstr ""
#. js-lingui-id: GHKxvg
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error deleting api key."
@@ -5495,11 +5583,6 @@ msgstr "Error en eliminar el Proveïdor d'Identitats SSO"
msgid "Error editing SSO Identity Provider"
msgstr "Error en editar el Proveïdor d'Identitats SSO"
#. js-lingui-id: GsIfmO
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerMetricsGraph.tsx
msgid "Error fetching worker metrics: {errorMessage}"
msgstr "Error en obtenir les mètriques del worker: {errorMessage}"
#. js-lingui-id: GdBN5t
#: src/modules/error-handler/components/AppRootErrorFallback.tsx
msgid "Error illustration"
@@ -5530,11 +5613,26 @@ msgstr "Error carregant el missatge"
msgid "Error Message"
msgstr "Missatge d'error"
#. js-lingui-id: Mox63G
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error opening billing portal"
msgstr ""
#. js-lingui-id: e/eieW
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Error opening Stripe"
msgstr ""
#. js-lingui-id: bT/0cM
#: src/modules/ui/field/display/components/PhonesDisplay.tsx
msgid "Error parsing additional phones: {error}"
msgstr "Error en analitzar els telèfons addicionals: {error}"
#. js-lingui-id: zRXcyv
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error refreshing validity token. Please contact support."
msgstr ""
#. js-lingui-id: PfAip2
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error regenerating api key."
@@ -5997,6 +6095,11 @@ msgstr ""
msgid "Failed to {translatedOperationType} {translatedMetadataName}. Related {relatedEntityNames} validation failed. Please check your configuration and try again."
msgstr ""
#. js-lingui-id: R1XJV1
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Failed to activate enterprise license. Please check your key or contact support."
msgstr ""
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to activate skill"
@@ -6374,7 +6477,6 @@ msgstr ""
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/views/components/ViewBarFilterButton.tsx
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
#: src/modules/settings/roles/components/SettingsRolesList.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
@@ -6397,6 +6499,7 @@ msgid "Filter group rule options"
msgstr "Opcions de regles del grup de filtres"
#. js-lingui-id: cSev+j
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
msgid "Filters"
msgstr "Filtres"
@@ -6467,6 +6570,11 @@ msgstr "Nom"
msgid "First name can not be empty"
msgstr "El nom no pot estar buit"
#. js-lingui-id: JREYkg
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Fix the payment issue to keep your enterprise features active."
msgstr ""
#. js-lingui-id: ylQd2j
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
@@ -6486,7 +6594,7 @@ msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
msgid "Folders"
msgstr "Carpetes"
@@ -6635,6 +6743,22 @@ msgstr "Fitxers generats"
msgid "German"
msgstr "Alemany"
#. js-lingui-id: sqtljx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Get Enterprise"
msgstr ""
#. js-lingui-id: o2kSwB
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Get Enterprise Key"
msgstr ""
#. js-lingui-id: NXEW3h
#: src/pages/onboarding/InviteTeam.tsx
msgid "Get the most out of your workspace by inviting your team."
@@ -6655,6 +6779,12 @@ msgstr "Global"
msgid "Go Back"
msgstr ""
#. js-lingui-id: Hb4Cgz
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Go to billing portal"
msgstr ""
#. js-lingui-id: mUbv8L
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
msgid "Go to Companies"
@@ -7240,6 +7370,11 @@ msgstr ""
msgid "Inbox"
msgstr "Bústia d'entrada"
#. js-lingui-id: mtGDyy
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Incomplete"
msgstr ""
#. js-lingui-id: O5wNUa
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "index"
@@ -7882,9 +8017,8 @@ msgid "Launch manually"
msgstr "Llança manualment"
#. js-lingui-id: rdU729
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsLayout.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -7957,6 +8091,12 @@ msgstr ""
msgid "Less than or equal"
msgstr "Menor o igual"
#. js-lingui-id: 3qg5Ro
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Licensee"
msgstr ""
#. js-lingui-id: 1njn7W
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownThemesComponents.tsx
@@ -8260,6 +8400,8 @@ msgid "Manage billing and subscriptions"
msgstr "Gestionar facturació i subscripcions"
#. js-lingui-id: nvgUPq
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Manage billing information"
msgstr "Gestiona la informació de facturació"
@@ -8612,6 +8754,11 @@ msgstr "Mes de l'any"
msgid "monthly"
msgstr "mensual"
#. js-lingui-id: Sew/cK
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Monthly subscription"
msgstr ""
#. js-lingui-id: 6jefe3
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
@@ -8673,7 +8820,7 @@ msgid "Move right"
msgstr "Moure a la dreta"
#. js-lingui-id: 6qDVmw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Move to a folder"
msgstr ""
@@ -9274,13 +9421,13 @@ msgid "No Files"
msgstr "Sense fitxers"
#. js-lingui-id: pYblOw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
msgid "No folder"
msgstr "Sense carpeta"
#. js-lingui-id: 6XMhqL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folders available"
msgstr ""
@@ -9454,8 +9601,8 @@ msgstr "Cap resultat"
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/side-panel/components/SidePanelList.tsx
msgid "No results found"
msgstr "No s'han trobat resultats"
@@ -10188,11 +10335,26 @@ msgstr "S'ha enviat l'enllaç de restabliment de la contrasenya al correu electr
msgid "Paste the code below"
msgstr "Enganxa el codi a continuació"
#. js-lingui-id: raz2Pm
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Paste your enterprise key below to activate"
msgstr ""
#. js-lingui-id: dNdgvF
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Paste your enterprise key here"
msgstr ""
#. js-lingui-id: I6gXOa
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "Path"
msgstr "Camí"
#. js-lingui-id: QmXBEc
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Payment issue"
msgstr ""
#. js-lingui-id: UbRKMZ
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
#: src/modules/settings/security/components/approvedAccessDomains/SettingsApprovedAccessDomainsListCard.tsx
@@ -10329,13 +10491,13 @@ msgid "Pick a {objectLabel} record"
msgstr "Tria un registre de {objectLabel}"
#. js-lingui-id: JqqNlC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Pick a view"
msgstr ""
#. js-lingui-id: Wlba2h
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Pick an object"
msgstr ""
@@ -10953,6 +11115,16 @@ msgstr "Versions"
msgid "Reload"
msgstr "Tornar a carregar"
#. js-lingui-id: qbM5In
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Reload validity token"
msgstr ""
#. js-lingui-id: MZWnSC
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Reloading..."
msgstr ""
#. js-lingui-id: qlAIQ1
#: src/modules/object-metadata/components/RemoteNavigationDrawerSection.tsx
msgid "Remote"
@@ -11228,7 +11400,7 @@ msgstr "Resultat"
#. js-lingui-id: kx0s+n
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Results"
msgstr "Resultats"
@@ -11367,6 +11539,11 @@ msgstr ""
msgid "row level permission predicate group"
msgstr ""
#. js-lingui-id: xPaeO2
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Row-level security"
msgstr ""
#. js-lingui-id: 7jTlsu
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Ruby"
@@ -11485,6 +11662,8 @@ msgstr ""
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Search"
msgstr "Cerca"
@@ -11521,7 +11700,7 @@ msgid "Search a field..."
msgstr "Cerca un camp..."
#. js-lingui-id: ITQFzL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Search a folder..."
msgstr ""
@@ -11689,7 +11868,7 @@ msgid "Search records"
msgstr "Cerca enregistraments"
#. js-lingui-id: rRklUH
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Search records..."
msgstr ""
@@ -11724,11 +11903,13 @@ msgid "Searching the web for {query}"
msgstr ""
#. js-lingui-id: 8sgZS9
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month"
msgstr ""
#. js-lingui-id: aQnWwf
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month - billed yearly"
msgstr ""
@@ -12556,6 +12737,7 @@ msgstr "SSO"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
@@ -12600,6 +12782,16 @@ msgstr ""
msgid "Start"
msgstr "Comença"
#. js-lingui-id: ASqWQi
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Start a new enterprise subscription to re-enable enterprise features."
msgstr ""
#. js-lingui-id: OC6rnK
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Start a new enterprise subscription."
msgstr ""
#. js-lingui-id: D3iCkb
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
msgid "Start Date"
@@ -12625,6 +12817,11 @@ msgid "State"
msgstr "Estat"
#. js-lingui-id: uAQUqI
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
@@ -12920,11 +13117,11 @@ msgstr ""
#. js-lingui-id: 0apULK
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -13227,6 +13424,11 @@ msgstr "Hi ha columnes requerides que no coincideixen o s'han ignorat. Vols cont
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
msgstr "Encara hi ha files que contenen errors. Les files amb errors s'ignoraran en enviar."
#. js-lingui-id: CA9PTn
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "There is a payment issue with your subscription. Please update your payment method."
msgstr ""
#. js-lingui-id: WQk7Cf
#: src/modules/activities/timeline-activities/components/TimelineCard.tsx
msgid "There is no activity associated with this record."
@@ -13339,9 +13541,9 @@ msgstr ""
msgid "This database value overrides environment settings. "
msgstr "Aquest valor de la base de dades supera la configuració de l'entorn."
#. js-lingui-id: qHAJQ2
#. js-lingui-id: 8IRnd6
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "This feature is part of the Organization Plan"
msgid "This feature is part of the Enterprise Plan"
msgstr ""
#. js-lingui-id: own57K
@@ -13650,6 +13852,8 @@ msgid "Transfer ownership"
msgstr ""
#. js-lingui-id: lhkaAC
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/internal/PlansTags.tsx
msgid "Trial"
msgstr "Prova"
@@ -13840,7 +14044,7 @@ msgid "Type anything..."
msgstr "Teclegeu qualsevol cosa..."
#. js-lingui-id: UhqKcC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Type to search records"
msgstr ""
@@ -13998,6 +14202,11 @@ msgstr "Contactes il·limitats"
msgid "Unlisted"
msgstr "No Llistat"
#. js-lingui-id: Ep1uUU
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
msgstr ""
#. js-lingui-id: eQMhFX
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "unordered"
@@ -14067,6 +14276,11 @@ msgstr "actualitza"
msgid "Update"
msgstr "Actualitza"
#. js-lingui-id: Y69tSP
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Update payment method"
msgstr ""
#. js-lingui-id: 0KAL3W
#: src/modules/side-panel/hooks/useOpenUpdateMultipleRecordsPageInSidePanel.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
@@ -14305,11 +14519,22 @@ msgstr "Utilitzant valor predeterminat de l'aplicació. Configureu mitjançant v
msgid "Using default value. Set a custom value to override."
msgstr "Utilitzant valor per defecte. Establiu un valor personalitzat per superar-lo."
#. js-lingui-id: zzp4XX
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Valid until"
msgstr ""
#. js-lingui-id: Clr4qp
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Validate Data"
msgstr "Verifica les dades"
#. js-lingui-id: PWZBIT
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Validity token refreshed successfully"
msgstr ""
#. js-lingui-id: wMHvYH
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/KeyValuePairInput.tsx
@@ -14436,6 +14661,8 @@ msgid "View and filter events, page views, object changes"
msgstr ""
#. js-lingui-id: KANz0G
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "View billing details"
msgstr "Veure els detalls de facturació"
@@ -14485,6 +14712,11 @@ msgstr "grup de vista"
msgid "View installed app"
msgstr ""
#. js-lingui-id: B02hom
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "View invoices"
msgstr ""
#. js-lingui-id: lh5BED
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerQueueMetricsSection.tsx
msgid "View Jobs"
@@ -14503,6 +14735,7 @@ msgstr ""
#. js-lingui-id: ecVcAx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "View Previous AI Chats"
msgstr "Veure els xats d'IA anteriors"
@@ -14852,6 +15085,7 @@ msgstr "Fluxos de treball"
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/domains/SettingsDomains.tsx
@@ -15018,6 +15252,11 @@ msgstr "Any"
msgid "yearly"
msgstr "anual"
#. js-lingui-id: Y1GwUe
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Yearly subscription"
msgstr ""
#. js-lingui-id: +BGee5
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
msgid "years"
@@ -15150,6 +15389,36 @@ msgstr "Els teus assumptes de correus electrònics i títols de reunions seran c
msgid "Your emails and events content will be shared with your team."
msgstr "El contingut dels teus correus electrònics i esdeveniments seran compartits amb el teu equip."
#. js-lingui-id: ahEwS4
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features are active"
msgstr ""
#. js-lingui-id: XMZLU/
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features are active but your enterprise key is missing or invalid. This may be expected, but if not, please set a valid signed enterprise key to manage your subscription, or contact support."
msgstr ""
#. js-lingui-id: AxcwNj
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features will be disabled"
msgstr ""
#. js-lingui-id: PT137K
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features will remain active until {cancelAtDate}."
msgstr ""
#. js-lingui-id: 69Siss
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
msgid "Your enterprise key format is deprecated. Please activate a new key to keep enterprise features."
msgstr ""
#. js-lingui-id: NTpA4U
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise subscription has been canceled."
msgstr ""
#. js-lingui-id: 9ivpwk
#: src/pages/settings/SettingsProfile.tsx
msgid "Your name as it will be displayed"
@@ -15160,6 +15429,26 @@ msgstr "El vostre nom tal com serà mostrat"
msgid "Your name as it will be displayed on the app"
msgstr "El vostre nom tal com serà mostrat a l'aplicació"
#. js-lingui-id: 319YPG
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription is active but your validity token is invalid or has expired. Try reloading it or contact support."
msgstr ""
#. js-lingui-id: Fx0axg
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription is scheduled for cancellation"
msgstr ""
#. js-lingui-id: XgIa/8
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription setup was not completed."
msgstr ""
#. js-lingui-id: Z9kbt6
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription status is: {statusLabel}"
msgstr ""
#. js-lingui-id: QOd24n
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and "
+327 -38
View File
@@ -752,23 +752,37 @@ msgid "Actions users can perform on this object"
msgstr "Akce, které uživatelé mohou provádět na tomto objektu"
#. js-lingui-id: FQBaXG
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
#: src/modules/settings/data-model/objects/components/SettingsObjectInactiveMenuDropDown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
msgid "Activate"
msgstr "Aktivovat"
#. js-lingui-id: eqeFkF
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Activate Enterprise Key"
msgstr ""
#. js-lingui-id: tu8A/k
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
msgid "Activate Workflow"
msgstr "Aktivovat Workflow"
#. js-lingui-id: jSZacs
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Activating..."
msgstr ""
#. js-lingui-id: F6pfE9
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/domains/components/SettingsWorkspaceDomainCard.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Active"
@@ -806,6 +820,13 @@ msgstr "Přidat \"{trimmedName}\" do možností"
msgid "Add a {objectLabelSingular}"
msgstr "Přidat {objectLabelSingular}"
#. js-lingui-id: 7W8nJr
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
msgid "Add a Group"
msgstr ""
#. js-lingui-id: CZDwqQ
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
@@ -818,16 +839,10 @@ msgid "Add a node"
msgstr "Přidat uzel"
#. js-lingui-id: nGv1DN
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Add a record"
msgstr ""
#. js-lingui-id: r8W+9y
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
msgid "Add a Section"
msgstr ""
#. js-lingui-id: eMc2xs
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
msgid "Add a step"
@@ -1429,7 +1444,7 @@ msgid "All set!"
msgstr "Vše hotovo!"
#. js-lingui-id: CHvT6e
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectFlow.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
@@ -1574,6 +1589,7 @@ msgstr "Při nahrávání obrázku došlo k chybě."
#. js-lingui-id: XyOToQ
#: src/utils/get-error-message-from-apollo-error.util.ts
#: src/utils/get-error-message-from-apollo-error.util.ts
#: src/modules/views/hooks/internal/usePerformViewSortAPIPersist.ts
#: src/modules/views/hooks/internal/usePerformViewGroupAPIPersist.ts
#: src/modules/views/hooks/internal/usePerformViewFilterAPIPersist.ts
@@ -1664,6 +1680,7 @@ msgstr "API"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "API & Webhooks"
msgstr "API & Webhooks"
@@ -1940,6 +1957,7 @@ msgstr "Vzestupně"
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Ask AI"
msgstr "Zeptejte se AI"
@@ -2078,6 +2096,11 @@ msgstr ""
msgid "Attachments"
msgstr "Přílohy"
#. js-lingui-id: y2W2Hg
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Audit logs"
msgstr ""
#. js-lingui-id: EPEFrH
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
@@ -2306,6 +2329,11 @@ msgstr "mezi {startOrdinal} a {endOrdinal} měsíce"
msgid "Billing"
msgstr "Fakturace"
#. js-lingui-id: dSjFxR
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Billing history"
msgstr ""
#. js-lingui-id: nJGwRf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Billing interval"
@@ -2563,6 +2591,7 @@ msgid "Cancel metered tier switching?"
msgstr "Zrušit přepínání úrovně s měřením?"
#. js-lingui-id: rRK/Lf
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel Plan"
msgstr "Zrušit plán"
@@ -2578,10 +2607,26 @@ msgid "Cancel plan switching?"
msgstr "Zrušit změnu plánu?"
#. js-lingui-id: N6gPiD
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel your subscription"
msgstr "Zrušit vaše předplatné"
#. js-lingui-id: GGWsTU
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Canceled"
msgstr ""
#. js-lingui-id: y4uH7j
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Cancelling"
msgstr ""
#. js-lingui-id: WbPx+C
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Cancels on"
msgstr ""
#. js-lingui-id: XDbjjW
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Cannot delete the only view"
@@ -3077,11 +3122,6 @@ msgstr ""
msgid "Configure fallback login methods for users with SSO bypass permissions"
msgstr "Nakonfigurujte alternativní metody přihlášení pro uživatele s oprávněními k obejití SSO"
#. js-lingui-id: c7wznw
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
msgid "Configure filters"
msgstr "Nastavit filtry"
#. js-lingui-id: ghdb7+
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
msgid "Configure how we should display your events in your calendar"
@@ -3279,6 +3319,7 @@ msgstr ""
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
msgid "Continue"
msgstr "Pokračovat"
@@ -3438,6 +3479,21 @@ msgstr "Cena za 1k dalších kreditů"
msgid "Could not delete approved access domain"
msgstr "Nelze odstranit schválenou přístupovou doménu"
#. js-lingui-id: KqYYBp
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not open billing portal. Please check your enterprise key is present, or contact support."
msgstr ""
#. js-lingui-id: ZuI4Sl
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Could not open Stripe. Please contact support."
msgstr ""
#. js-lingui-id: wVw4Am
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not refresh validity token. Please contact support."
msgstr ""
#. js-lingui-id: s8lFtq
#: src/hooks/useCopyToClipboard.tsx
msgid "Couldn't copy to clipboard"
@@ -3815,6 +3871,7 @@ msgstr "Vlastní doména aktualizována"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Custom objects"
msgstr "Vlastní objekty"
@@ -4917,6 +4974,8 @@ msgid "Edit own profile information"
msgstr ""
#. js-lingui-id: h2KoTu
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Edit payment method, see your invoices and more"
msgstr "Upravit způsob platby, zobrazit faktury a další"
@@ -5216,6 +5275,11 @@ msgstr "Zvyšuje bezpečnost tím, že vyžaduje kód společně s vaším hesle
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr "Užijte si {withCreditCardTrialPeriodDuration}-denní bezplatnou zkušební dobu"
#. js-lingui-id: 6iUnle
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Enjoy a 30-day free trial"
msgstr ""
#. js-lingui-id: T/N+2Z
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormRawJsonFieldInput.tsx
@@ -5422,6 +5486,9 @@ msgstr "Zadejte svůj klíč API"
#. js-lingui-id: GpB8YV
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
msgid "Enterprise"
msgstr "Podnik"
@@ -5430,6 +5497,22 @@ msgstr "Podnik"
msgid "Enterprise Feature"
msgstr ""
#. js-lingui-id: S5c4pl
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Enterprise License"
msgstr ""
#. js-lingui-id: KGE5g0
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Enterprise license activated successfully"
msgstr ""
#. js-lingui-id: SLuq/l
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Entity ID"
@@ -5470,6 +5553,11 @@ msgstr "Vymazání soft-deleted záznamů"
msgid "Error"
msgstr "Chyba"
#. js-lingui-id: VouTsQ
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error activating enterprise license"
msgstr ""
#. js-lingui-id: GHKxvg
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error deleting api key."
@@ -5495,11 +5583,6 @@ msgstr "Chyba při mazání poskytovatele identity SSO"
msgid "Error editing SSO Identity Provider"
msgstr "Chyba při úpravě poskytovatele identity SSO"
#. js-lingui-id: GsIfmO
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerMetricsGraph.tsx
msgid "Error fetching worker metrics: {errorMessage}"
msgstr "Chyba při získávání metrik pracovníka: {errorMessage}"
#. js-lingui-id: GdBN5t
#: src/modules/error-handler/components/AppRootErrorFallback.tsx
msgid "Error illustration"
@@ -5530,11 +5613,26 @@ msgstr "Chyba při načítání zprávy"
msgid "Error Message"
msgstr "Chybová zpráva"
#. js-lingui-id: Mox63G
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error opening billing portal"
msgstr ""
#. js-lingui-id: e/eieW
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Error opening Stripe"
msgstr ""
#. js-lingui-id: bT/0cM
#: src/modules/ui/field/display/components/PhonesDisplay.tsx
msgid "Error parsing additional phones: {error}"
msgstr "Chyba při zpracování dalších telefonů: {error}"
#. js-lingui-id: zRXcyv
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error refreshing validity token. Please contact support."
msgstr ""
#. js-lingui-id: PfAip2
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error regenerating api key."
@@ -5997,6 +6095,11 @@ msgstr ""
msgid "Failed to {translatedOperationType} {translatedMetadataName}. Related {relatedEntityNames} validation failed. Please check your configuration and try again."
msgstr ""
#. js-lingui-id: R1XJV1
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Failed to activate enterprise license. Please check your key or contact support."
msgstr ""
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to activate skill"
@@ -6374,7 +6477,6 @@ msgstr ""
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/views/components/ViewBarFilterButton.tsx
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
#: src/modules/settings/roles/components/SettingsRolesList.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
@@ -6397,6 +6499,7 @@ msgid "Filter group rule options"
msgstr "Možnosti pravidel skupiny filtru"
#. js-lingui-id: cSev+j
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
msgid "Filters"
msgstr "Filtry"
@@ -6467,6 +6570,11 @@ msgstr "Jméno"
msgid "First name can not be empty"
msgstr "Křestní jméno nesmí být prázdné"
#. js-lingui-id: JREYkg
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Fix the payment issue to keep your enterprise features active."
msgstr ""
#. js-lingui-id: ylQd2j
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
@@ -6486,7 +6594,7 @@ msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
msgid "Folders"
msgstr "Složky"
@@ -6635,6 +6743,22 @@ msgstr "Vygenerované soubory"
msgid "German"
msgstr "Němčina"
#. js-lingui-id: sqtljx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Get Enterprise"
msgstr ""
#. js-lingui-id: o2kSwB
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Get Enterprise Key"
msgstr ""
#. js-lingui-id: NXEW3h
#: src/pages/onboarding/InviteTeam.tsx
msgid "Get the most out of your workspace by inviting your team."
@@ -6655,6 +6779,12 @@ msgstr "Globální"
msgid "Go Back"
msgstr ""
#. js-lingui-id: Hb4Cgz
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Go to billing portal"
msgstr ""
#. js-lingui-id: mUbv8L
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
msgid "Go to Companies"
@@ -7240,6 +7370,11 @@ msgstr ""
msgid "Inbox"
msgstr "Schránka"
#. js-lingui-id: mtGDyy
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Incomplete"
msgstr ""
#. js-lingui-id: O5wNUa
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "index"
@@ -7882,9 +8017,8 @@ msgid "Launch manually"
msgstr "Spustit ručně"
#. js-lingui-id: rdU729
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsLayout.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -7957,6 +8091,12 @@ msgstr ""
msgid "Less than or equal"
msgstr "Menší nebo rovno"
#. js-lingui-id: 3qg5Ro
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Licensee"
msgstr ""
#. js-lingui-id: 1njn7W
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownThemesComponents.tsx
@@ -8260,6 +8400,8 @@ msgid "Manage billing and subscriptions"
msgstr "Správa fakturace a předplatného"
#. js-lingui-id: nvgUPq
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Manage billing information"
msgstr "Správa fakturačních údajů"
@@ -8612,6 +8754,11 @@ msgstr "Měsíc v roce"
msgid "monthly"
msgstr "měsíční"
#. js-lingui-id: Sew/cK
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Monthly subscription"
msgstr ""
#. js-lingui-id: 6jefe3
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
@@ -8673,7 +8820,7 @@ msgid "Move right"
msgstr "Posunout doprava"
#. js-lingui-id: 6qDVmw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Move to a folder"
msgstr ""
@@ -9274,13 +9421,13 @@ msgid "No Files"
msgstr "Žádné soubory"
#. js-lingui-id: pYblOw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
msgid "No folder"
msgstr "Žádná složka"
#. js-lingui-id: 6XMhqL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folders available"
msgstr ""
@@ -9454,8 +9601,8 @@ msgstr "Žádné výsledky"
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/side-panel/components/SidePanelList.tsx
msgid "No results found"
msgstr "Nenalezeny žádné výsledky"
@@ -10188,11 +10335,26 @@ msgstr "Odkaz pro resetování hesla byl odeslán na email"
msgid "Paste the code below"
msgstr "Vložte kód níže"
#. js-lingui-id: raz2Pm
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Paste your enterprise key below to activate"
msgstr ""
#. js-lingui-id: dNdgvF
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Paste your enterprise key here"
msgstr ""
#. js-lingui-id: I6gXOa
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "Path"
msgstr "Cesta"
#. js-lingui-id: QmXBEc
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Payment issue"
msgstr ""
#. js-lingui-id: UbRKMZ
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
#: src/modules/settings/security/components/approvedAccessDomains/SettingsApprovedAccessDomainsListCard.tsx
@@ -10329,13 +10491,13 @@ msgid "Pick a {objectLabel} record"
msgstr "Vyberte záznam {objectLabel}"
#. js-lingui-id: JqqNlC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Pick a view"
msgstr ""
#. js-lingui-id: Wlba2h
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Pick an object"
msgstr ""
@@ -10953,6 +11115,16 @@ msgstr "Verze"
msgid "Reload"
msgstr "Načíst znovu"
#. js-lingui-id: qbM5In
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Reload validity token"
msgstr ""
#. js-lingui-id: MZWnSC
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Reloading..."
msgstr ""
#. js-lingui-id: qlAIQ1
#: src/modules/object-metadata/components/RemoteNavigationDrawerSection.tsx
msgid "Remote"
@@ -11228,7 +11400,7 @@ msgstr "Výsledek"
#. js-lingui-id: kx0s+n
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Results"
msgstr "Výsledky"
@@ -11367,6 +11539,11 @@ msgstr ""
msgid "row level permission predicate group"
msgstr ""
#. js-lingui-id: xPaeO2
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Row-level security"
msgstr ""
#. js-lingui-id: 7jTlsu
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Ruby"
@@ -11485,6 +11662,8 @@ msgstr ""
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Search"
msgstr "Hledat"
@@ -11521,7 +11700,7 @@ msgid "Search a field..."
msgstr "Hledat ve sloupci..."
#. js-lingui-id: ITQFzL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Search a folder..."
msgstr ""
@@ -11689,7 +11868,7 @@ msgid "Search records"
msgstr "Hledání záznamů"
#. js-lingui-id: rRklUH
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Search records..."
msgstr ""
@@ -11724,11 +11903,13 @@ msgid "Searching the web for {query}"
msgstr ""
#. js-lingui-id: 8sgZS9
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month"
msgstr "sedadlo / měsíc"
#. js-lingui-id: aQnWwf
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month - billed yearly"
msgstr "sedadlo / měsíc - účtováno ročně"
@@ -12556,6 +12737,7 @@ msgstr "Jednotné přihlášení"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
@@ -12600,6 +12782,16 @@ msgstr ""
msgid "Start"
msgstr "Spustit"
#. js-lingui-id: ASqWQi
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Start a new enterprise subscription to re-enable enterprise features."
msgstr ""
#. js-lingui-id: OC6rnK
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Start a new enterprise subscription."
msgstr ""
#. js-lingui-id: D3iCkb
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
msgid "Start Date"
@@ -12625,6 +12817,11 @@ msgid "State"
msgstr "Stav"
#. js-lingui-id: uAQUqI
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
@@ -12920,11 +13117,11 @@ msgstr ""
#. js-lingui-id: 0apULK
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -13227,6 +13424,11 @@ msgstr "Některé povinné sloupce nejsou spojené nebo ignorované. Chcete pokr
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
msgstr "Stále existují některé řádky, které obsahují chyby. Řádky s chybami budou při odesílání ignorovány."
#. js-lingui-id: CA9PTn
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "There is a payment issue with your subscription. Please update your payment method."
msgstr ""
#. js-lingui-id: WQk7Cf
#: src/modules/activities/timeline-activities/components/TimelineCard.tsx
msgid "There is no activity associated with this record."
@@ -13339,9 +13541,9 @@ msgstr ""
msgid "This database value overrides environment settings. "
msgstr "Tato hodnota databáze přepisuje nastavení prostředí."
#. js-lingui-id: qHAJQ2
#. js-lingui-id: 8IRnd6
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "This feature is part of the Organization Plan"
msgid "This feature is part of the Enterprise Plan"
msgstr ""
#. js-lingui-id: own57K
@@ -13650,6 +13852,8 @@ msgid "Transfer ownership"
msgstr ""
#. js-lingui-id: lhkaAC
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/internal/PlansTags.tsx
msgid "Trial"
msgstr "Zkušební verze"
@@ -13840,7 +14044,7 @@ msgid "Type anything..."
msgstr "Napište cokoli..."
#. js-lingui-id: UhqKcC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Type to search records"
msgstr ""
@@ -13998,6 +14202,11 @@ msgstr "Neomezený počet kontaktů"
msgid "Unlisted"
msgstr "Neveřejné"
#. js-lingui-id: Ep1uUU
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
msgstr ""
#. js-lingui-id: eQMhFX
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "unordered"
@@ -14067,6 +14276,11 @@ msgstr "aktualizovat"
msgid "Update"
msgstr "Aktualizovat"
#. js-lingui-id: Y69tSP
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Update payment method"
msgstr ""
#. js-lingui-id: 0KAL3W
#: src/modules/side-panel/hooks/useOpenUpdateMultipleRecordsPageInSidePanel.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
@@ -14305,11 +14519,22 @@ msgstr "Použita výchozí hodnota aplikace. Nakonfigurujte pomocí proměnných
msgid "Using default value. Set a custom value to override."
msgstr "Použita výchozí hodnota. Nastavte vlastní hodnotu pro přepsání."
#. js-lingui-id: zzp4XX
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Valid until"
msgstr ""
#. js-lingui-id: Clr4qp
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Validate Data"
msgstr "Ověřit data"
#. js-lingui-id: PWZBIT
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Validity token refreshed successfully"
msgstr ""
#. js-lingui-id: wMHvYH
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/KeyValuePairInput.tsx
@@ -14436,6 +14661,8 @@ msgid "View and filter events, page views, object changes"
msgstr ""
#. js-lingui-id: KANz0G
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "View billing details"
msgstr "Zobrazit detaily fakturace"
@@ -14485,6 +14712,11 @@ msgstr "zobrazit skupinu"
msgid "View installed app"
msgstr ""
#. js-lingui-id: B02hom
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "View invoices"
msgstr ""
#. js-lingui-id: lh5BED
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerQueueMetricsSection.tsx
msgid "View Jobs"
@@ -14503,6 +14735,7 @@ msgstr ""
#. js-lingui-id: ecVcAx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "View Previous AI Chats"
msgstr "Zobrazit předchozí AI diskuse"
@@ -14852,6 +15085,7 @@ msgstr "Pracovní postupy"
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/domains/SettingsDomains.tsx
@@ -15018,6 +15252,11 @@ msgstr "Rok"
msgid "yearly"
msgstr "roční"
#. js-lingui-id: Y1GwUe
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Yearly subscription"
msgstr ""
#. js-lingui-id: +BGee5
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
msgid "years"
@@ -15150,6 +15389,36 @@ msgstr "Vaše předměty e-mailů a názvy schůzek budou sdíleny s vaším tý
msgid "Your emails and events content will be shared with your team."
msgstr "Obsah vašich e-mailů a událostí bude sdílen s vaším týmem."
#. js-lingui-id: ahEwS4
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features are active"
msgstr ""
#. js-lingui-id: XMZLU/
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features are active but your enterprise key is missing or invalid. This may be expected, but if not, please set a valid signed enterprise key to manage your subscription, or contact support."
msgstr ""
#. js-lingui-id: AxcwNj
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features will be disabled"
msgstr ""
#. js-lingui-id: PT137K
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features will remain active until {cancelAtDate}."
msgstr ""
#. js-lingui-id: 69Siss
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
msgid "Your enterprise key format is deprecated. Please activate a new key to keep enterprise features."
msgstr ""
#. js-lingui-id: NTpA4U
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise subscription has been canceled."
msgstr ""
#. js-lingui-id: 9ivpwk
#: src/pages/settings/SettingsProfile.tsx
msgid "Your name as it will be displayed"
@@ -15160,6 +15429,26 @@ msgstr "Vaše jméno, jak bude zobrazeno"
msgid "Your name as it will be displayed on the app"
msgstr "Vaše jméno, jak bude zobrazeno v aplikaci"
#. js-lingui-id: 319YPG
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription is active but your validity token is invalid or has expired. Try reloading it or contact support."
msgstr ""
#. js-lingui-id: Fx0axg
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription is scheduled for cancellation"
msgstr ""
#. js-lingui-id: XgIa/8
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription setup was not completed."
msgstr ""
#. js-lingui-id: Z9kbt6
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription status is: {statusLabel}"
msgstr ""
#. js-lingui-id: QOd24n
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and "
+327 -38
View File
@@ -752,23 +752,37 @@ msgid "Actions users can perform on this object"
msgstr "Handlinger brugere kan udføre på denne genstand"
#. js-lingui-id: FQBaXG
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
#: src/modules/settings/data-model/objects/components/SettingsObjectInactiveMenuDropDown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
msgid "Activate"
msgstr "Aktivér"
#. js-lingui-id: eqeFkF
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Activate Enterprise Key"
msgstr ""
#. js-lingui-id: tu8A/k
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
msgid "Activate Workflow"
msgstr "Aktivér Arbejdsproces"
#. js-lingui-id: jSZacs
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Activating..."
msgstr ""
#. js-lingui-id: F6pfE9
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/domains/components/SettingsWorkspaceDomainCard.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Active"
@@ -806,6 +820,13 @@ msgstr "Tilføj \"{trimmedName}\" til muligheder"
msgid "Add a {objectLabelSingular}"
msgstr "Tilføj {objectLabelSingular}"
#. js-lingui-id: 7W8nJr
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
msgid "Add a Group"
msgstr ""
#. js-lingui-id: CZDwqQ
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
@@ -818,16 +839,10 @@ msgid "Add a node"
msgstr "Tilføj en node"
#. js-lingui-id: nGv1DN
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Add a record"
msgstr ""
#. js-lingui-id: r8W+9y
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
msgid "Add a Section"
msgstr ""
#. js-lingui-id: eMc2xs
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
msgid "Add a step"
@@ -1429,7 +1444,7 @@ msgid "All set!"
msgstr "Alt klar!"
#. js-lingui-id: CHvT6e
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectFlow.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
@@ -1574,6 +1589,7 @@ msgstr "Der opstod en fejl under upload af billedet."
#. js-lingui-id: XyOToQ
#: src/utils/get-error-message-from-apollo-error.util.ts
#: src/utils/get-error-message-from-apollo-error.util.ts
#: src/modules/views/hooks/internal/usePerformViewSortAPIPersist.ts
#: src/modules/views/hooks/internal/usePerformViewGroupAPIPersist.ts
#: src/modules/views/hooks/internal/usePerformViewFilterAPIPersist.ts
@@ -1664,6 +1680,7 @@ msgstr "API"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "API & Webhooks"
msgstr "API & Webhooks"
@@ -1940,6 +1957,7 @@ msgstr "Stigende"
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Ask AI"
msgstr "Spørg AI"
@@ -2078,6 +2096,11 @@ msgstr ""
msgid "Attachments"
msgstr "Vedhæftninger"
#. js-lingui-id: y2W2Hg
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Audit logs"
msgstr ""
#. js-lingui-id: EPEFrH
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
@@ -2306,6 +2329,11 @@ msgstr "mellem den {startOrdinal} og {endOrdinal} i måneden"
msgid "Billing"
msgstr "Fakturering"
#. js-lingui-id: dSjFxR
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Billing history"
msgstr ""
#. js-lingui-id: nJGwRf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Billing interval"
@@ -2563,6 +2591,7 @@ msgid "Cancel metered tier switching?"
msgstr "Annuller skift til målt niveau?"
#. js-lingui-id: rRK/Lf
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel Plan"
msgstr "Annuller abonnement"
@@ -2578,10 +2607,26 @@ msgid "Cancel plan switching?"
msgstr "Annuller planskift?"
#. js-lingui-id: N6gPiD
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel your subscription"
msgstr "Annuller dit abonnement"
#. js-lingui-id: GGWsTU
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Canceled"
msgstr ""
#. js-lingui-id: y4uH7j
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Cancelling"
msgstr ""
#. js-lingui-id: WbPx+C
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Cancels on"
msgstr ""
#. js-lingui-id: XDbjjW
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Cannot delete the only view"
@@ -3077,11 +3122,6 @@ msgstr ""
msgid "Configure fallback login methods for users with SSO bypass permissions"
msgstr "Konfigurer alternativer loginmetoder til brugere med SSO-forbigående tilladelser"
#. js-lingui-id: c7wznw
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
msgid "Configure filters"
msgstr "Konfigurer filtre"
#. js-lingui-id: ghdb7+
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
msgid "Configure how we should display your events in your calendar"
@@ -3279,6 +3319,7 @@ msgstr ""
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
msgid "Continue"
msgstr "Fortsæt"
@@ -3438,6 +3479,21 @@ msgstr "Pris per 1k ekstra kreditter"
msgid "Could not delete approved access domain"
msgstr "Kunne ikke slette godkendt adgangsdomæne"
#. js-lingui-id: KqYYBp
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not open billing portal. Please check your enterprise key is present, or contact support."
msgstr ""
#. js-lingui-id: ZuI4Sl
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Could not open Stripe. Please contact support."
msgstr ""
#. js-lingui-id: wVw4Am
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not refresh validity token. Please contact support."
msgstr ""
#. js-lingui-id: s8lFtq
#: src/hooks/useCopyToClipboard.tsx
msgid "Couldn't copy to clipboard"
@@ -3815,6 +3871,7 @@ msgstr "Brugerdefineret domæne opdateret"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Custom objects"
msgstr "Tilpassede objekter"
@@ -4917,6 +4974,8 @@ msgid "Edit own profile information"
msgstr ""
#. js-lingui-id: h2KoTu
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Edit payment method, see your invoices and more"
msgstr "Rediger betalingsmetode, se dine fakturaer og mere"
@@ -5216,6 +5275,11 @@ msgstr "Forbedrer sikkerheden ved at kræve en kode sammen med din adgangskode"
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr "Nyd en {withCreditCardTrialPeriodDuration}-dages gratis prøveperiode"
#. js-lingui-id: 6iUnle
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Enjoy a 30-day free trial"
msgstr ""
#. js-lingui-id: T/N+2Z
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormRawJsonFieldInput.tsx
@@ -5422,6 +5486,9 @@ msgstr "Indtast din API-nøgle"
#. js-lingui-id: GpB8YV
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
msgid "Enterprise"
msgstr "Virksomhed"
@@ -5430,6 +5497,22 @@ msgstr "Virksomhed"
msgid "Enterprise Feature"
msgstr ""
#. js-lingui-id: S5c4pl
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Enterprise License"
msgstr ""
#. js-lingui-id: KGE5g0
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Enterprise license activated successfully"
msgstr ""
#. js-lingui-id: SLuq/l
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Entity ID"
@@ -5470,6 +5553,11 @@ msgstr "Sletning af blødt slettede poster"
msgid "Error"
msgstr "Fejl"
#. js-lingui-id: VouTsQ
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error activating enterprise license"
msgstr ""
#. js-lingui-id: GHKxvg
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error deleting api key."
@@ -5495,11 +5583,6 @@ msgstr "Fejl ved sletning af SSO Identitetsudbyder"
msgid "Error editing SSO Identity Provider"
msgstr "Fejl ved redigering af SSO Identitetsudbyder"
#. js-lingui-id: GsIfmO
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerMetricsGraph.tsx
msgid "Error fetching worker metrics: {errorMessage}"
msgstr "Fejl ved hentning af worker-metrics: {errorMessage}"
#. js-lingui-id: GdBN5t
#: src/modules/error-handler/components/AppRootErrorFallback.tsx
msgid "Error illustration"
@@ -5530,11 +5613,26 @@ msgstr "Fejl ved indlæsning af meddelelse"
msgid "Error Message"
msgstr "Fejlmeddelelse"
#. js-lingui-id: Mox63G
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error opening billing portal"
msgstr ""
#. js-lingui-id: e/eieW
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Error opening Stripe"
msgstr ""
#. js-lingui-id: bT/0cM
#: src/modules/ui/field/display/components/PhonesDisplay.tsx
msgid "Error parsing additional phones: {error}"
msgstr "Fejl ved fortolkning af ekstra telefonnumre: {error}"
#. js-lingui-id: zRXcyv
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error refreshing validity token. Please contact support."
msgstr ""
#. js-lingui-id: PfAip2
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error regenerating api key."
@@ -5997,6 +6095,11 @@ msgstr ""
msgid "Failed to {translatedOperationType} {translatedMetadataName}. Related {relatedEntityNames} validation failed. Please check your configuration and try again."
msgstr ""
#. js-lingui-id: R1XJV1
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Failed to activate enterprise license. Please check your key or contact support."
msgstr ""
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to activate skill"
@@ -6374,7 +6477,6 @@ msgstr ""
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/views/components/ViewBarFilterButton.tsx
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
#: src/modules/settings/roles/components/SettingsRolesList.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
@@ -6397,6 +6499,7 @@ msgid "Filter group rule options"
msgstr "Indstillinger for filterregelgruppe"
#. js-lingui-id: cSev+j
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
msgid "Filters"
msgstr "Filtre"
@@ -6467,6 +6570,11 @@ msgstr "Fornavn"
msgid "First name can not be empty"
msgstr "Fornavn må ikke være tomt"
#. js-lingui-id: JREYkg
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Fix the payment issue to keep your enterprise features active."
msgstr ""
#. js-lingui-id: ylQd2j
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
@@ -6486,7 +6594,7 @@ msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
msgid "Folders"
msgstr "Mapper"
@@ -6635,6 +6743,22 @@ msgstr "Genererede filer"
msgid "German"
msgstr "Tysk"
#. js-lingui-id: sqtljx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Get Enterprise"
msgstr ""
#. js-lingui-id: o2kSwB
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Get Enterprise Key"
msgstr ""
#. js-lingui-id: NXEW3h
#: src/pages/onboarding/InviteTeam.tsx
msgid "Get the most out of your workspace by inviting your team."
@@ -6655,6 +6779,12 @@ msgstr "Globalt"
msgid "Go Back"
msgstr ""
#. js-lingui-id: Hb4Cgz
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Go to billing portal"
msgstr ""
#. js-lingui-id: mUbv8L
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
msgid "Go to Companies"
@@ -7240,6 +7370,11 @@ msgstr ""
msgid "Inbox"
msgstr "Indbakke"
#. js-lingui-id: mtGDyy
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Incomplete"
msgstr ""
#. js-lingui-id: O5wNUa
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "index"
@@ -7882,9 +8017,8 @@ msgid "Launch manually"
msgstr "Start manuelt"
#. js-lingui-id: rdU729
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsLayout.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -7957,6 +8091,12 @@ msgstr ""
msgid "Less than or equal"
msgstr "Mindre end eller lig med"
#. js-lingui-id: 3qg5Ro
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Licensee"
msgstr ""
#. js-lingui-id: 1njn7W
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownThemesComponents.tsx
@@ -8260,6 +8400,8 @@ msgid "Manage billing and subscriptions"
msgstr "Administrer fakturering og abonnementer"
#. js-lingui-id: nvgUPq
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Manage billing information"
msgstr "Administrer faktureringsoplysninger"
@@ -8612,6 +8754,11 @@ msgstr "Måned i året"
msgid "monthly"
msgstr "månedligt"
#. js-lingui-id: Sew/cK
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Monthly subscription"
msgstr ""
#. js-lingui-id: 6jefe3
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
@@ -8673,7 +8820,7 @@ msgid "Move right"
msgstr "Flyt til højre"
#. js-lingui-id: 6qDVmw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Move to a folder"
msgstr ""
@@ -9274,13 +9421,13 @@ msgid "No Files"
msgstr "Ingen filer"
#. js-lingui-id: pYblOw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
msgid "No folder"
msgstr "Ingen mappe"
#. js-lingui-id: 6XMhqL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folders available"
msgstr ""
@@ -9454,8 +9601,8 @@ msgstr "Ingen resultater"
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/side-panel/components/SidePanelList.tsx
msgid "No results found"
msgstr "Ingen resultater fundet"
@@ -10188,11 +10335,26 @@ msgstr "Link til password nulstilling er blevet sendt til emailadressen"
msgid "Paste the code below"
msgstr "Indsæt koden nedenfor"
#. js-lingui-id: raz2Pm
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Paste your enterprise key below to activate"
msgstr ""
#. js-lingui-id: dNdgvF
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Paste your enterprise key here"
msgstr ""
#. js-lingui-id: I6gXOa
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "Path"
msgstr "Sti"
#. js-lingui-id: QmXBEc
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Payment issue"
msgstr ""
#. js-lingui-id: UbRKMZ
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
#: src/modules/settings/security/components/approvedAccessDomains/SettingsApprovedAccessDomainsListCard.tsx
@@ -10329,13 +10491,13 @@ msgid "Pick a {objectLabel} record"
msgstr "Vælg en {objectLabel} post"
#. js-lingui-id: JqqNlC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Pick a view"
msgstr ""
#. js-lingui-id: Wlba2h
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Pick an object"
msgstr ""
@@ -10953,6 +11115,16 @@ msgstr "Udgivelser"
msgid "Reload"
msgstr "Genindlæs"
#. js-lingui-id: qbM5In
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Reload validity token"
msgstr ""
#. js-lingui-id: MZWnSC
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Reloading..."
msgstr ""
#. js-lingui-id: qlAIQ1
#: src/modules/object-metadata/components/RemoteNavigationDrawerSection.tsx
msgid "Remote"
@@ -11228,7 +11400,7 @@ msgstr "Resultat"
#. js-lingui-id: kx0s+n
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Results"
msgstr "Resultater"
@@ -11367,6 +11539,11 @@ msgstr ""
msgid "row level permission predicate group"
msgstr ""
#. js-lingui-id: xPaeO2
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Row-level security"
msgstr ""
#. js-lingui-id: 7jTlsu
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Ruby"
@@ -11485,6 +11662,8 @@ msgstr ""
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Search"
msgstr "Søg"
@@ -11521,7 +11700,7 @@ msgid "Search a field..."
msgstr "Søg i et felt..."
#. js-lingui-id: ITQFzL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Search a folder..."
msgstr ""
@@ -11689,7 +11868,7 @@ msgid "Search records"
msgstr "Søg poster"
#. js-lingui-id: rRklUH
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Search records..."
msgstr ""
@@ -11724,11 +11903,13 @@ msgid "Searching the web for {query}"
msgstr ""
#. js-lingui-id: 8sgZS9
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month"
msgstr "sæde / måned"
#. js-lingui-id: aQnWwf
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month - billed yearly"
msgstr "sæde / måned - faktureres årligt"
@@ -12556,6 +12737,7 @@ msgstr "SSO"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
@@ -12600,6 +12782,16 @@ msgstr ""
msgid "Start"
msgstr "Start"
#. js-lingui-id: ASqWQi
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Start a new enterprise subscription to re-enable enterprise features."
msgstr ""
#. js-lingui-id: OC6rnK
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Start a new enterprise subscription."
msgstr ""
#. js-lingui-id: D3iCkb
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
msgid "Start Date"
@@ -12625,6 +12817,11 @@ msgid "State"
msgstr "Tilstand"
#. js-lingui-id: uAQUqI
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
@@ -12920,11 +13117,11 @@ msgstr ""
#. js-lingui-id: 0apULK
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -13227,6 +13424,11 @@ msgstr "Der er nødvendige kolonner, der ikke er matchet eller ignoreret. Vil du
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
msgstr "Der er stadig nogle rækker, der indeholder fejl. Rækker med fejl vil blive ignoreret ved indsendelse."
#. js-lingui-id: CA9PTn
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "There is a payment issue with your subscription. Please update your payment method."
msgstr ""
#. js-lingui-id: WQk7Cf
#: src/modules/activities/timeline-activities/components/TimelineCard.tsx
msgid "There is no activity associated with this record."
@@ -13341,9 +13543,9 @@ msgstr ""
msgid "This database value overrides environment settings. "
msgstr "Denne databaseværdi overskriver miljøindstillingerne."
#. js-lingui-id: qHAJQ2
#. js-lingui-id: 8IRnd6
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "This feature is part of the Organization Plan"
msgid "This feature is part of the Enterprise Plan"
msgstr ""
#. js-lingui-id: own57K
@@ -13652,6 +13854,8 @@ msgid "Transfer ownership"
msgstr ""
#. js-lingui-id: lhkaAC
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/internal/PlansTags.tsx
msgid "Trial"
msgstr "Prøve"
@@ -13842,7 +14046,7 @@ msgid "Type anything..."
msgstr "Skriv noget..."
#. js-lingui-id: UhqKcC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Type to search records"
msgstr ""
@@ -14000,6 +14204,11 @@ msgstr "Ubegrænsede kontakter"
msgid "Unlisted"
msgstr "Ikke opført"
#. js-lingui-id: Ep1uUU
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
msgstr ""
#. js-lingui-id: eQMhFX
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "unordered"
@@ -14069,6 +14278,11 @@ msgstr "opdater"
msgid "Update"
msgstr "Opdater"
#. js-lingui-id: Y69tSP
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Update payment method"
msgstr ""
#. js-lingui-id: 0KAL3W
#: src/modules/side-panel/hooks/useOpenUpdateMultipleRecordsPageInSidePanel.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
@@ -14307,11 +14521,22 @@ msgstr "Bruger standardappsværdi. Konfigurer via miljøvariabler."
msgid "Using default value. Set a custom value to override."
msgstr "Bruger standardværdi. Indstil en brugerdefineret værdi for at tilsidesætte."
#. js-lingui-id: zzp4XX
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Valid until"
msgstr ""
#. js-lingui-id: Clr4qp
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Validate Data"
msgstr "Valider data"
#. js-lingui-id: PWZBIT
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Validity token refreshed successfully"
msgstr ""
#. js-lingui-id: wMHvYH
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/KeyValuePairInput.tsx
@@ -14438,6 +14663,8 @@ msgid "View and filter events, page views, object changes"
msgstr ""
#. js-lingui-id: KANz0G
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "View billing details"
msgstr "Se faktureringsdetaljer"
@@ -14487,6 +14714,11 @@ msgstr "vis gruppe"
msgid "View installed app"
msgstr ""
#. js-lingui-id: B02hom
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "View invoices"
msgstr ""
#. js-lingui-id: lh5BED
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerQueueMetricsSection.tsx
msgid "View Jobs"
@@ -14505,6 +14737,7 @@ msgstr ""
#. js-lingui-id: ecVcAx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "View Previous AI Chats"
msgstr "Se tidligere AI-chats"
@@ -14854,6 +15087,7 @@ msgstr "Arbejdsgange"
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/domains/SettingsDomains.tsx
@@ -15020,6 +15254,11 @@ msgstr "År"
msgid "yearly"
msgstr "årligt"
#. js-lingui-id: Y1GwUe
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Yearly subscription"
msgstr ""
#. js-lingui-id: +BGee5
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
msgid "years"
@@ -15152,6 +15391,36 @@ msgstr "Dine e-mail emner og mødetitler vil blive delt med dit team."
msgid "Your emails and events content will be shared with your team."
msgstr "Dine e-mails og begivenhedsindhold vil blive delt med dit team."
#. js-lingui-id: ahEwS4
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features are active"
msgstr ""
#. js-lingui-id: XMZLU/
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features are active but your enterprise key is missing or invalid. This may be expected, but if not, please set a valid signed enterprise key to manage your subscription, or contact support."
msgstr ""
#. js-lingui-id: AxcwNj
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features will be disabled"
msgstr ""
#. js-lingui-id: PT137K
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features will remain active until {cancelAtDate}."
msgstr ""
#. js-lingui-id: 69Siss
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
msgid "Your enterprise key format is deprecated. Please activate a new key to keep enterprise features."
msgstr ""
#. js-lingui-id: NTpA4U
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise subscription has been canceled."
msgstr ""
#. js-lingui-id: 9ivpwk
#: src/pages/settings/SettingsProfile.tsx
msgid "Your name as it will be displayed"
@@ -15162,6 +15431,26 @@ msgstr "Dit navn som det vil blive vist"
msgid "Your name as it will be displayed on the app"
msgstr "Dit navn som det vil blive vist i appen"
#. js-lingui-id: 319YPG
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription is active but your validity token is invalid or has expired. Try reloading it or contact support."
msgstr ""
#. js-lingui-id: Fx0axg
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription is scheduled for cancellation"
msgstr ""
#. js-lingui-id: XgIa/8
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription setup was not completed."
msgstr ""
#. js-lingui-id: Z9kbt6
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription status is: {statusLabel}"
msgstr ""
#. js-lingui-id: QOd24n
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and "
+327 -38
View File
@@ -752,23 +752,37 @@ msgid "Actions users can perform on this object"
msgstr "Aktionen, die Benutzer auf diesem Objekt durchführen können"
#. js-lingui-id: FQBaXG
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
#: src/modules/settings/data-model/objects/components/SettingsObjectInactiveMenuDropDown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
msgid "Activate"
msgstr "Aktivieren"
#. js-lingui-id: eqeFkF
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Activate Enterprise Key"
msgstr ""
#. js-lingui-id: tu8A/k
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
msgid "Activate Workflow"
msgstr "Workflow aktivieren"
#. js-lingui-id: jSZacs
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Activating..."
msgstr ""
#. js-lingui-id: F6pfE9
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/domains/components/SettingsWorkspaceDomainCard.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Active"
@@ -806,6 +820,13 @@ msgstr "\"{trimmedName}\" zu den Optionen hinzufügen"
msgid "Add a {objectLabelSingular}"
msgstr "Ein {objectLabelSingular} hinzufügen"
#. js-lingui-id: 7W8nJr
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
msgid "Add a Group"
msgstr ""
#. js-lingui-id: CZDwqQ
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
@@ -818,16 +839,10 @@ msgid "Add a node"
msgstr "Knoten hinzufügen"
#. js-lingui-id: nGv1DN
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Add a record"
msgstr ""
#. js-lingui-id: r8W+9y
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
msgid "Add a Section"
msgstr ""
#. js-lingui-id: eMc2xs
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
msgid "Add a step"
@@ -1429,7 +1444,7 @@ msgid "All set!"
msgstr "Alles bereit!"
#. js-lingui-id: CHvT6e
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectFlow.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
@@ -1574,6 +1589,7 @@ msgstr "Beim Hochladen des Bildes ist ein Fehler aufgetreten."
#. js-lingui-id: XyOToQ
#: src/utils/get-error-message-from-apollo-error.util.ts
#: src/utils/get-error-message-from-apollo-error.util.ts
#: src/modules/views/hooks/internal/usePerformViewSortAPIPersist.ts
#: src/modules/views/hooks/internal/usePerformViewGroupAPIPersist.ts
#: src/modules/views/hooks/internal/usePerformViewFilterAPIPersist.ts
@@ -1664,6 +1680,7 @@ msgstr "API"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "API & Webhooks"
msgstr "API & Webhooks"
@@ -1940,6 +1957,7 @@ msgstr "Aufsteigend"
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Ask AI"
msgstr "AI fragen"
@@ -2078,6 +2096,11 @@ msgstr ""
msgid "Attachments"
msgstr "Anhänge"
#. js-lingui-id: y2W2Hg
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Audit logs"
msgstr ""
#. js-lingui-id: EPEFrH
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
@@ -2306,6 +2329,11 @@ msgstr "zwischen dem {startOrdinal} und {endOrdinal} des Monats"
msgid "Billing"
msgstr "Abrechnung"
#. js-lingui-id: dSjFxR
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Billing history"
msgstr ""
#. js-lingui-id: nJGwRf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Billing interval"
@@ -2563,6 +2591,7 @@ msgid "Cancel metered tier switching?"
msgstr "Zählertarifwechsel abbrechen?"
#. js-lingui-id: rRK/Lf
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel Plan"
msgstr "Plan kündigen"
@@ -2578,10 +2607,26 @@ msgid "Cancel plan switching?"
msgstr "Tarifwechsel abbrechen?"
#. js-lingui-id: N6gPiD
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel your subscription"
msgstr "Abonnement kündigen"
#. js-lingui-id: GGWsTU
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Canceled"
msgstr ""
#. js-lingui-id: y4uH7j
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Cancelling"
msgstr ""
#. js-lingui-id: WbPx+C
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Cancels on"
msgstr ""
#. js-lingui-id: XDbjjW
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Cannot delete the only view"
@@ -3077,11 +3122,6 @@ msgstr ""
msgid "Configure fallback login methods for users with SSO bypass permissions"
msgstr "Fallback-Login-Methoden für Benutzer mit SSO-Umgehungsberechtigungen konfigurieren"
#. js-lingui-id: c7wznw
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
msgid "Configure filters"
msgstr "Filter konfigurieren"
#. js-lingui-id: ghdb7+
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
msgid "Configure how we should display your events in your calendar"
@@ -3279,6 +3319,7 @@ msgstr ""
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
msgid "Continue"
msgstr "Weiter"
@@ -3438,6 +3479,21 @@ msgstr "Kosten pro 1k zusätzliche Credits"
msgid "Could not delete approved access domain"
msgstr "Genehmigte Zugriffsdomäne konnte nicht gelöscht werden"
#. js-lingui-id: KqYYBp
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not open billing portal. Please check your enterprise key is present, or contact support."
msgstr ""
#. js-lingui-id: ZuI4Sl
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Could not open Stripe. Please contact support."
msgstr ""
#. js-lingui-id: wVw4Am
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not refresh validity token. Please contact support."
msgstr ""
#. js-lingui-id: s8lFtq
#: src/hooks/useCopyToClipboard.tsx
msgid "Couldn't copy to clipboard"
@@ -3815,6 +3871,7 @@ msgstr "Benutzerdefinierte Domain aktualisiert"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Custom objects"
msgstr "Benutzerdefinierte Objekte"
@@ -4917,6 +4974,8 @@ msgid "Edit own profile information"
msgstr ""
#. js-lingui-id: h2KoTu
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Edit payment method, see your invoices and more"
msgstr "Zahlungsmethode bearbeiten, Rechnungen einsehen und mehr"
@@ -5216,6 +5275,11 @@ msgstr "Verbessert die Sicherheit, indem zusätzlich zu Ihrem Passwort ein Code
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr "Genießen Sie eine {withCreditCardTrialPeriodDuration}-tägige kostenlose Testphase"
#. js-lingui-id: 6iUnle
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Enjoy a 30-day free trial"
msgstr ""
#. js-lingui-id: T/N+2Z
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormRawJsonFieldInput.tsx
@@ -5422,6 +5486,9 @@ msgstr "Geben Sie Ihren API-Schlüssel ein"
#. js-lingui-id: GpB8YV
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
msgid "Enterprise"
msgstr "Unternehmen"
@@ -5430,6 +5497,22 @@ msgstr "Unternehmen"
msgid "Enterprise Feature"
msgstr ""
#. js-lingui-id: S5c4pl
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Enterprise License"
msgstr ""
#. js-lingui-id: KGE5g0
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Enterprise license activated successfully"
msgstr ""
#. js-lingui-id: SLuq/l
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Entity ID"
@@ -5470,6 +5553,11 @@ msgstr "Löschung weicher gelöschter Datensätze"
msgid "Error"
msgstr "Fehler"
#. js-lingui-id: VouTsQ
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error activating enterprise license"
msgstr ""
#. js-lingui-id: GHKxvg
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error deleting api key."
@@ -5495,11 +5583,6 @@ msgstr "Fehler beim Löschen des SSO-Identitätsanbieters"
msgid "Error editing SSO Identity Provider"
msgstr "Fehler beim Bearbeiten des SSO-Identitätsanbieters"
#. js-lingui-id: GsIfmO
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerMetricsGraph.tsx
msgid "Error fetching worker metrics: {errorMessage}"
msgstr "Fehler beim Abrufen der Worker-Metriken: {errorMessage}"
#. js-lingui-id: GdBN5t
#: src/modules/error-handler/components/AppRootErrorFallback.tsx
msgid "Error illustration"
@@ -5530,11 +5613,26 @@ msgstr "Fehler beim Laden der Nachricht"
msgid "Error Message"
msgstr "Fehlermeldung"
#. js-lingui-id: Mox63G
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error opening billing portal"
msgstr ""
#. js-lingui-id: e/eieW
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Error opening Stripe"
msgstr ""
#. js-lingui-id: bT/0cM
#: src/modules/ui/field/display/components/PhonesDisplay.tsx
msgid "Error parsing additional phones: {error}"
msgstr "Fehler beim Parsen zusätzlicher Telefonnummern: {error}"
#. js-lingui-id: zRXcyv
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error refreshing validity token. Please contact support."
msgstr ""
#. js-lingui-id: PfAip2
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error regenerating api key."
@@ -5997,6 +6095,11 @@ msgstr ""
msgid "Failed to {translatedOperationType} {translatedMetadataName}. Related {relatedEntityNames} validation failed. Please check your configuration and try again."
msgstr ""
#. js-lingui-id: R1XJV1
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Failed to activate enterprise license. Please check your key or contact support."
msgstr ""
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to activate skill"
@@ -6374,7 +6477,6 @@ msgstr ""
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/views/components/ViewBarFilterButton.tsx
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
#: src/modules/settings/roles/components/SettingsRolesList.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
@@ -6397,6 +6499,7 @@ msgid "Filter group rule options"
msgstr "Optionen für Filterregelgruppe"
#. js-lingui-id: cSev+j
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
msgid "Filters"
msgstr "Filter"
@@ -6467,6 +6570,11 @@ msgstr "Vorname"
msgid "First name can not be empty"
msgstr "Vorname darf nicht leer sein"
#. js-lingui-id: JREYkg
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Fix the payment issue to keep your enterprise features active."
msgstr ""
#. js-lingui-id: ylQd2j
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
@@ -6486,7 +6594,7 @@ msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
msgid "Folders"
msgstr "Ordner"
@@ -6635,6 +6743,22 @@ msgstr "Generierte Dateien"
msgid "German"
msgstr "Deutsch"
#. js-lingui-id: sqtljx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Get Enterprise"
msgstr ""
#. js-lingui-id: o2kSwB
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Get Enterprise Key"
msgstr ""
#. js-lingui-id: NXEW3h
#: src/pages/onboarding/InviteTeam.tsx
msgid "Get the most out of your workspace by inviting your team."
@@ -6655,6 +6779,12 @@ msgstr "Global"
msgid "Go Back"
msgstr ""
#. js-lingui-id: Hb4Cgz
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Go to billing portal"
msgstr ""
#. js-lingui-id: mUbv8L
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
msgid "Go to Companies"
@@ -7240,6 +7370,11 @@ msgstr ""
msgid "Inbox"
msgstr "Posteingang"
#. js-lingui-id: mtGDyy
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Incomplete"
msgstr ""
#. js-lingui-id: O5wNUa
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "index"
@@ -7882,9 +8017,8 @@ msgid "Launch manually"
msgstr "Manuell auslösen"
#. js-lingui-id: rdU729
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsLayout.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -7957,6 +8091,12 @@ msgstr ""
msgid "Less than or equal"
msgstr "Kleiner als oder gleich"
#. js-lingui-id: 3qg5Ro
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Licensee"
msgstr ""
#. js-lingui-id: 1njn7W
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownThemesComponents.tsx
@@ -8260,6 +8400,8 @@ msgid "Manage billing and subscriptions"
msgstr "Abrechnung und Abonnements verwalten"
#. js-lingui-id: nvgUPq
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Manage billing information"
msgstr "Verwalten Sie die Rechnungsdaten"
@@ -8612,6 +8754,11 @@ msgstr "Monat des Jahres"
msgid "monthly"
msgstr "monatlich"
#. js-lingui-id: Sew/cK
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Monthly subscription"
msgstr ""
#. js-lingui-id: 6jefe3
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
@@ -8673,7 +8820,7 @@ msgid "Move right"
msgstr "Nach rechts verschieben"
#. js-lingui-id: 6qDVmw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Move to a folder"
msgstr ""
@@ -9274,13 +9421,13 @@ msgid "No Files"
msgstr "Keine Dateien"
#. js-lingui-id: pYblOw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
msgid "No folder"
msgstr "Kein Ordner"
#. js-lingui-id: 6XMhqL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folders available"
msgstr ""
@@ -9454,8 +9601,8 @@ msgstr "Keine Ergebnisse"
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/side-panel/components/SidePanelList.tsx
msgid "No results found"
msgstr "Keine Ergebnisse gefunden"
@@ -10188,11 +10335,26 @@ msgstr "Der Link zum Zurücksetzen des Passworts wurde an die E-Mail gesendet"
msgid "Paste the code below"
msgstr "Fügen Sie den Code unten ein"
#. js-lingui-id: raz2Pm
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Paste your enterprise key below to activate"
msgstr ""
#. js-lingui-id: dNdgvF
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Paste your enterprise key here"
msgstr ""
#. js-lingui-id: I6gXOa
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "Path"
msgstr "Pfad"
#. js-lingui-id: QmXBEc
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Payment issue"
msgstr ""
#. js-lingui-id: UbRKMZ
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
#: src/modules/settings/security/components/approvedAccessDomains/SettingsApprovedAccessDomainsListCard.tsx
@@ -10329,13 +10491,13 @@ msgid "Pick a {objectLabel} record"
msgstr "Wählen Sie einen {objectLabel} Datensatz aus"
#. js-lingui-id: JqqNlC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Pick a view"
msgstr ""
#. js-lingui-id: Wlba2h
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Pick an object"
msgstr ""
@@ -10953,6 +11115,16 @@ msgstr "Veröffentlichungen"
msgid "Reload"
msgstr "Neu laden"
#. js-lingui-id: qbM5In
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Reload validity token"
msgstr ""
#. js-lingui-id: MZWnSC
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Reloading..."
msgstr ""
#. js-lingui-id: qlAIQ1
#: src/modules/object-metadata/components/RemoteNavigationDrawerSection.tsx
msgid "Remote"
@@ -11228,7 +11400,7 @@ msgstr "Ergebnis"
#. js-lingui-id: kx0s+n
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Results"
msgstr "Ergebnisse"
@@ -11367,6 +11539,11 @@ msgstr ""
msgid "row level permission predicate group"
msgstr ""
#. js-lingui-id: xPaeO2
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Row-level security"
msgstr ""
#. js-lingui-id: 7jTlsu
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Ruby"
@@ -11485,6 +11662,8 @@ msgstr ""
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Search"
msgstr "Suche"
@@ -11521,7 +11700,7 @@ msgid "Search a field..."
msgstr "Feld suchen..."
#. js-lingui-id: ITQFzL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Search a folder..."
msgstr ""
@@ -11689,7 +11868,7 @@ msgid "Search records"
msgstr "Datensätze suchen"
#. js-lingui-id: rRklUH
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Search records..."
msgstr ""
@@ -11724,11 +11903,13 @@ msgid "Searching the web for {query}"
msgstr ""
#. js-lingui-id: 8sgZS9
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month"
msgstr "Sitzplatz / Monat"
#. js-lingui-id: aQnWwf
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month - billed yearly"
msgstr "Sitzplatz / Monat - jährlich abgerechnet"
@@ -12556,6 +12737,7 @@ msgstr "SSO"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
@@ -12600,6 +12782,16 @@ msgstr ""
msgid "Start"
msgstr "Starten"
#. js-lingui-id: ASqWQi
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Start a new enterprise subscription to re-enable enterprise features."
msgstr ""
#. js-lingui-id: OC6rnK
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Start a new enterprise subscription."
msgstr ""
#. js-lingui-id: D3iCkb
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
msgid "Start Date"
@@ -12625,6 +12817,11 @@ msgid "State"
msgstr "Zustand"
#. js-lingui-id: uAQUqI
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
@@ -12920,11 +13117,11 @@ msgstr ""
#. js-lingui-id: 0apULK
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -13227,6 +13424,11 @@ msgstr "Es gibt erforderliche Spalten, die nicht zugeordnet oder ignoriert wurde
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
msgstr "Es gibt noch einige Zeilen, die Fehler enthalten. Zeilen mit Fehlern werden beim Absenden ignoriert."
#. js-lingui-id: CA9PTn
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "There is a payment issue with your subscription. Please update your payment method."
msgstr ""
#. js-lingui-id: WQk7Cf
#: src/modules/activities/timeline-activities/components/TimelineCard.tsx
msgid "There is no activity associated with this record."
@@ -13339,9 +13541,9 @@ msgstr ""
msgid "This database value overrides environment settings. "
msgstr "Dieser Datenbankwert überschreibt die Umgebungsanstellungen."
#. js-lingui-id: qHAJQ2
#. js-lingui-id: 8IRnd6
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "This feature is part of the Organization Plan"
msgid "This feature is part of the Enterprise Plan"
msgstr ""
#. js-lingui-id: own57K
@@ -13650,6 +13852,8 @@ msgid "Transfer ownership"
msgstr ""
#. js-lingui-id: lhkaAC
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/internal/PlansTags.tsx
msgid "Trial"
msgstr "Testversion"
@@ -13840,7 +14044,7 @@ msgid "Type anything..."
msgstr "Geben Sie irgendetwas ein..."
#. js-lingui-id: UhqKcC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Type to search records"
msgstr ""
@@ -13998,6 +14202,11 @@ msgstr "Unbegrenzte Kontakte"
msgid "Unlisted"
msgstr "Nicht gelistet"
#. js-lingui-id: Ep1uUU
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
msgstr ""
#. js-lingui-id: eQMhFX
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "unordered"
@@ -14067,6 +14276,11 @@ msgstr "aktualisieren"
msgid "Update"
msgstr "Aktualisieren"
#. js-lingui-id: Y69tSP
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Update payment method"
msgstr ""
#. js-lingui-id: 0KAL3W
#: src/modules/side-panel/hooks/useOpenUpdateMultipleRecordsPageInSidePanel.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
@@ -14305,11 +14519,22 @@ msgstr "Verwendung des standardmäßigen Anwendungswertes. Konfiguration über U
msgid "Using default value. Set a custom value to override."
msgstr "Verwendung des Standardwertes. Setzen Sie einen benutzerdefinierten Wert, um ihn zu überschreiben."
#. js-lingui-id: zzp4XX
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Valid until"
msgstr ""
#. js-lingui-id: Clr4qp
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Validate Data"
msgstr "Daten validieren"
#. js-lingui-id: PWZBIT
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Validity token refreshed successfully"
msgstr ""
#. js-lingui-id: wMHvYH
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/KeyValuePairInput.tsx
@@ -14436,6 +14661,8 @@ msgid "View and filter events, page views, object changes"
msgstr ""
#. js-lingui-id: KANz0G
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "View billing details"
msgstr "Rechnungsdetails anzeigen"
@@ -14485,6 +14712,11 @@ msgstr "ansichtsgruppe"
msgid "View installed app"
msgstr ""
#. js-lingui-id: B02hom
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "View invoices"
msgstr ""
#. js-lingui-id: lh5BED
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerQueueMetricsSection.tsx
msgid "View Jobs"
@@ -14503,6 +14735,7 @@ msgstr ""
#. js-lingui-id: ecVcAx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "View Previous AI Chats"
msgstr "Vorherige KI-Chats anzeigen"
@@ -14852,6 +15085,7 @@ msgstr "Workflows"
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/domains/SettingsDomains.tsx
@@ -15018,6 +15252,11 @@ msgstr "Jahr"
msgid "yearly"
msgstr "jährlich"
#. js-lingui-id: Y1GwUe
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Yearly subscription"
msgstr ""
#. js-lingui-id: +BGee5
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
msgid "years"
@@ -15150,6 +15389,36 @@ msgstr "Ihre E-Mail-Betreffzeilen und Besprechungstitel werden mit Ihrem Team ge
msgid "Your emails and events content will be shared with your team."
msgstr "Der Inhalt Ihrer E-Mails und Ereignisse wird mit Ihrem Team geteilt."
#. js-lingui-id: ahEwS4
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features are active"
msgstr ""
#. js-lingui-id: XMZLU/
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features are active but your enterprise key is missing or invalid. This may be expected, but if not, please set a valid signed enterprise key to manage your subscription, or contact support."
msgstr ""
#. js-lingui-id: AxcwNj
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features will be disabled"
msgstr ""
#. js-lingui-id: PT137K
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features will remain active until {cancelAtDate}."
msgstr ""
#. js-lingui-id: 69Siss
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
msgid "Your enterprise key format is deprecated. Please activate a new key to keep enterprise features."
msgstr ""
#. js-lingui-id: NTpA4U
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise subscription has been canceled."
msgstr ""
#. js-lingui-id: 9ivpwk
#: src/pages/settings/SettingsProfile.tsx
msgid "Your name as it will be displayed"
@@ -15160,6 +15429,26 @@ msgstr "Ihr Name, wie er angezeigt wird"
msgid "Your name as it will be displayed on the app"
msgstr "Ihr Name, wie er in der App angezeigt wird"
#. js-lingui-id: 319YPG
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription is active but your validity token is invalid or has expired. Try reloading it or contact support."
msgstr ""
#. js-lingui-id: Fx0axg
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription is scheduled for cancellation"
msgstr ""
#. js-lingui-id: XgIa/8
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription setup was not completed."
msgstr ""
#. js-lingui-id: Z9kbt6
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription status is: {statusLabel}"
msgstr ""
#. js-lingui-id: QOd24n
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and "
+327 -38
View File
@@ -752,23 +752,37 @@ msgid "Actions users can perform on this object"
msgstr "Ενέργειες χρηστών που μπορούν να εκτελέσουν σε αυτό το αντικείμενο"
#. js-lingui-id: FQBaXG
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
#: src/modules/settings/data-model/objects/components/SettingsObjectInactiveMenuDropDown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
msgid "Activate"
msgstr "Ενεργοποίηση"
#. js-lingui-id: eqeFkF
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Activate Enterprise Key"
msgstr ""
#. js-lingui-id: tu8A/k
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
msgid "Activate Workflow"
msgstr "Ενεργοποίηση διεργασιών"
#. js-lingui-id: jSZacs
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Activating..."
msgstr ""
#. js-lingui-id: F6pfE9
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/domains/components/SettingsWorkspaceDomainCard.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Active"
@@ -806,6 +820,13 @@ msgstr "Προσθήκη \"{trimmedName}\" στις επιλογές"
msgid "Add a {objectLabelSingular}"
msgstr "Προσθήκη {objectLabelSingular}"
#. js-lingui-id: 7W8nJr
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
msgid "Add a Group"
msgstr ""
#. js-lingui-id: CZDwqQ
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
@@ -818,16 +839,10 @@ msgid "Add a node"
msgstr "Προσθήκη κόμβου"
#. js-lingui-id: nGv1DN
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Add a record"
msgstr ""
#. js-lingui-id: r8W+9y
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
msgid "Add a Section"
msgstr ""
#. js-lingui-id: eMc2xs
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
msgid "Add a step"
@@ -1429,7 +1444,7 @@ msgid "All set!"
msgstr "Όλα έτοιμα!"
#. js-lingui-id: CHvT6e
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectFlow.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
@@ -1574,6 +1589,7 @@ msgstr "Παρουσιάστηκε σφάλμα κατά τη μεταφόρτω
#. js-lingui-id: XyOToQ
#: src/utils/get-error-message-from-apollo-error.util.ts
#: src/utils/get-error-message-from-apollo-error.util.ts
#: src/modules/views/hooks/internal/usePerformViewSortAPIPersist.ts
#: src/modules/views/hooks/internal/usePerformViewGroupAPIPersist.ts
#: src/modules/views/hooks/internal/usePerformViewFilterAPIPersist.ts
@@ -1664,6 +1680,7 @@ msgstr "API"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "API & Webhooks"
msgstr "API & Webhooks"
@@ -1940,6 +1957,7 @@ msgstr "Αύξουσα"
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Ask AI"
msgstr "Ρώτησε την AI"
@@ -2078,6 +2096,11 @@ msgstr ""
msgid "Attachments"
msgstr "Συνημμένα"
#. js-lingui-id: y2W2Hg
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Audit logs"
msgstr ""
#. js-lingui-id: EPEFrH
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
@@ -2306,6 +2329,11 @@ msgstr "μεταξύ του {startOrdinal} και {endOrdinal} του μήνα"
msgid "Billing"
msgstr "Χρέωση"
#. js-lingui-id: dSjFxR
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Billing history"
msgstr ""
#. js-lingui-id: nJGwRf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Billing interval"
@@ -2563,6 +2591,7 @@ msgid "Cancel metered tier switching?"
msgstr "Ακύρωση αλλαγής τιμολογιακής βαθμίδας;"
#. js-lingui-id: rRK/Lf
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel Plan"
msgstr "Ακύρωση σχεδίου"
@@ -2578,10 +2607,26 @@ msgid "Cancel plan switching?"
msgstr "Ακύρωση αλλαγής προγράμματος;"
#. js-lingui-id: N6gPiD
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel your subscription"
msgstr "Ακύρωση της συνδρομής σας"
#. js-lingui-id: GGWsTU
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Canceled"
msgstr ""
#. js-lingui-id: y4uH7j
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Cancelling"
msgstr ""
#. js-lingui-id: WbPx+C
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Cancels on"
msgstr ""
#. js-lingui-id: XDbjjW
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Cannot delete the only view"
@@ -3077,11 +3122,6 @@ msgstr ""
msgid "Configure fallback login methods for users with SSO bypass permissions"
msgstr "Διαμόρφωση εναλλακτικών μεθόδων σύνδεσης για χρήστες με δικαιώματα παράκαμψης SSO"
#. js-lingui-id: c7wznw
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
msgid "Configure filters"
msgstr "Ρύθμιση φίλτρων"
#. js-lingui-id: ghdb7+
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
msgid "Configure how we should display your events in your calendar"
@@ -3279,6 +3319,7 @@ msgstr ""
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
msgid "Continue"
msgstr "Συνέχεια"
@@ -3438,6 +3479,21 @@ msgstr "Κόστος ανά 1k επιπλέον πιστώσεις"
msgid "Could not delete approved access domain"
msgstr "Δεν ήταν δυνατή η διαγραφή του εγκεκριμένου domain πρόσβασης"
#. js-lingui-id: KqYYBp
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not open billing portal. Please check your enterprise key is present, or contact support."
msgstr ""
#. js-lingui-id: ZuI4Sl
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Could not open Stripe. Please contact support."
msgstr ""
#. js-lingui-id: wVw4Am
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not refresh validity token. Please contact support."
msgstr ""
#. js-lingui-id: s8lFtq
#: src/hooks/useCopyToClipboard.tsx
msgid "Couldn't copy to clipboard"
@@ -3815,6 +3871,7 @@ msgstr "Προσαρμοσμένος τομέας ενημερώθηκε"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Custom objects"
msgstr "Προσαρμοσμένα αντικείμενα"
@@ -4917,6 +4974,8 @@ msgid "Edit own profile information"
msgstr ""
#. js-lingui-id: h2KoTu
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Edit payment method, see your invoices and more"
msgstr "Επεξεργασία τρόπου πληρωμής, προβολή των τιμολογίων σου και άλλα"
@@ -5216,6 +5275,11 @@ msgstr "Ενισχύει την ασφάλεια απαιτώντας έναν
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr "Απολαύστε μια δωρεάν δοκιμαστική περίοδο {withCreditCardTrialPeriodDuration} ημερών"
#. js-lingui-id: 6iUnle
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Enjoy a 30-day free trial"
msgstr ""
#. js-lingui-id: T/N+2Z
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormRawJsonFieldInput.tsx
@@ -5422,6 +5486,9 @@ msgstr "Εισάγετε το κλειδί API σας"
#. js-lingui-id: GpB8YV
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
msgid "Enterprise"
msgstr "Επιχειρήσεις"
@@ -5430,6 +5497,22 @@ msgstr "Επιχειρήσεις"
msgid "Enterprise Feature"
msgstr ""
#. js-lingui-id: S5c4pl
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Enterprise License"
msgstr ""
#. js-lingui-id: KGE5g0
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Enterprise license activated successfully"
msgstr ""
#. js-lingui-id: SLuq/l
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Entity ID"
@@ -5470,6 +5553,11 @@ msgstr "Διαγραφή εγγραφών που έχουν διαγραφεί
msgid "Error"
msgstr "Σφάλμα"
#. js-lingui-id: VouTsQ
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error activating enterprise license"
msgstr ""
#. js-lingui-id: GHKxvg
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error deleting api key."
@@ -5495,11 +5583,6 @@ msgstr "Σφάλμα κατά τη διαγραφή του παρόχου ταυ
msgid "Error editing SSO Identity Provider"
msgstr "Σφάλμα κατά την επεξεργασία του παρόχου ταυτότητας SSO"
#. js-lingui-id: GsIfmO
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerMetricsGraph.tsx
msgid "Error fetching worker metrics: {errorMessage}"
msgstr "Σφάλμα κατά την ανάκτηση μετρικών εργατών: {errorMessage}"
#. js-lingui-id: GdBN5t
#: src/modules/error-handler/components/AppRootErrorFallback.tsx
msgid "Error illustration"
@@ -5530,11 +5613,26 @@ msgstr "Σφάλμα φόρτωσης μηνύματος"
msgid "Error Message"
msgstr "Μήνυμα λάθους"
#. js-lingui-id: Mox63G
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error opening billing portal"
msgstr ""
#. js-lingui-id: e/eieW
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Error opening Stripe"
msgstr ""
#. js-lingui-id: bT/0cM
#: src/modules/ui/field/display/components/PhonesDisplay.tsx
msgid "Error parsing additional phones: {error}"
msgstr "Σφάλμα ανάλυσης πρόσθετων τηλεφώνων: {error}"
#. js-lingui-id: zRXcyv
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error refreshing validity token. Please contact support."
msgstr ""
#. js-lingui-id: PfAip2
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error regenerating api key."
@@ -5997,6 +6095,11 @@ msgstr ""
msgid "Failed to {translatedOperationType} {translatedMetadataName}. Related {relatedEntityNames} validation failed. Please check your configuration and try again."
msgstr ""
#. js-lingui-id: R1XJV1
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Failed to activate enterprise license. Please check your key or contact support."
msgstr ""
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to activate skill"
@@ -6374,7 +6477,6 @@ msgstr ""
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/views/components/ViewBarFilterButton.tsx
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
#: src/modules/settings/roles/components/SettingsRolesList.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
@@ -6397,6 +6499,7 @@ msgid "Filter group rule options"
msgstr "Επιλογές κανόνα ομάδας φίλτρων"
#. js-lingui-id: cSev+j
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
msgid "Filters"
msgstr "Φίλτρα"
@@ -6467,6 +6570,11 @@ msgstr "Όνομα"
msgid "First name can not be empty"
msgstr "Το μικρό όνομα δεν μπορεί να είναι κενό"
#. js-lingui-id: JREYkg
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Fix the payment issue to keep your enterprise features active."
msgstr ""
#. js-lingui-id: ylQd2j
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
@@ -6486,7 +6594,7 @@ msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
msgid "Folders"
msgstr "Φάκελοι"
@@ -6635,6 +6743,22 @@ msgstr "Δημιουργημένα αρχεία"
msgid "German"
msgstr "Γερμανικά"
#. js-lingui-id: sqtljx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Get Enterprise"
msgstr ""
#. js-lingui-id: o2kSwB
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Get Enterprise Key"
msgstr ""
#. js-lingui-id: NXEW3h
#: src/pages/onboarding/InviteTeam.tsx
msgid "Get the most out of your workspace by inviting your team."
@@ -6655,6 +6779,12 @@ msgstr "Παγκόσμιο"
msgid "Go Back"
msgstr ""
#. js-lingui-id: Hb4Cgz
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Go to billing portal"
msgstr ""
#. js-lingui-id: mUbv8L
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
msgid "Go to Companies"
@@ -7240,6 +7370,11 @@ msgstr ""
msgid "Inbox"
msgstr "Εισερχόμενα"
#. js-lingui-id: mtGDyy
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Incomplete"
msgstr ""
#. js-lingui-id: O5wNUa
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "index"
@@ -7882,9 +8017,8 @@ msgid "Launch manually"
msgstr "Εκκίνηση χειροκίνητα"
#. js-lingui-id: rdU729
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsLayout.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -7957,6 +8091,12 @@ msgstr ""
msgid "Less than or equal"
msgstr "Μικρότερο από ή ίσο"
#. js-lingui-id: 3qg5Ro
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Licensee"
msgstr ""
#. js-lingui-id: 1njn7W
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownThemesComponents.tsx
@@ -8260,6 +8400,8 @@ msgid "Manage billing and subscriptions"
msgstr "Διαχείριση χρέωσης και συνδρομών"
#. js-lingui-id: nvgUPq
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Manage billing information"
msgstr "Διαχείριση πληροφοριών χρέωσης"
@@ -8612,6 +8754,11 @@ msgstr "Μήνας του έτους"
msgid "monthly"
msgstr "μηνιαία"
#. js-lingui-id: Sew/cK
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Monthly subscription"
msgstr ""
#. js-lingui-id: 6jefe3
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
@@ -8673,7 +8820,7 @@ msgid "Move right"
msgstr "Μετακίνηση δεξιά"
#. js-lingui-id: 6qDVmw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Move to a folder"
msgstr ""
@@ -9274,13 +9421,13 @@ msgid "No Files"
msgstr "Χωρίς αρχεία"
#. js-lingui-id: pYblOw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
msgid "No folder"
msgstr "Κανένας φάκελος"
#. js-lingui-id: 6XMhqL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folders available"
msgstr ""
@@ -9454,8 +9601,8 @@ msgstr "Χωρίς αποτελέσματα"
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/side-panel/components/SidePanelList.tsx
msgid "No results found"
msgstr "Δεν βρέθηκαν αποτελέσματα"
@@ -10188,11 +10335,26 @@ msgstr "Ο σύνδεσμος για την επαναφορά του κωδικ
msgid "Paste the code below"
msgstr "Επικολλήστε τον παρακάτω κωδικό"
#. js-lingui-id: raz2Pm
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Paste your enterprise key below to activate"
msgstr ""
#. js-lingui-id: dNdgvF
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Paste your enterprise key here"
msgstr ""
#. js-lingui-id: I6gXOa
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "Path"
msgstr "Διαδρομή"
#. js-lingui-id: QmXBEc
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Payment issue"
msgstr ""
#. js-lingui-id: UbRKMZ
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
#: src/modules/settings/security/components/approvedAccessDomains/SettingsApprovedAccessDomainsListCard.tsx
@@ -10329,13 +10491,13 @@ msgid "Pick a {objectLabel} record"
msgstr "Επιλέξτε μια καταγραφή {objectLabel}"
#. js-lingui-id: JqqNlC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Pick a view"
msgstr ""
#. js-lingui-id: Wlba2h
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Pick an object"
msgstr ""
@@ -10953,6 +11115,16 @@ msgstr "Ενημερώσεις"
msgid "Reload"
msgstr "Ανανέωση"
#. js-lingui-id: qbM5In
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Reload validity token"
msgstr ""
#. js-lingui-id: MZWnSC
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Reloading..."
msgstr ""
#. js-lingui-id: qlAIQ1
#: src/modules/object-metadata/components/RemoteNavigationDrawerSection.tsx
msgid "Remote"
@@ -11228,7 +11400,7 @@ msgstr "Αποτέλεσμα"
#. js-lingui-id: kx0s+n
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Results"
msgstr "Αποτελέσματα"
@@ -11367,6 +11539,11 @@ msgstr ""
msgid "row level permission predicate group"
msgstr ""
#. js-lingui-id: xPaeO2
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Row-level security"
msgstr ""
#. js-lingui-id: 7jTlsu
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Ruby"
@@ -11485,6 +11662,8 @@ msgstr ""
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Search"
msgstr "Αναζήτηση"
@@ -11521,7 +11700,7 @@ msgid "Search a field..."
msgstr "Αναζήτηση πεδίου..."
#. js-lingui-id: ITQFzL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Search a folder..."
msgstr ""
@@ -11689,7 +11868,7 @@ msgid "Search records"
msgstr "Αναζήτηση εγγραφών"
#. js-lingui-id: rRklUH
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Search records..."
msgstr ""
@@ -11724,11 +11903,13 @@ msgid "Searching the web for {query}"
msgstr ""
#. js-lingui-id: 8sgZS9
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month"
msgstr "θέση / μήνας"
#. js-lingui-id: aQnWwf
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month - billed yearly"
msgstr "θέση / μήνας - χρέωση ετησίως"
@@ -12558,6 +12739,7 @@ msgstr "Ενιαίο Σύστημα Εισόδου"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
@@ -12602,6 +12784,16 @@ msgstr ""
msgid "Start"
msgstr "Έναρξη"
#. js-lingui-id: ASqWQi
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Start a new enterprise subscription to re-enable enterprise features."
msgstr ""
#. js-lingui-id: OC6rnK
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Start a new enterprise subscription."
msgstr ""
#. js-lingui-id: D3iCkb
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
msgid "Start Date"
@@ -12627,6 +12819,11 @@ msgid "State"
msgstr "Κατάσταση"
#. js-lingui-id: uAQUqI
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
@@ -12922,11 +13119,11 @@ msgstr ""
#. js-lingui-id: 0apULK
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -13229,6 +13426,11 @@ msgstr "Υπάρχουν απαιτούμενες στήλες που δεν α
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
msgstr "Υπάρχουν ακόμα γραμμές που περιέχουν λάθη. Οι γραμμές με λάθη θα αγνοηθούν κατά την υποβολή."
#. js-lingui-id: CA9PTn
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "There is a payment issue with your subscription. Please update your payment method."
msgstr ""
#. js-lingui-id: WQk7Cf
#: src/modules/activities/timeline-activities/components/TimelineCard.tsx
msgid "There is no activity associated with this record."
@@ -13343,9 +13545,9 @@ msgstr ""
msgid "This database value overrides environment settings. "
msgstr "Αυτή η τιμή βάσης δεδομένων υπερισχύει των ρυθμίσεων περιβάλλοντος."
#. js-lingui-id: qHAJQ2
#. js-lingui-id: 8IRnd6
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "This feature is part of the Organization Plan"
msgid "This feature is part of the Enterprise Plan"
msgstr ""
#. js-lingui-id: own57K
@@ -13654,6 +13856,8 @@ msgid "Transfer ownership"
msgstr ""
#. js-lingui-id: lhkaAC
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/internal/PlansTags.tsx
msgid "Trial"
msgstr "Δοκιμή"
@@ -13844,7 +14048,7 @@ msgid "Type anything..."
msgstr "Πληκτρολογήστε οτιδήποτε..."
#. js-lingui-id: UhqKcC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Type to search records"
msgstr ""
@@ -14002,6 +14206,11 @@ msgstr "Απεριόριστες επαφές"
msgid "Unlisted"
msgstr "Μη καταχωρισμένο"
#. js-lingui-id: Ep1uUU
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
msgstr ""
#. js-lingui-id: eQMhFX
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "unordered"
@@ -14071,6 +14280,11 @@ msgstr "ενημέρωση"
msgid "Update"
msgstr "Ενημέρωση"
#. js-lingui-id: Y69tSP
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Update payment method"
msgstr ""
#. js-lingui-id: 0KAL3W
#: src/modules/side-panel/hooks/useOpenUpdateMultipleRecordsPageInSidePanel.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
@@ -14309,11 +14523,22 @@ msgstr "Χρησιμοποιώντας την προεπιλεγμένη τιμ
msgid "Using default value. Set a custom value to override."
msgstr "Χρησιμοποιώντας την προεπιλεγμένη τιμή. Ορίστε μια προσαρμοσμένη τιμή για υπερισχύ."
#. js-lingui-id: zzp4XX
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Valid until"
msgstr ""
#. js-lingui-id: Clr4qp
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Validate Data"
msgstr "Επικύρωση δεδομένων"
#. js-lingui-id: PWZBIT
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Validity token refreshed successfully"
msgstr ""
#. js-lingui-id: wMHvYH
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/KeyValuePairInput.tsx
@@ -14440,6 +14665,8 @@ msgid "View and filter events, page views, object changes"
msgstr ""
#. js-lingui-id: KANz0G
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "View billing details"
msgstr "Προβολή λεπτομερειών χρέωσης"
@@ -14489,6 +14716,11 @@ msgstr "ομάδα προβολής"
msgid "View installed app"
msgstr ""
#. js-lingui-id: B02hom
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "View invoices"
msgstr ""
#. js-lingui-id: lh5BED
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerQueueMetricsSection.tsx
msgid "View Jobs"
@@ -14507,6 +14739,7 @@ msgstr ""
#. js-lingui-id: ecVcAx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "View Previous AI Chats"
msgstr "Εμφάνιση Προηγούμενων Συνομιλιών AI"
@@ -14856,6 +15089,7 @@ msgstr "Ροές Εργασίας"
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/domains/SettingsDomains.tsx
@@ -15022,6 +15256,11 @@ msgstr "Έτος"
msgid "yearly"
msgstr "ετήσια"
#. js-lingui-id: Y1GwUe
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Yearly subscription"
msgstr ""
#. js-lingui-id: +BGee5
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
msgid "years"
@@ -15154,6 +15393,36 @@ msgstr "Τα θέματα των email σας και οι τίτλοι συνα
msgid "Your emails and events content will be shared with your team."
msgstr "Το περιεχόμενο των email σας και των γεγονότων σας θα μοιραστεί με την ομάδα σας."
#. js-lingui-id: ahEwS4
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features are active"
msgstr ""
#. js-lingui-id: XMZLU/
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features are active but your enterprise key is missing or invalid. This may be expected, but if not, please set a valid signed enterprise key to manage your subscription, or contact support."
msgstr ""
#. js-lingui-id: AxcwNj
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features will be disabled"
msgstr ""
#. js-lingui-id: PT137K
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features will remain active until {cancelAtDate}."
msgstr ""
#. js-lingui-id: 69Siss
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
msgid "Your enterprise key format is deprecated. Please activate a new key to keep enterprise features."
msgstr ""
#. js-lingui-id: NTpA4U
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise subscription has been canceled."
msgstr ""
#. js-lingui-id: 9ivpwk
#: src/pages/settings/SettingsProfile.tsx
msgid "Your name as it will be displayed"
@@ -15164,6 +15433,26 @@ msgstr "Το όνομά σας όπως θα εμφανίζεται"
msgid "Your name as it will be displayed on the app"
msgstr "Το όνομά σας όπως θα εμφανίζεται στην εφαρμογή"
#. js-lingui-id: 319YPG
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription is active but your validity token is invalid or has expired. Try reloading it or contact support."
msgstr ""
#. js-lingui-id: Fx0axg
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription is scheduled for cancellation"
msgstr ""
#. js-lingui-id: XgIa/8
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription setup was not completed."
msgstr ""
#. js-lingui-id: Z9kbt6
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription status is: {statusLabel}"
msgstr ""
#. js-lingui-id: QOd24n
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and "
+328 -39
View File
@@ -747,23 +747,37 @@ msgid "Actions users can perform on this object"
msgstr "Actions users can perform on this object"
#. js-lingui-id: FQBaXG
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
#: src/modules/settings/data-model/objects/components/SettingsObjectInactiveMenuDropDown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
msgid "Activate"
msgstr "Activate"
#. js-lingui-id: eqeFkF
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Activate Enterprise Key"
msgstr "Activate Enterprise Key"
#. js-lingui-id: tu8A/k
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
msgid "Activate Workflow"
msgstr "Activate Workflow"
#. js-lingui-id: jSZacs
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Activating..."
msgstr "Activating..."
#. js-lingui-id: F6pfE9
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/domains/components/SettingsWorkspaceDomainCard.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Active"
@@ -801,6 +815,13 @@ msgstr "Add \"{trimmedName}\" to options"
msgid "Add a {objectLabelSingular}"
msgstr "Add a {objectLabelSingular}"
#. js-lingui-id: 7W8nJr
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
msgid "Add a Group"
msgstr "Add a Group"
#. js-lingui-id: CZDwqQ
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
@@ -813,16 +834,10 @@ msgid "Add a node"
msgstr "Add a node"
#. js-lingui-id: nGv1DN
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Add a record"
msgstr "Add a record"
#. js-lingui-id: r8W+9y
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
msgid "Add a Section"
msgstr "Add a Section"
#. js-lingui-id: eMc2xs
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
msgid "Add a step"
@@ -1424,7 +1439,7 @@ msgid "All set!"
msgstr "All set!"
#. js-lingui-id: CHvT6e
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectFlow.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
msgid "All system objects are already in the sidebar"
msgstr "All system objects are already in the sidebar"
@@ -1569,6 +1584,7 @@ msgstr "An error occurred while uploading the picture."
#. js-lingui-id: XyOToQ
#: src/utils/get-error-message-from-apollo-error.util.ts
#: src/utils/get-error-message-from-apollo-error.util.ts
#: src/modules/views/hooks/internal/usePerformViewSortAPIPersist.ts
#: src/modules/views/hooks/internal/usePerformViewGroupAPIPersist.ts
#: src/modules/views/hooks/internal/usePerformViewFilterAPIPersist.ts
@@ -1659,6 +1675,7 @@ msgstr "API"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "API & Webhooks"
msgstr "API & Webhooks"
@@ -1935,6 +1952,7 @@ msgstr "Ascending"
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Ask AI"
msgstr "Ask AI"
@@ -2073,6 +2091,11 @@ msgstr "Attach files"
msgid "Attachments"
msgstr "Attachments"
#. js-lingui-id: y2W2Hg
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Audit logs"
msgstr "Audit logs"
#. js-lingui-id: EPEFrH
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
@@ -2301,6 +2324,11 @@ msgstr "between the {startOrdinal} and {endOrdinal} of the month"
msgid "Billing"
msgstr "Billing"
#. js-lingui-id: dSjFxR
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Billing history"
msgstr "Billing history"
#. js-lingui-id: nJGwRf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Billing interval"
@@ -2558,6 +2586,7 @@ msgid "Cancel metered tier switching?"
msgstr "Cancel metered tier switching?"
#. js-lingui-id: rRK/Lf
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel Plan"
msgstr "Cancel Plan"
@@ -2573,10 +2602,26 @@ msgid "Cancel plan switching?"
msgstr "Cancel plan switching?"
#. js-lingui-id: N6gPiD
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel your subscription"
msgstr "Cancel your subscription"
#. js-lingui-id: GGWsTU
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Canceled"
msgstr "Canceled"
#. js-lingui-id: y4uH7j
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Cancelling"
msgstr "Cancelling"
#. js-lingui-id: WbPx+C
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Cancels on"
msgstr "Cancels on"
#. js-lingui-id: XDbjjW
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Cannot delete the only view"
@@ -3072,11 +3117,6 @@ msgstr "Configure default AI models and availability"
msgid "Configure fallback login methods for users with SSO bypass permissions"
msgstr "Configure fallback login methods for users with SSO bypass permissions"
#. js-lingui-id: c7wznw
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
msgid "Configure filters"
msgstr "Configure filters"
#. js-lingui-id: ghdb7+
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
msgid "Configure how we should display your events in your calendar"
@@ -3274,6 +3314,7 @@ msgstr "Context window"
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
msgid "Continue"
msgstr "Continue"
@@ -3433,6 +3474,21 @@ msgstr "Cost per 1k Extra Credits"
msgid "Could not delete approved access domain"
msgstr "Could not delete approved access domain"
#. js-lingui-id: KqYYBp
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not open billing portal. Please check your enterprise key is present, or contact support."
msgstr "Could not open billing portal. Please check your enterprise key is present, or contact support."
#. js-lingui-id: ZuI4Sl
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Could not open Stripe. Please contact support."
msgstr "Could not open Stripe. Please contact support."
#. js-lingui-id: wVw4Am
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not refresh validity token. Please contact support."
msgstr "Could not refresh validity token. Please contact support."
#. js-lingui-id: s8lFtq
#: src/hooks/useCopyToClipboard.tsx
msgid "Couldn't copy to clipboard"
@@ -3810,6 +3866,7 @@ msgstr "Custom domain updated"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Custom objects"
msgstr "Custom objects"
@@ -4912,6 +4969,8 @@ msgid "Edit own profile information"
msgstr "Edit own profile information"
#. js-lingui-id: h2KoTu
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Edit payment method, see your invoices and more"
msgstr "Edit payment method, see your invoices and more"
@@ -5211,6 +5270,11 @@ msgstr "Enhances security by requiring a code along with your password"
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
#. js-lingui-id: 6iUnle
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Enjoy a 30-day free trial"
msgstr "Enjoy a 30-day free trial"
#. js-lingui-id: T/N+2Z
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormRawJsonFieldInput.tsx
@@ -5417,6 +5481,9 @@ msgstr "Enter your API key"
#. js-lingui-id: GpB8YV
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
msgid "Enterprise"
msgstr "Enterprise"
@@ -5425,6 +5492,22 @@ msgstr "Enterprise"
msgid "Enterprise Feature"
msgstr "Enterprise Feature"
#. js-lingui-id: S5c4pl
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Enterprise License"
msgstr "Enterprise License"
#. js-lingui-id: KGE5g0
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Enterprise license activated successfully"
msgstr "Enterprise license activated successfully"
#. js-lingui-id: SLuq/l
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Entity ID"
@@ -5465,6 +5548,11 @@ msgstr "Erasure of soft-deleted records"
msgid "Error"
msgstr "Error"
#. js-lingui-id: VouTsQ
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error activating enterprise license"
msgstr "Error activating enterprise license"
#. js-lingui-id: GHKxvg
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error deleting api key."
@@ -5490,11 +5578,6 @@ msgstr "Error deleting SSO Identity Provider"
msgid "Error editing SSO Identity Provider"
msgstr "Error editing SSO Identity Provider"
#. js-lingui-id: GsIfmO
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerMetricsGraph.tsx
msgid "Error fetching worker metrics: {errorMessage}"
msgstr "Error fetching worker metrics: {errorMessage}"
#. js-lingui-id: GdBN5t
#: src/modules/error-handler/components/AppRootErrorFallback.tsx
msgid "Error illustration"
@@ -5525,11 +5608,26 @@ msgstr "Error loading message"
msgid "Error Message"
msgstr "Error Message"
#. js-lingui-id: Mox63G
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error opening billing portal"
msgstr "Error opening billing portal"
#. js-lingui-id: e/eieW
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Error opening Stripe"
msgstr "Error opening Stripe"
#. js-lingui-id: bT/0cM
#: src/modules/ui/field/display/components/PhonesDisplay.tsx
msgid "Error parsing additional phones: {error}"
msgstr "Error parsing additional phones: {error}"
#. js-lingui-id: zRXcyv
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error refreshing validity token. Please contact support."
msgstr "Error refreshing validity token. Please contact support."
#. js-lingui-id: PfAip2
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error regenerating api key."
@@ -5992,6 +6090,11 @@ msgstr "Failed to {translatedOperationType} {translatedMetadataName}. Please try
msgid "Failed to {translatedOperationType} {translatedMetadataName}. Related {relatedEntityNames} validation failed. Please check your configuration and try again."
msgstr "Failed to {translatedOperationType} {translatedMetadataName}. Related {relatedEntityNames} validation failed. Please check your configuration and try again."
#. js-lingui-id: R1XJV1
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Failed to activate enterprise license. Please check your key or contact support."
msgstr "Failed to activate enterprise license. Please check your key or contact support."
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to activate skill"
@@ -6369,7 +6472,6 @@ msgstr "Files"
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/views/components/ViewBarFilterButton.tsx
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
#: src/modules/settings/roles/components/SettingsRolesList.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
@@ -6392,6 +6494,7 @@ msgid "Filter group rule options"
msgstr "Filter group rule options"
#. js-lingui-id: cSev+j
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
msgid "Filters"
msgstr "Filters"
@@ -6462,6 +6565,11 @@ msgstr "First Name"
msgid "First name can not be empty"
msgstr "First name can not be empty"
#. js-lingui-id: JREYkg
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Fix the payment issue to keep your enterprise features active."
msgstr "Fix the payment issue to keep your enterprise features active."
#. js-lingui-id: ylQd2j
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
@@ -6481,7 +6589,7 @@ msgid "Folder name"
msgstr "Folder name"
#. js-lingui-id: HSh8u/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
msgid "Folders"
msgstr "Folders"
@@ -6630,6 +6738,22 @@ msgstr "Generated Files"
msgid "German"
msgstr "German"
#. js-lingui-id: sqtljx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Get Enterprise"
msgstr "Get Enterprise"
#. js-lingui-id: o2kSwB
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Get Enterprise Key"
msgstr "Get Enterprise Key"
#. js-lingui-id: NXEW3h
#: src/pages/onboarding/InviteTeam.tsx
msgid "Get the most out of your workspace by inviting your team."
@@ -6650,6 +6774,12 @@ msgstr "Global"
msgid "Go Back"
msgstr "Go Back"
#. js-lingui-id: Hb4Cgz
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Go to billing portal"
msgstr "Go to billing portal"
#. js-lingui-id: mUbv8L
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
msgid "Go to Companies"
@@ -7235,6 +7365,11 @@ msgstr "Inactive Skill Options"
msgid "Inbox"
msgstr "Inbox"
#. js-lingui-id: mtGDyy
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Incomplete"
msgstr "Incomplete"
#. js-lingui-id: O5wNUa
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "index"
@@ -7877,9 +8012,8 @@ msgid "Launch manually"
msgstr "Launch manually"
#. js-lingui-id: rdU729
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsLayout.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -7952,6 +8086,12 @@ msgstr "Legend"
msgid "Less than or equal"
msgstr "Less than or equal"
#. js-lingui-id: 3qg5Ro
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Licensee"
msgstr "Licensee"
#. js-lingui-id: 1njn7W
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownThemesComponents.tsx
@@ -8255,6 +8395,8 @@ msgid "Manage billing and subscriptions"
msgstr "Manage billing and subscriptions"
#. js-lingui-id: nvgUPq
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Manage billing information"
msgstr "Manage billing information"
@@ -8607,6 +8749,11 @@ msgstr "Month of the year"
msgid "monthly"
msgstr "monthly"
#. js-lingui-id: Sew/cK
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Monthly subscription"
msgstr "Monthly subscription"
#. js-lingui-id: 6jefe3
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
@@ -8668,7 +8815,7 @@ msgid "Move right"
msgstr "Move right"
#. js-lingui-id: 6qDVmw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Move to a folder"
msgstr "Move to a folder"
@@ -9269,13 +9416,13 @@ msgid "No Files"
msgstr "No Files"
#. js-lingui-id: pYblOw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
msgid "No folder"
msgstr "No folder"
#. js-lingui-id: 6XMhqL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folders available"
msgstr "No folders available"
@@ -9449,8 +9596,8 @@ msgstr "No Results"
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/side-panel/components/SidePanelList.tsx
msgid "No results found"
msgstr "No results found"
@@ -10183,11 +10330,26 @@ msgstr "Password reset link has been sent to the email"
msgid "Paste the code below"
msgstr "Paste the code below"
#. js-lingui-id: raz2Pm
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Paste your enterprise key below to activate"
msgstr "Paste your enterprise key below to activate"
#. js-lingui-id: dNdgvF
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Paste your enterprise key here"
msgstr "Paste your enterprise key here"
#. js-lingui-id: I6gXOa
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "Path"
msgstr "Path"
#. js-lingui-id: QmXBEc
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Payment issue"
msgstr "Payment issue"
#. js-lingui-id: UbRKMZ
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
#: src/modules/settings/security/components/approvedAccessDomains/SettingsApprovedAccessDomainsListCard.tsx
@@ -10324,13 +10486,13 @@ msgid "Pick a {objectLabel} record"
msgstr "Pick a {objectLabel} record"
#. js-lingui-id: JqqNlC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Pick a view"
msgstr "Pick a view"
#. js-lingui-id: Wlba2h
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Pick an object"
msgstr "Pick an object"
@@ -10948,6 +11110,16 @@ msgstr "Releases"
msgid "Reload"
msgstr "Reload"
#. js-lingui-id: qbM5In
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Reload validity token"
msgstr "Reload validity token"
#. js-lingui-id: MZWnSC
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Reloading..."
msgstr "Reloading..."
#. js-lingui-id: qlAIQ1
#: src/modules/object-metadata/components/RemoteNavigationDrawerSection.tsx
msgid "Remote"
@@ -11223,7 +11395,7 @@ msgstr "Result"
#. js-lingui-id: kx0s+n
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Results"
msgstr "Results"
@@ -11362,6 +11534,11 @@ msgstr "row level permission predicate"
msgid "row level permission predicate group"
msgstr "row level permission predicate group"
#. js-lingui-id: xPaeO2
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Row-level security"
msgstr "Row-level security"
#. js-lingui-id: 7jTlsu
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Ruby"
@@ -11480,6 +11657,8 @@ msgstr "Score"
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Search"
msgstr "Search"
@@ -11516,7 +11695,7 @@ msgid "Search a field..."
msgstr "Search a field..."
#. js-lingui-id: ITQFzL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Search a folder..."
msgstr "Search a folder..."
@@ -11684,7 +11863,7 @@ msgid "Search records"
msgstr "Search records"
#. js-lingui-id: rRklUH
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Search records..."
msgstr "Search records..."
@@ -11719,11 +11898,13 @@ msgid "Searching the web for {query}"
msgstr "Searching the web for {query}"
#. js-lingui-id: 8sgZS9
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month"
msgstr "seat / month"
#. js-lingui-id: aQnWwf
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month - billed yearly"
msgstr "seat / month - billed yearly"
@@ -12551,6 +12732,7 @@ msgstr "SSO"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
@@ -12595,6 +12777,16 @@ msgstr "Standard tools available to AI agents"
msgid "Start"
msgstr "Start"
#. js-lingui-id: ASqWQi
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Start a new enterprise subscription to re-enable enterprise features."
msgstr "Start a new enterprise subscription to re-enable enterprise features."
#. js-lingui-id: OC6rnK
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Start a new enterprise subscription."
msgstr "Start a new enterprise subscription."
#. js-lingui-id: D3iCkb
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
msgid "Start Date"
@@ -12620,6 +12812,11 @@ msgid "State"
msgstr "State"
#. js-lingui-id: uAQUqI
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
@@ -12915,11 +13112,11 @@ msgstr "System fields"
#. js-lingui-id: 0apULK
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr "System objects"
@@ -13222,6 +13419,11 @@ msgstr "There are required columns that are not matched or ignored. Do you want
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
msgstr "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
#. js-lingui-id: CA9PTn
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "There is a payment issue with your subscription. Please update your payment method."
msgstr "There is a payment issue with your subscription. Please update your payment method."
#. js-lingui-id: WQk7Cf
#: src/modules/activities/timeline-activities/components/TimelineCard.tsx
msgid "There is no activity associated with this record."
@@ -13336,10 +13538,10 @@ msgstr "This application is not listed on the marketplace. It was shared via a d
msgid "This database value overrides environment settings. "
msgstr "This database value overrides environment settings. "
#. js-lingui-id: qHAJQ2
#. js-lingui-id: 8IRnd6
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "This feature is part of the Organization Plan"
msgstr "This feature is part of the Organization Plan"
msgid "This feature is part of the Enterprise Plan"
msgstr "This feature is part of the Enterprise Plan"
#. js-lingui-id: own57K
#: src/modules/activities/files/components/DocumentViewer.tsx
@@ -13647,6 +13849,8 @@ msgid "Transfer ownership"
msgstr "Transfer ownership"
#. js-lingui-id: lhkaAC
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/internal/PlansTags.tsx
msgid "Trial"
msgstr "Trial"
@@ -13837,7 +14041,7 @@ msgid "Type anything..."
msgstr "Type anything..."
#. js-lingui-id: UhqKcC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Type to search records"
msgstr "Type to search records"
@@ -13995,6 +14199,11 @@ msgstr "Unlimited contacts"
msgid "Unlisted"
msgstr "Unlisted"
#. js-lingui-id: Ep1uUU
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
msgstr "Unlock enterprise features like SSO, row-level security, and audit logs."
#. js-lingui-id: eQMhFX
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "unordered"
@@ -14064,6 +14273,11 @@ msgstr "update"
msgid "Update"
msgstr "Update"
#. js-lingui-id: Y69tSP
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Update payment method"
msgstr "Update payment method"
#. js-lingui-id: 0KAL3W
#: src/modules/side-panel/hooks/useOpenUpdateMultipleRecordsPageInSidePanel.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
@@ -14302,11 +14516,22 @@ msgstr "Using default application value. Configure via environment variables."
msgid "Using default value. Set a custom value to override."
msgstr "Using default value. Set a custom value to override."
#. js-lingui-id: zzp4XX
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Valid until"
msgstr "Valid until"
#. js-lingui-id: Clr4qp
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Validate Data"
msgstr "Validate Data"
#. js-lingui-id: PWZBIT
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Validity token refreshed successfully"
msgstr "Validity token refreshed successfully"
#. js-lingui-id: wMHvYH
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/KeyValuePairInput.tsx
@@ -14433,6 +14658,8 @@ msgid "View and filter events, page views, object changes"
msgstr "View and filter events, page views, object changes"
#. js-lingui-id: KANz0G
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "View billing details"
msgstr "View billing details"
@@ -14482,6 +14709,11 @@ msgstr "view group"
msgid "View installed app"
msgstr "View installed app"
#. js-lingui-id: B02hom
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "View invoices"
msgstr "View invoices"
#. js-lingui-id: lh5BED
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerQueueMetricsSection.tsx
msgid "View Jobs"
@@ -14500,6 +14732,7 @@ msgstr "View marketplace page"
#. js-lingui-id: ecVcAx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "View Previous AI Chats"
msgstr "View Previous AI Chats"
@@ -14849,6 +15082,7 @@ msgstr "Workflows"
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/domains/SettingsDomains.tsx
@@ -15015,6 +15249,11 @@ msgstr "Year"
msgid "yearly"
msgstr "yearly"
#. js-lingui-id: Y1GwUe
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Yearly subscription"
msgstr "Yearly subscription"
#. js-lingui-id: +BGee5
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
msgid "years"
@@ -15147,6 +15386,36 @@ msgstr "Your email subjects and meeting titles will be shared with your team."
msgid "Your emails and events content will be shared with your team."
msgstr "Your emails and events content will be shared with your team."
#. js-lingui-id: ahEwS4
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features are active"
msgstr "Your enterprise features are active"
#. js-lingui-id: XMZLU/
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features are active but your enterprise key is missing or invalid. This may be expected, but if not, please set a valid signed enterprise key to manage your subscription, or contact support."
msgstr "Your enterprise features are active but your enterprise key is missing or invalid. This may be expected, but if not, please set a valid signed enterprise key to manage your subscription, or contact support."
#. js-lingui-id: AxcwNj
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features will be disabled"
msgstr "Your enterprise features will be disabled"
#. js-lingui-id: PT137K
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features will remain active until {cancelAtDate}."
msgstr "Your enterprise features will remain active until {cancelAtDate}."
#. js-lingui-id: 69Siss
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
msgid "Your enterprise key format is deprecated. Please activate a new key to keep enterprise features."
msgstr "Your enterprise key format is deprecated. Please activate a new key to keep enterprise features."
#. js-lingui-id: NTpA4U
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise subscription has been canceled."
msgstr "Your enterprise subscription has been canceled."
#. js-lingui-id: 9ivpwk
#: src/pages/settings/SettingsProfile.tsx
msgid "Your name as it will be displayed"
@@ -15157,6 +15426,26 @@ msgstr "Your name as it will be displayed"
msgid "Your name as it will be displayed on the app"
msgstr "Your name as it will be displayed on the app"
#. js-lingui-id: 319YPG
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription is active but your validity token is invalid or has expired. Try reloading it or contact support."
msgstr "Your subscription is active but your validity token is invalid or has expired. Try reloading it or contact support."
#. js-lingui-id: Fx0axg
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription is scheduled for cancellation"
msgstr "Your subscription is scheduled for cancellation"
#. js-lingui-id: XgIa/8
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription setup was not completed."
msgstr "Your subscription setup was not completed."
#. js-lingui-id: Z9kbt6
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription status is: {statusLabel}"
msgstr "Your subscription status is: {statusLabel}"
#. js-lingui-id: QOd24n
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and "
+327 -38
View File
@@ -752,23 +752,37 @@ msgid "Actions users can perform on this object"
msgstr "Acciones que los usuarios pueden realizar en este objeto"
#. js-lingui-id: FQBaXG
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
#: src/modules/settings/data-model/objects/components/SettingsObjectInactiveMenuDropDown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
msgid "Activate"
msgstr "Activar"
#. js-lingui-id: eqeFkF
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Activate Enterprise Key"
msgstr ""
#. js-lingui-id: tu8A/k
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
msgid "Activate Workflow"
msgstr "Activar workflow"
#. js-lingui-id: jSZacs
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Activating..."
msgstr ""
#. js-lingui-id: F6pfE9
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/domains/components/SettingsWorkspaceDomainCard.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Active"
@@ -806,6 +820,13 @@ msgstr "Agregar \"{trimmedName}\" a las opciones"
msgid "Add a {objectLabelSingular}"
msgstr "Agregar un {objectLabelSingular}"
#. js-lingui-id: 7W8nJr
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
msgid "Add a Group"
msgstr ""
#. js-lingui-id: CZDwqQ
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
@@ -818,16 +839,10 @@ msgid "Add a node"
msgstr "Añadir un nodo"
#. js-lingui-id: nGv1DN
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Add a record"
msgstr ""
#. js-lingui-id: r8W+9y
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
msgid "Add a Section"
msgstr ""
#. js-lingui-id: eMc2xs
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
msgid "Add a step"
@@ -1429,7 +1444,7 @@ msgid "All set!"
msgstr "¡Todo listo!"
#. js-lingui-id: CHvT6e
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectFlow.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
@@ -1574,6 +1589,7 @@ msgstr "Se produjo un error al subir la imagen."
#. js-lingui-id: XyOToQ
#: src/utils/get-error-message-from-apollo-error.util.ts
#: src/utils/get-error-message-from-apollo-error.util.ts
#: src/modules/views/hooks/internal/usePerformViewSortAPIPersist.ts
#: src/modules/views/hooks/internal/usePerformViewGroupAPIPersist.ts
#: src/modules/views/hooks/internal/usePerformViewFilterAPIPersist.ts
@@ -1664,6 +1680,7 @@ msgstr "API"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "API & Webhooks"
msgstr "API y Webhooks"
@@ -1940,6 +1957,7 @@ msgstr "Ascendente"
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Ask AI"
msgstr "Preguntar a IA"
@@ -2078,6 +2096,11 @@ msgstr ""
msgid "Attachments"
msgstr "Adjuntos"
#. js-lingui-id: y2W2Hg
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Audit logs"
msgstr ""
#. js-lingui-id: EPEFrH
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
@@ -2306,6 +2329,11 @@ msgstr "entre el {startOrdinal} y {endOrdinal} del mes"
msgid "Billing"
msgstr "Facturación"
#. js-lingui-id: dSjFxR
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Billing history"
msgstr ""
#. js-lingui-id: nJGwRf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Billing interval"
@@ -2563,6 +2591,7 @@ msgid "Cancel metered tier switching?"
msgstr "¿Cancelar cambio de nivel medido?"
#. js-lingui-id: rRK/Lf
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel Plan"
msgstr "Cancelar plan"
@@ -2578,10 +2607,26 @@ msgid "Cancel plan switching?"
msgstr "¿Cancelar cambio de plan?"
#. js-lingui-id: N6gPiD
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel your subscription"
msgstr "Cancelar su suscripción"
#. js-lingui-id: GGWsTU
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Canceled"
msgstr ""
#. js-lingui-id: y4uH7j
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Cancelling"
msgstr ""
#. js-lingui-id: WbPx+C
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Cancels on"
msgstr ""
#. js-lingui-id: XDbjjW
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Cannot delete the only view"
@@ -3077,11 +3122,6 @@ msgstr ""
msgid "Configure fallback login methods for users with SSO bypass permissions"
msgstr "Configurar métodos de inicio de sesión de respaldo para usuarios con permisos para omitir SSO"
#. js-lingui-id: c7wznw
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
msgid "Configure filters"
msgstr "Configurar filtros"
#. js-lingui-id: ghdb7+
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
msgid "Configure how we should display your events in your calendar"
@@ -3279,6 +3319,7 @@ msgstr ""
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
msgid "Continue"
msgstr "Continuar"
@@ -3438,6 +3479,21 @@ msgstr "Costo por cada 1k Créditos Extra"
msgid "Could not delete approved access domain"
msgstr "No se pudo eliminar el dominio de acceso aprobado"
#. js-lingui-id: KqYYBp
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not open billing portal. Please check your enterprise key is present, or contact support."
msgstr ""
#. js-lingui-id: ZuI4Sl
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Could not open Stripe. Please contact support."
msgstr ""
#. js-lingui-id: wVw4Am
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not refresh validity token. Please contact support."
msgstr ""
#. js-lingui-id: s8lFtq
#: src/hooks/useCopyToClipboard.tsx
msgid "Couldn't copy to clipboard"
@@ -3815,6 +3871,7 @@ msgstr "Dominio personalizado actualizado"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Custom objects"
msgstr "Objetos personalizados"
@@ -4917,6 +4974,8 @@ msgid "Edit own profile information"
msgstr "Edita tu información del perfil"
#. js-lingui-id: h2KoTu
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Edit payment method, see your invoices and more"
msgstr "Editar la forma de pago, ver sus facturas y más"
@@ -5216,6 +5275,11 @@ msgstr "Mejora la seguridad al requerir un código junto con tu contraseña"
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr "Disfrute de {withCreditCardTrialPeriodDuration} días de prueba gratis"
#. js-lingui-id: 6iUnle
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Enjoy a 30-day free trial"
msgstr ""
#. js-lingui-id: T/N+2Z
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormRawJsonFieldInput.tsx
@@ -5422,6 +5486,9 @@ msgstr "Introduce tu clave de API"
#. js-lingui-id: GpB8YV
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
msgid "Enterprise"
msgstr "Empresa"
@@ -5430,6 +5497,22 @@ msgstr "Empresa"
msgid "Enterprise Feature"
msgstr ""
#. js-lingui-id: S5c4pl
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Enterprise License"
msgstr ""
#. js-lingui-id: KGE5g0
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Enterprise license activated successfully"
msgstr ""
#. js-lingui-id: SLuq/l
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Entity ID"
@@ -5470,6 +5553,11 @@ msgstr "Borrado de registros eliminados suavemente"
msgid "Error"
msgstr "Error"
#. js-lingui-id: VouTsQ
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error activating enterprise license"
msgstr ""
#. js-lingui-id: GHKxvg
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error deleting api key."
@@ -5495,11 +5583,6 @@ msgstr "Error al eliminar el Proveedor de Identidad SSO"
msgid "Error editing SSO Identity Provider"
msgstr "Error al editar el Proveedor de Identidad SSO"
#. js-lingui-id: GsIfmO
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerMetricsGraph.tsx
msgid "Error fetching worker metrics: {errorMessage}"
msgstr "Error al obtener métricas del trabajador: {errorMessage}"
#. js-lingui-id: GdBN5t
#: src/modules/error-handler/components/AppRootErrorFallback.tsx
msgid "Error illustration"
@@ -5530,11 +5613,26 @@ msgstr "Error al cargar el mensaje"
msgid "Error Message"
msgstr "Mensaje de error"
#. js-lingui-id: Mox63G
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error opening billing portal"
msgstr ""
#. js-lingui-id: e/eieW
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Error opening Stripe"
msgstr ""
#. js-lingui-id: bT/0cM
#: src/modules/ui/field/display/components/PhonesDisplay.tsx
msgid "Error parsing additional phones: {error}"
msgstr "Error al analizar teléfonos adicionales: {error}"
#. js-lingui-id: zRXcyv
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error refreshing validity token. Please contact support."
msgstr ""
#. js-lingui-id: PfAip2
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error regenerating api key."
@@ -5997,6 +6095,11 @@ msgstr ""
msgid "Failed to {translatedOperationType} {translatedMetadataName}. Related {relatedEntityNames} validation failed. Please check your configuration and try again."
msgstr ""
#. js-lingui-id: R1XJV1
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Failed to activate enterprise license. Please check your key or contact support."
msgstr ""
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to activate skill"
@@ -6374,7 +6477,6 @@ msgstr ""
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/views/components/ViewBarFilterButton.tsx
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
#: src/modules/settings/roles/components/SettingsRolesList.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
@@ -6397,6 +6499,7 @@ msgid "Filter group rule options"
msgstr "Opciones de reglas del grupo de filtros"
#. js-lingui-id: cSev+j
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
msgid "Filters"
msgstr "Filtros"
@@ -6467,6 +6570,11 @@ msgstr "Nombre"
msgid "First name can not be empty"
msgstr "El nombre no puede estar vacío"
#. js-lingui-id: JREYkg
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Fix the payment issue to keep your enterprise features active."
msgstr ""
#. js-lingui-id: ylQd2j
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
@@ -6486,7 +6594,7 @@ msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
msgid "Folders"
msgstr "Carpetas"
@@ -6635,6 +6743,22 @@ msgstr "Archivos generados"
msgid "German"
msgstr "Alemán"
#. js-lingui-id: sqtljx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Get Enterprise"
msgstr ""
#. js-lingui-id: o2kSwB
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Get Enterprise Key"
msgstr ""
#. js-lingui-id: NXEW3h
#: src/pages/onboarding/InviteTeam.tsx
msgid "Get the most out of your workspace by inviting your team."
@@ -6655,6 +6779,12 @@ msgstr "Global"
msgid "Go Back"
msgstr ""
#. js-lingui-id: Hb4Cgz
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Go to billing portal"
msgstr ""
#. js-lingui-id: mUbv8L
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
msgid "Go to Companies"
@@ -7240,6 +7370,11 @@ msgstr ""
msgid "Inbox"
msgstr "Bandeja de entrada"
#. js-lingui-id: mtGDyy
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Incomplete"
msgstr ""
#. js-lingui-id: O5wNUa
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "index"
@@ -7882,9 +8017,8 @@ msgid "Launch manually"
msgstr "Lanzar manualmente"
#. js-lingui-id: rdU729
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsLayout.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -7957,6 +8091,12 @@ msgstr ""
msgid "Less than or equal"
msgstr "Menor o igual"
#. js-lingui-id: 3qg5Ro
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Licensee"
msgstr ""
#. js-lingui-id: 1njn7W
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownThemesComponents.tsx
@@ -8260,6 +8400,8 @@ msgid "Manage billing and subscriptions"
msgstr "Administrar a facturación y suscripciones"
#. js-lingui-id: nvgUPq
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Manage billing information"
msgstr "Administrar la información de facturación"
@@ -8612,6 +8754,11 @@ msgstr "Mes del año"
msgid "monthly"
msgstr "mensual"
#. js-lingui-id: Sew/cK
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Monthly subscription"
msgstr ""
#. js-lingui-id: 6jefe3
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
@@ -8673,7 +8820,7 @@ msgid "Move right"
msgstr "Mover a la derecha"
#. js-lingui-id: 6qDVmw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Move to a folder"
msgstr ""
@@ -9274,13 +9421,13 @@ msgid "No Files"
msgstr "Sin archivos"
#. js-lingui-id: pYblOw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
msgid "No folder"
msgstr "Sin carpeta"
#. js-lingui-id: 6XMhqL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folders available"
msgstr ""
@@ -9454,8 +9601,8 @@ msgstr "Sin resultados"
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/side-panel/components/SidePanelList.tsx
msgid "No results found"
msgstr "No se encontraron resultados"
@@ -10188,11 +10335,26 @@ msgstr "El enlace de restablecimiento de contraseña ha sido enviado al correo e
msgid "Paste the code below"
msgstr "Pega el código a continuación"
#. js-lingui-id: raz2Pm
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Paste your enterprise key below to activate"
msgstr ""
#. js-lingui-id: dNdgvF
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Paste your enterprise key here"
msgstr ""
#. js-lingui-id: I6gXOa
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "Path"
msgstr "Ruta"
#. js-lingui-id: QmXBEc
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Payment issue"
msgstr ""
#. js-lingui-id: UbRKMZ
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
#: src/modules/settings/security/components/approvedAccessDomains/SettingsApprovedAccessDomainsListCard.tsx
@@ -10329,13 +10491,13 @@ msgid "Pick a {objectLabel} record"
msgstr "Selecciona un registro de {objectLabel}"
#. js-lingui-id: JqqNlC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Pick a view"
msgstr ""
#. js-lingui-id: Wlba2h
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Pick an object"
msgstr ""
@@ -10953,6 +11115,16 @@ msgstr "Lanzamientos"
msgid "Reload"
msgstr "Recargar"
#. js-lingui-id: qbM5In
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Reload validity token"
msgstr ""
#. js-lingui-id: MZWnSC
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Reloading..."
msgstr ""
#. js-lingui-id: qlAIQ1
#: src/modules/object-metadata/components/RemoteNavigationDrawerSection.tsx
msgid "Remote"
@@ -11228,7 +11400,7 @@ msgstr "Resultado"
#. js-lingui-id: kx0s+n
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Results"
msgstr "Resultados"
@@ -11367,6 +11539,11 @@ msgstr ""
msgid "row level permission predicate group"
msgstr ""
#. js-lingui-id: xPaeO2
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Row-level security"
msgstr ""
#. js-lingui-id: 7jTlsu
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Ruby"
@@ -11485,6 +11662,8 @@ msgstr ""
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Search"
msgstr "Buscar"
@@ -11521,7 +11700,7 @@ msgid "Search a field..."
msgstr "Buscar un campo..."
#. js-lingui-id: ITQFzL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Search a folder..."
msgstr ""
@@ -11689,7 +11868,7 @@ msgid "Search records"
msgstr "Buscar registros"
#. js-lingui-id: rRklUH
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Search records..."
msgstr ""
@@ -11724,11 +11903,13 @@ msgid "Searching the web for {query}"
msgstr ""
#. js-lingui-id: 8sgZS9
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month"
msgstr "asiento / mes"
#. js-lingui-id: aQnWwf
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month - billed yearly"
msgstr "asiento / mes - facturado anualmente"
@@ -12556,6 +12737,7 @@ msgstr "SSO"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
@@ -12600,6 +12782,16 @@ msgstr ""
msgid "Start"
msgstr "Comenzar"
#. js-lingui-id: ASqWQi
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Start a new enterprise subscription to re-enable enterprise features."
msgstr ""
#. js-lingui-id: OC6rnK
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Start a new enterprise subscription."
msgstr ""
#. js-lingui-id: D3iCkb
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
msgid "Start Date"
@@ -12625,6 +12817,11 @@ msgid "State"
msgstr "Estado"
#. js-lingui-id: uAQUqI
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
@@ -12920,11 +13117,11 @@ msgstr ""
#. js-lingui-id: 0apULK
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr "Objetos del sistema"
@@ -13227,6 +13424,11 @@ msgstr "Hay columnas requeridas que no están asignadas o ignoradas. ¿Quieres c
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
msgstr "Todavía hay algunas filas que contienen errores. Las filas con errores serán ignoradas al enviar."
#. js-lingui-id: CA9PTn
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "There is a payment issue with your subscription. Please update your payment method."
msgstr ""
#. js-lingui-id: WQk7Cf
#: src/modules/activities/timeline-activities/components/TimelineCard.tsx
msgid "There is no activity associated with this record."
@@ -13341,9 +13543,9 @@ msgstr ""
msgid "This database value overrides environment settings. "
msgstr "Este valor de base de datos anula la configuración del entorno."
#. js-lingui-id: qHAJQ2
#. js-lingui-id: 8IRnd6
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "This feature is part of the Organization Plan"
msgid "This feature is part of the Enterprise Plan"
msgstr ""
#. js-lingui-id: own57K
@@ -13652,6 +13854,8 @@ msgid "Transfer ownership"
msgstr ""
#. js-lingui-id: lhkaAC
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/internal/PlansTags.tsx
msgid "Trial"
msgstr "Prueba"
@@ -13842,7 +14046,7 @@ msgid "Type anything..."
msgstr "Escribe cualquier cosa..."
#. js-lingui-id: UhqKcC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Type to search records"
msgstr ""
@@ -14000,6 +14204,11 @@ msgstr "Contactos ilimitados"
msgid "Unlisted"
msgstr "No listadas"
#. js-lingui-id: Ep1uUU
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
msgstr ""
#. js-lingui-id: eQMhFX
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "unordered"
@@ -14069,6 +14278,11 @@ msgstr "actualizar"
msgid "Update"
msgstr "Actualizar"
#. js-lingui-id: Y69tSP
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Update payment method"
msgstr ""
#. js-lingui-id: 0KAL3W
#: src/modules/side-panel/hooks/useOpenUpdateMultipleRecordsPageInSidePanel.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
@@ -14307,11 +14521,22 @@ msgstr "Usando el valor de aplicación predeterminado. Configurar a través de v
msgid "Using default value. Set a custom value to override."
msgstr "Usando el valor predeterminado. Establece un valor personalizado para anular."
#. js-lingui-id: zzp4XX
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Valid until"
msgstr ""
#. js-lingui-id: Clr4qp
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Validate Data"
msgstr "Validar datos"
#. js-lingui-id: PWZBIT
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Validity token refreshed successfully"
msgstr ""
#. js-lingui-id: wMHvYH
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/KeyValuePairInput.tsx
@@ -14438,6 +14663,8 @@ msgid "View and filter events, page views, object changes"
msgstr ""
#. js-lingui-id: KANz0G
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "View billing details"
msgstr "Ver detalles de facturación"
@@ -14487,6 +14714,11 @@ msgstr "grupo de vista"
msgid "View installed app"
msgstr ""
#. js-lingui-id: B02hom
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "View invoices"
msgstr ""
#. js-lingui-id: lh5BED
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerQueueMetricsSection.tsx
msgid "View Jobs"
@@ -14505,6 +14737,7 @@ msgstr ""
#. js-lingui-id: ecVcAx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "View Previous AI Chats"
msgstr "Ver chats previos de IA"
@@ -14854,6 +15087,7 @@ msgstr "Workflows"
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/domains/SettingsDomains.tsx
@@ -15020,6 +15254,11 @@ msgstr "Año"
msgid "yearly"
msgstr "anual"
#. js-lingui-id: Y1GwUe
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Yearly subscription"
msgstr ""
#. js-lingui-id: +BGee5
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
msgid "years"
@@ -15152,6 +15391,36 @@ msgstr "Los asuntos de tus correos electrónicos y los títulos de las reuniones
msgid "Your emails and events content will be shared with your team."
msgstr "El contenido de tus correos electrónicos y eventos se compartirá con tu equipo."
#. js-lingui-id: ahEwS4
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features are active"
msgstr ""
#. js-lingui-id: XMZLU/
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features are active but your enterprise key is missing or invalid. This may be expected, but if not, please set a valid signed enterprise key to manage your subscription, or contact support."
msgstr ""
#. js-lingui-id: AxcwNj
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features will be disabled"
msgstr ""
#. js-lingui-id: PT137K
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features will remain active until {cancelAtDate}."
msgstr ""
#. js-lingui-id: 69Siss
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
msgid "Your enterprise key format is deprecated. Please activate a new key to keep enterprise features."
msgstr ""
#. js-lingui-id: NTpA4U
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise subscription has been canceled."
msgstr ""
#. js-lingui-id: 9ivpwk
#: src/pages/settings/SettingsProfile.tsx
msgid "Your name as it will be displayed"
@@ -15162,6 +15431,26 @@ msgstr "Tu nombre tal y como se mostrará"
msgid "Your name as it will be displayed on the app"
msgstr "Tu nombre tal y como será mostrado en la aplicación"
#. js-lingui-id: 319YPG
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription is active but your validity token is invalid or has expired. Try reloading it or contact support."
msgstr ""
#. js-lingui-id: Fx0axg
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription is scheduled for cancellation"
msgstr ""
#. js-lingui-id: XgIa/8
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription setup was not completed."
msgstr ""
#. js-lingui-id: Z9kbt6
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription status is: {statusLabel}"
msgstr ""
#. js-lingui-id: QOd24n
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and "
+327 -38
View File
@@ -752,23 +752,37 @@ msgid "Actions users can perform on this object"
msgstr "Toiminnot, joita käyttäjät voivat suorittaa tällä kohteella"
#. js-lingui-id: FQBaXG
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
#: src/modules/settings/data-model/objects/components/SettingsObjectInactiveMenuDropDown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
msgid "Activate"
msgstr "Aktivoi"
#. js-lingui-id: eqeFkF
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Activate Enterprise Key"
msgstr ""
#. js-lingui-id: tu8A/k
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
msgid "Activate Workflow"
msgstr "Aktivoi työnkulku"
#. js-lingui-id: jSZacs
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Activating..."
msgstr ""
#. js-lingui-id: F6pfE9
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/domains/components/SettingsWorkspaceDomainCard.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Active"
@@ -806,6 +820,13 @@ msgstr "Lisää \"{trimmedName}\" valintoihin"
msgid "Add a {objectLabelSingular}"
msgstr "Lisää {objectLabelSingular}"
#. js-lingui-id: 7W8nJr
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
msgid "Add a Group"
msgstr ""
#. js-lingui-id: CZDwqQ
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
@@ -818,16 +839,10 @@ msgid "Add a node"
msgstr "Lisää solmu"
#. js-lingui-id: nGv1DN
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Add a record"
msgstr ""
#. js-lingui-id: r8W+9y
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
msgid "Add a Section"
msgstr ""
#. js-lingui-id: eMc2xs
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
msgid "Add a step"
@@ -1429,7 +1444,7 @@ msgid "All set!"
msgstr "Valmista!"
#. js-lingui-id: CHvT6e
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectFlow.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
@@ -1574,6 +1589,7 @@ msgstr "Kuvaa ladattaessa tapahtui virhe."
#. js-lingui-id: XyOToQ
#: src/utils/get-error-message-from-apollo-error.util.ts
#: src/utils/get-error-message-from-apollo-error.util.ts
#: src/modules/views/hooks/internal/usePerformViewSortAPIPersist.ts
#: src/modules/views/hooks/internal/usePerformViewGroupAPIPersist.ts
#: src/modules/views/hooks/internal/usePerformViewFilterAPIPersist.ts
@@ -1664,6 +1680,7 @@ msgstr "Rajapinta"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "API & Webhooks"
msgstr "API & Webhooks"
@@ -1940,6 +1957,7 @@ msgstr "Nouseva"
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Ask AI"
msgstr "Kysy AI:lta"
@@ -2078,6 +2096,11 @@ msgstr ""
msgid "Attachments"
msgstr "Liitteet"
#. js-lingui-id: y2W2Hg
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Audit logs"
msgstr ""
#. js-lingui-id: EPEFrH
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
@@ -2306,6 +2329,11 @@ msgstr "kuukauden {startOrdinal} ja {endOrdinal} päivän välillä"
msgid "Billing"
msgstr "Laskutus"
#. js-lingui-id: dSjFxR
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Billing history"
msgstr ""
#. js-lingui-id: nJGwRf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Billing interval"
@@ -2563,6 +2591,7 @@ msgid "Cancel metered tier switching?"
msgstr "Peruuta mitatun tason vaihtaminen?"
#. js-lingui-id: rRK/Lf
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel Plan"
msgstr "Peruuta suunnitelma"
@@ -2578,10 +2607,26 @@ msgid "Cancel plan switching?"
msgstr "Peruuta suunnitelman vaihtaminen?"
#. js-lingui-id: N6gPiD
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel your subscription"
msgstr "Peruuta tilauksesi"
#. js-lingui-id: GGWsTU
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Canceled"
msgstr ""
#. js-lingui-id: y4uH7j
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Cancelling"
msgstr ""
#. js-lingui-id: WbPx+C
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Cancels on"
msgstr ""
#. js-lingui-id: XDbjjW
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Cannot delete the only view"
@@ -3077,11 +3122,6 @@ msgstr ""
msgid "Configure fallback login methods for users with SSO bypass permissions"
msgstr "Määritä varasijaiset kirjautumismenetelmät käyttäjille, joilla on SSO-ohituksen käyttöoikeudet"
#. js-lingui-id: c7wznw
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
msgid "Configure filters"
msgstr "Määritä suodattimet"
#. js-lingui-id: ghdb7+
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
msgid "Configure how we should display your events in your calendar"
@@ -3279,6 +3319,7 @@ msgstr ""
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
msgid "Continue"
msgstr "Jatka"
@@ -3438,6 +3479,21 @@ msgstr "Kustannus per 1k ylimääräiset hyvitykset"
msgid "Could not delete approved access domain"
msgstr "Hyväksyttyä pääsyoikeutta ei voitu poistaa"
#. js-lingui-id: KqYYBp
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not open billing portal. Please check your enterprise key is present, or contact support."
msgstr ""
#. js-lingui-id: ZuI4Sl
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Could not open Stripe. Please contact support."
msgstr ""
#. js-lingui-id: wVw4Am
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not refresh validity token. Please contact support."
msgstr ""
#. js-lingui-id: s8lFtq
#: src/hooks/useCopyToClipboard.tsx
msgid "Couldn't copy to clipboard"
@@ -3815,6 +3871,7 @@ msgstr "Mukautettu verkkotunnus päivitetty"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Custom objects"
msgstr "Mukautetut objektit"
@@ -4917,6 +4974,8 @@ msgid "Edit own profile information"
msgstr ""
#. js-lingui-id: h2KoTu
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Edit payment method, see your invoices and more"
msgstr "Muokkaa maksutapaa, näe laskusi ja paljon muuta"
@@ -5216,6 +5275,11 @@ msgstr "Parantaa turvallisuutta vaatimalla koodin salasanasi lisäksi"
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr "Nauti {withCreditCardTrialPeriodDuration}-päiväisen ilmaisen kokeilun"
#. js-lingui-id: 6iUnle
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Enjoy a 30-day free trial"
msgstr ""
#. js-lingui-id: T/N+2Z
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormRawJsonFieldInput.tsx
@@ -5422,6 +5486,9 @@ msgstr "Anna API-avaimesi"
#. js-lingui-id: GpB8YV
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
msgid "Enterprise"
msgstr "Yritys"
@@ -5430,6 +5497,22 @@ msgstr "Yritys"
msgid "Enterprise Feature"
msgstr ""
#. js-lingui-id: S5c4pl
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Enterprise License"
msgstr ""
#. js-lingui-id: KGE5g0
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Enterprise license activated successfully"
msgstr ""
#. js-lingui-id: SLuq/l
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Entity ID"
@@ -5470,6 +5553,11 @@ msgstr "Pehmeästi poistettujen tietueiden poistaminen"
msgid "Error"
msgstr "Virhe"
#. js-lingui-id: VouTsQ
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error activating enterprise license"
msgstr ""
#. js-lingui-id: GHKxvg
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error deleting api key."
@@ -5495,11 +5583,6 @@ msgstr "Virhe SSO-identiteetintarjoajan poistamisessa"
msgid "Error editing SSO Identity Provider"
msgstr "Virhe SSO-identiteetintarjoajan muokkaamisessa"
#. js-lingui-id: GsIfmO
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerMetricsGraph.tsx
msgid "Error fetching worker metrics: {errorMessage}"
msgstr "Virhe noudettaessa työntekijän mittareita: {errorMessage}"
#. js-lingui-id: GdBN5t
#: src/modules/error-handler/components/AppRootErrorFallback.tsx
msgid "Error illustration"
@@ -5530,11 +5613,26 @@ msgstr "Virhe ladattaessa viestiä"
msgid "Error Message"
msgstr "Virheilmoitus"
#. js-lingui-id: Mox63G
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error opening billing portal"
msgstr ""
#. js-lingui-id: e/eieW
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Error opening Stripe"
msgstr ""
#. js-lingui-id: bT/0cM
#: src/modules/ui/field/display/components/PhonesDisplay.tsx
msgid "Error parsing additional phones: {error}"
msgstr "Virhe jäsennettäessä lisäpuhelinnumeroita: {error}"
#. js-lingui-id: zRXcyv
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error refreshing validity token. Please contact support."
msgstr ""
#. js-lingui-id: PfAip2
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error regenerating api key."
@@ -5997,6 +6095,11 @@ msgstr ""
msgid "Failed to {translatedOperationType} {translatedMetadataName}. Related {relatedEntityNames} validation failed. Please check your configuration and try again."
msgstr ""
#. js-lingui-id: R1XJV1
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Failed to activate enterprise license. Please check your key or contact support."
msgstr ""
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to activate skill"
@@ -6374,7 +6477,6 @@ msgstr ""
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/views/components/ViewBarFilterButton.tsx
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
#: src/modules/settings/roles/components/SettingsRolesList.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
@@ -6397,6 +6499,7 @@ msgid "Filter group rule options"
msgstr "Suodatinryhmän säännön valinnat"
#. js-lingui-id: cSev+j
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
msgid "Filters"
msgstr "Suodattimet"
@@ -6467,6 +6570,11 @@ msgstr "Etunimi"
msgid "First name can not be empty"
msgstr "Etunimi ei saa olla tyhjä"
#. js-lingui-id: JREYkg
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Fix the payment issue to keep your enterprise features active."
msgstr ""
#. js-lingui-id: ylQd2j
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
@@ -6486,7 +6594,7 @@ msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
msgid "Folders"
msgstr "Kansiot"
@@ -6635,6 +6743,22 @@ msgstr "Luodut tiedostot"
msgid "German"
msgstr "Saksa"
#. js-lingui-id: sqtljx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Get Enterprise"
msgstr ""
#. js-lingui-id: o2kSwB
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Get Enterprise Key"
msgstr ""
#. js-lingui-id: NXEW3h
#: src/pages/onboarding/InviteTeam.tsx
msgid "Get the most out of your workspace by inviting your team."
@@ -6655,6 +6779,12 @@ msgstr "Globaali"
msgid "Go Back"
msgstr ""
#. js-lingui-id: Hb4Cgz
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Go to billing portal"
msgstr ""
#. js-lingui-id: mUbv8L
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
msgid "Go to Companies"
@@ -7240,6 +7370,11 @@ msgstr ""
msgid "Inbox"
msgstr "Saapuneet"
#. js-lingui-id: mtGDyy
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Incomplete"
msgstr ""
#. js-lingui-id: O5wNUa
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "index"
@@ -7882,9 +8017,8 @@ msgid "Launch manually"
msgstr "Käynnistä manuaalisesti"
#. js-lingui-id: rdU729
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsLayout.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -7957,6 +8091,12 @@ msgstr ""
msgid "Less than or equal"
msgstr "Pienempi tai yhtä suuri"
#. js-lingui-id: 3qg5Ro
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Licensee"
msgstr ""
#. js-lingui-id: 1njn7W
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownThemesComponents.tsx
@@ -8260,6 +8400,8 @@ msgid "Manage billing and subscriptions"
msgstr "Hallinnoi laskutusta ja tilauksia"
#. js-lingui-id: nvgUPq
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Manage billing information"
msgstr "Hallinnoi laskutustietoja"
@@ -8612,6 +8754,11 @@ msgstr "Vuoden kuukausi"
msgid "monthly"
msgstr "kuukausittain"
#. js-lingui-id: Sew/cK
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Monthly subscription"
msgstr ""
#. js-lingui-id: 6jefe3
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
@@ -8673,7 +8820,7 @@ msgid "Move right"
msgstr "Siirrä oikealle"
#. js-lingui-id: 6qDVmw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Move to a folder"
msgstr ""
@@ -9274,13 +9421,13 @@ msgid "No Files"
msgstr "Ei tiedostoja"
#. js-lingui-id: pYblOw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
msgid "No folder"
msgstr "Ei kansiota"
#. js-lingui-id: 6XMhqL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folders available"
msgstr ""
@@ -9454,8 +9601,8 @@ msgstr "Ei tuloksia"
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/side-panel/components/SidePanelList.tsx
msgid "No results found"
msgstr "Tuloksia ei löytynyt"
@@ -10188,11 +10335,26 @@ msgstr "Salasanan palautuslinkki on lähetetty sähköpostiin"
msgid "Paste the code below"
msgstr "Liitä alla oleva koodi"
#. js-lingui-id: raz2Pm
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Paste your enterprise key below to activate"
msgstr ""
#. js-lingui-id: dNdgvF
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Paste your enterprise key here"
msgstr ""
#. js-lingui-id: I6gXOa
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "Path"
msgstr "Polku"
#. js-lingui-id: QmXBEc
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Payment issue"
msgstr ""
#. js-lingui-id: UbRKMZ
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
#: src/modules/settings/security/components/approvedAccessDomains/SettingsApprovedAccessDomainsListCard.tsx
@@ -10329,13 +10491,13 @@ msgid "Pick a {objectLabel} record"
msgstr "Valitse {objectLabel} tietue"
#. js-lingui-id: JqqNlC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Pick a view"
msgstr ""
#. js-lingui-id: Wlba2h
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Pick an object"
msgstr ""
@@ -10953,6 +11115,16 @@ msgstr "Julkaisut"
msgid "Reload"
msgstr "Lataa uudelleen"
#. js-lingui-id: qbM5In
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Reload validity token"
msgstr ""
#. js-lingui-id: MZWnSC
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Reloading..."
msgstr ""
#. js-lingui-id: qlAIQ1
#: src/modules/object-metadata/components/RemoteNavigationDrawerSection.tsx
msgid "Remote"
@@ -11228,7 +11400,7 @@ msgstr "Tulos"
#. js-lingui-id: kx0s+n
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Results"
msgstr "Tulokset"
@@ -11367,6 +11539,11 @@ msgstr ""
msgid "row level permission predicate group"
msgstr ""
#. js-lingui-id: xPaeO2
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Row-level security"
msgstr ""
#. js-lingui-id: 7jTlsu
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Ruby"
@@ -11485,6 +11662,8 @@ msgstr ""
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Search"
msgstr "Hae"
@@ -11521,7 +11700,7 @@ msgid "Search a field..."
msgstr "Etsi kenttää..."
#. js-lingui-id: ITQFzL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Search a folder..."
msgstr ""
@@ -11689,7 +11868,7 @@ msgid "Search records"
msgstr "Hae tietueita"
#. js-lingui-id: rRklUH
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Search records..."
msgstr ""
@@ -11724,11 +11903,13 @@ msgid "Searching the web for {query}"
msgstr ""
#. js-lingui-id: 8sgZS9
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month"
msgstr "paikka / kuukausi"
#. js-lingui-id: aQnWwf
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month - billed yearly"
msgstr "paikka / kuukausi - laskutetaan vuosittain"
@@ -12556,6 +12737,7 @@ msgstr "Kertakirjautuminen"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
@@ -12600,6 +12782,16 @@ msgstr ""
msgid "Start"
msgstr "Aloita"
#. js-lingui-id: ASqWQi
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Start a new enterprise subscription to re-enable enterprise features."
msgstr ""
#. js-lingui-id: OC6rnK
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Start a new enterprise subscription."
msgstr ""
#. js-lingui-id: D3iCkb
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
msgid "Start Date"
@@ -12625,6 +12817,11 @@ msgid "State"
msgstr "Tila"
#. js-lingui-id: uAQUqI
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
@@ -12920,11 +13117,11 @@ msgstr ""
#. js-lingui-id: 0apULK
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -13227,6 +13424,11 @@ msgstr "On sarakkeita, joita ei ole yhdistetty tai ohitettu. Haluatko jatkaa?"
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
msgstr "Joitakin rivejä, jotka sisältävät virheitä, on edelleen. Virheelliset rivit ohitetaan lähetettäessä."
#. js-lingui-id: CA9PTn
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "There is a payment issue with your subscription. Please update your payment method."
msgstr ""
#. js-lingui-id: WQk7Cf
#: src/modules/activities/timeline-activities/components/TimelineCard.tsx
msgid "There is no activity associated with this record."
@@ -13339,9 +13541,9 @@ msgstr ""
msgid "This database value overrides environment settings. "
msgstr "Tämä tietokanta-arvo ohittaa ympäristöasetukset."
#. js-lingui-id: qHAJQ2
#. js-lingui-id: 8IRnd6
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "This feature is part of the Organization Plan"
msgid "This feature is part of the Enterprise Plan"
msgstr ""
#. js-lingui-id: own57K
@@ -13650,6 +13852,8 @@ msgid "Transfer ownership"
msgstr ""
#. js-lingui-id: lhkaAC
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/internal/PlansTags.tsx
msgid "Trial"
msgstr "Koe"
@@ -13840,7 +14044,7 @@ msgid "Type anything..."
msgstr "Kirjoita jotain..."
#. js-lingui-id: UhqKcC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Type to search records"
msgstr ""
@@ -13998,6 +14202,11 @@ msgstr "Rajattomat yhteystiedot"
msgid "Unlisted"
msgstr "Listaamattomat"
#. js-lingui-id: Ep1uUU
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
msgstr ""
#. js-lingui-id: eQMhFX
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "unordered"
@@ -14067,6 +14276,11 @@ msgstr "päivitä"
msgid "Update"
msgstr "Päivitä"
#. js-lingui-id: Y69tSP
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Update payment method"
msgstr ""
#. js-lingui-id: 0KAL3W
#: src/modules/side-panel/hooks/useOpenUpdateMultipleRecordsPageInSidePanel.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
@@ -14305,11 +14519,22 @@ msgstr "Käytetään sovelluksen oletusarvoa. Määritä ympäristömuuttujien k
msgid "Using default value. Set a custom value to override."
msgstr "Käytetään oletusarvoa. Aseta mukautettu arvo ohittaaksesi."
#. js-lingui-id: zzp4XX
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Valid until"
msgstr ""
#. js-lingui-id: Clr4qp
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Validate Data"
msgstr "Vahvista tiedot"
#. js-lingui-id: PWZBIT
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Validity token refreshed successfully"
msgstr ""
#. js-lingui-id: wMHvYH
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/KeyValuePairInput.tsx
@@ -14436,6 +14661,8 @@ msgid "View and filter events, page views, object changes"
msgstr ""
#. js-lingui-id: KANz0G
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "View billing details"
msgstr "Näytä laskutustiedot"
@@ -14485,6 +14712,11 @@ msgstr "näkymäryhmä"
msgid "View installed app"
msgstr ""
#. js-lingui-id: B02hom
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "View invoices"
msgstr ""
#. js-lingui-id: lh5BED
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerQueueMetricsSection.tsx
msgid "View Jobs"
@@ -14503,6 +14735,7 @@ msgstr ""
#. js-lingui-id: ecVcAx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "View Previous AI Chats"
msgstr "Näytä edelliset AI Keskustelut"
@@ -14852,6 +15085,7 @@ msgstr "Työnkulut"
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/domains/SettingsDomains.tsx
@@ -15018,6 +15252,11 @@ msgstr "Vuosi"
msgid "yearly"
msgstr "vuosittain"
#. js-lingui-id: Y1GwUe
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Yearly subscription"
msgstr ""
#. js-lingui-id: +BGee5
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
msgid "years"
@@ -15150,6 +15389,36 @@ msgstr "Sähköpostiesi aiheet ja tapaamisen otsikot jaetaan tiimisi kanssa."
msgid "Your emails and events content will be shared with your team."
msgstr "Sähköpostiesi ja tapahtumien sisältö jaetaan tiimisi kanssa."
#. js-lingui-id: ahEwS4
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features are active"
msgstr ""
#. js-lingui-id: XMZLU/
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features are active but your enterprise key is missing or invalid. This may be expected, but if not, please set a valid signed enterprise key to manage your subscription, or contact support."
msgstr ""
#. js-lingui-id: AxcwNj
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features will be disabled"
msgstr ""
#. js-lingui-id: PT137K
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features will remain active until {cancelAtDate}."
msgstr ""
#. js-lingui-id: 69Siss
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
msgid "Your enterprise key format is deprecated. Please activate a new key to keep enterprise features."
msgstr ""
#. js-lingui-id: NTpA4U
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise subscription has been canceled."
msgstr ""
#. js-lingui-id: 9ivpwk
#: src/pages/settings/SettingsProfile.tsx
msgid "Your name as it will be displayed"
@@ -15160,6 +15429,26 @@ msgstr "Nimesi, niin kuin se näytetään"
msgid "Your name as it will be displayed on the app"
msgstr "Nimesi, niin kuin se näytetään sovelluksessa"
#. js-lingui-id: 319YPG
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription is active but your validity token is invalid or has expired. Try reloading it or contact support."
msgstr ""
#. js-lingui-id: Fx0axg
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription is scheduled for cancellation"
msgstr ""
#. js-lingui-id: XgIa/8
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription setup was not completed."
msgstr ""
#. js-lingui-id: Z9kbt6
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription status is: {statusLabel}"
msgstr ""
#. js-lingui-id: QOd24n
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and "
+327 -38
View File
@@ -752,23 +752,37 @@ msgid "Actions users can perform on this object"
msgstr "Actions que les utilisateurs peuvent effectuer sur cet objet"
#. js-lingui-id: FQBaXG
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
#: src/modules/settings/data-model/objects/components/SettingsObjectInactiveMenuDropDown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
msgid "Activate"
msgstr "Activer"
#. js-lingui-id: eqeFkF
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Activate Enterprise Key"
msgstr ""
#. js-lingui-id: tu8A/k
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
msgid "Activate Workflow"
msgstr "Activer le workflow"
#. js-lingui-id: jSZacs
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Activating..."
msgstr ""
#. js-lingui-id: F6pfE9
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/domains/components/SettingsWorkspaceDomainCard.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Active"
@@ -806,6 +820,13 @@ msgstr "Ajouter \"{trimmedName}\" aux options"
msgid "Add a {objectLabelSingular}"
msgstr "Ajouter un {objectLabelSingular}"
#. js-lingui-id: 7W8nJr
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
msgid "Add a Group"
msgstr ""
#. js-lingui-id: CZDwqQ
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
@@ -818,16 +839,10 @@ msgid "Add a node"
msgstr "Ajouter un nœud"
#. js-lingui-id: nGv1DN
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Add a record"
msgstr ""
#. js-lingui-id: r8W+9y
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
msgid "Add a Section"
msgstr ""
#. js-lingui-id: eMc2xs
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
msgid "Add a step"
@@ -1429,7 +1444,7 @@ msgid "All set!"
msgstr "Tout est prêt !"
#. js-lingui-id: CHvT6e
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectFlow.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
@@ -1574,6 +1589,7 @@ msgstr "Une erreur s'est produite lors du téléversement de l'image."
#. js-lingui-id: XyOToQ
#: src/utils/get-error-message-from-apollo-error.util.ts
#: src/utils/get-error-message-from-apollo-error.util.ts
#: src/modules/views/hooks/internal/usePerformViewSortAPIPersist.ts
#: src/modules/views/hooks/internal/usePerformViewGroupAPIPersist.ts
#: src/modules/views/hooks/internal/usePerformViewFilterAPIPersist.ts
@@ -1664,6 +1680,7 @@ msgstr "API"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "API & Webhooks"
msgstr "API & Webhooks"
@@ -1940,6 +1957,7 @@ msgstr "Ascendant"
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Ask AI"
msgstr "Demander à l'IA"
@@ -2078,6 +2096,11 @@ msgstr ""
msgid "Attachments"
msgstr "Pièces jointes"
#. js-lingui-id: y2W2Hg
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Audit logs"
msgstr ""
#. js-lingui-id: EPEFrH
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
@@ -2306,6 +2329,11 @@ msgstr "entre le {startOrdinal} et le {endOrdinal} du mois"
msgid "Billing"
msgstr "Facturation"
#. js-lingui-id: dSjFxR
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Billing history"
msgstr ""
#. js-lingui-id: nJGwRf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Billing interval"
@@ -2563,6 +2591,7 @@ msgid "Cancel metered tier switching?"
msgstr "Annuler le changement de niveau mesuré ?"
#. js-lingui-id: rRK/Lf
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel Plan"
msgstr "Annuler le plan"
@@ -2578,10 +2607,26 @@ msgid "Cancel plan switching?"
msgstr "Annuler le changement de plan ?"
#. js-lingui-id: N6gPiD
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel your subscription"
msgstr "Annuler votre abonnement"
#. js-lingui-id: GGWsTU
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Canceled"
msgstr ""
#. js-lingui-id: y4uH7j
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Cancelling"
msgstr ""
#. js-lingui-id: WbPx+C
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Cancels on"
msgstr ""
#. js-lingui-id: XDbjjW
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Cannot delete the only view"
@@ -3077,11 +3122,6 @@ msgstr ""
msgid "Configure fallback login methods for users with SSO bypass permissions"
msgstr "Configurer les méthodes de connexion de secours pour les utilisateurs avec des permissions de contournement du SSO"
#. js-lingui-id: c7wznw
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
msgid "Configure filters"
msgstr "Configurer les filtres"
#. js-lingui-id: ghdb7+
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
msgid "Configure how we should display your events in your calendar"
@@ -3279,6 +3319,7 @@ msgstr ""
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
msgid "Continue"
msgstr "Continuer"
@@ -3438,6 +3479,21 @@ msgstr "Coût pour 1k de crédits supplémentaires"
msgid "Could not delete approved access domain"
msgstr "Impossible de supprimer le domaine d'accès approuvé"
#. js-lingui-id: KqYYBp
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not open billing portal. Please check your enterprise key is present, or contact support."
msgstr ""
#. js-lingui-id: ZuI4Sl
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Could not open Stripe. Please contact support."
msgstr ""
#. js-lingui-id: wVw4Am
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not refresh validity token. Please contact support."
msgstr ""
#. js-lingui-id: s8lFtq
#: src/hooks/useCopyToClipboard.tsx
msgid "Couldn't copy to clipboard"
@@ -3815,6 +3871,7 @@ msgstr "Domaine personnalisé mis à jour"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Custom objects"
msgstr "Objets personnalisés"
@@ -4917,6 +4974,8 @@ msgid "Edit own profile information"
msgstr ""
#. js-lingui-id: h2KoTu
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Edit payment method, see your invoices and more"
msgstr "Modifier le mode de paiement, consulter vos factures et plus encore"
@@ -5216,6 +5275,11 @@ msgstr "Améliore la sécurité en exigeant un code en plus de votre mot de pass
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr "Profitez d'un essai gratuit de {withCreditCardTrialPeriodDuration} jours"
#. js-lingui-id: 6iUnle
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Enjoy a 30-day free trial"
msgstr ""
#. js-lingui-id: T/N+2Z
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormRawJsonFieldInput.tsx
@@ -5422,6 +5486,9 @@ msgstr "Saisissez votre clé API"
#. js-lingui-id: GpB8YV
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
msgid "Enterprise"
msgstr "Entreprise"
@@ -5430,6 +5497,22 @@ msgstr "Entreprise"
msgid "Enterprise Feature"
msgstr ""
#. js-lingui-id: S5c4pl
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Enterprise License"
msgstr ""
#. js-lingui-id: KGE5g0
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Enterprise license activated successfully"
msgstr ""
#. js-lingui-id: SLuq/l
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Entity ID"
@@ -5470,6 +5553,11 @@ msgstr "Effacement des enregistrements supprimés en douceur"
msgid "Error"
msgstr "Erreur"
#. js-lingui-id: VouTsQ
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error activating enterprise license"
msgstr ""
#. js-lingui-id: GHKxvg
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error deleting api key."
@@ -5495,11 +5583,6 @@ msgstr "Erreur lors de la suppression du fournisseur d'identité SSO"
msgid "Error editing SSO Identity Provider"
msgstr "Erreur lors de la modification du fournisseur d'identité SSO"
#. js-lingui-id: GsIfmO
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerMetricsGraph.tsx
msgid "Error fetching worker metrics: {errorMessage}"
msgstr "Erreur lors de la récupération des métriques du worker : {errorMessage}"
#. js-lingui-id: GdBN5t
#: src/modules/error-handler/components/AppRootErrorFallback.tsx
msgid "Error illustration"
@@ -5530,11 +5613,26 @@ msgstr "Erreur de chargement du message"
msgid "Error Message"
msgstr "Message d'erreur"
#. js-lingui-id: Mox63G
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error opening billing portal"
msgstr ""
#. js-lingui-id: e/eieW
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Error opening Stripe"
msgstr ""
#. js-lingui-id: bT/0cM
#: src/modules/ui/field/display/components/PhonesDisplay.tsx
msgid "Error parsing additional phones: {error}"
msgstr "Erreur lors de l'analyse des numéros supplémentaires : {error}"
#. js-lingui-id: zRXcyv
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error refreshing validity token. Please contact support."
msgstr ""
#. js-lingui-id: PfAip2
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error regenerating api key."
@@ -5997,6 +6095,11 @@ msgstr ""
msgid "Failed to {translatedOperationType} {translatedMetadataName}. Related {relatedEntityNames} validation failed. Please check your configuration and try again."
msgstr ""
#. js-lingui-id: R1XJV1
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Failed to activate enterprise license. Please check your key or contact support."
msgstr ""
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to activate skill"
@@ -6374,7 +6477,6 @@ msgstr ""
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/views/components/ViewBarFilterButton.tsx
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
#: src/modules/settings/roles/components/SettingsRolesList.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
@@ -6397,6 +6499,7 @@ msgid "Filter group rule options"
msgstr "Options des règles du groupe de filtres"
#. js-lingui-id: cSev+j
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
msgid "Filters"
msgstr "Filtres"
@@ -6467,6 +6570,11 @@ msgstr "Prénom"
msgid "First name can not be empty"
msgstr "Le prénom ne peut pas être vide"
#. js-lingui-id: JREYkg
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Fix the payment issue to keep your enterprise features active."
msgstr ""
#. js-lingui-id: ylQd2j
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
@@ -6486,7 +6594,7 @@ msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
msgid "Folders"
msgstr "Dossiers"
@@ -6635,6 +6743,22 @@ msgstr "Fichiers générés"
msgid "German"
msgstr "Allemand"
#. js-lingui-id: sqtljx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Get Enterprise"
msgstr ""
#. js-lingui-id: o2kSwB
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Get Enterprise Key"
msgstr ""
#. js-lingui-id: NXEW3h
#: src/pages/onboarding/InviteTeam.tsx
msgid "Get the most out of your workspace by inviting your team."
@@ -6655,6 +6779,12 @@ msgstr "Global"
msgid "Go Back"
msgstr ""
#. js-lingui-id: Hb4Cgz
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Go to billing portal"
msgstr ""
#. js-lingui-id: mUbv8L
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
msgid "Go to Companies"
@@ -7240,6 +7370,11 @@ msgstr ""
msgid "Inbox"
msgstr "Boîte de réception"
#. js-lingui-id: mtGDyy
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Incomplete"
msgstr ""
#. js-lingui-id: O5wNUa
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "index"
@@ -7882,9 +8017,8 @@ msgid "Launch manually"
msgstr "Lancer manuellement"
#. js-lingui-id: rdU729
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsLayout.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -7957,6 +8091,12 @@ msgstr ""
msgid "Less than or equal"
msgstr "Inférieur ou égal à"
#. js-lingui-id: 3qg5Ro
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Licensee"
msgstr ""
#. js-lingui-id: 1njn7W
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownThemesComponents.tsx
@@ -8260,6 +8400,8 @@ msgid "Manage billing and subscriptions"
msgstr "Gérer les facturations et les abonnements"
#. js-lingui-id: nvgUPq
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Manage billing information"
msgstr "Gérer les informations de facturation"
@@ -8612,6 +8754,11 @@ msgstr "Mois de l'année"
msgid "monthly"
msgstr "mensuel"
#. js-lingui-id: Sew/cK
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Monthly subscription"
msgstr ""
#. js-lingui-id: 6jefe3
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
@@ -8673,7 +8820,7 @@ msgid "Move right"
msgstr "Déplacer à droite"
#. js-lingui-id: 6qDVmw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Move to a folder"
msgstr ""
@@ -9274,13 +9421,13 @@ msgid "No Files"
msgstr "Aucun fichier"
#. js-lingui-id: pYblOw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
msgid "No folder"
msgstr "Aucun dossier"
#. js-lingui-id: 6XMhqL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folders available"
msgstr ""
@@ -9454,8 +9601,8 @@ msgstr "Aucun résultat"
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/side-panel/components/SidePanelList.tsx
msgid "No results found"
msgstr "Aucun résultat trouvé"
@@ -10188,11 +10335,26 @@ msgstr "Le lien de réinitialisation du mot de passe a été envoyé à l'email"
msgid "Paste the code below"
msgstr "Collez le code ci-dessous"
#. js-lingui-id: raz2Pm
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Paste your enterprise key below to activate"
msgstr ""
#. js-lingui-id: dNdgvF
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Paste your enterprise key here"
msgstr ""
#. js-lingui-id: I6gXOa
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "Path"
msgstr "Chemin"
#. js-lingui-id: QmXBEc
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Payment issue"
msgstr ""
#. js-lingui-id: UbRKMZ
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
#: src/modules/settings/security/components/approvedAccessDomains/SettingsApprovedAccessDomainsListCard.tsx
@@ -10329,13 +10491,13 @@ msgid "Pick a {objectLabel} record"
msgstr "Choisissez un enregistrement de {objectLabel}"
#. js-lingui-id: JqqNlC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Pick a view"
msgstr ""
#. js-lingui-id: Wlba2h
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Pick an object"
msgstr ""
@@ -10953,6 +11115,16 @@ msgstr "Communiqués"
msgid "Reload"
msgstr "Recharger"
#. js-lingui-id: qbM5In
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Reload validity token"
msgstr ""
#. js-lingui-id: MZWnSC
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Reloading..."
msgstr ""
#. js-lingui-id: qlAIQ1
#: src/modules/object-metadata/components/RemoteNavigationDrawerSection.tsx
msgid "Remote"
@@ -11228,7 +11400,7 @@ msgstr "Résultat"
#. js-lingui-id: kx0s+n
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Results"
msgstr "Résultats"
@@ -11367,6 +11539,11 @@ msgstr ""
msgid "row level permission predicate group"
msgstr ""
#. js-lingui-id: xPaeO2
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Row-level security"
msgstr ""
#. js-lingui-id: 7jTlsu
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Ruby"
@@ -11485,6 +11662,8 @@ msgstr ""
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Search"
msgstr "Recherche"
@@ -11521,7 +11700,7 @@ msgid "Search a field..."
msgstr "Rechercher un champ..."
#. js-lingui-id: ITQFzL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Search a folder..."
msgstr ""
@@ -11689,7 +11868,7 @@ msgid "Search records"
msgstr "Rechercher des enregistrements"
#. js-lingui-id: rRklUH
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Search records..."
msgstr ""
@@ -11724,11 +11903,13 @@ msgid "Searching the web for {query}"
msgstr ""
#. js-lingui-id: 8sgZS9
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month"
msgstr "siège / mois"
#. js-lingui-id: aQnWwf
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month - billed yearly"
msgstr "siège / mois - facturé annuellement"
@@ -12556,6 +12737,7 @@ msgstr "SSO"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
@@ -12600,6 +12782,16 @@ msgstr ""
msgid "Start"
msgstr "Démarrer"
#. js-lingui-id: ASqWQi
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Start a new enterprise subscription to re-enable enterprise features."
msgstr ""
#. js-lingui-id: OC6rnK
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Start a new enterprise subscription."
msgstr ""
#. js-lingui-id: D3iCkb
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
msgid "Start Date"
@@ -12625,6 +12817,11 @@ msgid "State"
msgstr "État"
#. js-lingui-id: uAQUqI
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
@@ -12920,11 +13117,11 @@ msgstr ""
#. js-lingui-id: 0apULK
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -13227,6 +13424,11 @@ msgstr "Il y a des colonnes requises qui ne sont pas appariées ou ignorées. Vo
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
msgstr "Il y a encore des lignes qui contiennent des erreurs. Les lignes présentant des erreurs seront ignorées lors de l'envoi."
#. js-lingui-id: CA9PTn
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "There is a payment issue with your subscription. Please update your payment method."
msgstr ""
#. js-lingui-id: WQk7Cf
#: src/modules/activities/timeline-activities/components/TimelineCard.tsx
msgid "There is no activity associated with this record."
@@ -13341,9 +13543,9 @@ msgstr ""
msgid "This database value overrides environment settings. "
msgstr "Cette valeur de base de données remplace les paramètres d'environnement."
#. js-lingui-id: qHAJQ2
#. js-lingui-id: 8IRnd6
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "This feature is part of the Organization Plan"
msgid "This feature is part of the Enterprise Plan"
msgstr ""
#. js-lingui-id: own57K
@@ -13652,6 +13854,8 @@ msgid "Transfer ownership"
msgstr ""
#. js-lingui-id: lhkaAC
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/internal/PlansTags.tsx
msgid "Trial"
msgstr "Essai"
@@ -13842,7 +14046,7 @@ msgid "Type anything..."
msgstr "Tapez n'importe quoi..."
#. js-lingui-id: UhqKcC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Type to search records"
msgstr ""
@@ -14000,6 +14204,11 @@ msgstr "Contacts illimités"
msgid "Unlisted"
msgstr "Non répertorié"
#. js-lingui-id: Ep1uUU
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
msgstr ""
#. js-lingui-id: eQMhFX
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "unordered"
@@ -14069,6 +14278,11 @@ msgstr "mettre à jour"
msgid "Update"
msgstr "Mettre à jour"
#. js-lingui-id: Y69tSP
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Update payment method"
msgstr ""
#. js-lingui-id: 0KAL3W
#: src/modules/side-panel/hooks/useOpenUpdateMultipleRecordsPageInSidePanel.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
@@ -14307,11 +14521,22 @@ msgstr "Valeur de l'application par défaut utilisée. Configurez via les variab
msgid "Using default value. Set a custom value to override."
msgstr "Utilisation de la valeur par défaut. Définissez une valeur personnalisée pour surcharger."
#. js-lingui-id: zzp4XX
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Valid until"
msgstr ""
#. js-lingui-id: Clr4qp
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Validate Data"
msgstr "Valider les données"
#. js-lingui-id: PWZBIT
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Validity token refreshed successfully"
msgstr ""
#. js-lingui-id: wMHvYH
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/KeyValuePairInput.tsx
@@ -14438,6 +14663,8 @@ msgid "View and filter events, page views, object changes"
msgstr ""
#. js-lingui-id: KANz0G
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "View billing details"
msgstr "Voir les détails de facturation"
@@ -14487,6 +14714,11 @@ msgstr "groupe de vue"
msgid "View installed app"
msgstr ""
#. js-lingui-id: B02hom
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "View invoices"
msgstr ""
#. js-lingui-id: lh5BED
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerQueueMetricsSection.tsx
msgid "View Jobs"
@@ -14505,6 +14737,7 @@ msgstr ""
#. js-lingui-id: ecVcAx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "View Previous AI Chats"
msgstr "Voir les Discussions AI Précédentes"
@@ -14854,6 +15087,7 @@ msgstr "Workflows"
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/domains/SettingsDomains.tsx
@@ -15020,6 +15254,11 @@ msgstr "Année"
msgid "yearly"
msgstr "annuel"
#. js-lingui-id: Y1GwUe
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Yearly subscription"
msgstr ""
#. js-lingui-id: +BGee5
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
msgid "years"
@@ -15152,6 +15391,36 @@ msgstr "Les sujets de vos emails et les titres de réunion seront partagés avec
msgid "Your emails and events content will be shared with your team."
msgstr "Le contenu de vos emails et événements sera partagé avec votre équipe."
#. js-lingui-id: ahEwS4
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features are active"
msgstr ""
#. js-lingui-id: XMZLU/
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features are active but your enterprise key is missing or invalid. This may be expected, but if not, please set a valid signed enterprise key to manage your subscription, or contact support."
msgstr ""
#. js-lingui-id: AxcwNj
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features will be disabled"
msgstr ""
#. js-lingui-id: PT137K
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features will remain active until {cancelAtDate}."
msgstr ""
#. js-lingui-id: 69Siss
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
msgid "Your enterprise key format is deprecated. Please activate a new key to keep enterprise features."
msgstr ""
#. js-lingui-id: NTpA4U
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise subscription has been canceled."
msgstr ""
#. js-lingui-id: 9ivpwk
#: src/pages/settings/SettingsProfile.tsx
msgid "Your name as it will be displayed"
@@ -15162,6 +15431,26 @@ msgstr "Votre nom tel qu'il sera affiché"
msgid "Your name as it will be displayed on the app"
msgstr "Votre nom tel qu'il sera affiché sur l'application"
#. js-lingui-id: 319YPG
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription is active but your validity token is invalid or has expired. Try reloading it or contact support."
msgstr ""
#. js-lingui-id: Fx0axg
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription is scheduled for cancellation"
msgstr ""
#. js-lingui-id: XgIa/8
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription setup was not completed."
msgstr ""
#. js-lingui-id: Z9kbt6
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription status is: {statusLabel}"
msgstr ""
#. js-lingui-id: QOd24n
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and "
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
+327 -38
View File
@@ -752,23 +752,37 @@ msgid "Actions users can perform on this object"
msgstr "פעולות משתמשים יכולים לבצע על אובייקט זה"
#. js-lingui-id: FQBaXG
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
#: src/modules/settings/data-model/objects/components/SettingsObjectInactiveMenuDropDown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
msgid "Activate"
msgstr "הפעל"
#. js-lingui-id: eqeFkF
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Activate Enterprise Key"
msgstr ""
#. js-lingui-id: tu8A/k
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
msgid "Activate Workflow"
msgstr "הפוך Workflows לפעיל"
#. js-lingui-id: jSZacs
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Activating..."
msgstr ""
#. js-lingui-id: F6pfE9
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/domains/components/SettingsWorkspaceDomainCard.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Active"
@@ -806,6 +820,13 @@ msgstr "הוסף \"{trimmedName}\" לאפשרויות"
msgid "Add a {objectLabelSingular}"
msgstr "הוסף {objectLabelSingular}"
#. js-lingui-id: 7W8nJr
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
msgid "Add a Group"
msgstr ""
#. js-lingui-id: CZDwqQ
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
@@ -818,16 +839,10 @@ msgid "Add a node"
msgstr "הוסף צומת"
#. js-lingui-id: nGv1DN
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Add a record"
msgstr ""
#. js-lingui-id: r8W+9y
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
msgid "Add a Section"
msgstr ""
#. js-lingui-id: eMc2xs
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
msgid "Add a step"
@@ -1429,7 +1444,7 @@ msgid "All set!"
msgstr "הכול מוכן!"
#. js-lingui-id: CHvT6e
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectFlow.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
@@ -1574,6 +1589,7 @@ msgstr "אירעה שגיאה בעת העלאת התמונה."
#. js-lingui-id: XyOToQ
#: src/utils/get-error-message-from-apollo-error.util.ts
#: src/utils/get-error-message-from-apollo-error.util.ts
#: src/modules/views/hooks/internal/usePerformViewSortAPIPersist.ts
#: src/modules/views/hooks/internal/usePerformViewGroupAPIPersist.ts
#: src/modules/views/hooks/internal/usePerformViewFilterAPIPersist.ts
@@ -1664,6 +1680,7 @@ msgstr "API"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "API & Webhooks"
msgstr "API ו-Webhooks"
@@ -1940,6 +1957,7 @@ msgstr "עולה"
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Ask AI"
msgstr "שאל את ה-AI"
@@ -2078,6 +2096,11 @@ msgstr ""
msgid "Attachments"
msgstr "קבצים מצורפים"
#. js-lingui-id: y2W2Hg
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Audit logs"
msgstr ""
#. js-lingui-id: EPEFrH
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
@@ -2306,6 +2329,11 @@ msgstr "בין ה-{startOrdinal} ובין ה-{endOrdinal} של החודש"
msgid "Billing"
msgstr "חיוב"
#. js-lingui-id: dSjFxR
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Billing history"
msgstr ""
#. js-lingui-id: nJGwRf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Billing interval"
@@ -2563,6 +2591,7 @@ msgid "Cancel metered tier switching?"
msgstr "האם לבטל את החלפת רמת המדידה?"
#. js-lingui-id: rRK/Lf
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel Plan"
msgstr "בטל תוכנית"
@@ -2578,10 +2607,26 @@ msgid "Cancel plan switching?"
msgstr "האם לבטל את החלפת התכנית?"
#. js-lingui-id: N6gPiD
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel your subscription"
msgstr "בטל את המינוי שלך"
#. js-lingui-id: GGWsTU
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Canceled"
msgstr ""
#. js-lingui-id: y4uH7j
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Cancelling"
msgstr ""
#. js-lingui-id: WbPx+C
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Cancels on"
msgstr ""
#. js-lingui-id: XDbjjW
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Cannot delete the only view"
@@ -3077,11 +3122,6 @@ msgstr ""
msgid "Configure fallback login methods for users with SSO bypass permissions"
msgstr "הגדר שיטות כניסה חלופיות למשתמשים עם הרשאות עקיפת SSO"
#. js-lingui-id: c7wznw
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
msgid "Configure filters"
msgstr "קביעת תצורת מסננים"
#. js-lingui-id: ghdb7+
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
msgid "Configure how we should display your events in your calendar"
@@ -3279,6 +3319,7 @@ msgstr ""
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
msgid "Continue"
msgstr "המשך"
@@ -3438,6 +3479,21 @@ msgstr "עלות לכל אלף נקודות"
msgid "Could not delete approved access domain"
msgstr "לא ניתן למחוק את הדומיין המאושר גישה"
#. js-lingui-id: KqYYBp
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not open billing portal. Please check your enterprise key is present, or contact support."
msgstr ""
#. js-lingui-id: ZuI4Sl
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Could not open Stripe. Please contact support."
msgstr ""
#. js-lingui-id: wVw4Am
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not refresh validity token. Please contact support."
msgstr ""
#. js-lingui-id: s8lFtq
#: src/hooks/useCopyToClipboard.tsx
msgid "Couldn't copy to clipboard"
@@ -3815,6 +3871,7 @@ msgstr "הדומיין המותאם עודכן"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Custom objects"
msgstr "עצמים מותאמים אישית"
@@ -4917,6 +4974,8 @@ msgid "Edit own profile information"
msgstr ""
#. js-lingui-id: h2KoTu
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Edit payment method, see your invoices and more"
msgstr "ערוך שיטת תשלום, צפה בחשבוניות שלך ועוד"
@@ -5216,6 +5275,11 @@ msgstr "משפר את האבטחה על ידי דרישה לקוד יחד עם
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr "תהנה מתקופת ניסיון חינם של {withCreditCardTrialPeriodDuration} ימים"
#. js-lingui-id: 6iUnle
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Enjoy a 30-day free trial"
msgstr ""
#. js-lingui-id: T/N+2Z
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormRawJsonFieldInput.tsx
@@ -5422,6 +5486,9 @@ msgstr "הזן את מפתח ה-API שלך"
#. js-lingui-id: GpB8YV
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
msgid "Enterprise"
msgstr "אנטרפרייז"
@@ -5430,6 +5497,22 @@ msgstr "אנטרפרייז"
msgid "Enterprise Feature"
msgstr ""
#. js-lingui-id: S5c4pl
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Enterprise License"
msgstr ""
#. js-lingui-id: KGE5g0
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Enterprise license activated successfully"
msgstr ""
#. js-lingui-id: SLuq/l
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Entity ID"
@@ -5470,6 +5553,11 @@ msgstr "מחיקת רשומות שנמחקו ברכות"
msgid "Error"
msgstr "שגיאה"
#. js-lingui-id: VouTsQ
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error activating enterprise license"
msgstr ""
#. js-lingui-id: GHKxvg
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error deleting api key."
@@ -5495,11 +5583,6 @@ msgstr "שגיאה במחיקת ספק זיהוי SSO"
msgid "Error editing SSO Identity Provider"
msgstr "שגיאה בעריכת ספק זיהוי SSO"
#. js-lingui-id: GsIfmO
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerMetricsGraph.tsx
msgid "Error fetching worker metrics: {errorMessage}"
msgstr "שגיאה באחזור מדדי העובד: {errorMessage}"
#. js-lingui-id: GdBN5t
#: src/modules/error-handler/components/AppRootErrorFallback.tsx
msgid "Error illustration"
@@ -5530,11 +5613,26 @@ msgstr "שגיאה בטעינת ההודעה"
msgid "Error Message"
msgstr "הודעת שגיאה"
#. js-lingui-id: Mox63G
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error opening billing portal"
msgstr ""
#. js-lingui-id: e/eieW
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Error opening Stripe"
msgstr ""
#. js-lingui-id: bT/0cM
#: src/modules/ui/field/display/components/PhonesDisplay.tsx
msgid "Error parsing additional phones: {error}"
msgstr "שגיאה בניתוח מספרי טלפון נוספים: {error}"
#. js-lingui-id: zRXcyv
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error refreshing validity token. Please contact support."
msgstr ""
#. js-lingui-id: PfAip2
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error regenerating api key."
@@ -5997,6 +6095,11 @@ msgstr ""
msgid "Failed to {translatedOperationType} {translatedMetadataName}. Related {relatedEntityNames} validation failed. Please check your configuration and try again."
msgstr ""
#. js-lingui-id: R1XJV1
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Failed to activate enterprise license. Please check your key or contact support."
msgstr ""
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to activate skill"
@@ -6374,7 +6477,6 @@ msgstr ""
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/views/components/ViewBarFilterButton.tsx
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
#: src/modules/settings/roles/components/SettingsRolesList.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
@@ -6397,6 +6499,7 @@ msgid "Filter group rule options"
msgstr "אפשרויות כלל של קבוצת סינון"
#. js-lingui-id: cSev+j
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
msgid "Filters"
msgstr "מסננים"
@@ -6467,6 +6570,11 @@ msgstr "שם פרטי"
msgid "First name can not be empty"
msgstr "שם פרטי לא יכול להיות ריק"
#. js-lingui-id: JREYkg
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Fix the payment issue to keep your enterprise features active."
msgstr ""
#. js-lingui-id: ylQd2j
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
@@ -6486,7 +6594,7 @@ msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
msgid "Folders"
msgstr "תיקיות"
@@ -6635,6 +6743,22 @@ msgstr "קבצים שנוצרו"
msgid "German"
msgstr "גרמנית"
#. js-lingui-id: sqtljx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Get Enterprise"
msgstr ""
#. js-lingui-id: o2kSwB
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Get Enterprise Key"
msgstr ""
#. js-lingui-id: NXEW3h
#: src/pages/onboarding/InviteTeam.tsx
msgid "Get the most out of your workspace by inviting your team."
@@ -6655,6 +6779,12 @@ msgstr "גלובלי"
msgid "Go Back"
msgstr ""
#. js-lingui-id: Hb4Cgz
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Go to billing portal"
msgstr ""
#. js-lingui-id: mUbv8L
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
msgid "Go to Companies"
@@ -7240,6 +7370,11 @@ msgstr ""
msgid "Inbox"
msgstr "תיבת דואר"
#. js-lingui-id: mtGDyy
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Incomplete"
msgstr ""
#. js-lingui-id: O5wNUa
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "index"
@@ -7882,9 +8017,8 @@ msgid "Launch manually"
msgstr "הפעל ידנית"
#. js-lingui-id: rdU729
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsLayout.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -7957,6 +8091,12 @@ msgstr ""
msgid "Less than or equal"
msgstr "או קטן יותר"
#. js-lingui-id: 3qg5Ro
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Licensee"
msgstr ""
#. js-lingui-id: 1njn7W
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownThemesComponents.tsx
@@ -8260,6 +8400,8 @@ msgid "Manage billing and subscriptions"
msgstr "נהל חיובים ומנויים"
#. js-lingui-id: nvgUPq
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Manage billing information"
msgstr "נהל מידע לתשלום"
@@ -8612,6 +8754,11 @@ msgstr "חודש בשנה"
msgid "monthly"
msgstr "חודשי"
#. js-lingui-id: Sew/cK
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Monthly subscription"
msgstr ""
#. js-lingui-id: 6jefe3
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
@@ -8673,7 +8820,7 @@ msgid "Move right"
msgstr "הזזה ימינה"
#. js-lingui-id: 6qDVmw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Move to a folder"
msgstr ""
@@ -9274,13 +9421,13 @@ msgid "No Files"
msgstr "אין קבצים"
#. js-lingui-id: pYblOw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
msgid "No folder"
msgstr "אין תיקייה"
#. js-lingui-id: 6XMhqL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folders available"
msgstr ""
@@ -9454,8 +9601,8 @@ msgstr "אין תוצאות"
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/side-panel/components/SidePanelList.tsx
msgid "No results found"
msgstr "לא נמצאו תוצאות"
@@ -10188,11 +10335,26 @@ msgstr "קישור לאיפוס הסיסמה נשלח לדוא\"ל"
msgid "Paste the code below"
msgstr "הדבק את הקוד למטה"
#. js-lingui-id: raz2Pm
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Paste your enterprise key below to activate"
msgstr ""
#. js-lingui-id: dNdgvF
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Paste your enterprise key here"
msgstr ""
#. js-lingui-id: I6gXOa
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "Path"
msgstr "נתיב"
#. js-lingui-id: QmXBEc
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Payment issue"
msgstr ""
#. js-lingui-id: UbRKMZ
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
#: src/modules/settings/security/components/approvedAccessDomains/SettingsApprovedAccessDomainsListCard.tsx
@@ -10329,13 +10491,13 @@ msgid "Pick a {objectLabel} record"
msgstr "בחר רשומת {objectLabel}"
#. js-lingui-id: JqqNlC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Pick a view"
msgstr ""
#. js-lingui-id: Wlba2h
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Pick an object"
msgstr ""
@@ -10953,6 +11115,16 @@ msgstr "\\"
msgid "Reload"
msgstr "טען מחדש"
#. js-lingui-id: qbM5In
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Reload validity token"
msgstr ""
#. js-lingui-id: MZWnSC
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Reloading..."
msgstr ""
#. js-lingui-id: qlAIQ1
#: src/modules/object-metadata/components/RemoteNavigationDrawerSection.tsx
msgid "Remote"
@@ -11228,7 +11400,7 @@ msgstr "תוצאה"
#. js-lingui-id: kx0s+n
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Results"
msgstr "\\"
@@ -11367,6 +11539,11 @@ msgstr ""
msgid "row level permission predicate group"
msgstr ""
#. js-lingui-id: xPaeO2
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Row-level security"
msgstr ""
#. js-lingui-id: 7jTlsu
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Ruby"
@@ -11485,6 +11662,8 @@ msgstr ""
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Search"
msgstr "\\"
@@ -11521,7 +11700,7 @@ msgid "Search a field..."
msgstr "חפש שדה..."
#. js-lingui-id: ITQFzL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Search a folder..."
msgstr ""
@@ -11689,7 +11868,7 @@ msgid "Search records"
msgstr "\\"
#. js-lingui-id: rRklUH
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Search records..."
msgstr ""
@@ -11724,11 +11903,13 @@ msgid "Searching the web for {query}"
msgstr ""
#. js-lingui-id: 8sgZS9
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month"
msgstr "מושב / חודש"
#. js-lingui-id: aQnWwf
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month - billed yearly"
msgstr "מושב / חודש - מחויב שנתי"
@@ -12556,6 +12737,7 @@ msgstr "\\"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
@@ -12600,6 +12782,16 @@ msgstr ""
msgid "Start"
msgstr "התחילו"
#. js-lingui-id: ASqWQi
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Start a new enterprise subscription to re-enable enterprise features."
msgstr ""
#. js-lingui-id: OC6rnK
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Start a new enterprise subscription."
msgstr ""
#. js-lingui-id: D3iCkb
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
msgid "Start Date"
@@ -12625,6 +12817,11 @@ msgid "State"
msgstr "מצב"
#. js-lingui-id: uAQUqI
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
@@ -12920,11 +13117,11 @@ msgstr ""
#. js-lingui-id: 0apULK
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -13227,6 +13424,11 @@ msgstr "יש עמודות נדרשות שלא הותאמו או שלא נכלל
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
msgstr "עדיין ישנן שורות המכילות שגיאות. שורות עם שגיאות יזנחו בעת שליחה."
#. js-lingui-id: CA9PTn
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "There is a payment issue with your subscription. Please update your payment method."
msgstr ""
#. js-lingui-id: WQk7Cf
#: src/modules/activities/timeline-activities/components/TimelineCard.tsx
msgid "There is no activity associated with this record."
@@ -13339,9 +13541,9 @@ msgstr ""
msgid "This database value overrides environment settings. "
msgstr "ערך בסיס הנתונים הזה גובר על הגדרות הסביבה."
#. js-lingui-id: qHAJQ2
#. js-lingui-id: 8IRnd6
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "This feature is part of the Organization Plan"
msgid "This feature is part of the Enterprise Plan"
msgstr ""
#. js-lingui-id: own57K
@@ -13650,6 +13852,8 @@ msgid "Transfer ownership"
msgstr ""
#. js-lingui-id: lhkaAC
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/internal/PlansTags.tsx
msgid "Trial"
msgstr "ניסיון"
@@ -13840,7 +14044,7 @@ msgid "Type anything..."
msgstr "הקלד כל דבר..."
#. js-lingui-id: UhqKcC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Type to search records"
msgstr ""
@@ -13998,6 +14202,11 @@ msgstr "אין מגבלה על מספר אנשי הקשר"
msgid "Unlisted"
msgstr "לא מופיע ברשימה"
#. js-lingui-id: Ep1uUU
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
msgstr ""
#. js-lingui-id: eQMhFX
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "unordered"
@@ -14067,6 +14276,11 @@ msgstr "עדכן"
msgid "Update"
msgstr "עדכן"
#. js-lingui-id: Y69tSP
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Update payment method"
msgstr ""
#. js-lingui-id: 0KAL3W
#: src/modules/side-panel/hooks/useOpenUpdateMultipleRecordsPageInSidePanel.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
@@ -14305,11 +14519,22 @@ msgstr "משתמש בערך היישום המחדלי. קבע דרך משתני
msgid "Using default value. Set a custom value to override."
msgstr "משתמש בערך ברירת מחדל. הגדר ערך מותאם אישית כדי לעקוף."
#. js-lingui-id: zzp4XX
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Valid until"
msgstr ""
#. js-lingui-id: Clr4qp
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Validate Data"
msgstr "אמת נתונים"
#. js-lingui-id: PWZBIT
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Validity token refreshed successfully"
msgstr ""
#. js-lingui-id: wMHvYH
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/KeyValuePairInput.tsx
@@ -14436,6 +14661,8 @@ msgid "View and filter events, page views, object changes"
msgstr ""
#. js-lingui-id: KANz0G
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "View billing details"
msgstr "צפייה בפרטי החשבונית"
@@ -14485,6 +14712,11 @@ msgstr "קבוצת תצוגה"
msgid "View installed app"
msgstr ""
#. js-lingui-id: B02hom
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "View invoices"
msgstr ""
#. js-lingui-id: lh5BED
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerQueueMetricsSection.tsx
msgid "View Jobs"
@@ -14503,6 +14735,7 @@ msgstr ""
#. js-lingui-id: ecVcAx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "View Previous AI Chats"
msgstr "הצג שיחות AI קודמות"
@@ -14852,6 +15085,7 @@ msgstr "זרימות עבודה"
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/domains/SettingsDomains.tsx
@@ -15018,6 +15252,11 @@ msgstr "שנה"
msgid "yearly"
msgstr "שנתי"
#. js-lingui-id: Y1GwUe
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Yearly subscription"
msgstr ""
#. js-lingui-id: +BGee5
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
msgid "years"
@@ -15150,6 +15389,36 @@ msgstr "נושאי האימיילים שלך והכותרות של מפגשים
msgid "Your emails and events content will be shared with your team."
msgstr "התוכן של האימיילים והאירועים שלך ישותפו עם הצוות שלך."
#. js-lingui-id: ahEwS4
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features are active"
msgstr ""
#. js-lingui-id: XMZLU/
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features are active but your enterprise key is missing or invalid. This may be expected, but if not, please set a valid signed enterprise key to manage your subscription, or contact support."
msgstr ""
#. js-lingui-id: AxcwNj
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features will be disabled"
msgstr ""
#. js-lingui-id: PT137K
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features will remain active until {cancelAtDate}."
msgstr ""
#. js-lingui-id: 69Siss
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
msgid "Your enterprise key format is deprecated. Please activate a new key to keep enterprise features."
msgstr ""
#. js-lingui-id: NTpA4U
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise subscription has been canceled."
msgstr ""
#. js-lingui-id: 9ivpwk
#: src/pages/settings/SettingsProfile.tsx
msgid "Your name as it will be displayed"
@@ -15160,6 +15429,26 @@ msgstr "השם שלך כפי שיהיה מוצג"
msgid "Your name as it will be displayed on the app"
msgstr "השם שלך כפי שיהיה מוצג באפליקציה"
#. js-lingui-id: 319YPG
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription is active but your validity token is invalid or has expired. Try reloading it or contact support."
msgstr ""
#. js-lingui-id: Fx0axg
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription is scheduled for cancellation"
msgstr ""
#. js-lingui-id: XgIa/8
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription setup was not completed."
msgstr ""
#. js-lingui-id: Z9kbt6
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription status is: {statusLabel}"
msgstr ""
#. js-lingui-id: QOd24n
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and "
+327 -38
View File
@@ -752,23 +752,37 @@ msgid "Actions users can perform on this object"
msgstr "Műveletek, amelyeket a felhasználók ezen az objektumon végrehajthatnak"
#. js-lingui-id: FQBaXG
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
#: src/modules/settings/data-model/objects/components/SettingsObjectInactiveMenuDropDown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
msgid "Activate"
msgstr "Aktiválás"
#. js-lingui-id: eqeFkF
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Activate Enterprise Key"
msgstr ""
#. js-lingui-id: tu8A/k
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
msgid "Activate Workflow"
msgstr "Munkafolyamat aktiválása"
#. js-lingui-id: jSZacs
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Activating..."
msgstr ""
#. js-lingui-id: F6pfE9
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/domains/components/SettingsWorkspaceDomainCard.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Active"
@@ -806,6 +820,13 @@ msgstr "\"{trimmedName}\" hozzáadása az opciókhoz"
msgid "Add a {objectLabelSingular}"
msgstr "Új {objectLabelSingular} hozzáadása"
#. js-lingui-id: 7W8nJr
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
msgid "Add a Group"
msgstr ""
#. js-lingui-id: CZDwqQ
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
@@ -818,16 +839,10 @@ msgid "Add a node"
msgstr "Csomópont hozzáadása"
#. js-lingui-id: nGv1DN
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Add a record"
msgstr ""
#. js-lingui-id: r8W+9y
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
msgid "Add a Section"
msgstr ""
#. js-lingui-id: eMc2xs
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
msgid "Add a step"
@@ -1429,7 +1444,7 @@ msgid "All set!"
msgstr "Minden kész!"
#. js-lingui-id: CHvT6e
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectFlow.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
@@ -1574,6 +1589,7 @@ msgstr "Hiba történt a kép feltöltése közben."
#. js-lingui-id: XyOToQ
#: src/utils/get-error-message-from-apollo-error.util.ts
#: src/utils/get-error-message-from-apollo-error.util.ts
#: src/modules/views/hooks/internal/usePerformViewSortAPIPersist.ts
#: src/modules/views/hooks/internal/usePerformViewGroupAPIPersist.ts
#: src/modules/views/hooks/internal/usePerformViewFilterAPIPersist.ts
@@ -1664,6 +1680,7 @@ msgstr "API"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "API & Webhooks"
msgstr "API & Webhooks"
@@ -1940,6 +1957,7 @@ msgstr "Növekvő"
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Ask AI"
msgstr "Kérdezze a MI-t"
@@ -2078,6 +2096,11 @@ msgstr ""
msgid "Attachments"
msgstr "Csatolmányok"
#. js-lingui-id: y2W2Hg
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Audit logs"
msgstr ""
#. js-lingui-id: EPEFrH
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
@@ -2306,6 +2329,11 @@ msgstr "a hónap {startOrdinal}. és {endOrdinal}. napja között"
msgid "Billing"
msgstr "Számlázás"
#. js-lingui-id: dSjFxR
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Billing history"
msgstr ""
#. js-lingui-id: nJGwRf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Billing interval"
@@ -2563,6 +2591,7 @@ msgid "Cancel metered tier switching?"
msgstr "Mérőszint-váltás törlése?"
#. js-lingui-id: rRK/Lf
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel Plan"
msgstr "Terv lemondása"
@@ -2578,10 +2607,26 @@ msgid "Cancel plan switching?"
msgstr "Csomagváltás törlése?"
#. js-lingui-id: N6gPiD
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel your subscription"
msgstr "Előfizetése lemondása"
#. js-lingui-id: GGWsTU
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Canceled"
msgstr ""
#. js-lingui-id: y4uH7j
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Cancelling"
msgstr ""
#. js-lingui-id: WbPx+C
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Cancels on"
msgstr ""
#. js-lingui-id: XDbjjW
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Cannot delete the only view"
@@ -3077,11 +3122,6 @@ msgstr ""
msgid "Configure fallback login methods for users with SSO bypass permissions"
msgstr "Helyettesítő bejelentkezési módszerek konfigurálása az SSO kikerülési jogosultságokkal rendelkező felhasználók számára"
#. js-lingui-id: c7wznw
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
msgid "Configure filters"
msgstr "Szűrők konfigurálása"
#. js-lingui-id: ghdb7+
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
msgid "Configure how we should display your events in your calendar"
@@ -3279,6 +3319,7 @@ msgstr ""
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
msgid "Continue"
msgstr "Folytatás"
@@ -3438,6 +3479,21 @@ msgstr "Költség 1k extra kreditenként"
msgid "Could not delete approved access domain"
msgstr "Nem sikerült törölni a jóváhagyott hozzáférési tartományt"
#. js-lingui-id: KqYYBp
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not open billing portal. Please check your enterprise key is present, or contact support."
msgstr ""
#. js-lingui-id: ZuI4Sl
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Could not open Stripe. Please contact support."
msgstr ""
#. js-lingui-id: wVw4Am
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not refresh validity token. Please contact support."
msgstr ""
#. js-lingui-id: s8lFtq
#: src/hooks/useCopyToClipboard.tsx
msgid "Couldn't copy to clipboard"
@@ -3815,6 +3871,7 @@ msgstr "Egyéni domain frissítve"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Custom objects"
msgstr "Egyéni objektumok"
@@ -4917,6 +4974,8 @@ msgid "Edit own profile information"
msgstr ""
#. js-lingui-id: h2KoTu
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Edit payment method, see your invoices and more"
msgstr "Fizetési mód szerkesztése, számlák megtekintése és egyéb"
@@ -5216,6 +5275,11 @@ msgstr "Növeli a biztonságot azzal, hogy kódot is megkövetel a jelszó melle
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr "Élvezd a {withCreditCardTrialPeriodDuration}-napos ingyenes próbaidőszakot"
#. js-lingui-id: 6iUnle
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Enjoy a 30-day free trial"
msgstr ""
#. js-lingui-id: T/N+2Z
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormRawJsonFieldInput.tsx
@@ -5422,6 +5486,9 @@ msgstr "Adja meg az API-kulcsát"
#. js-lingui-id: GpB8YV
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
msgid "Enterprise"
msgstr "Vállalati"
@@ -5430,6 +5497,22 @@ msgstr "Vállalati"
msgid "Enterprise Feature"
msgstr ""
#. js-lingui-id: S5c4pl
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Enterprise License"
msgstr ""
#. js-lingui-id: KGE5g0
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Enterprise license activated successfully"
msgstr ""
#. js-lingui-id: SLuq/l
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Entity ID"
@@ -5470,6 +5553,11 @@ msgstr "Lágyított adatok törlése"
msgid "Error"
msgstr "Hiba"
#. js-lingui-id: VouTsQ
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error activating enterprise license"
msgstr ""
#. js-lingui-id: GHKxvg
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error deleting api key."
@@ -5495,11 +5583,6 @@ msgstr "Hiba az SSO identitásszolgáltató törlése közben"
msgid "Error editing SSO Identity Provider"
msgstr "Hiba az SSO identitásszolgáltató szerkesztése közben"
#. js-lingui-id: GsIfmO
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerMetricsGraph.tsx
msgid "Error fetching worker metrics: {errorMessage}"
msgstr "Hiba a worker metrikák lekérésekor: {errorMessage}"
#. js-lingui-id: GdBN5t
#: src/modules/error-handler/components/AppRootErrorFallback.tsx
msgid "Error illustration"
@@ -5530,11 +5613,26 @@ msgstr "Hiba történt az üzenet betöltésekor"
msgid "Error Message"
msgstr "Hibaüzenet"
#. js-lingui-id: Mox63G
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error opening billing portal"
msgstr ""
#. js-lingui-id: e/eieW
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Error opening Stripe"
msgstr ""
#. js-lingui-id: bT/0cM
#: src/modules/ui/field/display/components/PhonesDisplay.tsx
msgid "Error parsing additional phones: {error}"
msgstr "Hiba a további telefonszámok feldolgozása közben: {error}"
#. js-lingui-id: zRXcyv
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error refreshing validity token. Please contact support."
msgstr ""
#. js-lingui-id: PfAip2
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error regenerating api key."
@@ -5997,6 +6095,11 @@ msgstr ""
msgid "Failed to {translatedOperationType} {translatedMetadataName}. Related {relatedEntityNames} validation failed. Please check your configuration and try again."
msgstr ""
#. js-lingui-id: R1XJV1
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Failed to activate enterprise license. Please check your key or contact support."
msgstr ""
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to activate skill"
@@ -6374,7 +6477,6 @@ msgstr ""
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/views/components/ViewBarFilterButton.tsx
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
#: src/modules/settings/roles/components/SettingsRolesList.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
@@ -6397,6 +6499,7 @@ msgid "Filter group rule options"
msgstr "Szűrőcsoport szabályainak beállításai"
#. js-lingui-id: cSev+j
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
msgid "Filters"
msgstr "Szűrők"
@@ -6467,6 +6570,11 @@ msgstr "Keresztnév"
msgid "First name can not be empty"
msgstr "A keresztnév nem lehet üres"
#. js-lingui-id: JREYkg
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Fix the payment issue to keep your enterprise features active."
msgstr ""
#. js-lingui-id: ylQd2j
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
@@ -6486,7 +6594,7 @@ msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
msgid "Folders"
msgstr "Mappák"
@@ -6635,6 +6743,22 @@ msgstr "Létrehozott fájlok"
msgid "German"
msgstr "Német"
#. js-lingui-id: sqtljx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Get Enterprise"
msgstr ""
#. js-lingui-id: o2kSwB
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Get Enterprise Key"
msgstr ""
#. js-lingui-id: NXEW3h
#: src/pages/onboarding/InviteTeam.tsx
msgid "Get the most out of your workspace by inviting your team."
@@ -6655,6 +6779,12 @@ msgstr "Globális"
msgid "Go Back"
msgstr ""
#. js-lingui-id: Hb4Cgz
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Go to billing portal"
msgstr ""
#. js-lingui-id: mUbv8L
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
msgid "Go to Companies"
@@ -7240,6 +7370,11 @@ msgstr ""
msgid "Inbox"
msgstr "Postafiók"
#. js-lingui-id: mtGDyy
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Incomplete"
msgstr ""
#. js-lingui-id: O5wNUa
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "index"
@@ -7882,9 +8017,8 @@ msgid "Launch manually"
msgstr "Indítás manuálisan"
#. js-lingui-id: rdU729
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsLayout.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -7957,6 +8091,12 @@ msgstr ""
msgid "Less than or equal"
msgstr "Kisebb vagy egyenlő"
#. js-lingui-id: 3qg5Ro
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Licensee"
msgstr ""
#. js-lingui-id: 1njn7W
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownThemesComponents.tsx
@@ -8260,6 +8400,8 @@ msgid "Manage billing and subscriptions"
msgstr "Számlázás és előfizetések kezelése"
#. js-lingui-id: nvgUPq
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Manage billing information"
msgstr "Számlázási információk kezelése"
@@ -8612,6 +8754,11 @@ msgstr "Az év hónapja"
msgid "monthly"
msgstr "havi"
#. js-lingui-id: Sew/cK
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Monthly subscription"
msgstr ""
#. js-lingui-id: 6jefe3
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
@@ -8673,7 +8820,7 @@ msgid "Move right"
msgstr "Mozgatás jobbra"
#. js-lingui-id: 6qDVmw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Move to a folder"
msgstr ""
@@ -9274,13 +9421,13 @@ msgid "No Files"
msgstr "Nincsenek fájlok"
#. js-lingui-id: pYblOw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
msgid "No folder"
msgstr "Nincs mappa"
#. js-lingui-id: 6XMhqL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folders available"
msgstr ""
@@ -9454,8 +9601,8 @@ msgstr "Nincs találat"
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/side-panel/components/SidePanelList.tsx
msgid "No results found"
msgstr "Nincs találat"
@@ -10188,11 +10335,26 @@ msgstr "A jelszó visszaállítási linket elküldtük az e-mail címre"
msgid "Paste the code below"
msgstr "Illessze be az alábbi kódot"
#. js-lingui-id: raz2Pm
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Paste your enterprise key below to activate"
msgstr ""
#. js-lingui-id: dNdgvF
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Paste your enterprise key here"
msgstr ""
#. js-lingui-id: I6gXOa
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "Path"
msgstr "Útvonal"
#. js-lingui-id: QmXBEc
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Payment issue"
msgstr ""
#. js-lingui-id: UbRKMZ
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
#: src/modules/settings/security/components/approvedAccessDomains/SettingsApprovedAccessDomainsListCard.tsx
@@ -10329,13 +10491,13 @@ msgid "Pick a {objectLabel} record"
msgstr "Válasszon egy {objectLabel} rekordot"
#. js-lingui-id: JqqNlC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Pick a view"
msgstr ""
#. js-lingui-id: Wlba2h
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Pick an object"
msgstr ""
@@ -10953,6 +11115,16 @@ msgstr "Kiadások"
msgid "Reload"
msgstr "Újratöltés"
#. js-lingui-id: qbM5In
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Reload validity token"
msgstr ""
#. js-lingui-id: MZWnSC
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Reloading..."
msgstr ""
#. js-lingui-id: qlAIQ1
#: src/modules/object-metadata/components/RemoteNavigationDrawerSection.tsx
msgid "Remote"
@@ -11228,7 +11400,7 @@ msgstr "Eredmény"
#. js-lingui-id: kx0s+n
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Results"
msgstr "Találatok"
@@ -11367,6 +11539,11 @@ msgstr ""
msgid "row level permission predicate group"
msgstr ""
#. js-lingui-id: xPaeO2
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Row-level security"
msgstr ""
#. js-lingui-id: 7jTlsu
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Ruby"
@@ -11485,6 +11662,8 @@ msgstr ""
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Search"
msgstr "Keresés"
@@ -11521,7 +11700,7 @@ msgid "Search a field..."
msgstr "Mező keresése..."
#. js-lingui-id: ITQFzL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Search a folder..."
msgstr ""
@@ -11689,7 +11868,7 @@ msgid "Search records"
msgstr "Rekordok keresése"
#. js-lingui-id: rRklUH
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Search records..."
msgstr ""
@@ -11724,11 +11903,13 @@ msgid "Searching the web for {query}"
msgstr ""
#. js-lingui-id: 8sgZS9
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month"
msgstr "hely / hónap"
#. js-lingui-id: aQnWwf
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month - billed yearly"
msgstr "hely / hónap - évente számlázva"
@@ -12556,6 +12737,7 @@ msgstr "SSO"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
@@ -12600,6 +12782,16 @@ msgstr ""
msgid "Start"
msgstr "Indítás"
#. js-lingui-id: ASqWQi
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Start a new enterprise subscription to re-enable enterprise features."
msgstr ""
#. js-lingui-id: OC6rnK
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Start a new enterprise subscription."
msgstr ""
#. js-lingui-id: D3iCkb
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
msgid "Start Date"
@@ -12625,6 +12817,11 @@ msgid "State"
msgstr "Állapot"
#. js-lingui-id: uAQUqI
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
@@ -12920,11 +13117,11 @@ msgstr ""
#. js-lingui-id: 0apULK
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -13227,6 +13424,11 @@ msgstr "Vannak olyan kötelező oszlopok, amelyek nincsenek egyeztetve vagy figy
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
msgstr "Még mindig vannak hibákat tartalmazó sorok. A hibás sorokat figyelmen kívül hagyják a beküldéskor."
#. js-lingui-id: CA9PTn
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "There is a payment issue with your subscription. Please update your payment method."
msgstr ""
#. js-lingui-id: WQk7Cf
#: src/modules/activities/timeline-activities/components/TimelineCard.tsx
msgid "There is no activity associated with this record."
@@ -13339,9 +13541,9 @@ msgstr ""
msgid "This database value overrides environment settings. "
msgstr "Ez az adatbázis-érték felülírja a környezeti beállításokat. "
#. js-lingui-id: qHAJQ2
#. js-lingui-id: 8IRnd6
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "This feature is part of the Organization Plan"
msgid "This feature is part of the Enterprise Plan"
msgstr ""
#. js-lingui-id: own57K
@@ -13650,6 +13852,8 @@ msgid "Transfer ownership"
msgstr ""
#. js-lingui-id: lhkaAC
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/internal/PlansTags.tsx
msgid "Trial"
msgstr "Próbaidőszak"
@@ -13840,7 +14044,7 @@ msgid "Type anything..."
msgstr "Írjon be bármit..."
#. js-lingui-id: UhqKcC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Type to search records"
msgstr ""
@@ -13998,6 +14202,11 @@ msgstr "Korlátlan névjegyek"
msgid "Unlisted"
msgstr "Nem listázott"
#. js-lingui-id: Ep1uUU
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
msgstr ""
#. js-lingui-id: eQMhFX
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "unordered"
@@ -14067,6 +14276,11 @@ msgstr "frissítés"
msgid "Update"
msgstr "Frissítés"
#. js-lingui-id: Y69tSP
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Update payment method"
msgstr ""
#. js-lingui-id: 0KAL3W
#: src/modules/side-panel/hooks/useOpenUpdateMultipleRecordsPageInSidePanel.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
@@ -14305,11 +14519,22 @@ msgstr "Alapértelmezett alkalmazási érték használata. Konfiguráljon körny
msgid "Using default value. Set a custom value to override."
msgstr "Alapértelmezett érték használata. Állítson be egy egyéni értéket az felülíráshoz."
#. js-lingui-id: zzp4XX
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Valid until"
msgstr ""
#. js-lingui-id: Clr4qp
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Validate Data"
msgstr "Adat érvényesítése"
#. js-lingui-id: PWZBIT
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Validity token refreshed successfully"
msgstr ""
#. js-lingui-id: wMHvYH
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/KeyValuePairInput.tsx
@@ -14436,6 +14661,8 @@ msgid "View and filter events, page views, object changes"
msgstr ""
#. js-lingui-id: KANz0G
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "View billing details"
msgstr "Számlázási részletek megtekintése"
@@ -14485,6 +14712,11 @@ msgstr "nézetcsoport"
msgid "View installed app"
msgstr ""
#. js-lingui-id: B02hom
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "View invoices"
msgstr ""
#. js-lingui-id: lh5BED
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerQueueMetricsSection.tsx
msgid "View Jobs"
@@ -14503,6 +14735,7 @@ msgstr ""
#. js-lingui-id: ecVcAx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "View Previous AI Chats"
msgstr "Előző AI csevegések megtekintése"
@@ -14852,6 +15085,7 @@ msgstr "Munkafolyamatok"
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/domains/SettingsDomains.tsx
@@ -15018,6 +15252,11 @@ msgstr "Év"
msgid "yearly"
msgstr "éves"
#. js-lingui-id: Y1GwUe
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Yearly subscription"
msgstr ""
#. js-lingui-id: +BGee5
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
msgid "years"
@@ -15150,6 +15389,36 @@ msgstr "Az Ön email tárgyai és találkozó címei megosztásra kerülnek a cs
msgid "Your emails and events content will be shared with your team."
msgstr "Az Ön emailjei és eseménytartalma megosztásra kerülnek a csapatával."
#. js-lingui-id: ahEwS4
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features are active"
msgstr ""
#. js-lingui-id: XMZLU/
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features are active but your enterprise key is missing or invalid. This may be expected, but if not, please set a valid signed enterprise key to manage your subscription, or contact support."
msgstr ""
#. js-lingui-id: AxcwNj
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features will be disabled"
msgstr ""
#. js-lingui-id: PT137K
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features will remain active until {cancelAtDate}."
msgstr ""
#. js-lingui-id: 69Siss
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
msgid "Your enterprise key format is deprecated. Please activate a new key to keep enterprise features."
msgstr ""
#. js-lingui-id: NTpA4U
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise subscription has been canceled."
msgstr ""
#. js-lingui-id: 9ivpwk
#: src/pages/settings/SettingsProfile.tsx
msgid "Your name as it will be displayed"
@@ -15160,6 +15429,26 @@ msgstr "A neve úgy, ahogy látható lesz"
msgid "Your name as it will be displayed on the app"
msgstr "Az Ön neve, ahogy az alkalmazáson megjelenik"
#. js-lingui-id: 319YPG
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription is active but your validity token is invalid or has expired. Try reloading it or contact support."
msgstr ""
#. js-lingui-id: Fx0axg
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription is scheduled for cancellation"
msgstr ""
#. js-lingui-id: XgIa/8
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription setup was not completed."
msgstr ""
#. js-lingui-id: Z9kbt6
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription status is: {statusLabel}"
msgstr ""
#. js-lingui-id: QOd24n
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and "
+327 -38
View File
@@ -752,23 +752,37 @@ msgid "Actions users can perform on this object"
msgstr "Azioni che gli utenti possono eseguire su questo oggetto"
#. js-lingui-id: FQBaXG
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
#: src/modules/settings/data-model/objects/components/SettingsObjectInactiveMenuDropDown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
msgid "Activate"
msgstr "Attiva"
#. js-lingui-id: eqeFkF
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Activate Enterprise Key"
msgstr ""
#. js-lingui-id: tu8A/k
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
msgid "Activate Workflow"
msgstr "Attiva workflow"
#. js-lingui-id: jSZacs
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Activating..."
msgstr ""
#. js-lingui-id: F6pfE9
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/domains/components/SettingsWorkspaceDomainCard.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Active"
@@ -806,6 +820,13 @@ msgstr "Aggiungi \"{trimmedName}\" alle opzioni"
msgid "Add a {objectLabelSingular}"
msgstr "Aggiungi {objectLabelSingular}"
#. js-lingui-id: 7W8nJr
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
msgid "Add a Group"
msgstr ""
#. js-lingui-id: CZDwqQ
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
@@ -818,16 +839,10 @@ msgid "Add a node"
msgstr "Aggiungi un nodo"
#. js-lingui-id: nGv1DN
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Add a record"
msgstr ""
#. js-lingui-id: r8W+9y
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
msgid "Add a Section"
msgstr ""
#. js-lingui-id: eMc2xs
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
msgid "Add a step"
@@ -1429,7 +1444,7 @@ msgid "All set!"
msgstr "Tutto pronto!"
#. js-lingui-id: CHvT6e
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectFlow.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
@@ -1574,6 +1589,7 @@ msgstr "Si è verificato un errore durante il caricamento dell'immagine."
#. js-lingui-id: XyOToQ
#: src/utils/get-error-message-from-apollo-error.util.ts
#: src/utils/get-error-message-from-apollo-error.util.ts
#: src/modules/views/hooks/internal/usePerformViewSortAPIPersist.ts
#: src/modules/views/hooks/internal/usePerformViewGroupAPIPersist.ts
#: src/modules/views/hooks/internal/usePerformViewFilterAPIPersist.ts
@@ -1664,6 +1680,7 @@ msgstr "API"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "API & Webhooks"
msgstr "API e Webhook"
@@ -1940,6 +1957,7 @@ msgstr "Ascendente"
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Ask AI"
msgstr "Chiedi a AI"
@@ -2078,6 +2096,11 @@ msgstr ""
msgid "Attachments"
msgstr "Allegati"
#. js-lingui-id: y2W2Hg
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Audit logs"
msgstr ""
#. js-lingui-id: EPEFrH
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
@@ -2306,6 +2329,11 @@ msgstr "tra il {startOrdinal} e {endOrdinal} del mese"
msgid "Billing"
msgstr "Fatturazione"
#. js-lingui-id: dSjFxR
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Billing history"
msgstr ""
#. js-lingui-id: nJGwRf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Billing interval"
@@ -2563,6 +2591,7 @@ msgid "Cancel metered tier switching?"
msgstr "Annulla il cambio di livello misurato?"
#. js-lingui-id: rRK/Lf
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel Plan"
msgstr "Annulla piano"
@@ -2578,10 +2607,26 @@ msgid "Cancel plan switching?"
msgstr "Annulla il cambio di piano?"
#. js-lingui-id: N6gPiD
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel your subscription"
msgstr "Annulla l'abbonamento"
#. js-lingui-id: GGWsTU
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Canceled"
msgstr ""
#. js-lingui-id: y4uH7j
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Cancelling"
msgstr ""
#. js-lingui-id: WbPx+C
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Cancels on"
msgstr ""
#. js-lingui-id: XDbjjW
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Cannot delete the only view"
@@ -3077,11 +3122,6 @@ msgstr ""
msgid "Configure fallback login methods for users with SSO bypass permissions"
msgstr "Configura metodi di accesso alternativi per utenti con permessi di bypass SSO"
#. js-lingui-id: c7wznw
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
msgid "Configure filters"
msgstr "Configura i filtri"
#. js-lingui-id: ghdb7+
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
msgid "Configure how we should display your events in your calendar"
@@ -3279,6 +3319,7 @@ msgstr ""
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
msgid "Continue"
msgstr "Continua"
@@ -3438,6 +3479,21 @@ msgstr "Costo per 1k crediti extra"
msgid "Could not delete approved access domain"
msgstr "Impossibile eliminare il dominio di accesso approvato"
#. js-lingui-id: KqYYBp
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not open billing portal. Please check your enterprise key is present, or contact support."
msgstr ""
#. js-lingui-id: ZuI4Sl
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Could not open Stripe. Please contact support."
msgstr ""
#. js-lingui-id: wVw4Am
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not refresh validity token. Please contact support."
msgstr ""
#. js-lingui-id: s8lFtq
#: src/hooks/useCopyToClipboard.tsx
msgid "Couldn't copy to clipboard"
@@ -3815,6 +3871,7 @@ msgstr "Dominio personalizzato aggiornato"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Custom objects"
msgstr "Oggetti personalizzati"
@@ -4917,6 +4974,8 @@ msgid "Edit own profile information"
msgstr ""
#. js-lingui-id: h2KoTu
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Edit payment method, see your invoices and more"
msgstr "Modifica il metodo di pagamento, visualizza le fatture e altro"
@@ -5216,6 +5275,11 @@ msgstr "Aumenta la sicurezza richiedendo un codice insieme alla tua password"
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr "Goditi una prova gratuita di {withCreditCardTrialPeriodDuration} giorni"
#. js-lingui-id: 6iUnle
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Enjoy a 30-day free trial"
msgstr ""
#. js-lingui-id: T/N+2Z
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormRawJsonFieldInput.tsx
@@ -5422,6 +5486,9 @@ msgstr "Inserisci la tua chiave API"
#. js-lingui-id: GpB8YV
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
msgid "Enterprise"
msgstr "Enterprise"
@@ -5430,6 +5497,22 @@ msgstr "Enterprise"
msgid "Enterprise Feature"
msgstr ""
#. js-lingui-id: S5c4pl
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Enterprise License"
msgstr ""
#. js-lingui-id: KGE5g0
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Enterprise license activated successfully"
msgstr ""
#. js-lingui-id: SLuq/l
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Entity ID"
@@ -5470,6 +5553,11 @@ msgstr "Cancellazione dei record eliminati temporaneamente"
msgid "Error"
msgstr "Errore"
#. js-lingui-id: VouTsQ
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error activating enterprise license"
msgstr ""
#. js-lingui-id: GHKxvg
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error deleting api key."
@@ -5495,11 +5583,6 @@ msgstr "Errore nell'eliminazione del provider di identità SSO"
msgid "Error editing SSO Identity Provider"
msgstr "Errore nella modifica del provider di identità SSO"
#. js-lingui-id: GsIfmO
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerMetricsGraph.tsx
msgid "Error fetching worker metrics: {errorMessage}"
msgstr "Errore durante il recupero delle metriche del worker: {errorMessage}"
#. js-lingui-id: GdBN5t
#: src/modules/error-handler/components/AppRootErrorFallback.tsx
msgid "Error illustration"
@@ -5530,11 +5613,26 @@ msgstr "Errore nel caricamento del messaggio"
msgid "Error Message"
msgstr "Messaggio di errore"
#. js-lingui-id: Mox63G
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error opening billing portal"
msgstr ""
#. js-lingui-id: e/eieW
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Error opening Stripe"
msgstr ""
#. js-lingui-id: bT/0cM
#: src/modules/ui/field/display/components/PhonesDisplay.tsx
msgid "Error parsing additional phones: {error}"
msgstr "Errore nell'analisi dei numeri di telefono aggiuntivi: {error}"
#. js-lingui-id: zRXcyv
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error refreshing validity token. Please contact support."
msgstr ""
#. js-lingui-id: PfAip2
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error regenerating api key."
@@ -5997,6 +6095,11 @@ msgstr ""
msgid "Failed to {translatedOperationType} {translatedMetadataName}. Related {relatedEntityNames} validation failed. Please check your configuration and try again."
msgstr ""
#. js-lingui-id: R1XJV1
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Failed to activate enterprise license. Please check your key or contact support."
msgstr ""
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to activate skill"
@@ -6374,7 +6477,6 @@ msgstr ""
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/views/components/ViewBarFilterButton.tsx
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
#: src/modules/settings/roles/components/SettingsRolesList.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
@@ -6397,6 +6499,7 @@ msgid "Filter group rule options"
msgstr "Opzioni del gruppo di regole del filtro"
#. js-lingui-id: cSev+j
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
msgid "Filters"
msgstr "Filtri"
@@ -6467,6 +6570,11 @@ msgstr "Nome"
msgid "First name can not be empty"
msgstr "Il nome non può essere vuoto"
#. js-lingui-id: JREYkg
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Fix the payment issue to keep your enterprise features active."
msgstr ""
#. js-lingui-id: ylQd2j
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
@@ -6486,7 +6594,7 @@ msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
msgid "Folders"
msgstr "Cartelle"
@@ -6635,6 +6743,22 @@ msgstr "File generati"
msgid "German"
msgstr "Tedesco"
#. js-lingui-id: sqtljx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Get Enterprise"
msgstr ""
#. js-lingui-id: o2kSwB
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Get Enterprise Key"
msgstr ""
#. js-lingui-id: NXEW3h
#: src/pages/onboarding/InviteTeam.tsx
msgid "Get the most out of your workspace by inviting your team."
@@ -6655,6 +6779,12 @@ msgstr "Globale"
msgid "Go Back"
msgstr ""
#. js-lingui-id: Hb4Cgz
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Go to billing portal"
msgstr ""
#. js-lingui-id: mUbv8L
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
msgid "Go to Companies"
@@ -7240,6 +7370,11 @@ msgstr ""
msgid "Inbox"
msgstr "Posta in arrivo"
#. js-lingui-id: mtGDyy
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Incomplete"
msgstr ""
#. js-lingui-id: O5wNUa
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "index"
@@ -7882,9 +8017,8 @@ msgid "Launch manually"
msgstr "Avvia manualmente"
#. js-lingui-id: rdU729
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsLayout.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -7957,6 +8091,12 @@ msgstr ""
msgid "Less than or equal"
msgstr "Minore o uguale"
#. js-lingui-id: 3qg5Ro
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Licensee"
msgstr ""
#. js-lingui-id: 1njn7W
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownThemesComponents.tsx
@@ -8260,6 +8400,8 @@ msgid "Manage billing and subscriptions"
msgstr "Gestisci fatturazione e abbonamenti"
#. js-lingui-id: nvgUPq
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Manage billing information"
msgstr "Gestisci le informazioni di fatturazione"
@@ -8612,6 +8754,11 @@ msgstr "Mese dell'anno"
msgid "monthly"
msgstr "mensile"
#. js-lingui-id: Sew/cK
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Monthly subscription"
msgstr ""
#. js-lingui-id: 6jefe3
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
@@ -8673,7 +8820,7 @@ msgid "Move right"
msgstr "Sposta a destra"
#. js-lingui-id: 6qDVmw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Move to a folder"
msgstr ""
@@ -9274,13 +9421,13 @@ msgid "No Files"
msgstr "Nessun file"
#. js-lingui-id: pYblOw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
msgid "No folder"
msgstr "Nessuna cartella"
#. js-lingui-id: 6XMhqL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folders available"
msgstr ""
@@ -9454,8 +9601,8 @@ msgstr "Nessun risultato"
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/side-panel/components/SidePanelList.tsx
msgid "No results found"
msgstr "Nessun risultato trovato"
@@ -10188,11 +10335,26 @@ msgstr "Il link per reimpostare la password è stato inviato all'e-mail"
msgid "Paste the code below"
msgstr "Incolla il codice qui sotto"
#. js-lingui-id: raz2Pm
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Paste your enterprise key below to activate"
msgstr ""
#. js-lingui-id: dNdgvF
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Paste your enterprise key here"
msgstr ""
#. js-lingui-id: I6gXOa
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "Path"
msgstr "Percorso"
#. js-lingui-id: QmXBEc
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Payment issue"
msgstr ""
#. js-lingui-id: UbRKMZ
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
#: src/modules/settings/security/components/approvedAccessDomains/SettingsApprovedAccessDomainsListCard.tsx
@@ -10329,13 +10491,13 @@ msgid "Pick a {objectLabel} record"
msgstr "Seleziona un record di {objectLabel}"
#. js-lingui-id: JqqNlC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Pick a view"
msgstr ""
#. js-lingui-id: Wlba2h
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Pick an object"
msgstr ""
@@ -10953,6 +11115,16 @@ msgstr "Rilasci"
msgid "Reload"
msgstr "Ricarica"
#. js-lingui-id: qbM5In
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Reload validity token"
msgstr ""
#. js-lingui-id: MZWnSC
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Reloading..."
msgstr ""
#. js-lingui-id: qlAIQ1
#: src/modules/object-metadata/components/RemoteNavigationDrawerSection.tsx
msgid "Remote"
@@ -11228,7 +11400,7 @@ msgstr "Risultato"
#. js-lingui-id: kx0s+n
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Results"
msgstr "Risultati"
@@ -11367,6 +11539,11 @@ msgstr ""
msgid "row level permission predicate group"
msgstr ""
#. js-lingui-id: xPaeO2
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Row-level security"
msgstr ""
#. js-lingui-id: 7jTlsu
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Ruby"
@@ -11485,6 +11662,8 @@ msgstr ""
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Search"
msgstr "Cerca"
@@ -11521,7 +11700,7 @@ msgid "Search a field..."
msgstr "Cerca un campo..."
#. js-lingui-id: ITQFzL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Search a folder..."
msgstr ""
@@ -11689,7 +11868,7 @@ msgid "Search records"
msgstr "Cerca record"
#. js-lingui-id: rRklUH
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Search records..."
msgstr ""
@@ -11724,11 +11903,13 @@ msgid "Searching the web for {query}"
msgstr ""
#. js-lingui-id: 8sgZS9
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month"
msgstr "posto / mese"
#. js-lingui-id: aQnWwf
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month - billed yearly"
msgstr "posto / mese - fatturato annualmente"
@@ -12556,6 +12737,7 @@ msgstr "SSO"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
@@ -12600,6 +12782,16 @@ msgstr ""
msgid "Start"
msgstr "Inizia"
#. js-lingui-id: ASqWQi
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Start a new enterprise subscription to re-enable enterprise features."
msgstr ""
#. js-lingui-id: OC6rnK
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Start a new enterprise subscription."
msgstr ""
#. js-lingui-id: D3iCkb
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
msgid "Start Date"
@@ -12625,6 +12817,11 @@ msgid "State"
msgstr "Stato"
#. js-lingui-id: uAQUqI
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
@@ -12920,11 +13117,11 @@ msgstr ""
#. js-lingui-id: 0apULK
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -13227,6 +13424,11 @@ msgstr "Ci sono colonne richieste che non sono abbinate o ignorate. Vuoi continu
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
msgstr "Ci sono ancora alcune righe che contengono errori. Le righe con errori verranno ignorate durante l'invio."
#. js-lingui-id: CA9PTn
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "There is a payment issue with your subscription. Please update your payment method."
msgstr ""
#. js-lingui-id: WQk7Cf
#: src/modules/activities/timeline-activities/components/TimelineCard.tsx
msgid "There is no activity associated with this record."
@@ -13341,9 +13543,9 @@ msgstr ""
msgid "This database value overrides environment settings. "
msgstr "Questo valore del database sovrascrive le impostazioni dell'ambiente."
#. js-lingui-id: qHAJQ2
#. js-lingui-id: 8IRnd6
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "This feature is part of the Organization Plan"
msgid "This feature is part of the Enterprise Plan"
msgstr ""
#. js-lingui-id: own57K
@@ -13652,6 +13854,8 @@ msgid "Transfer ownership"
msgstr ""
#. js-lingui-id: lhkaAC
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/internal/PlansTags.tsx
msgid "Trial"
msgstr "Prova"
@@ -13842,7 +14046,7 @@ msgid "Type anything..."
msgstr "Digita qualsiasi cosa..."
#. js-lingui-id: UhqKcC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Type to search records"
msgstr ""
@@ -14000,6 +14204,11 @@ msgstr "Contatti illimitati"
msgid "Unlisted"
msgstr "Non in elenco"
#. js-lingui-id: Ep1uUU
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
msgstr ""
#. js-lingui-id: eQMhFX
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "unordered"
@@ -14069,6 +14278,11 @@ msgstr "aggiorna"
msgid "Update"
msgstr "Aggiorna"
#. js-lingui-id: Y69tSP
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Update payment method"
msgstr ""
#. js-lingui-id: 0KAL3W
#: src/modules/side-panel/hooks/useOpenUpdateMultipleRecordsPageInSidePanel.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
@@ -14307,11 +14521,22 @@ msgstr "Utilizzando il valore predefinito dell'applicazione. Configura tramite v
msgid "Using default value. Set a custom value to override."
msgstr "Utilizzando il valore predefinito. Imposta un valore personalizzato per sovrascrivere."
#. js-lingui-id: zzp4XX
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Valid until"
msgstr ""
#. js-lingui-id: Clr4qp
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Validate Data"
msgstr "Convalida i dati"
#. js-lingui-id: PWZBIT
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Validity token refreshed successfully"
msgstr ""
#. js-lingui-id: wMHvYH
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/KeyValuePairInput.tsx
@@ -14438,6 +14663,8 @@ msgid "View and filter events, page views, object changes"
msgstr ""
#. js-lingui-id: KANz0G
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "View billing details"
msgstr "Visualizza dettagli fatturazione"
@@ -14487,6 +14714,11 @@ msgstr "gruppo vista"
msgid "View installed app"
msgstr ""
#. js-lingui-id: B02hom
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "View invoices"
msgstr ""
#. js-lingui-id: lh5BED
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerQueueMetricsSection.tsx
msgid "View Jobs"
@@ -14505,6 +14737,7 @@ msgstr ""
#. js-lingui-id: ecVcAx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "View Previous AI Chats"
msgstr "Vedi chat AI precedenti"
@@ -14854,6 +15087,7 @@ msgstr "Workflows"
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/domains/SettingsDomains.tsx
@@ -15020,6 +15254,11 @@ msgstr "Anno"
msgid "yearly"
msgstr "annuale"
#. js-lingui-id: Y1GwUe
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Yearly subscription"
msgstr ""
#. js-lingui-id: +BGee5
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
msgid "years"
@@ -15152,6 +15391,36 @@ msgstr "I tuoi oggetti delle email e i titoli delle riunioni verranno condivisi
msgid "Your emails and events content will be shared with your team."
msgstr "Il contenuto delle tue email e degli eventi verrà condiviso con il tuo team."
#. js-lingui-id: ahEwS4
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features are active"
msgstr ""
#. js-lingui-id: XMZLU/
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features are active but your enterprise key is missing or invalid. This may be expected, but if not, please set a valid signed enterprise key to manage your subscription, or contact support."
msgstr ""
#. js-lingui-id: AxcwNj
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features will be disabled"
msgstr ""
#. js-lingui-id: PT137K
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features will remain active until {cancelAtDate}."
msgstr ""
#. js-lingui-id: 69Siss
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
msgid "Your enterprise key format is deprecated. Please activate a new key to keep enterprise features."
msgstr ""
#. js-lingui-id: NTpA4U
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise subscription has been canceled."
msgstr ""
#. js-lingui-id: 9ivpwk
#: src/pages/settings/SettingsProfile.tsx
msgid "Your name as it will be displayed"
@@ -15162,6 +15431,26 @@ msgstr "Il tuo nome come verrà visualizzato"
msgid "Your name as it will be displayed on the app"
msgstr "Il tuo nome come sarà visualizzato sull'app"
#. js-lingui-id: 319YPG
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription is active but your validity token is invalid or has expired. Try reloading it or contact support."
msgstr ""
#. js-lingui-id: Fx0axg
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription is scheduled for cancellation"
msgstr ""
#. js-lingui-id: XgIa/8
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription setup was not completed."
msgstr ""
#. js-lingui-id: Z9kbt6
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription status is: {statusLabel}"
msgstr ""
#. js-lingui-id: QOd24n
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and "
+327 -38
View File
@@ -752,23 +752,37 @@ msgid "Actions users can perform on this object"
msgstr "このオブジェクトにユーザーが行えるアクション"
#. js-lingui-id: FQBaXG
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
#: src/modules/settings/data-model/objects/components/SettingsObjectInactiveMenuDropDown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
msgid "Activate"
msgstr "有効化"
#. js-lingui-id: eqeFkF
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Activate Enterprise Key"
msgstr ""
#. js-lingui-id: tu8A/k
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
msgid "Activate Workflow"
msgstr "ワークフローを有効化"
#. js-lingui-id: jSZacs
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Activating..."
msgstr ""
#. js-lingui-id: F6pfE9
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/domains/components/SettingsWorkspaceDomainCard.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Active"
@@ -806,6 +820,13 @@ msgstr "「{trimmedName}」をオプションに追加"
msgid "Add a {objectLabelSingular}"
msgstr "{objectLabelSingular} を追加"
#. js-lingui-id: 7W8nJr
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
msgid "Add a Group"
msgstr ""
#. js-lingui-id: CZDwqQ
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
@@ -818,16 +839,10 @@ msgid "Add a node"
msgstr "ノードを追加する"
#. js-lingui-id: nGv1DN
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Add a record"
msgstr ""
#. js-lingui-id: r8W+9y
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
msgid "Add a Section"
msgstr ""
#. js-lingui-id: eMc2xs
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
msgid "Add a step"
@@ -1429,7 +1444,7 @@ msgid "All set!"
msgstr "準備完了!"
#. js-lingui-id: CHvT6e
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectFlow.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
@@ -1574,6 +1589,7 @@ msgstr "画像のアップロード中にエラーが発生しました。"
#. js-lingui-id: XyOToQ
#: src/utils/get-error-message-from-apollo-error.util.ts
#: src/utils/get-error-message-from-apollo-error.util.ts
#: src/modules/views/hooks/internal/usePerformViewSortAPIPersist.ts
#: src/modules/views/hooks/internal/usePerformViewGroupAPIPersist.ts
#: src/modules/views/hooks/internal/usePerformViewFilterAPIPersist.ts
@@ -1664,6 +1680,7 @@ msgstr "API"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "API & Webhooks"
msgstr "API & Webhooks"
@@ -1940,6 +1957,7 @@ msgstr "昇順"
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Ask AI"
msgstr "AIに尋ねる"
@@ -2078,6 +2096,11 @@ msgstr ""
msgid "Attachments"
msgstr "添付ファイル"
#. js-lingui-id: y2W2Hg
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Audit logs"
msgstr ""
#. js-lingui-id: EPEFrH
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
@@ -2306,6 +2329,11 @@ msgstr "月の {startOrdinal} から {endOrdinal} の間"
msgid "Billing"
msgstr "請求"
#. js-lingui-id: dSjFxR
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Billing history"
msgstr ""
#. js-lingui-id: nJGwRf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Billing interval"
@@ -2563,6 +2591,7 @@ msgid "Cancel metered tier switching?"
msgstr "メーター制ティア切替をキャンセルしますか?"
#. js-lingui-id: rRK/Lf
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel Plan"
msgstr "プランをキャンセル"
@@ -2578,10 +2607,26 @@ msgid "Cancel plan switching?"
msgstr "プラン切替をキャンセルしますか?"
#. js-lingui-id: N6gPiD
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel your subscription"
msgstr "サブスクリプションをキャンセル"
#. js-lingui-id: GGWsTU
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Canceled"
msgstr ""
#. js-lingui-id: y4uH7j
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Cancelling"
msgstr ""
#. js-lingui-id: WbPx+C
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Cancels on"
msgstr ""
#. js-lingui-id: XDbjjW
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Cannot delete the only view"
@@ -3077,11 +3122,6 @@ msgstr ""
msgid "Configure fallback login methods for users with SSO bypass permissions"
msgstr "SSO バイパスの権限を持つユーザー用のフォールバックログイン方法を設定する"
#. js-lingui-id: c7wznw
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
msgid "Configure filters"
msgstr "フィルターを設定"
#. js-lingui-id: ghdb7+
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
msgid "Configure how we should display your events in your calendar"
@@ -3279,6 +3319,7 @@ msgstr ""
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
msgid "Continue"
msgstr "続行"
@@ -3438,6 +3479,21 @@ msgstr "1k追加クレジットあたりのコスト"
msgid "Could not delete approved access domain"
msgstr "承認されたアクセスドメインを削除できませんでした"
#. js-lingui-id: KqYYBp
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not open billing portal. Please check your enterprise key is present, or contact support."
msgstr ""
#. js-lingui-id: ZuI4Sl
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Could not open Stripe. Please contact support."
msgstr ""
#. js-lingui-id: wVw4Am
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not refresh validity token. Please contact support."
msgstr ""
#. js-lingui-id: s8lFtq
#: src/hooks/useCopyToClipboard.tsx
msgid "Couldn't copy to clipboard"
@@ -3815,6 +3871,7 @@ msgstr "カスタムドメインが更新されました"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Custom objects"
msgstr "カスタムオブジェクト"
@@ -4917,6 +4974,8 @@ msgid "Edit own profile information"
msgstr ""
#. js-lingui-id: h2KoTu
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Edit payment method, see your invoices and more"
msgstr "支払い方法の編集、請求書の確認など"
@@ -5216,6 +5275,11 @@ msgstr "パスワードに加えてコードを要求することで、セキュ
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr "{withCreditCardTrialPeriodDuration}日間の無料トライアルをお楽しみください。"
#. js-lingui-id: 6iUnle
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Enjoy a 30-day free trial"
msgstr ""
#. js-lingui-id: T/N+2Z
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormRawJsonFieldInput.tsx
@@ -5422,6 +5486,9 @@ msgstr "API キーを入力"
#. js-lingui-id: GpB8YV
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
msgid "Enterprise"
msgstr "エンタープライズ"
@@ -5430,6 +5497,22 @@ msgstr "エンタープライズ"
msgid "Enterprise Feature"
msgstr ""
#. js-lingui-id: S5c4pl
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Enterprise License"
msgstr ""
#. js-lingui-id: KGE5g0
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Enterprise license activated successfully"
msgstr ""
#. js-lingui-id: SLuq/l
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Entity ID"
@@ -5470,6 +5553,11 @@ msgstr "ソフト削除されたレコードの消去"
msgid "Error"
msgstr "エラー"
#. js-lingui-id: VouTsQ
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error activating enterprise license"
msgstr ""
#. js-lingui-id: GHKxvg
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error deleting api key."
@@ -5495,11 +5583,6 @@ msgstr "SSOアイデンティティプロバイダーの削除エラー"
msgid "Error editing SSO Identity Provider"
msgstr "SSOアイデンティティプロバイダーの編集エラー"
#. js-lingui-id: GsIfmO
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerMetricsGraph.tsx
msgid "Error fetching worker metrics: {errorMessage}"
msgstr "ワーカーのメトリクスの取得中にエラーが発生しました: {errorMessage}"
#. js-lingui-id: GdBN5t
#: src/modules/error-handler/components/AppRootErrorFallback.tsx
msgid "Error illustration"
@@ -5530,11 +5613,26 @@ msgstr "メッセージの読み込みエラー"
msgid "Error Message"
msgstr "エラーメッセージ"
#. js-lingui-id: Mox63G
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error opening billing portal"
msgstr ""
#. js-lingui-id: e/eieW
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Error opening Stripe"
msgstr ""
#. js-lingui-id: bT/0cM
#: src/modules/ui/field/display/components/PhonesDisplay.tsx
msgid "Error parsing additional phones: {error}"
msgstr "追加の電話番号の解析エラー: {error}"
#. js-lingui-id: zRXcyv
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error refreshing validity token. Please contact support."
msgstr ""
#. js-lingui-id: PfAip2
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error regenerating api key."
@@ -5997,6 +6095,11 @@ msgstr ""
msgid "Failed to {translatedOperationType} {translatedMetadataName}. Related {relatedEntityNames} validation failed. Please check your configuration and try again."
msgstr ""
#. js-lingui-id: R1XJV1
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Failed to activate enterprise license. Please check your key or contact support."
msgstr ""
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to activate skill"
@@ -6374,7 +6477,6 @@ msgstr ""
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/views/components/ViewBarFilterButton.tsx
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
#: src/modules/settings/roles/components/SettingsRolesList.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
@@ -6397,6 +6499,7 @@ msgid "Filter group rule options"
msgstr "フィルターグループのルールオプション"
#. js-lingui-id: cSev+j
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
msgid "Filters"
msgstr "フィルター"
@@ -6467,6 +6570,11 @@ msgstr "名"
msgid "First name can not be empty"
msgstr "名は空にできません"
#. js-lingui-id: JREYkg
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Fix the payment issue to keep your enterprise features active."
msgstr ""
#. js-lingui-id: ylQd2j
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
@@ -6486,7 +6594,7 @@ msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
msgid "Folders"
msgstr "フォルダー"
@@ -6635,6 +6743,22 @@ msgstr "生成されたファイル"
msgid "German"
msgstr "ドイツ語"
#. js-lingui-id: sqtljx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Get Enterprise"
msgstr ""
#. js-lingui-id: o2kSwB
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Get Enterprise Key"
msgstr ""
#. js-lingui-id: NXEW3h
#: src/pages/onboarding/InviteTeam.tsx
msgid "Get the most out of your workspace by inviting your team."
@@ -6655,6 +6779,12 @@ msgstr "グローバル"
msgid "Go Back"
msgstr ""
#. js-lingui-id: Hb4Cgz
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Go to billing portal"
msgstr ""
#. js-lingui-id: mUbv8L
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
msgid "Go to Companies"
@@ -7240,6 +7370,11 @@ msgstr ""
msgid "Inbox"
msgstr "受信トレイ"
#. js-lingui-id: mtGDyy
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Incomplete"
msgstr ""
#. js-lingui-id: O5wNUa
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "index"
@@ -7882,9 +8017,8 @@ msgid "Launch manually"
msgstr "手動で起動"
#. js-lingui-id: rdU729
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsLayout.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -7957,6 +8091,12 @@ msgstr ""
msgid "Less than or equal"
msgstr "以下"
#. js-lingui-id: 3qg5Ro
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Licensee"
msgstr ""
#. js-lingui-id: 1njn7W
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownThemesComponents.tsx
@@ -8260,6 +8400,8 @@ msgid "Manage billing and subscriptions"
msgstr "請求とサブスクリプションの管理"
#. js-lingui-id: nvgUPq
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Manage billing information"
msgstr "請求情報を管理する"
@@ -8612,6 +8754,11 @@ msgstr "月"
msgid "monthly"
msgstr "月払い"
#. js-lingui-id: Sew/cK
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Monthly subscription"
msgstr ""
#. js-lingui-id: 6jefe3
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
@@ -8673,7 +8820,7 @@ msgid "Move right"
msgstr "右に移動"
#. js-lingui-id: 6qDVmw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Move to a folder"
msgstr ""
@@ -9274,13 +9421,13 @@ msgid "No Files"
msgstr "ファイルなし"
#. js-lingui-id: pYblOw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
msgid "No folder"
msgstr "フォルダーなし"
#. js-lingui-id: 6XMhqL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folders available"
msgstr ""
@@ -9454,8 +9601,8 @@ msgstr "結果なし"
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/side-panel/components/SidePanelList.tsx
msgid "No results found"
msgstr "結果が見つかりません"
@@ -10188,11 +10335,26 @@ msgstr "パスワードリセットリンクがメールに送信されました
msgid "Paste the code below"
msgstr "以下のコードを貼り付けてください"
#. js-lingui-id: raz2Pm
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Paste your enterprise key below to activate"
msgstr ""
#. js-lingui-id: dNdgvF
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Paste your enterprise key here"
msgstr ""
#. js-lingui-id: I6gXOa
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "Path"
msgstr "パス"
#. js-lingui-id: QmXBEc
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Payment issue"
msgstr ""
#. js-lingui-id: UbRKMZ
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
#: src/modules/settings/security/components/approvedAccessDomains/SettingsApprovedAccessDomainsListCard.tsx
@@ -10329,13 +10491,13 @@ msgid "Pick a {objectLabel} record"
msgstr "{objectLabel}レコードを選択する"
#. js-lingui-id: JqqNlC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Pick a view"
msgstr ""
#. js-lingui-id: Wlba2h
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Pick an object"
msgstr ""
@@ -10953,6 +11115,16 @@ msgstr "リリース"
msgid "Reload"
msgstr "リロード"
#. js-lingui-id: qbM5In
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Reload validity token"
msgstr ""
#. js-lingui-id: MZWnSC
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Reloading..."
msgstr ""
#. js-lingui-id: qlAIQ1
#: src/modules/object-metadata/components/RemoteNavigationDrawerSection.tsx
msgid "Remote"
@@ -11228,7 +11400,7 @@ msgstr "結果"
#. js-lingui-id: kx0s+n
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Results"
msgstr "結果"
@@ -11367,6 +11539,11 @@ msgstr ""
msgid "row level permission predicate group"
msgstr ""
#. js-lingui-id: xPaeO2
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Row-level security"
msgstr ""
#. js-lingui-id: 7jTlsu
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Ruby"
@@ -11485,6 +11662,8 @@ msgstr ""
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Search"
msgstr "検索"
@@ -11521,7 +11700,7 @@ msgid "Search a field..."
msgstr "フィールドを検索..."
#. js-lingui-id: ITQFzL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Search a folder..."
msgstr ""
@@ -11689,7 +11868,7 @@ msgid "Search records"
msgstr "レコードを検索"
#. js-lingui-id: rRklUH
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Search records..."
msgstr ""
@@ -11724,11 +11903,13 @@ msgid "Searching the web for {query}"
msgstr ""
#. js-lingui-id: 8sgZS9
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month"
msgstr "座席 / 月"
#. js-lingui-id: aQnWwf
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month - billed yearly"
msgstr "座席 / 月 - 年間請求"
@@ -12556,6 +12737,7 @@ msgstr "SSO"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSOSAML / OIDC"
@@ -12600,6 +12782,16 @@ msgstr ""
msgid "Start"
msgstr "開始"
#. js-lingui-id: ASqWQi
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Start a new enterprise subscription to re-enable enterprise features."
msgstr ""
#. js-lingui-id: OC6rnK
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Start a new enterprise subscription."
msgstr ""
#. js-lingui-id: D3iCkb
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
msgid "Start Date"
@@ -12625,6 +12817,11 @@ msgid "State"
msgstr "状態"
#. js-lingui-id: uAQUqI
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
@@ -12920,11 +13117,11 @@ msgstr ""
#. js-lingui-id: 0apULK
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -13227,6 +13424,11 @@ msgstr "一致していないか無視された必須列があります。続行
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
msgstr "エラーを含む行がまだいくつかあります。送信時にエラーのある行は無視されます。"
#. js-lingui-id: CA9PTn
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "There is a payment issue with your subscription. Please update your payment method."
msgstr ""
#. js-lingui-id: WQk7Cf
#: src/modules/activities/timeline-activities/components/TimelineCard.tsx
msgid "There is no activity associated with this record."
@@ -13339,9 +13541,9 @@ msgstr ""
msgid "This database value overrides environment settings. "
msgstr "このデータベース値は環境設定を上書きします。"
#. js-lingui-id: qHAJQ2
#. js-lingui-id: 8IRnd6
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "This feature is part of the Organization Plan"
msgid "This feature is part of the Enterprise Plan"
msgstr ""
#. js-lingui-id: own57K
@@ -13650,6 +13852,8 @@ msgid "Transfer ownership"
msgstr ""
#. js-lingui-id: lhkaAC
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/internal/PlansTags.tsx
msgid "Trial"
msgstr "トライアル"
@@ -13840,7 +14044,7 @@ msgid "Type anything..."
msgstr "何でも入力..."
#. js-lingui-id: UhqKcC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Type to search records"
msgstr ""
@@ -13998,6 +14202,11 @@ msgstr "連絡先無制限"
msgid "Unlisted"
msgstr "非公開"
#. js-lingui-id: Ep1uUU
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
msgstr ""
#. js-lingui-id: eQMhFX
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "unordered"
@@ -14067,6 +14276,11 @@ msgstr "更新"
msgid "Update"
msgstr "更新"
#. js-lingui-id: Y69tSP
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Update payment method"
msgstr ""
#. js-lingui-id: 0KAL3W
#: src/modules/side-panel/hooks/useOpenUpdateMultipleRecordsPageInSidePanel.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
@@ -14305,11 +14519,22 @@ msgstr "デフォルトのアプリケーション値を使用しています。
msgid "Using default value. Set a custom value to override."
msgstr "デフォルト値を使用しています。カスタム値を設定して上書きしてください。"
#. js-lingui-id: zzp4XX
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Valid until"
msgstr ""
#. js-lingui-id: Clr4qp
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Validate Data"
msgstr "データを検証"
#. js-lingui-id: PWZBIT
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Validity token refreshed successfully"
msgstr ""
#. js-lingui-id: wMHvYH
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/KeyValuePairInput.tsx
@@ -14436,6 +14661,8 @@ msgid "View and filter events, page views, object changes"
msgstr ""
#. js-lingui-id: KANz0G
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "View billing details"
msgstr "請求の詳細を表示"
@@ -14485,6 +14712,11 @@ msgstr "ビューグループ"
msgid "View installed app"
msgstr ""
#. js-lingui-id: B02hom
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "View invoices"
msgstr ""
#. js-lingui-id: lh5BED
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerQueueMetricsSection.tsx
msgid "View Jobs"
@@ -14503,6 +14735,7 @@ msgstr ""
#. js-lingui-id: ecVcAx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "View Previous AI Chats"
msgstr "以前のAIチャットを見る"
@@ -14852,6 +15085,7 @@ msgstr "ワークフロー"
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/domains/SettingsDomains.tsx
@@ -15018,6 +15252,11 @@ msgstr "年"
msgid "yearly"
msgstr "年払い"
#. js-lingui-id: Y1GwUe
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Yearly subscription"
msgstr ""
#. js-lingui-id: +BGee5
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
msgid "years"
@@ -15150,6 +15389,36 @@ msgstr "メールの件名や会議タイトルがチームと共有されます
msgid "Your emails and events content will be shared with your team."
msgstr "メールやイベントの内容がチームと共有されます。"
#. js-lingui-id: ahEwS4
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features are active"
msgstr ""
#. js-lingui-id: XMZLU/
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features are active but your enterprise key is missing or invalid. This may be expected, but if not, please set a valid signed enterprise key to manage your subscription, or contact support."
msgstr ""
#. js-lingui-id: AxcwNj
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features will be disabled"
msgstr ""
#. js-lingui-id: PT137K
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features will remain active until {cancelAtDate}."
msgstr ""
#. js-lingui-id: 69Siss
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
msgid "Your enterprise key format is deprecated. Please activate a new key to keep enterprise features."
msgstr ""
#. js-lingui-id: NTpA4U
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise subscription has been canceled."
msgstr ""
#. js-lingui-id: 9ivpwk
#: src/pages/settings/SettingsProfile.tsx
msgid "Your name as it will be displayed"
@@ -15160,6 +15429,26 @@ msgstr "表示名"
msgid "Your name as it will be displayed on the app"
msgstr "アプリ上での表示名"
#. js-lingui-id: 319YPG
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription is active but your validity token is invalid or has expired. Try reloading it or contact support."
msgstr ""
#. js-lingui-id: Fx0axg
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription is scheduled for cancellation"
msgstr ""
#. js-lingui-id: XgIa/8
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription setup was not completed."
msgstr ""
#. js-lingui-id: Z9kbt6
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription status is: {statusLabel}"
msgstr ""
#. js-lingui-id: QOd24n
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and "
+327 -38
View File
@@ -752,23 +752,37 @@ msgid "Actions users can perform on this object"
msgstr "사용자가 이 객체에서 수행할 수 있는 작업"
#. js-lingui-id: FQBaXG
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
#: src/modules/settings/data-model/objects/components/SettingsObjectInactiveMenuDropDown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
msgid "Activate"
msgstr "활성화"
#. js-lingui-id: eqeFkF
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Activate Enterprise Key"
msgstr ""
#. js-lingui-id: tu8A/k
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
msgid "Activate Workflow"
msgstr "워크플로 활성화"
#. js-lingui-id: jSZacs
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Activating..."
msgstr ""
#. js-lingui-id: F6pfE9
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/domains/components/SettingsWorkspaceDomainCard.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Active"
@@ -806,6 +820,13 @@ msgstr "\"{trimmedName}\"을 옵션에 추가하기"
msgid "Add a {objectLabelSingular}"
msgstr "{objectLabelSingular} 추가"
#. js-lingui-id: 7W8nJr
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
msgid "Add a Group"
msgstr ""
#. js-lingui-id: CZDwqQ
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
@@ -818,16 +839,10 @@ msgid "Add a node"
msgstr "노드 추가"
#. js-lingui-id: nGv1DN
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Add a record"
msgstr ""
#. js-lingui-id: r8W+9y
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
msgid "Add a Section"
msgstr ""
#. js-lingui-id: eMc2xs
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
msgid "Add a step"
@@ -1429,7 +1444,7 @@ msgid "All set!"
msgstr "준비 완료!"
#. js-lingui-id: CHvT6e
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectFlow.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
@@ -1574,6 +1589,7 @@ msgstr "사진을 업로드하는 중 오류가 발생했습니다."
#. js-lingui-id: XyOToQ
#: src/utils/get-error-message-from-apollo-error.util.ts
#: src/utils/get-error-message-from-apollo-error.util.ts
#: src/modules/views/hooks/internal/usePerformViewSortAPIPersist.ts
#: src/modules/views/hooks/internal/usePerformViewGroupAPIPersist.ts
#: src/modules/views/hooks/internal/usePerformViewFilterAPIPersist.ts
@@ -1664,6 +1680,7 @@ msgstr "API"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "API & Webhooks"
msgstr "API 및 웹훅"
@@ -1940,6 +1957,7 @@ msgstr "오름차순"
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Ask AI"
msgstr "AI에게 질문하기"
@@ -2078,6 +2096,11 @@ msgstr ""
msgid "Attachments"
msgstr "첨부 파일"
#. js-lingui-id: y2W2Hg
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Audit logs"
msgstr ""
#. js-lingui-id: EPEFrH
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
@@ -2306,6 +2329,11 @@ msgstr "매달의 {startOrdinal}일에서 {endOrdinal}일까지"
msgid "Billing"
msgstr "청구"
#. js-lingui-id: dSjFxR
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Billing history"
msgstr ""
#. js-lingui-id: nJGwRf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Billing interval"
@@ -2563,6 +2591,7 @@ msgid "Cancel metered tier switching?"
msgstr "계측된 계층 전환을 취소하시겠습니까?"
#. js-lingui-id: rRK/Lf
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel Plan"
msgstr "요금제 취소"
@@ -2578,10 +2607,26 @@ msgid "Cancel plan switching?"
msgstr "플랜 전환을 취소하시겠습니까?"
#. js-lingui-id: N6gPiD
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel your subscription"
msgstr "구독 취소"
#. js-lingui-id: GGWsTU
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Canceled"
msgstr ""
#. js-lingui-id: y4uH7j
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Cancelling"
msgstr ""
#. js-lingui-id: WbPx+C
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Cancels on"
msgstr ""
#. js-lingui-id: XDbjjW
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Cannot delete the only view"
@@ -3077,11 +3122,6 @@ msgstr ""
msgid "Configure fallback login methods for users with SSO bypass permissions"
msgstr "SSO 우회 권한이 있는 사용자를 위한 대체 로그인 방법 구성"
#. js-lingui-id: c7wznw
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
msgid "Configure filters"
msgstr "필터 구성"
#. js-lingui-id: ghdb7+
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
msgid "Configure how we should display your events in your calendar"
@@ -3279,6 +3319,7 @@ msgstr ""
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
msgid "Continue"
msgstr "계속"
@@ -3438,6 +3479,21 @@ msgstr "1천 크레딧 추가 비용"
msgid "Could not delete approved access domain"
msgstr "승인된 액세스 도메인을 삭제할 수 없습니다"
#. js-lingui-id: KqYYBp
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not open billing portal. Please check your enterprise key is present, or contact support."
msgstr ""
#. js-lingui-id: ZuI4Sl
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Could not open Stripe. Please contact support."
msgstr ""
#. js-lingui-id: wVw4Am
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not refresh validity token. Please contact support."
msgstr ""
#. js-lingui-id: s8lFtq
#: src/hooks/useCopyToClipboard.tsx
msgid "Couldn't copy to clipboard"
@@ -3815,6 +3871,7 @@ msgstr "사용자 정의 도메인이 업데이트되었습니다"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Custom objects"
msgstr "사용자 지정 개체"
@@ -4917,6 +4974,8 @@ msgid "Edit own profile information"
msgstr ""
#. js-lingui-id: h2KoTu
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Edit payment method, see your invoices and more"
msgstr "결제 방법 편집, 송장 확인 등"
@@ -5216,6 +5275,11 @@ msgstr "비밀번호와 함께 코드를 요구하여 보안을 강화합니다.
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr "{withCreditCardTrialPeriodDuration}일 무료 체험을 즐기세요"
#. js-lingui-id: 6iUnle
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Enjoy a 30-day free trial"
msgstr ""
#. js-lingui-id: T/N+2Z
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormRawJsonFieldInput.tsx
@@ -5422,6 +5486,9 @@ msgstr "API 키를 입력하세요"
#. js-lingui-id: GpB8YV
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
msgid "Enterprise"
msgstr "엔터프라이즈"
@@ -5430,6 +5497,22 @@ msgstr "엔터프라이즈"
msgid "Enterprise Feature"
msgstr ""
#. js-lingui-id: S5c4pl
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Enterprise License"
msgstr ""
#. js-lingui-id: KGE5g0
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Enterprise license activated successfully"
msgstr ""
#. js-lingui-id: SLuq/l
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Entity ID"
@@ -5470,6 +5553,11 @@ msgstr "소프트 삭제된 기록 지우기"
msgid "Error"
msgstr "오류"
#. js-lingui-id: VouTsQ
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error activating enterprise license"
msgstr ""
#. js-lingui-id: GHKxvg
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error deleting api key."
@@ -5495,11 +5583,6 @@ msgstr "SSO ID 공급자 삭제 오류"
msgid "Error editing SSO Identity Provider"
msgstr "SSO ID 공급자 편집 오류"
#. js-lingui-id: GsIfmO
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerMetricsGraph.tsx
msgid "Error fetching worker metrics: {errorMessage}"
msgstr "워커 메트릭을 가져오는 중 오류: {errorMessage}"
#. js-lingui-id: GdBN5t
#: src/modules/error-handler/components/AppRootErrorFallback.tsx
msgid "Error illustration"
@@ -5530,11 +5613,26 @@ msgstr "메시지 로드 오류"
msgid "Error Message"
msgstr "오류 메시지"
#. js-lingui-id: Mox63G
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error opening billing portal"
msgstr ""
#. js-lingui-id: e/eieW
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Error opening Stripe"
msgstr ""
#. js-lingui-id: bT/0cM
#: src/modules/ui/field/display/components/PhonesDisplay.tsx
msgid "Error parsing additional phones: {error}"
msgstr "추가 전화번호 구문 분석 오류: {error}"
#. js-lingui-id: zRXcyv
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error refreshing validity token. Please contact support."
msgstr ""
#. js-lingui-id: PfAip2
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error regenerating api key."
@@ -5997,6 +6095,11 @@ msgstr ""
msgid "Failed to {translatedOperationType} {translatedMetadataName}. Related {relatedEntityNames} validation failed. Please check your configuration and try again."
msgstr ""
#. js-lingui-id: R1XJV1
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Failed to activate enterprise license. Please check your key or contact support."
msgstr ""
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to activate skill"
@@ -6374,7 +6477,6 @@ msgstr ""
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/views/components/ViewBarFilterButton.tsx
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
#: src/modules/settings/roles/components/SettingsRolesList.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
@@ -6397,6 +6499,7 @@ msgid "Filter group rule options"
msgstr "필터 그룹 규칙 옵션"
#. js-lingui-id: cSev+j
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
msgid "Filters"
msgstr "필터"
@@ -6467,6 +6570,11 @@ msgstr "이름"
msgid "First name can not be empty"
msgstr "이름은 비워 둘 수 없습니다"
#. js-lingui-id: JREYkg
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Fix the payment issue to keep your enterprise features active."
msgstr ""
#. js-lingui-id: ylQd2j
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
@@ -6486,7 +6594,7 @@ msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
msgid "Folders"
msgstr "폴더"
@@ -6635,6 +6743,22 @@ msgstr "생성된 파일"
msgid "German"
msgstr "독일어"
#. js-lingui-id: sqtljx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Get Enterprise"
msgstr ""
#. js-lingui-id: o2kSwB
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Get Enterprise Key"
msgstr ""
#. js-lingui-id: NXEW3h
#: src/pages/onboarding/InviteTeam.tsx
msgid "Get the most out of your workspace by inviting your team."
@@ -6655,6 +6779,12 @@ msgstr "글로벌"
msgid "Go Back"
msgstr ""
#. js-lingui-id: Hb4Cgz
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Go to billing portal"
msgstr ""
#. js-lingui-id: mUbv8L
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
msgid "Go to Companies"
@@ -7240,6 +7370,11 @@ msgstr ""
msgid "Inbox"
msgstr "받은 편지함"
#. js-lingui-id: mtGDyy
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Incomplete"
msgstr ""
#. js-lingui-id: O5wNUa
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "index"
@@ -7882,9 +8017,8 @@ msgid "Launch manually"
msgstr "수동 실행"
#. js-lingui-id: rdU729
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsLayout.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -7957,6 +8091,12 @@ msgstr ""
msgid "Less than or equal"
msgstr "이하"
#. js-lingui-id: 3qg5Ro
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Licensee"
msgstr ""
#. js-lingui-id: 1njn7W
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownThemesComponents.tsx
@@ -8260,6 +8400,8 @@ msgid "Manage billing and subscriptions"
msgstr "청구 및 구독 관리"
#. js-lingui-id: nvgUPq
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Manage billing information"
msgstr "청구 정보를 관리하세요"
@@ -8612,6 +8754,11 @@ msgstr "연도의 달"
msgid "monthly"
msgstr "월간"
#. js-lingui-id: Sew/cK
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Monthly subscription"
msgstr ""
#. js-lingui-id: 6jefe3
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
@@ -8673,7 +8820,7 @@ msgid "Move right"
msgstr "오른쪽으로 이동"
#. js-lingui-id: 6qDVmw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Move to a folder"
msgstr ""
@@ -9274,13 +9421,13 @@ msgid "No Files"
msgstr "파일 없음"
#. js-lingui-id: pYblOw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
msgid "No folder"
msgstr "폴더 없음"
#. js-lingui-id: 6XMhqL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folders available"
msgstr ""
@@ -9454,8 +9601,8 @@ msgstr "결과 없음"
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/side-panel/components/SidePanelList.tsx
msgid "No results found"
msgstr "결과를 찾을 수 없습니다"
@@ -10188,11 +10335,26 @@ msgstr "비밀번호 재설정 링크가 이메일로 전송되었습니다"
msgid "Paste the code below"
msgstr "아래 코드를 붙여넣기"
#. js-lingui-id: raz2Pm
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Paste your enterprise key below to activate"
msgstr ""
#. js-lingui-id: dNdgvF
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Paste your enterprise key here"
msgstr ""
#. js-lingui-id: I6gXOa
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "Path"
msgstr "경로"
#. js-lingui-id: QmXBEc
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Payment issue"
msgstr ""
#. js-lingui-id: UbRKMZ
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
#: src/modules/settings/security/components/approvedAccessDomains/SettingsApprovedAccessDomainsListCard.tsx
@@ -10329,13 +10491,13 @@ msgid "Pick a {objectLabel} record"
msgstr "{objectLabel} 기록을 선택하세요"
#. js-lingui-id: JqqNlC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Pick a view"
msgstr ""
#. js-lingui-id: Wlba2h
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Pick an object"
msgstr ""
@@ -10953,6 +11115,16 @@ msgstr "릴리스"
msgid "Reload"
msgstr "새로 고침"
#. js-lingui-id: qbM5In
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Reload validity token"
msgstr ""
#. js-lingui-id: MZWnSC
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Reloading..."
msgstr ""
#. js-lingui-id: qlAIQ1
#: src/modules/object-metadata/components/RemoteNavigationDrawerSection.tsx
msgid "Remote"
@@ -11228,7 +11400,7 @@ msgstr "결과"
#. js-lingui-id: kx0s+n
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Results"
msgstr "결과"
@@ -11367,6 +11539,11 @@ msgstr ""
msgid "row level permission predicate group"
msgstr ""
#. js-lingui-id: xPaeO2
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Row-level security"
msgstr ""
#. js-lingui-id: 7jTlsu
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Ruby"
@@ -11485,6 +11662,8 @@ msgstr ""
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Search"
msgstr "검색"
@@ -11521,7 +11700,7 @@ msgid "Search a field..."
msgstr "필드 검색..."
#. js-lingui-id: ITQFzL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Search a folder..."
msgstr ""
@@ -11689,7 +11868,7 @@ msgid "Search records"
msgstr "레코드 검색"
#. js-lingui-id: rRklUH
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Search records..."
msgstr ""
@@ -11724,11 +11903,13 @@ msgid "Searching the web for {query}"
msgstr ""
#. js-lingui-id: 8sgZS9
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month"
msgstr "좌석 / 월"
#. js-lingui-id: aQnWwf
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month - billed yearly"
msgstr "좌석 / 월 - 연간 청구"
@@ -12556,6 +12737,7 @@ msgstr "SSO"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
@@ -12600,6 +12782,16 @@ msgstr ""
msgid "Start"
msgstr "시작"
#. js-lingui-id: ASqWQi
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Start a new enterprise subscription to re-enable enterprise features."
msgstr ""
#. js-lingui-id: OC6rnK
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Start a new enterprise subscription."
msgstr ""
#. js-lingui-id: D3iCkb
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
msgid "Start Date"
@@ -12625,6 +12817,11 @@ msgid "State"
msgstr "상태"
#. js-lingui-id: uAQUqI
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
@@ -12920,11 +13117,11 @@ msgstr ""
#. js-lingui-id: 0apULK
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -13227,6 +13424,11 @@ msgstr "일치하지 않거나 무시된 필수 열이 있습니다. 계속 진
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
msgstr "오류가 포함된 행이 여전히 있습니다. 오류가 있는 행은 제출할 때 무시됩니다."
#. js-lingui-id: CA9PTn
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "There is a payment issue with your subscription. Please update your payment method."
msgstr ""
#. js-lingui-id: WQk7Cf
#: src/modules/activities/timeline-activities/components/TimelineCard.tsx
msgid "There is no activity associated with this record."
@@ -13339,9 +13541,9 @@ msgstr ""
msgid "This database value overrides environment settings. "
msgstr "이 데이터베이스 값은 환경 설정을 덮어씁니다."
#. js-lingui-id: qHAJQ2
#. js-lingui-id: 8IRnd6
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "This feature is part of the Organization Plan"
msgid "This feature is part of the Enterprise Plan"
msgstr ""
#. js-lingui-id: own57K
@@ -13650,6 +13852,8 @@ msgid "Transfer ownership"
msgstr ""
#. js-lingui-id: lhkaAC
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/internal/PlansTags.tsx
msgid "Trial"
msgstr "시험"
@@ -13840,7 +14044,7 @@ msgid "Type anything..."
msgstr "아무거나 입력하세요..."
#. js-lingui-id: UhqKcC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Type to search records"
msgstr ""
@@ -13998,6 +14202,11 @@ msgstr "무제한 연락처"
msgid "Unlisted"
msgstr "비공개"
#. js-lingui-id: Ep1uUU
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
msgstr ""
#. js-lingui-id: eQMhFX
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "unordered"
@@ -14067,6 +14276,11 @@ msgstr "업데이트"
msgid "Update"
msgstr "업데이트"
#. js-lingui-id: Y69tSP
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Update payment method"
msgstr ""
#. js-lingui-id: 0KAL3W
#: src/modules/side-panel/hooks/useOpenUpdateMultipleRecordsPageInSidePanel.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
@@ -14305,11 +14519,22 @@ msgstr "기본 애플리케이션 값을 사용 중입니다. 환경 변수를
msgid "Using default value. Set a custom value to override."
msgstr "기본값을 사용 중입니다. 덮어쓰려면 사용자 지정 값을 설정하세요."
#. js-lingui-id: zzp4XX
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Valid until"
msgstr ""
#. js-lingui-id: Clr4qp
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Validate Data"
msgstr "데이터 검증"
#. js-lingui-id: PWZBIT
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Validity token refreshed successfully"
msgstr ""
#. js-lingui-id: wMHvYH
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/KeyValuePairInput.tsx
@@ -14436,6 +14661,8 @@ msgid "View and filter events, page views, object changes"
msgstr ""
#. js-lingui-id: KANz0G
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "View billing details"
msgstr "청구 세부 정보 보기"
@@ -14485,6 +14712,11 @@ msgstr "보기 그룹"
msgid "View installed app"
msgstr ""
#. js-lingui-id: B02hom
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "View invoices"
msgstr ""
#. js-lingui-id: lh5BED
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerQueueMetricsSection.tsx
msgid "View Jobs"
@@ -14503,6 +14735,7 @@ msgstr ""
#. js-lingui-id: ecVcAx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "View Previous AI Chats"
msgstr "이전 AI 채팅 보기"
@@ -14852,6 +15085,7 @@ msgstr "Workflows"
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/domains/SettingsDomains.tsx
@@ -15018,6 +15252,11 @@ msgstr "연"
msgid "yearly"
msgstr "연간"
#. js-lingui-id: Y1GwUe
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Yearly subscription"
msgstr ""
#. js-lingui-id: +BGee5
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
msgid "years"
@@ -15150,6 +15389,36 @@ msgstr "이메일 제목과 회의 제목이 팀과 공유됩니다."
msgid "Your emails and events content will be shared with your team."
msgstr "이메일과 이벤트 내용이 팀과 공유됩니다."
#. js-lingui-id: ahEwS4
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features are active"
msgstr ""
#. js-lingui-id: XMZLU/
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features are active but your enterprise key is missing or invalid. This may be expected, but if not, please set a valid signed enterprise key to manage your subscription, or contact support."
msgstr ""
#. js-lingui-id: AxcwNj
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features will be disabled"
msgstr ""
#. js-lingui-id: PT137K
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features will remain active until {cancelAtDate}."
msgstr ""
#. js-lingui-id: 69Siss
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
msgid "Your enterprise key format is deprecated. Please activate a new key to keep enterprise features."
msgstr ""
#. js-lingui-id: NTpA4U
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise subscription has been canceled."
msgstr ""
#. js-lingui-id: 9ivpwk
#: src/pages/settings/SettingsProfile.tsx
msgid "Your name as it will be displayed"
@@ -15160,6 +15429,26 @@ msgstr "표시될 이름"
msgid "Your name as it will be displayed on the app"
msgstr "앱에 디스플레이될 귀하의 이름"
#. js-lingui-id: 319YPG
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription is active but your validity token is invalid or has expired. Try reloading it or contact support."
msgstr ""
#. js-lingui-id: Fx0axg
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription is scheduled for cancellation"
msgstr ""
#. js-lingui-id: XgIa/8
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription setup was not completed."
msgstr ""
#. js-lingui-id: Z9kbt6
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription status is: {statusLabel}"
msgstr ""
#. js-lingui-id: QOd24n
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and "
+327 -38
View File
@@ -752,23 +752,37 @@ msgid "Actions users can perform on this object"
msgstr "Acties die gebruikers op dit object kunnen uitvoeren"
#. js-lingui-id: FQBaXG
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
#: src/modules/settings/data-model/objects/components/SettingsObjectInactiveMenuDropDown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
msgid "Activate"
msgstr "Activeren"
#. js-lingui-id: eqeFkF
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Activate Enterprise Key"
msgstr ""
#. js-lingui-id: tu8A/k
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
msgid "Activate Workflow"
msgstr "Workflow activeren"
#. js-lingui-id: jSZacs
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Activating..."
msgstr ""
#. js-lingui-id: F6pfE9
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/domains/components/SettingsWorkspaceDomainCard.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Active"
@@ -806,6 +820,13 @@ msgstr "Voeg \"{trimmedName}\" toe aan opties"
msgid "Add a {objectLabelSingular}"
msgstr "Voeg een {objectLabelSingular} toe"
#. js-lingui-id: 7W8nJr
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
msgid "Add a Group"
msgstr ""
#. js-lingui-id: CZDwqQ
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
@@ -818,16 +839,10 @@ msgid "Add a node"
msgstr "Voeg een knooppunt toe"
#. js-lingui-id: nGv1DN
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Add a record"
msgstr ""
#. js-lingui-id: r8W+9y
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
msgid "Add a Section"
msgstr ""
#. js-lingui-id: eMc2xs
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
msgid "Add a step"
@@ -1429,7 +1444,7 @@ msgid "All set!"
msgstr "Alles klaar!"
#. js-lingui-id: CHvT6e
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectFlow.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
@@ -1574,6 +1589,7 @@ msgstr "Er is een fout opgetreden bij het uploaden van de afbeelding."
#. js-lingui-id: XyOToQ
#: src/utils/get-error-message-from-apollo-error.util.ts
#: src/utils/get-error-message-from-apollo-error.util.ts
#: src/modules/views/hooks/internal/usePerformViewSortAPIPersist.ts
#: src/modules/views/hooks/internal/usePerformViewGroupAPIPersist.ts
#: src/modules/views/hooks/internal/usePerformViewFilterAPIPersist.ts
@@ -1664,6 +1680,7 @@ msgstr "API"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "API & Webhooks"
msgstr "API & Webhooks"
@@ -1940,6 +1957,7 @@ msgstr "Oplopend"
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Ask AI"
msgstr "Vraag AI"
@@ -2078,6 +2096,11 @@ msgstr ""
msgid "Attachments"
msgstr "Bijlagen"
#. js-lingui-id: y2W2Hg
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Audit logs"
msgstr ""
#. js-lingui-id: EPEFrH
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
@@ -2306,6 +2329,11 @@ msgstr "tussen de {startOrdinal} en {endOrdinal} van de maand"
msgid "Billing"
msgstr "Facturatie"
#. js-lingui-id: dSjFxR
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Billing history"
msgstr ""
#. js-lingui-id: nJGwRf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Billing interval"
@@ -2563,6 +2591,7 @@ msgid "Cancel metered tier switching?"
msgstr "Metered tier wissel annuleren?"
#. js-lingui-id: rRK/Lf
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel Plan"
msgstr "Plan annuleren"
@@ -2578,10 +2607,26 @@ msgid "Cancel plan switching?"
msgstr "Planwisseling annuleren?"
#. js-lingui-id: N6gPiD
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel your subscription"
msgstr "Annuleer uw abonnement"
#. js-lingui-id: GGWsTU
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Canceled"
msgstr ""
#. js-lingui-id: y4uH7j
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Cancelling"
msgstr ""
#. js-lingui-id: WbPx+C
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Cancels on"
msgstr ""
#. js-lingui-id: XDbjjW
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Cannot delete the only view"
@@ -3077,11 +3122,6 @@ msgstr ""
msgid "Configure fallback login methods for users with SSO bypass permissions"
msgstr "Configureer alternatieve inlogmethoden voor gebruikers met SSO-bypassrechten"
#. js-lingui-id: c7wznw
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
msgid "Configure filters"
msgstr "Filters configureren"
#. js-lingui-id: ghdb7+
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
msgid "Configure how we should display your events in your calendar"
@@ -3279,6 +3319,7 @@ msgstr ""
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
msgid "Continue"
msgstr "Doorgaan"
@@ -3438,6 +3479,21 @@ msgstr "Kosten per 1k extra credits"
msgid "Could not delete approved access domain"
msgstr "Kon goedgekeurd toegangsdomijn niet verwijderen"
#. js-lingui-id: KqYYBp
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not open billing portal. Please check your enterprise key is present, or contact support."
msgstr ""
#. js-lingui-id: ZuI4Sl
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Could not open Stripe. Please contact support."
msgstr ""
#. js-lingui-id: wVw4Am
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not refresh validity token. Please contact support."
msgstr ""
#. js-lingui-id: s8lFtq
#: src/hooks/useCopyToClipboard.tsx
msgid "Couldn't copy to clipboard"
@@ -3815,6 +3871,7 @@ msgstr "Aangepast domein bijgewerkt"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Custom objects"
msgstr "Aangepaste objecten"
@@ -4917,6 +4974,8 @@ msgid "Edit own profile information"
msgstr ""
#. js-lingui-id: h2KoTu
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Edit payment method, see your invoices and more"
msgstr "Bewerk betaalmethode, bekijk uw facturen en meer"
@@ -5216,6 +5275,11 @@ msgstr "Verhoogt de beveiliging door naast uw wachtwoord een code te vereisen"
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr "Geniet van een {withCreditCardTrialPeriodDuration}-daagse gratis proefperiode"
#. js-lingui-id: 6iUnle
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Enjoy a 30-day free trial"
msgstr ""
#. js-lingui-id: T/N+2Z
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormRawJsonFieldInput.tsx
@@ -5422,6 +5486,9 @@ msgstr "Voer je API-sleutel in"
#. js-lingui-id: GpB8YV
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
msgid "Enterprise"
msgstr "Onderneming"
@@ -5430,6 +5497,22 @@ msgstr "Onderneming"
msgid "Enterprise Feature"
msgstr ""
#. js-lingui-id: S5c4pl
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Enterprise License"
msgstr ""
#. js-lingui-id: KGE5g0
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Enterprise license activated successfully"
msgstr ""
#. js-lingui-id: SLuq/l
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Entity ID"
@@ -5470,6 +5553,11 @@ msgstr "Verwijdering van zacht verwijderde records"
msgid "Error"
msgstr "Fout"
#. js-lingui-id: VouTsQ
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error activating enterprise license"
msgstr ""
#. js-lingui-id: GHKxvg
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error deleting api key."
@@ -5495,11 +5583,6 @@ msgstr "Fout bij verwijderen van SSO-identiteitsprovider"
msgid "Error editing SSO Identity Provider"
msgstr "Fout bij bewerken van SSO-identiteitsprovider"
#. js-lingui-id: GsIfmO
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerMetricsGraph.tsx
msgid "Error fetching worker metrics: {errorMessage}"
msgstr "Fout bij het ophalen van workerstatistieken: {errorMessage}"
#. js-lingui-id: GdBN5t
#: src/modules/error-handler/components/AppRootErrorFallback.tsx
msgid "Error illustration"
@@ -5530,11 +5613,26 @@ msgstr "Fout bij het laden van het bericht"
msgid "Error Message"
msgstr "Foutmelding"
#. js-lingui-id: Mox63G
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error opening billing portal"
msgstr ""
#. js-lingui-id: e/eieW
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Error opening Stripe"
msgstr ""
#. js-lingui-id: bT/0cM
#: src/modules/ui/field/display/components/PhonesDisplay.tsx
msgid "Error parsing additional phones: {error}"
msgstr "Fout bij het parseren van extra telefoonnummers: {error}"
#. js-lingui-id: zRXcyv
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error refreshing validity token. Please contact support."
msgstr ""
#. js-lingui-id: PfAip2
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error regenerating api key."
@@ -5997,6 +6095,11 @@ msgstr ""
msgid "Failed to {translatedOperationType} {translatedMetadataName}. Related {relatedEntityNames} validation failed. Please check your configuration and try again."
msgstr ""
#. js-lingui-id: R1XJV1
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Failed to activate enterprise license. Please check your key or contact support."
msgstr ""
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to activate skill"
@@ -6374,7 +6477,6 @@ msgstr ""
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/views/components/ViewBarFilterButton.tsx
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
#: src/modules/settings/roles/components/SettingsRolesList.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
@@ -6397,6 +6499,7 @@ msgid "Filter group rule options"
msgstr "Opties voor filtergroepsregel"
#. js-lingui-id: cSev+j
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
msgid "Filters"
msgstr "Filters"
@@ -6467,6 +6570,11 @@ msgstr "Voornaam"
msgid "First name can not be empty"
msgstr "Voornaam mag niet leeg zijn"
#. js-lingui-id: JREYkg
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Fix the payment issue to keep your enterprise features active."
msgstr ""
#. js-lingui-id: ylQd2j
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
@@ -6486,7 +6594,7 @@ msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
msgid "Folders"
msgstr "Mappen"
@@ -6635,6 +6743,22 @@ msgstr "Gegenereerde bestanden"
msgid "German"
msgstr "Duits"
#. js-lingui-id: sqtljx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Get Enterprise"
msgstr ""
#. js-lingui-id: o2kSwB
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Get Enterprise Key"
msgstr ""
#. js-lingui-id: NXEW3h
#: src/pages/onboarding/InviteTeam.tsx
msgid "Get the most out of your workspace by inviting your team."
@@ -6655,6 +6779,12 @@ msgstr "Globaal"
msgid "Go Back"
msgstr ""
#. js-lingui-id: Hb4Cgz
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Go to billing portal"
msgstr ""
#. js-lingui-id: mUbv8L
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
msgid "Go to Companies"
@@ -7240,6 +7370,11 @@ msgstr ""
msgid "Inbox"
msgstr "Inbox"
#. js-lingui-id: mtGDyy
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Incomplete"
msgstr ""
#. js-lingui-id: O5wNUa
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "index"
@@ -7882,9 +8017,8 @@ msgid "Launch manually"
msgstr "Handmatig starten"
#. js-lingui-id: rdU729
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsLayout.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -7957,6 +8091,12 @@ msgstr ""
msgid "Less than or equal"
msgstr "Kleiner dan of gelijk aan"
#. js-lingui-id: 3qg5Ro
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Licensee"
msgstr ""
#. js-lingui-id: 1njn7W
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownThemesComponents.tsx
@@ -8260,6 +8400,8 @@ msgid "Manage billing and subscriptions"
msgstr "Beheer facturering en abonnementen"
#. js-lingui-id: nvgUPq
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Manage billing information"
msgstr "Beheer factuurinformatie"
@@ -8612,6 +8754,11 @@ msgstr "Maand van het jaar"
msgid "monthly"
msgstr "maandelijks"
#. js-lingui-id: Sew/cK
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Monthly subscription"
msgstr ""
#. js-lingui-id: 6jefe3
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
@@ -8673,7 +8820,7 @@ msgid "Move right"
msgstr "Verplaats naar rechts"
#. js-lingui-id: 6qDVmw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Move to a folder"
msgstr ""
@@ -9274,13 +9421,13 @@ msgid "No Files"
msgstr "Geen bestanden"
#. js-lingui-id: pYblOw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
msgid "No folder"
msgstr "Geen map"
#. js-lingui-id: 6XMhqL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folders available"
msgstr ""
@@ -9454,8 +9601,8 @@ msgstr "Geen resultaten"
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/side-panel/components/SidePanelList.tsx
msgid "No results found"
msgstr "Geen resultaten gevonden"
@@ -10188,11 +10335,26 @@ msgstr "Link voor het resetten van het wachtwoord is naar de email verstuurd"
msgid "Paste the code below"
msgstr "Plak de onderstaande code"
#. js-lingui-id: raz2Pm
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Paste your enterprise key below to activate"
msgstr ""
#. js-lingui-id: dNdgvF
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Paste your enterprise key here"
msgstr ""
#. js-lingui-id: I6gXOa
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "Path"
msgstr "Pad"
#. js-lingui-id: QmXBEc
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Payment issue"
msgstr ""
#. js-lingui-id: UbRKMZ
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
#: src/modules/settings/security/components/approvedAccessDomains/SettingsApprovedAccessDomainsListCard.tsx
@@ -10329,13 +10491,13 @@ msgid "Pick a {objectLabel} record"
msgstr "Kies een {objectLabel} record"
#. js-lingui-id: JqqNlC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Pick a view"
msgstr ""
#. js-lingui-id: Wlba2h
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Pick an object"
msgstr ""
@@ -10953,6 +11115,16 @@ msgstr "Uitgaven"
msgid "Reload"
msgstr "Herladen"
#. js-lingui-id: qbM5In
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Reload validity token"
msgstr ""
#. js-lingui-id: MZWnSC
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Reloading..."
msgstr ""
#. js-lingui-id: qlAIQ1
#: src/modules/object-metadata/components/RemoteNavigationDrawerSection.tsx
msgid "Remote"
@@ -11228,7 +11400,7 @@ msgstr "Resultaat"
#. js-lingui-id: kx0s+n
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Results"
msgstr "Resultaten"
@@ -11367,6 +11539,11 @@ msgstr ""
msgid "row level permission predicate group"
msgstr ""
#. js-lingui-id: xPaeO2
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Row-level security"
msgstr ""
#. js-lingui-id: 7jTlsu
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Ruby"
@@ -11485,6 +11662,8 @@ msgstr ""
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Search"
msgstr "Zoeken"
@@ -11521,7 +11700,7 @@ msgid "Search a field..."
msgstr "Zoek een veld..."
#. js-lingui-id: ITQFzL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Search a folder..."
msgstr ""
@@ -11689,7 +11868,7 @@ msgid "Search records"
msgstr "Records zoeken"
#. js-lingui-id: rRklUH
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Search records..."
msgstr ""
@@ -11724,11 +11903,13 @@ msgid "Searching the web for {query}"
msgstr ""
#. js-lingui-id: 8sgZS9
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month"
msgstr "stoel / maand"
#. js-lingui-id: aQnWwf
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month - billed yearly"
msgstr "stoel / maand - jaarlijks gefactureerd"
@@ -12556,6 +12737,7 @@ msgstr "Eenmalige aanmelding"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
@@ -12600,6 +12782,16 @@ msgstr ""
msgid "Start"
msgstr "Start"
#. js-lingui-id: ASqWQi
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Start a new enterprise subscription to re-enable enterprise features."
msgstr ""
#. js-lingui-id: OC6rnK
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Start a new enterprise subscription."
msgstr ""
#. js-lingui-id: D3iCkb
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
msgid "Start Date"
@@ -12625,6 +12817,11 @@ msgid "State"
msgstr "Status"
#. js-lingui-id: uAQUqI
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
@@ -12920,11 +13117,11 @@ msgstr ""
#. js-lingui-id: 0apULK
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -13227,6 +13424,11 @@ msgstr "Er zijn vereiste kolommen die niet gekoppeld of genegeerd zijn. Wilt u d
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
msgstr "Er zijn nog rijen die fouten bevatten. Rijen met fouten worden genegeerd bij het indienen."
#. js-lingui-id: CA9PTn
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "There is a payment issue with your subscription. Please update your payment method."
msgstr ""
#. js-lingui-id: WQk7Cf
#: src/modules/activities/timeline-activities/components/TimelineCard.tsx
msgid "There is no activity associated with this record."
@@ -13341,9 +13543,9 @@ msgstr ""
msgid "This database value overrides environment settings. "
msgstr "Deze databasewaarde overschrijft omgevingsinstellingen."
#. js-lingui-id: qHAJQ2
#. js-lingui-id: 8IRnd6
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "This feature is part of the Organization Plan"
msgid "This feature is part of the Enterprise Plan"
msgstr ""
#. js-lingui-id: own57K
@@ -13652,6 +13854,8 @@ msgid "Transfer ownership"
msgstr ""
#. js-lingui-id: lhkaAC
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/internal/PlansTags.tsx
msgid "Trial"
msgstr "Proef"
@@ -13842,7 +14046,7 @@ msgid "Type anything..."
msgstr "Typ iets..."
#. js-lingui-id: UhqKcC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Type to search records"
msgstr ""
@@ -14000,6 +14204,11 @@ msgstr "Onbeperkte contacten"
msgid "Unlisted"
msgstr "Niet-gelijst"
#. js-lingui-id: Ep1uUU
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
msgstr ""
#. js-lingui-id: eQMhFX
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "unordered"
@@ -14069,6 +14278,11 @@ msgstr "bijwerken"
msgid "Update"
msgstr "Bijwerken"
#. js-lingui-id: Y69tSP
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Update payment method"
msgstr ""
#. js-lingui-id: 0KAL3W
#: src/modules/side-panel/hooks/useOpenUpdateMultipleRecordsPageInSidePanel.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
@@ -14307,11 +14521,22 @@ msgstr "Gebruikt standaard waarde van de toepassing. Configureer via omgevingsva
msgid "Using default value. Set a custom value to override."
msgstr "Gebruikt standaardwaarde. Stel een aangepaste waarde in om te overschrijven."
#. js-lingui-id: zzp4XX
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Valid until"
msgstr ""
#. js-lingui-id: Clr4qp
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Validate Data"
msgstr "Gegevens valideren"
#. js-lingui-id: PWZBIT
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Validity token refreshed successfully"
msgstr ""
#. js-lingui-id: wMHvYH
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/KeyValuePairInput.tsx
@@ -14438,6 +14663,8 @@ msgid "View and filter events, page views, object changes"
msgstr ""
#. js-lingui-id: KANz0G
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "View billing details"
msgstr "Factuurdetails bekijken"
@@ -14487,6 +14714,11 @@ msgstr "bekijk groep"
msgid "View installed app"
msgstr ""
#. js-lingui-id: B02hom
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "View invoices"
msgstr ""
#. js-lingui-id: lh5BED
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerQueueMetricsSection.tsx
msgid "View Jobs"
@@ -14505,6 +14737,7 @@ msgstr ""
#. js-lingui-id: ecVcAx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "View Previous AI Chats"
msgstr "Bekijk Vorige AI-chats"
@@ -14854,6 +15087,7 @@ msgstr "Workstrooms"
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/domains/SettingsDomains.tsx
@@ -15020,6 +15254,11 @@ msgstr "Jaar"
msgid "yearly"
msgstr "jaarlijks"
#. js-lingui-id: Y1GwUe
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Yearly subscription"
msgstr ""
#. js-lingui-id: +BGee5
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
msgid "years"
@@ -15152,6 +15391,36 @@ msgstr "Uw e-mailsubjecten en vergadertitels worden gedeeld met uw team."
msgid "Your emails and events content will be shared with your team."
msgstr "Uw e-mail en de inhoud van evenementen worden gedeeld met uw team."
#. js-lingui-id: ahEwS4
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features are active"
msgstr ""
#. js-lingui-id: XMZLU/
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features are active but your enterprise key is missing or invalid. This may be expected, but if not, please set a valid signed enterprise key to manage your subscription, or contact support."
msgstr ""
#. js-lingui-id: AxcwNj
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features will be disabled"
msgstr ""
#. js-lingui-id: PT137K
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features will remain active until {cancelAtDate}."
msgstr ""
#. js-lingui-id: 69Siss
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
msgid "Your enterprise key format is deprecated. Please activate a new key to keep enterprise features."
msgstr ""
#. js-lingui-id: NTpA4U
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise subscription has been canceled."
msgstr ""
#. js-lingui-id: 9ivpwk
#: src/pages/settings/SettingsProfile.tsx
msgid "Your name as it will be displayed"
@@ -15162,6 +15431,26 @@ msgstr "Uw naam zoals deze zal worden weergegeven"
msgid "Your name as it will be displayed on the app"
msgstr "Uw naam zoals deze in de app zal worden weergegeven"
#. js-lingui-id: 319YPG
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription is active but your validity token is invalid or has expired. Try reloading it or contact support."
msgstr ""
#. js-lingui-id: Fx0axg
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription is scheduled for cancellation"
msgstr ""
#. js-lingui-id: XgIa/8
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription setup was not completed."
msgstr ""
#. js-lingui-id: Z9kbt6
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription status is: {statusLabel}"
msgstr ""
#. js-lingui-id: QOd24n
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and "
+327 -38
View File
@@ -752,23 +752,37 @@ msgid "Actions users can perform on this object"
msgstr "Handlinger brukere kan utføre på dette objektet"
#. js-lingui-id: FQBaXG
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
#: src/modules/settings/data-model/objects/components/SettingsObjectInactiveMenuDropDown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
msgid "Activate"
msgstr "Aktiver"
#. js-lingui-id: eqeFkF
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Activate Enterprise Key"
msgstr ""
#. js-lingui-id: tu8A/k
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
msgid "Activate Workflow"
msgstr "Aktiver arbeidsflyt"
#. js-lingui-id: jSZacs
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Activating..."
msgstr ""
#. js-lingui-id: F6pfE9
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/domains/components/SettingsWorkspaceDomainCard.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Active"
@@ -806,6 +820,13 @@ msgstr "Legg til \"{trimmedName}\" i valg"
msgid "Add a {objectLabelSingular}"
msgstr "Legg til {objectLabelSingular}"
#. js-lingui-id: 7W8nJr
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
msgid "Add a Group"
msgstr ""
#. js-lingui-id: CZDwqQ
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
@@ -818,16 +839,10 @@ msgid "Add a node"
msgstr "Legg til node"
#. js-lingui-id: nGv1DN
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Add a record"
msgstr ""
#. js-lingui-id: r8W+9y
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
msgid "Add a Section"
msgstr ""
#. js-lingui-id: eMc2xs
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
msgid "Add a step"
@@ -1429,7 +1444,7 @@ msgid "All set!"
msgstr "Alt klart!"
#. js-lingui-id: CHvT6e
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectFlow.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
@@ -1574,6 +1589,7 @@ msgstr "Det oppstod en feil under opplasting av bildet."
#. js-lingui-id: XyOToQ
#: src/utils/get-error-message-from-apollo-error.util.ts
#: src/utils/get-error-message-from-apollo-error.util.ts
#: src/modules/views/hooks/internal/usePerformViewSortAPIPersist.ts
#: src/modules/views/hooks/internal/usePerformViewGroupAPIPersist.ts
#: src/modules/views/hooks/internal/usePerformViewFilterAPIPersist.ts
@@ -1664,6 +1680,7 @@ msgstr "API"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "API & Webhooks"
msgstr "API og webhooks"
@@ -1940,6 +1957,7 @@ msgstr "Stigende"
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Ask AI"
msgstr "Spør AI"
@@ -2078,6 +2096,11 @@ msgstr ""
msgid "Attachments"
msgstr "Vedlegg"
#. js-lingui-id: y2W2Hg
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Audit logs"
msgstr ""
#. js-lingui-id: EPEFrH
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
@@ -2306,6 +2329,11 @@ msgstr "mellom den {startOrdinal} og {endOrdinal} i måneden"
msgid "Billing"
msgstr "Fakturering"
#. js-lingui-id: dSjFxR
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Billing history"
msgstr ""
#. js-lingui-id: nJGwRf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Billing interval"
@@ -2563,6 +2591,7 @@ msgid "Cancel metered tier switching?"
msgstr "Avbryt målt nivåbytte?"
#. js-lingui-id: rRK/Lf
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel Plan"
msgstr "Avbryt abonnement"
@@ -2578,10 +2607,26 @@ msgid "Cancel plan switching?"
msgstr "Avbryt planbytte?"
#. js-lingui-id: N6gPiD
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel your subscription"
msgstr "Si opp abonnementet ditt"
#. js-lingui-id: GGWsTU
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Canceled"
msgstr ""
#. js-lingui-id: y4uH7j
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Cancelling"
msgstr ""
#. js-lingui-id: WbPx+C
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Cancels on"
msgstr ""
#. js-lingui-id: XDbjjW
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Cannot delete the only view"
@@ -3077,11 +3122,6 @@ msgstr ""
msgid "Configure fallback login methods for users with SSO bypass permissions"
msgstr "Konfigurer fallback-påloggingsmetoder for brukere med SSO-omgåelsesrettigheter"
#. js-lingui-id: c7wznw
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
msgid "Configure filters"
msgstr "Konfigurer filtre"
#. js-lingui-id: ghdb7+
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
msgid "Configure how we should display your events in your calendar"
@@ -3279,6 +3319,7 @@ msgstr ""
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
msgid "Continue"
msgstr "Fortsett"
@@ -3438,6 +3479,21 @@ msgstr "Kostnad per 1k ekstra kreditter"
msgid "Could not delete approved access domain"
msgstr "Kunne ikke slette godkjent tilgangsdomene"
#. js-lingui-id: KqYYBp
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not open billing portal. Please check your enterprise key is present, or contact support."
msgstr ""
#. js-lingui-id: ZuI4Sl
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Could not open Stripe. Please contact support."
msgstr ""
#. js-lingui-id: wVw4Am
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not refresh validity token. Please contact support."
msgstr ""
#. js-lingui-id: s8lFtq
#: src/hooks/useCopyToClipboard.tsx
msgid "Couldn't copy to clipboard"
@@ -3815,6 +3871,7 @@ msgstr "Egendefinert domene oppdatert"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Custom objects"
msgstr "Tilpassede objekter"
@@ -4917,6 +4974,8 @@ msgid "Edit own profile information"
msgstr ""
#. js-lingui-id: h2KoTu
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Edit payment method, see your invoices and more"
msgstr "Rediger betalingsmetode, se dine fakturaer og mer"
@@ -5216,6 +5275,11 @@ msgstr "Øker sikkerheten ved å kreve en kode sammen med passordet ditt"
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr "Nyt en {withCreditCardTrialPeriodDuration}-dagers gratis prøveperiode"
#. js-lingui-id: 6iUnle
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Enjoy a 30-day free trial"
msgstr ""
#. js-lingui-id: T/N+2Z
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormRawJsonFieldInput.tsx
@@ -5422,6 +5486,9 @@ msgstr "Skriv inn API-nøkkelen din"
#. js-lingui-id: GpB8YV
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
msgid "Enterprise"
msgstr "Enterprise"
@@ -5430,6 +5497,22 @@ msgstr "Enterprise"
msgid "Enterprise Feature"
msgstr ""
#. js-lingui-id: S5c4pl
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Enterprise License"
msgstr ""
#. js-lingui-id: KGE5g0
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Enterprise license activated successfully"
msgstr ""
#. js-lingui-id: SLuq/l
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Entity ID"
@@ -5470,6 +5553,11 @@ msgstr "Sletting av mykslettede poster"
msgid "Error"
msgstr "Feil"
#. js-lingui-id: VouTsQ
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error activating enterprise license"
msgstr ""
#. js-lingui-id: GHKxvg
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error deleting api key."
@@ -5495,11 +5583,6 @@ msgstr "Feil ved sletting av SSO-identitetsleverandør"
msgid "Error editing SSO Identity Provider"
msgstr "Feil ved redigering av SSO-identitetsleverandør"
#. js-lingui-id: GsIfmO
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerMetricsGraph.tsx
msgid "Error fetching worker metrics: {errorMessage}"
msgstr "Feil ved henting av worker-metrikker: {errorMessage}"
#. js-lingui-id: GdBN5t
#: src/modules/error-handler/components/AppRootErrorFallback.tsx
msgid "Error illustration"
@@ -5530,11 +5613,26 @@ msgstr "Feil ved lasting av melding"
msgid "Error Message"
msgstr "Feilmelding"
#. js-lingui-id: Mox63G
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error opening billing portal"
msgstr ""
#. js-lingui-id: e/eieW
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Error opening Stripe"
msgstr ""
#. js-lingui-id: bT/0cM
#: src/modules/ui/field/display/components/PhonesDisplay.tsx
msgid "Error parsing additional phones: {error}"
msgstr "Feil ved tolking av ekstra telefonnumre: {error}"
#. js-lingui-id: zRXcyv
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error refreshing validity token. Please contact support."
msgstr ""
#. js-lingui-id: PfAip2
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error regenerating api key."
@@ -5997,6 +6095,11 @@ msgstr ""
msgid "Failed to {translatedOperationType} {translatedMetadataName}. Related {relatedEntityNames} validation failed. Please check your configuration and try again."
msgstr ""
#. js-lingui-id: R1XJV1
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Failed to activate enterprise license. Please check your key or contact support."
msgstr ""
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to activate skill"
@@ -6374,7 +6477,6 @@ msgstr ""
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/views/components/ViewBarFilterButton.tsx
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
#: src/modules/settings/roles/components/SettingsRolesList.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
@@ -6397,6 +6499,7 @@ msgid "Filter group rule options"
msgstr "Alternativer for filterregelgruppe"
#. js-lingui-id: cSev+j
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
msgid "Filters"
msgstr "Filtre"
@@ -6467,6 +6570,11 @@ msgstr "Fornavn"
msgid "First name can not be empty"
msgstr "Fornavn kan ikke være tomt"
#. js-lingui-id: JREYkg
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Fix the payment issue to keep your enterprise features active."
msgstr ""
#. js-lingui-id: ylQd2j
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
@@ -6486,7 +6594,7 @@ msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
msgid "Folders"
msgstr "Mapper"
@@ -6635,6 +6743,22 @@ msgstr "Genererte filer"
msgid "German"
msgstr "Tysk"
#. js-lingui-id: sqtljx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Get Enterprise"
msgstr ""
#. js-lingui-id: o2kSwB
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Get Enterprise Key"
msgstr ""
#. js-lingui-id: NXEW3h
#: src/pages/onboarding/InviteTeam.tsx
msgid "Get the most out of your workspace by inviting your team."
@@ -6655,6 +6779,12 @@ msgstr "Global"
msgid "Go Back"
msgstr ""
#. js-lingui-id: Hb4Cgz
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Go to billing portal"
msgstr ""
#. js-lingui-id: mUbv8L
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
msgid "Go to Companies"
@@ -7240,6 +7370,11 @@ msgstr ""
msgid "Inbox"
msgstr "Innboks"
#. js-lingui-id: mtGDyy
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Incomplete"
msgstr ""
#. js-lingui-id: O5wNUa
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "index"
@@ -7882,9 +8017,8 @@ msgid "Launch manually"
msgstr "Start manuelt"
#. js-lingui-id: rdU729
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsLayout.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -7957,6 +8091,12 @@ msgstr ""
msgid "Less than or equal"
msgstr "Mindre enn eller lik"
#. js-lingui-id: 3qg5Ro
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Licensee"
msgstr ""
#. js-lingui-id: 1njn7W
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownThemesComponents.tsx
@@ -8260,6 +8400,8 @@ msgid "Manage billing and subscriptions"
msgstr "Administrer fakturering og abonnementer"
#. js-lingui-id: nvgUPq
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Manage billing information"
msgstr "Administrer faktureringsinformasjon"
@@ -8612,6 +8754,11 @@ msgstr "Måned i året"
msgid "monthly"
msgstr "månedlig"
#. js-lingui-id: Sew/cK
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Monthly subscription"
msgstr ""
#. js-lingui-id: 6jefe3
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
@@ -8673,7 +8820,7 @@ msgid "Move right"
msgstr "Flytt til høyre"
#. js-lingui-id: 6qDVmw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Move to a folder"
msgstr ""
@@ -9274,13 +9421,13 @@ msgid "No Files"
msgstr "Ingen filer"
#. js-lingui-id: pYblOw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
msgid "No folder"
msgstr "Ingen mappe"
#. js-lingui-id: 6XMhqL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folders available"
msgstr ""
@@ -9454,8 +9601,8 @@ msgstr "Ingen resultater"
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/side-panel/components/SidePanelList.tsx
msgid "No results found"
msgstr "Ingen resultater funnet"
@@ -10188,11 +10335,26 @@ msgstr "Lenke for tilbakestilling av passord har blitt sendt til e-posten"
msgid "Paste the code below"
msgstr "Lim inn koden nedenfor"
#. js-lingui-id: raz2Pm
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Paste your enterprise key below to activate"
msgstr ""
#. js-lingui-id: dNdgvF
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Paste your enterprise key here"
msgstr ""
#. js-lingui-id: I6gXOa
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "Path"
msgstr "Sti"
#. js-lingui-id: QmXBEc
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Payment issue"
msgstr ""
#. js-lingui-id: UbRKMZ
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
#: src/modules/settings/security/components/approvedAccessDomains/SettingsApprovedAccessDomainsListCard.tsx
@@ -10329,13 +10491,13 @@ msgid "Pick a {objectLabel} record"
msgstr "Velg en {objectLabel} post"
#. js-lingui-id: JqqNlC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Pick a view"
msgstr ""
#. js-lingui-id: Wlba2h
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Pick an object"
msgstr ""
@@ -10953,6 +11115,16 @@ msgstr "Utgivelser"
msgid "Reload"
msgstr "Last inn på nytt"
#. js-lingui-id: qbM5In
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Reload validity token"
msgstr ""
#. js-lingui-id: MZWnSC
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Reloading..."
msgstr ""
#. js-lingui-id: qlAIQ1
#: src/modules/object-metadata/components/RemoteNavigationDrawerSection.tsx
msgid "Remote"
@@ -11228,7 +11400,7 @@ msgstr "Resultat"
#. js-lingui-id: kx0s+n
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Results"
msgstr "Resultater"
@@ -11367,6 +11539,11 @@ msgstr ""
msgid "row level permission predicate group"
msgstr ""
#. js-lingui-id: xPaeO2
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Row-level security"
msgstr ""
#. js-lingui-id: 7jTlsu
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Ruby"
@@ -11485,6 +11662,8 @@ msgstr ""
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Search"
msgstr "Søk"
@@ -11521,7 +11700,7 @@ msgid "Search a field..."
msgstr "Søk i et felt..."
#. js-lingui-id: ITQFzL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Search a folder..."
msgstr ""
@@ -11689,7 +11868,7 @@ msgid "Search records"
msgstr "Søk poster"
#. js-lingui-id: rRklUH
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Search records..."
msgstr ""
@@ -11724,11 +11903,13 @@ msgid "Searching the web for {query}"
msgstr ""
#. js-lingui-id: 8sgZS9
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month"
msgstr "sete / måned"
#. js-lingui-id: aQnWwf
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month - billed yearly"
msgstr "sete / måned - fakturert årlig"
@@ -12556,6 +12737,7 @@ msgstr "SSO"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
@@ -12600,6 +12782,16 @@ msgstr ""
msgid "Start"
msgstr "Start"
#. js-lingui-id: ASqWQi
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Start a new enterprise subscription to re-enable enterprise features."
msgstr ""
#. js-lingui-id: OC6rnK
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Start a new enterprise subscription."
msgstr ""
#. js-lingui-id: D3iCkb
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
msgid "Start Date"
@@ -12625,6 +12817,11 @@ msgid "State"
msgstr "Tilstand"
#. js-lingui-id: uAQUqI
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
@@ -12920,11 +13117,11 @@ msgstr ""
#. js-lingui-id: 0apULK
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -13227,6 +13424,11 @@ msgstr "Det er påkrevde kolonner som ikke er matchet eller ignorert. Vil du for
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
msgstr "Det er fortsatt noen rader som inneholder feil. Rader med feil vil bli ignorert ved innsending."
#. js-lingui-id: CA9PTn
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "There is a payment issue with your subscription. Please update your payment method."
msgstr ""
#. js-lingui-id: WQk7Cf
#: src/modules/activities/timeline-activities/components/TimelineCard.tsx
msgid "There is no activity associated with this record."
@@ -13339,9 +13541,9 @@ msgstr ""
msgid "This database value overrides environment settings. "
msgstr "Denne databaseverdien overstyrer miljøinnstillinger."
#. js-lingui-id: qHAJQ2
#. js-lingui-id: 8IRnd6
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "This feature is part of the Organization Plan"
msgid "This feature is part of the Enterprise Plan"
msgstr ""
#. js-lingui-id: own57K
@@ -13650,6 +13852,8 @@ msgid "Transfer ownership"
msgstr ""
#. js-lingui-id: lhkaAC
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/internal/PlansTags.tsx
msgid "Trial"
msgstr "Prøve"
@@ -13840,7 +14044,7 @@ msgid "Type anything..."
msgstr "Skriv hva som helst..."
#. js-lingui-id: UhqKcC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Type to search records"
msgstr ""
@@ -13998,6 +14202,11 @@ msgstr "Ubegrenset kontakter"
msgid "Unlisted"
msgstr "Ulisteført"
#. js-lingui-id: Ep1uUU
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
msgstr ""
#. js-lingui-id: eQMhFX
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "unordered"
@@ -14067,6 +14276,11 @@ msgstr "oppdater"
msgid "Update"
msgstr "Oppdater"
#. js-lingui-id: Y69tSP
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Update payment method"
msgstr ""
#. js-lingui-id: 0KAL3W
#: src/modules/side-panel/hooks/useOpenUpdateMultipleRecordsPageInSidePanel.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
@@ -14305,11 +14519,22 @@ msgstr "Bruker standard applikasjonsverdi. Konfigurer via miljøvariabler."
msgid "Using default value. Set a custom value to override."
msgstr "Bruker standardverdi. Angi en tilpasset verdi for å overstyre."
#. js-lingui-id: zzp4XX
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Valid until"
msgstr ""
#. js-lingui-id: Clr4qp
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Validate Data"
msgstr "Valider data"
#. js-lingui-id: PWZBIT
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Validity token refreshed successfully"
msgstr ""
#. js-lingui-id: wMHvYH
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/KeyValuePairInput.tsx
@@ -14436,6 +14661,8 @@ msgid "View and filter events, page views, object changes"
msgstr ""
#. js-lingui-id: KANz0G
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "View billing details"
msgstr "Vis faktureringsdetaljer"
@@ -14485,6 +14712,11 @@ msgstr "visningsgruppe"
msgid "View installed app"
msgstr ""
#. js-lingui-id: B02hom
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "View invoices"
msgstr ""
#. js-lingui-id: lh5BED
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerQueueMetricsSection.tsx
msgid "View Jobs"
@@ -14503,6 +14735,7 @@ msgstr ""
#. js-lingui-id: ecVcAx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "View Previous AI Chats"
msgstr "Vis tidligere AI-chatter"
@@ -14852,6 +15085,7 @@ msgstr "Arbeidsflyter"
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/domains/SettingsDomains.tsx
@@ -15018,6 +15252,11 @@ msgstr "År"
msgid "yearly"
msgstr "årlig"
#. js-lingui-id: Y1GwUe
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Yearly subscription"
msgstr ""
#. js-lingui-id: +BGee5
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
msgid "years"
@@ -15150,6 +15389,36 @@ msgstr "E-postemnene dine og møtetitlene dine vil bli delt med teamet ditt."
msgid "Your emails and events content will be shared with your team."
msgstr "E-postene dine og innholdet i hendelsene dine vil bli delt med teamet ditt."
#. js-lingui-id: ahEwS4
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features are active"
msgstr ""
#. js-lingui-id: XMZLU/
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features are active but your enterprise key is missing or invalid. This may be expected, but if not, please set a valid signed enterprise key to manage your subscription, or contact support."
msgstr ""
#. js-lingui-id: AxcwNj
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features will be disabled"
msgstr ""
#. js-lingui-id: PT137K
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features will remain active until {cancelAtDate}."
msgstr ""
#. js-lingui-id: 69Siss
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
msgid "Your enterprise key format is deprecated. Please activate a new key to keep enterprise features."
msgstr ""
#. js-lingui-id: NTpA4U
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise subscription has been canceled."
msgstr ""
#. js-lingui-id: 9ivpwk
#: src/pages/settings/SettingsProfile.tsx
msgid "Your name as it will be displayed"
@@ -15160,6 +15429,26 @@ msgstr "Ditt navn slik det vil bli vist"
msgid "Your name as it will be displayed on the app"
msgstr "Ditt navn slik det vil bli vist i appen"
#. js-lingui-id: 319YPG
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription is active but your validity token is invalid or has expired. Try reloading it or contact support."
msgstr ""
#. js-lingui-id: Fx0axg
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription is scheduled for cancellation"
msgstr ""
#. js-lingui-id: XgIa/8
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription setup was not completed."
msgstr ""
#. js-lingui-id: Z9kbt6
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription status is: {statusLabel}"
msgstr ""
#. js-lingui-id: QOd24n
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and "
+327 -38
View File
@@ -752,23 +752,37 @@ msgid "Actions users can perform on this object"
msgstr "Działania, które użytkownicy mogą wykonywać na tym obiekcie"
#. js-lingui-id: FQBaXG
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
#: src/modules/settings/data-model/objects/components/SettingsObjectInactiveMenuDropDown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
msgid "Activate"
msgstr "Aktywuj"
#. js-lingui-id: eqeFkF
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Activate Enterprise Key"
msgstr ""
#. js-lingui-id: tu8A/k
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
msgid "Activate Workflow"
msgstr "Aktywuj przepływ pracy"
#. js-lingui-id: jSZacs
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Activating..."
msgstr ""
#. js-lingui-id: F6pfE9
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/domains/components/SettingsWorkspaceDomainCard.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Active"
@@ -806,6 +820,13 @@ msgstr "Dodaj \"{trimmedName}\" do opcji"
msgid "Add a {objectLabelSingular}"
msgstr "Dodaj {objectLabelSingular}"
#. js-lingui-id: 7W8nJr
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
msgid "Add a Group"
msgstr ""
#. js-lingui-id: CZDwqQ
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
@@ -818,16 +839,10 @@ msgid "Add a node"
msgstr "Dodaj węzeł"
#. js-lingui-id: nGv1DN
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Add a record"
msgstr ""
#. js-lingui-id: r8W+9y
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
msgid "Add a Section"
msgstr ""
#. js-lingui-id: eMc2xs
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
msgid "Add a step"
@@ -1429,7 +1444,7 @@ msgid "All set!"
msgstr "Wszystko gotowe!"
#. js-lingui-id: CHvT6e
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectFlow.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
@@ -1574,6 +1589,7 @@ msgstr "Wystąpił błąd podczas przesyłania zdjęcia."
#. js-lingui-id: XyOToQ
#: src/utils/get-error-message-from-apollo-error.util.ts
#: src/utils/get-error-message-from-apollo-error.util.ts
#: src/modules/views/hooks/internal/usePerformViewSortAPIPersist.ts
#: src/modules/views/hooks/internal/usePerformViewGroupAPIPersist.ts
#: src/modules/views/hooks/internal/usePerformViewFilterAPIPersist.ts
@@ -1664,6 +1680,7 @@ msgstr "API"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "API & Webhooks"
msgstr "API i Webhooks"
@@ -1940,6 +1957,7 @@ msgstr "Rosnąco"
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Ask AI"
msgstr "Zapytaj AI"
@@ -2078,6 +2096,11 @@ msgstr ""
msgid "Attachments"
msgstr "Załączniki"
#. js-lingui-id: y2W2Hg
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Audit logs"
msgstr ""
#. js-lingui-id: EPEFrH
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
@@ -2306,6 +2329,11 @@ msgstr "pomiędzy {startOrdinal} a {endOrdinal} miesiąca"
msgid "Billing"
msgstr "Rozliczenia"
#. js-lingui-id: dSjFxR
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Billing history"
msgstr ""
#. js-lingui-id: nJGwRf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Billing interval"
@@ -2563,6 +2591,7 @@ msgid "Cancel metered tier switching?"
msgstr "Anulować przełączanie poziomu rozliczeń?"
#. js-lingui-id: rRK/Lf
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel Plan"
msgstr "Anuluj subskrypcję"
@@ -2578,10 +2607,26 @@ msgid "Cancel plan switching?"
msgstr "Anulować przełączanie planu?"
#. js-lingui-id: N6gPiD
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel your subscription"
msgstr "Anuluj swoją subskrypcję"
#. js-lingui-id: GGWsTU
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Canceled"
msgstr ""
#. js-lingui-id: y4uH7j
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Cancelling"
msgstr ""
#. js-lingui-id: WbPx+C
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Cancels on"
msgstr ""
#. js-lingui-id: XDbjjW
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Cannot delete the only view"
@@ -3077,11 +3122,6 @@ msgstr ""
msgid "Configure fallback login methods for users with SSO bypass permissions"
msgstr "Konfiguruj metody logowania awaryjnego dla użytkowników z uprawnieniami do obejścia SSO"
#. js-lingui-id: c7wznw
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
msgid "Configure filters"
msgstr "Skonfiguruj filtry"
#. js-lingui-id: ghdb7+
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
msgid "Configure how we should display your events in your calendar"
@@ -3279,6 +3319,7 @@ msgstr ""
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
msgid "Continue"
msgstr "Kontynuuj"
@@ -3438,6 +3479,21 @@ msgstr "Koszt za 1k dodatkowych kredytów"
msgid "Could not delete approved access domain"
msgstr "Nie można usunąć zatwierdzonej domeny dostępu"
#. js-lingui-id: KqYYBp
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not open billing portal. Please check your enterprise key is present, or contact support."
msgstr ""
#. js-lingui-id: ZuI4Sl
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Could not open Stripe. Please contact support."
msgstr ""
#. js-lingui-id: wVw4Am
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not refresh validity token. Please contact support."
msgstr ""
#. js-lingui-id: s8lFtq
#: src/hooks/useCopyToClipboard.tsx
msgid "Couldn't copy to clipboard"
@@ -3815,6 +3871,7 @@ msgstr "Zaktualizowano domenę niestandardową"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Custom objects"
msgstr "Obiekty niestandardowe"
@@ -4917,6 +4974,8 @@ msgid "Edit own profile information"
msgstr ""
#. js-lingui-id: h2KoTu
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Edit payment method, see your invoices and more"
msgstr "Edytuj sposób płatności, zobacz swoje faktury i więcej"
@@ -5216,6 +5275,11 @@ msgstr "Zwiększa bezpieczeństwo, wymagając podania kodu wraz z hasłem"
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr "Ciesz się {withCreditCardTrialPeriodDuration}-dniowym bezpłatnym okresem próbnym"
#. js-lingui-id: 6iUnle
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Enjoy a 30-day free trial"
msgstr ""
#. js-lingui-id: T/N+2Z
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormRawJsonFieldInput.tsx
@@ -5422,6 +5486,9 @@ msgstr "Wprowadź swój klucz API"
#. js-lingui-id: GpB8YV
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
msgid "Enterprise"
msgstr "Przedsiębiorstwo"
@@ -5430,6 +5497,22 @@ msgstr "Przedsiębiorstwo"
msgid "Enterprise Feature"
msgstr ""
#. js-lingui-id: S5c4pl
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Enterprise License"
msgstr ""
#. js-lingui-id: KGE5g0
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Enterprise license activated successfully"
msgstr ""
#. js-lingui-id: SLuq/l
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Entity ID"
@@ -5470,6 +5553,11 @@ msgstr "Usunięcie zmiękczonych zapisów"
msgid "Error"
msgstr "Błąd"
#. js-lingui-id: VouTsQ
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error activating enterprise license"
msgstr ""
#. js-lingui-id: GHKxvg
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error deleting api key."
@@ -5495,11 +5583,6 @@ msgstr "Błąd podczas usuwania dostawcy tożsamości SSO"
msgid "Error editing SSO Identity Provider"
msgstr "Błąd podczas edytowania dostawcy tożsamości SSO"
#. js-lingui-id: GsIfmO
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerMetricsGraph.tsx
msgid "Error fetching worker metrics: {errorMessage}"
msgstr "Błąd pobierania metryk workera: {errorMessage}"
#. js-lingui-id: GdBN5t
#: src/modules/error-handler/components/AppRootErrorFallback.tsx
msgid "Error illustration"
@@ -5530,11 +5613,26 @@ msgstr "Błąd ładowania wiadomości"
msgid "Error Message"
msgstr "Komunikat o błędzie"
#. js-lingui-id: Mox63G
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error opening billing portal"
msgstr ""
#. js-lingui-id: e/eieW
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Error opening Stripe"
msgstr ""
#. js-lingui-id: bT/0cM
#: src/modules/ui/field/display/components/PhonesDisplay.tsx
msgid "Error parsing additional phones: {error}"
msgstr "Błąd podczas przetwarzania dodatkowych telefonów: {error}"
#. js-lingui-id: zRXcyv
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error refreshing validity token. Please contact support."
msgstr ""
#. js-lingui-id: PfAip2
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error regenerating api key."
@@ -5997,6 +6095,11 @@ msgstr ""
msgid "Failed to {translatedOperationType} {translatedMetadataName}. Related {relatedEntityNames} validation failed. Please check your configuration and try again."
msgstr ""
#. js-lingui-id: R1XJV1
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Failed to activate enterprise license. Please check your key or contact support."
msgstr ""
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to activate skill"
@@ -6374,7 +6477,6 @@ msgstr ""
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/views/components/ViewBarFilterButton.tsx
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
#: src/modules/settings/roles/components/SettingsRolesList.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
@@ -6397,6 +6499,7 @@ msgid "Filter group rule options"
msgstr "Opcje reguł grupy filtra"
#. js-lingui-id: cSev+j
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
msgid "Filters"
msgstr "Filtry"
@@ -6467,6 +6570,11 @@ msgstr "Imię"
msgid "First name can not be empty"
msgstr "Imię nie może być puste"
#. js-lingui-id: JREYkg
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Fix the payment issue to keep your enterprise features active."
msgstr ""
#. js-lingui-id: ylQd2j
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
@@ -6486,7 +6594,7 @@ msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
msgid "Folders"
msgstr "Foldery"
@@ -6635,6 +6743,22 @@ msgstr "Wygenerowane pliki"
msgid "German"
msgstr "Niemiecki"
#. js-lingui-id: sqtljx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Get Enterprise"
msgstr ""
#. js-lingui-id: o2kSwB
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Get Enterprise Key"
msgstr ""
#. js-lingui-id: NXEW3h
#: src/pages/onboarding/InviteTeam.tsx
msgid "Get the most out of your workspace by inviting your team."
@@ -6655,6 +6779,12 @@ msgstr "Globalne"
msgid "Go Back"
msgstr ""
#. js-lingui-id: Hb4Cgz
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Go to billing portal"
msgstr ""
#. js-lingui-id: mUbv8L
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
msgid "Go to Companies"
@@ -7240,6 +7370,11 @@ msgstr ""
msgid "Inbox"
msgstr "Skrzynka odbiorcza"
#. js-lingui-id: mtGDyy
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Incomplete"
msgstr ""
#. js-lingui-id: O5wNUa
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "index"
@@ -7882,9 +8017,8 @@ msgid "Launch manually"
msgstr "Uruchom ręcznie"
#. js-lingui-id: rdU729
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsLayout.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -7957,6 +8091,12 @@ msgstr ""
msgid "Less than or equal"
msgstr "Mniejsze lub równe"
#. js-lingui-id: 3qg5Ro
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Licensee"
msgstr ""
#. js-lingui-id: 1njn7W
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownThemesComponents.tsx
@@ -8260,6 +8400,8 @@ msgid "Manage billing and subscriptions"
msgstr "Zarządzaj billingiem i subskrypcjami"
#. js-lingui-id: nvgUPq
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Manage billing information"
msgstr "Zarządzaj informacjami o rozliczeniach"
@@ -8612,6 +8754,11 @@ msgstr "Miesiąc roku"
msgid "monthly"
msgstr "miesięcznie"
#. js-lingui-id: Sew/cK
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Monthly subscription"
msgstr ""
#. js-lingui-id: 6jefe3
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
@@ -8673,7 +8820,7 @@ msgid "Move right"
msgstr "Przenieś w prawo"
#. js-lingui-id: 6qDVmw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Move to a folder"
msgstr ""
@@ -9274,13 +9421,13 @@ msgid "No Files"
msgstr "Brak plików"
#. js-lingui-id: pYblOw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
msgid "No folder"
msgstr "Brak folderu"
#. js-lingui-id: 6XMhqL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folders available"
msgstr ""
@@ -9454,8 +9601,8 @@ msgstr "Brak wyników"
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/side-panel/components/SidePanelList.tsx
msgid "No results found"
msgstr "Nie znaleziono wyników"
@@ -10188,11 +10335,26 @@ msgstr "Link do resetowania hasła został wysłany na adres e-mail"
msgid "Paste the code below"
msgstr "Wklej kod poniżej"
#. js-lingui-id: raz2Pm
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Paste your enterprise key below to activate"
msgstr ""
#. js-lingui-id: dNdgvF
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Paste your enterprise key here"
msgstr ""
#. js-lingui-id: I6gXOa
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "Path"
msgstr "Ścieżka"
#. js-lingui-id: QmXBEc
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Payment issue"
msgstr ""
#. js-lingui-id: UbRKMZ
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
#: src/modules/settings/security/components/approvedAccessDomains/SettingsApprovedAccessDomainsListCard.tsx
@@ -10329,13 +10491,13 @@ msgid "Pick a {objectLabel} record"
msgstr "Wybierz rekord {objectLabel}"
#. js-lingui-id: JqqNlC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Pick a view"
msgstr ""
#. js-lingui-id: Wlba2h
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Pick an object"
msgstr ""
@@ -10953,6 +11115,16 @@ msgstr "Wersje"
msgid "Reload"
msgstr "Przeładuj"
#. js-lingui-id: qbM5In
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Reload validity token"
msgstr ""
#. js-lingui-id: MZWnSC
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Reloading..."
msgstr ""
#. js-lingui-id: qlAIQ1
#: src/modules/object-metadata/components/RemoteNavigationDrawerSection.tsx
msgid "Remote"
@@ -11228,7 +11400,7 @@ msgstr "Wynik"
#. js-lingui-id: kx0s+n
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Results"
msgstr "Wyniki"
@@ -11367,6 +11539,11 @@ msgstr ""
msgid "row level permission predicate group"
msgstr ""
#. js-lingui-id: xPaeO2
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Row-level security"
msgstr ""
#. js-lingui-id: 7jTlsu
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Ruby"
@@ -11485,6 +11662,8 @@ msgstr ""
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Search"
msgstr "Szukaj"
@@ -11521,7 +11700,7 @@ msgid "Search a field..."
msgstr "Wyszukaj pole..."
#. js-lingui-id: ITQFzL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Search a folder..."
msgstr ""
@@ -11689,7 +11868,7 @@ msgid "Search records"
msgstr "Przeszukaj rekordy"
#. js-lingui-id: rRklUH
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Search records..."
msgstr ""
@@ -11724,11 +11903,13 @@ msgid "Searching the web for {query}"
msgstr ""
#. js-lingui-id: 8sgZS9
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month"
msgstr "miejsca / miesiąc"
#. js-lingui-id: aQnWwf
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month - billed yearly"
msgstr "miejsca / miesiąc - rozliczane rocznie"
@@ -12556,6 +12737,7 @@ msgstr "SSO"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
@@ -12600,6 +12782,16 @@ msgstr ""
msgid "Start"
msgstr "Start"
#. js-lingui-id: ASqWQi
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Start a new enterprise subscription to re-enable enterprise features."
msgstr ""
#. js-lingui-id: OC6rnK
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Start a new enterprise subscription."
msgstr ""
#. js-lingui-id: D3iCkb
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
msgid "Start Date"
@@ -12625,6 +12817,11 @@ msgid "State"
msgstr "Stan"
#. js-lingui-id: uAQUqI
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
@@ -12920,11 +13117,11 @@ msgstr ""
#. js-lingui-id: 0apULK
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -13227,6 +13424,11 @@ msgstr "Istnieją wymagane kolumny, które nie zostały dopasowane lub zignorowa
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
msgstr "Istnieją wiersze zawierające błędy. Wiersze z błędami zostaną zignorowane podczas przesyłania."
#. js-lingui-id: CA9PTn
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "There is a payment issue with your subscription. Please update your payment method."
msgstr ""
#. js-lingui-id: WQk7Cf
#: src/modules/activities/timeline-activities/components/TimelineCard.tsx
msgid "There is no activity associated with this record."
@@ -13339,9 +13541,9 @@ msgstr ""
msgid "This database value overrides environment settings. "
msgstr "Ta wartość z bazy danych zastępuje ustawienia środowiska."
#. js-lingui-id: qHAJQ2
#. js-lingui-id: 8IRnd6
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "This feature is part of the Organization Plan"
msgid "This feature is part of the Enterprise Plan"
msgstr ""
#. js-lingui-id: own57K
@@ -13650,6 +13852,8 @@ msgid "Transfer ownership"
msgstr ""
#. js-lingui-id: lhkaAC
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/internal/PlansTags.tsx
msgid "Trial"
msgstr "Test"
@@ -13840,7 +14044,7 @@ msgid "Type anything..."
msgstr "Wpisz cokolwiek..."
#. js-lingui-id: UhqKcC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Type to search records"
msgstr ""
@@ -13998,6 +14202,11 @@ msgstr "Nieograniczona liczba kontaktów"
msgid "Unlisted"
msgstr "Niepubliczne"
#. js-lingui-id: Ep1uUU
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
msgstr ""
#. js-lingui-id: eQMhFX
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "unordered"
@@ -14067,6 +14276,11 @@ msgstr "zaktualizuj"
msgid "Update"
msgstr "Zaktualizuj"
#. js-lingui-id: Y69tSP
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Update payment method"
msgstr ""
#. js-lingui-id: 0KAL3W
#: src/modules/side-panel/hooks/useOpenUpdateMultipleRecordsPageInSidePanel.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
@@ -14305,11 +14519,22 @@ msgstr "Używanie domyślnej wartości aplikacji. Skonfiguruj za pomocą zmienny
msgid "Using default value. Set a custom value to override."
msgstr "Używanie wartości domyślnej. Ustaw wartość własną, aby nadpisać."
#. js-lingui-id: zzp4XX
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Valid until"
msgstr ""
#. js-lingui-id: Clr4qp
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Validate Data"
msgstr "Zweryfikuj dane"
#. js-lingui-id: PWZBIT
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Validity token refreshed successfully"
msgstr ""
#. js-lingui-id: wMHvYH
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/KeyValuePairInput.tsx
@@ -14436,6 +14661,8 @@ msgid "View and filter events, page views, object changes"
msgstr ""
#. js-lingui-id: KANz0G
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "View billing details"
msgstr "Zobacz szczegóły płatności"
@@ -14485,6 +14712,11 @@ msgstr "grupa widoku"
msgid "View installed app"
msgstr ""
#. js-lingui-id: B02hom
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "View invoices"
msgstr ""
#. js-lingui-id: lh5BED
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerQueueMetricsSection.tsx
msgid "View Jobs"
@@ -14503,6 +14735,7 @@ msgstr ""
#. js-lingui-id: ecVcAx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "View Previous AI Chats"
msgstr "Pokaż poprzednie czaty AI"
@@ -14852,6 +15085,7 @@ msgstr "Przepływy pracy"
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/domains/SettingsDomains.tsx
@@ -15018,6 +15252,11 @@ msgstr "Rok"
msgid "yearly"
msgstr "rocznie"
#. js-lingui-id: Y1GwUe
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Yearly subscription"
msgstr ""
#. js-lingui-id: +BGee5
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
msgid "years"
@@ -15150,6 +15389,36 @@ msgstr "Tematy twoich e-maili i tytuły spotkań będą udostępniane twojemu ze
msgid "Your emails and events content will be shared with your team."
msgstr "Treść twoich e-maili i wydarzeń będzie udostępniana twojemu zespołowi."
#. js-lingui-id: ahEwS4
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features are active"
msgstr ""
#. js-lingui-id: XMZLU/
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features are active but your enterprise key is missing or invalid. This may be expected, but if not, please set a valid signed enterprise key to manage your subscription, or contact support."
msgstr ""
#. js-lingui-id: AxcwNj
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features will be disabled"
msgstr ""
#. js-lingui-id: PT137K
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features will remain active until {cancelAtDate}."
msgstr ""
#. js-lingui-id: 69Siss
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
msgid "Your enterprise key format is deprecated. Please activate a new key to keep enterprise features."
msgstr ""
#. js-lingui-id: NTpA4U
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise subscription has been canceled."
msgstr ""
#. js-lingui-id: 9ivpwk
#: src/pages/settings/SettingsProfile.tsx
msgid "Your name as it will be displayed"
@@ -15160,6 +15429,26 @@ msgstr "Twoje imię, które będzie wyświetlane"
msgid "Your name as it will be displayed on the app"
msgstr "Twoje imię, które będzie wyświetlane w aplikacji"
#. js-lingui-id: 319YPG
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription is active but your validity token is invalid or has expired. Try reloading it or contact support."
msgstr ""
#. js-lingui-id: Fx0axg
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription is scheduled for cancellation"
msgstr ""
#. js-lingui-id: XgIa/8
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription setup was not completed."
msgstr ""
#. js-lingui-id: Z9kbt6
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription status is: {statusLabel}"
msgstr ""
#. js-lingui-id: QOd24n
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and "
+327 -38
View File
@@ -747,23 +747,37 @@ msgid "Actions users can perform on this object"
msgstr ""
#. js-lingui-id: FQBaXG
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
#: src/modules/settings/data-model/objects/components/SettingsObjectInactiveMenuDropDown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
msgid "Activate"
msgstr ""
#. js-lingui-id: eqeFkF
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Activate Enterprise Key"
msgstr ""
#. js-lingui-id: tu8A/k
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
msgid "Activate Workflow"
msgstr ""
#. js-lingui-id: jSZacs
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Activating..."
msgstr ""
#. js-lingui-id: F6pfE9
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/domains/components/SettingsWorkspaceDomainCard.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Active"
@@ -801,6 +815,13 @@ msgstr ""
msgid "Add a {objectLabelSingular}"
msgstr ""
#. js-lingui-id: 7W8nJr
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
msgid "Add a Group"
msgstr ""
#. js-lingui-id: CZDwqQ
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
@@ -813,16 +834,10 @@ msgid "Add a node"
msgstr ""
#. js-lingui-id: nGv1DN
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Add a record"
msgstr ""
#. js-lingui-id: r8W+9y
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
msgid "Add a Section"
msgstr ""
#. js-lingui-id: eMc2xs
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
msgid "Add a step"
@@ -1424,7 +1439,7 @@ msgid "All set!"
msgstr ""
#. js-lingui-id: CHvT6e
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectFlow.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
@@ -1569,6 +1584,7 @@ msgstr ""
#. js-lingui-id: XyOToQ
#: src/utils/get-error-message-from-apollo-error.util.ts
#: src/utils/get-error-message-from-apollo-error.util.ts
#: src/modules/views/hooks/internal/usePerformViewSortAPIPersist.ts
#: src/modules/views/hooks/internal/usePerformViewGroupAPIPersist.ts
#: src/modules/views/hooks/internal/usePerformViewFilterAPIPersist.ts
@@ -1659,6 +1675,7 @@ msgstr ""
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "API & Webhooks"
msgstr ""
@@ -1935,6 +1952,7 @@ msgstr ""
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Ask AI"
msgstr ""
@@ -2073,6 +2091,11 @@ msgstr ""
msgid "Attachments"
msgstr ""
#. js-lingui-id: y2W2Hg
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Audit logs"
msgstr ""
#. js-lingui-id: EPEFrH
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
@@ -2301,6 +2324,11 @@ msgstr ""
msgid "Billing"
msgstr ""
#. js-lingui-id: dSjFxR
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Billing history"
msgstr ""
#. js-lingui-id: nJGwRf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Billing interval"
@@ -2558,6 +2586,7 @@ msgid "Cancel metered tier switching?"
msgstr ""
#. js-lingui-id: rRK/Lf
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel Plan"
msgstr ""
@@ -2573,10 +2602,26 @@ msgid "Cancel plan switching?"
msgstr ""
#. js-lingui-id: N6gPiD
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel your subscription"
msgstr ""
#. js-lingui-id: GGWsTU
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Canceled"
msgstr ""
#. js-lingui-id: y4uH7j
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Cancelling"
msgstr ""
#. js-lingui-id: WbPx+C
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Cancels on"
msgstr ""
#. js-lingui-id: XDbjjW
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Cannot delete the only view"
@@ -3072,11 +3117,6 @@ msgstr ""
msgid "Configure fallback login methods for users with SSO bypass permissions"
msgstr ""
#. js-lingui-id: c7wznw
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
msgid "Configure filters"
msgstr ""
#. js-lingui-id: ghdb7+
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
msgid "Configure how we should display your events in your calendar"
@@ -3274,6 +3314,7 @@ msgstr ""
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
msgid "Continue"
msgstr ""
@@ -3433,6 +3474,21 @@ msgstr ""
msgid "Could not delete approved access domain"
msgstr ""
#. js-lingui-id: KqYYBp
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not open billing portal. Please check your enterprise key is present, or contact support."
msgstr ""
#. js-lingui-id: ZuI4Sl
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Could not open Stripe. Please contact support."
msgstr ""
#. js-lingui-id: wVw4Am
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not refresh validity token. Please contact support."
msgstr ""
#. js-lingui-id: s8lFtq
#: src/hooks/useCopyToClipboard.tsx
msgid "Couldn't copy to clipboard"
@@ -3810,6 +3866,7 @@ msgstr ""
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Custom objects"
msgstr ""
@@ -4912,6 +4969,8 @@ msgid "Edit own profile information"
msgstr ""
#. js-lingui-id: h2KoTu
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Edit payment method, see your invoices and more"
msgstr ""
@@ -5211,6 +5270,11 @@ msgstr ""
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr ""
#. js-lingui-id: 6iUnle
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Enjoy a 30-day free trial"
msgstr ""
#. js-lingui-id: T/N+2Z
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormRawJsonFieldInput.tsx
@@ -5417,6 +5481,9 @@ msgstr ""
#. js-lingui-id: GpB8YV
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
msgid "Enterprise"
msgstr ""
@@ -5425,6 +5492,22 @@ msgstr ""
msgid "Enterprise Feature"
msgstr ""
#. js-lingui-id: S5c4pl
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Enterprise License"
msgstr ""
#. js-lingui-id: KGE5g0
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Enterprise license activated successfully"
msgstr ""
#. js-lingui-id: SLuq/l
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Entity ID"
@@ -5465,6 +5548,11 @@ msgstr ""
msgid "Error"
msgstr ""
#. js-lingui-id: VouTsQ
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error activating enterprise license"
msgstr ""
#. js-lingui-id: GHKxvg
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error deleting api key."
@@ -5490,11 +5578,6 @@ msgstr ""
msgid "Error editing SSO Identity Provider"
msgstr ""
#. js-lingui-id: GsIfmO
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerMetricsGraph.tsx
msgid "Error fetching worker metrics: {errorMessage}"
msgstr ""
#. js-lingui-id: GdBN5t
#: src/modules/error-handler/components/AppRootErrorFallback.tsx
msgid "Error illustration"
@@ -5525,11 +5608,26 @@ msgstr ""
msgid "Error Message"
msgstr ""
#. js-lingui-id: Mox63G
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error opening billing portal"
msgstr ""
#. js-lingui-id: e/eieW
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Error opening Stripe"
msgstr ""
#. js-lingui-id: bT/0cM
#: src/modules/ui/field/display/components/PhonesDisplay.tsx
msgid "Error parsing additional phones: {error}"
msgstr ""
#. js-lingui-id: zRXcyv
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error refreshing validity token. Please contact support."
msgstr ""
#. js-lingui-id: PfAip2
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error regenerating api key."
@@ -5992,6 +6090,11 @@ msgstr ""
msgid "Failed to {translatedOperationType} {translatedMetadataName}. Related {relatedEntityNames} validation failed. Please check your configuration and try again."
msgstr ""
#. js-lingui-id: R1XJV1
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Failed to activate enterprise license. Please check your key or contact support."
msgstr ""
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to activate skill"
@@ -6369,7 +6472,6 @@ msgstr ""
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/views/components/ViewBarFilterButton.tsx
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
#: src/modules/settings/roles/components/SettingsRolesList.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
@@ -6392,6 +6494,7 @@ msgid "Filter group rule options"
msgstr ""
#. js-lingui-id: cSev+j
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
msgid "Filters"
msgstr ""
@@ -6462,6 +6565,11 @@ msgstr ""
msgid "First name can not be empty"
msgstr ""
#. js-lingui-id: JREYkg
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Fix the payment issue to keep your enterprise features active."
msgstr ""
#. js-lingui-id: ylQd2j
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
@@ -6481,7 +6589,7 @@ msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
msgid "Folders"
msgstr ""
@@ -6630,6 +6738,22 @@ msgstr ""
msgid "German"
msgstr ""
#. js-lingui-id: sqtljx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Get Enterprise"
msgstr ""
#. js-lingui-id: o2kSwB
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Get Enterprise Key"
msgstr ""
#. js-lingui-id: NXEW3h
#: src/pages/onboarding/InviteTeam.tsx
msgid "Get the most out of your workspace by inviting your team."
@@ -6650,6 +6774,12 @@ msgstr ""
msgid "Go Back"
msgstr ""
#. js-lingui-id: Hb4Cgz
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Go to billing portal"
msgstr ""
#. js-lingui-id: mUbv8L
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
msgid "Go to Companies"
@@ -7235,6 +7365,11 @@ msgstr ""
msgid "Inbox"
msgstr ""
#. js-lingui-id: mtGDyy
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Incomplete"
msgstr ""
#. js-lingui-id: O5wNUa
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "index"
@@ -7877,9 +8012,8 @@ msgid "Launch manually"
msgstr ""
#. js-lingui-id: rdU729
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsLayout.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -7952,6 +8086,12 @@ msgstr ""
msgid "Less than or equal"
msgstr ""
#. js-lingui-id: 3qg5Ro
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Licensee"
msgstr ""
#. js-lingui-id: 1njn7W
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownThemesComponents.tsx
@@ -8255,6 +8395,8 @@ msgid "Manage billing and subscriptions"
msgstr ""
#. js-lingui-id: nvgUPq
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Manage billing information"
msgstr ""
@@ -8607,6 +8749,11 @@ msgstr ""
msgid "monthly"
msgstr ""
#. js-lingui-id: Sew/cK
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Monthly subscription"
msgstr ""
#. js-lingui-id: 6jefe3
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
@@ -8668,7 +8815,7 @@ msgid "Move right"
msgstr ""
#. js-lingui-id: 6qDVmw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Move to a folder"
msgstr ""
@@ -9269,13 +9416,13 @@ msgid "No Files"
msgstr ""
#. js-lingui-id: pYblOw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
msgid "No folder"
msgstr ""
#. js-lingui-id: 6XMhqL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folders available"
msgstr ""
@@ -9449,8 +9596,8 @@ msgstr ""
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/side-panel/components/SidePanelList.tsx
msgid "No results found"
msgstr ""
@@ -10183,11 +10330,26 @@ msgstr ""
msgid "Paste the code below"
msgstr ""
#. js-lingui-id: raz2Pm
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Paste your enterprise key below to activate"
msgstr ""
#. js-lingui-id: dNdgvF
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Paste your enterprise key here"
msgstr ""
#. js-lingui-id: I6gXOa
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "Path"
msgstr ""
#. js-lingui-id: QmXBEc
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Payment issue"
msgstr ""
#. js-lingui-id: UbRKMZ
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
#: src/modules/settings/security/components/approvedAccessDomains/SettingsApprovedAccessDomainsListCard.tsx
@@ -10324,13 +10486,13 @@ msgid "Pick a {objectLabel} record"
msgstr ""
#. js-lingui-id: JqqNlC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Pick a view"
msgstr ""
#. js-lingui-id: Wlba2h
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Pick an object"
msgstr ""
@@ -10948,6 +11110,16 @@ msgstr ""
msgid "Reload"
msgstr ""
#. js-lingui-id: qbM5In
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Reload validity token"
msgstr ""
#. js-lingui-id: MZWnSC
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Reloading..."
msgstr ""
#. js-lingui-id: qlAIQ1
#: src/modules/object-metadata/components/RemoteNavigationDrawerSection.tsx
msgid "Remote"
@@ -11223,7 +11395,7 @@ msgstr ""
#. js-lingui-id: kx0s+n
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Results"
msgstr ""
@@ -11362,6 +11534,11 @@ msgstr ""
msgid "row level permission predicate group"
msgstr ""
#. js-lingui-id: xPaeO2
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Row-level security"
msgstr ""
#. js-lingui-id: 7jTlsu
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Ruby"
@@ -11480,6 +11657,8 @@ msgstr ""
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Search"
msgstr ""
@@ -11516,7 +11695,7 @@ msgid "Search a field..."
msgstr ""
#. js-lingui-id: ITQFzL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Search a folder..."
msgstr ""
@@ -11684,7 +11863,7 @@ msgid "Search records"
msgstr ""
#. js-lingui-id: rRklUH
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Search records..."
msgstr ""
@@ -11719,11 +11898,13 @@ msgid "Searching the web for {query}"
msgstr ""
#. js-lingui-id: 8sgZS9
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month"
msgstr ""
#. js-lingui-id: aQnWwf
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month - billed yearly"
msgstr ""
@@ -12551,6 +12732,7 @@ msgstr ""
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "SSO (SAML / OIDC)"
msgstr ""
@@ -12595,6 +12777,16 @@ msgstr ""
msgid "Start"
msgstr ""
#. js-lingui-id: ASqWQi
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Start a new enterprise subscription to re-enable enterprise features."
msgstr ""
#. js-lingui-id: OC6rnK
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Start a new enterprise subscription."
msgstr ""
#. js-lingui-id: D3iCkb
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
msgid "Start Date"
@@ -12620,6 +12812,11 @@ msgid "State"
msgstr ""
#. js-lingui-id: uAQUqI
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
@@ -12915,11 +13112,11 @@ msgstr ""
#. js-lingui-id: 0apULK
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -13222,6 +13419,11 @@ msgstr ""
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
msgstr ""
#. js-lingui-id: CA9PTn
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "There is a payment issue with your subscription. Please update your payment method."
msgstr ""
#. js-lingui-id: WQk7Cf
#: src/modules/activities/timeline-activities/components/TimelineCard.tsx
msgid "There is no activity associated with this record."
@@ -13334,9 +13536,9 @@ msgstr ""
msgid "This database value overrides environment settings. "
msgstr ""
#. js-lingui-id: qHAJQ2
#. js-lingui-id: 8IRnd6
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "This feature is part of the Organization Plan"
msgid "This feature is part of the Enterprise Plan"
msgstr ""
#. js-lingui-id: own57K
@@ -13645,6 +13847,8 @@ msgid "Transfer ownership"
msgstr ""
#. js-lingui-id: lhkaAC
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/internal/PlansTags.tsx
msgid "Trial"
msgstr ""
@@ -13835,7 +14039,7 @@ msgid "Type anything..."
msgstr ""
#. js-lingui-id: UhqKcC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Type to search records"
msgstr ""
@@ -13993,6 +14197,11 @@ msgstr ""
msgid "Unlisted"
msgstr ""
#. js-lingui-id: Ep1uUU
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
msgstr ""
#. js-lingui-id: eQMhFX
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "unordered"
@@ -14062,6 +14271,11 @@ msgstr ""
msgid "Update"
msgstr ""
#. js-lingui-id: Y69tSP
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Update payment method"
msgstr ""
#. js-lingui-id: 0KAL3W
#: src/modules/side-panel/hooks/useOpenUpdateMultipleRecordsPageInSidePanel.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
@@ -14300,11 +14514,22 @@ msgstr ""
msgid "Using default value. Set a custom value to override."
msgstr ""
#. js-lingui-id: zzp4XX
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Valid until"
msgstr ""
#. js-lingui-id: Clr4qp
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Validate Data"
msgstr ""
#. js-lingui-id: PWZBIT
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Validity token refreshed successfully"
msgstr ""
#. js-lingui-id: wMHvYH
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/KeyValuePairInput.tsx
@@ -14431,6 +14656,8 @@ msgid "View and filter events, page views, object changes"
msgstr ""
#. js-lingui-id: KANz0G
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "View billing details"
msgstr ""
@@ -14480,6 +14707,11 @@ msgstr ""
msgid "View installed app"
msgstr ""
#. js-lingui-id: B02hom
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "View invoices"
msgstr ""
#. js-lingui-id: lh5BED
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerQueueMetricsSection.tsx
msgid "View Jobs"
@@ -14498,6 +14730,7 @@ msgstr ""
#. js-lingui-id: ecVcAx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "View Previous AI Chats"
msgstr ""
@@ -14845,6 +15078,7 @@ msgstr ""
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/domains/SettingsDomains.tsx
@@ -15011,6 +15245,11 @@ msgstr ""
msgid "yearly"
msgstr ""
#. js-lingui-id: Y1GwUe
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Yearly subscription"
msgstr ""
#. js-lingui-id: +BGee5
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
msgid "years"
@@ -15143,6 +15382,36 @@ msgstr ""
msgid "Your emails and events content will be shared with your team."
msgstr ""
#. js-lingui-id: ahEwS4
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features are active"
msgstr ""
#. js-lingui-id: XMZLU/
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features are active but your enterprise key is missing or invalid. This may be expected, but if not, please set a valid signed enterprise key to manage your subscription, or contact support."
msgstr ""
#. js-lingui-id: AxcwNj
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features will be disabled"
msgstr ""
#. js-lingui-id: PT137K
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features will remain active until {cancelAtDate}."
msgstr ""
#. js-lingui-id: 69Siss
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
msgid "Your enterprise key format is deprecated. Please activate a new key to keep enterprise features."
msgstr ""
#. js-lingui-id: NTpA4U
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise subscription has been canceled."
msgstr ""
#. js-lingui-id: 9ivpwk
#: src/pages/settings/SettingsProfile.tsx
msgid "Your name as it will be displayed"
@@ -15153,6 +15422,26 @@ msgstr ""
msgid "Your name as it will be displayed on the app"
msgstr ""
#. js-lingui-id: 319YPG
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription is active but your validity token is invalid or has expired. Try reloading it or contact support."
msgstr ""
#. js-lingui-id: Fx0axg
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription is scheduled for cancellation"
msgstr ""
#. js-lingui-id: XgIa/8
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription setup was not completed."
msgstr ""
#. js-lingui-id: Z9kbt6
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription status is: {statusLabel}"
msgstr ""
#. js-lingui-id: QOd24n
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and "
+327 -38
View File
@@ -752,23 +752,37 @@ msgid "Actions users can perform on this object"
msgstr "Ações que os usuários podem realizar neste objeto"
#. js-lingui-id: FQBaXG
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
#: src/modules/settings/data-model/objects/components/SettingsObjectInactiveMenuDropDown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
msgid "Activate"
msgstr "Ativar"
#. js-lingui-id: eqeFkF
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Activate Enterprise Key"
msgstr ""
#. js-lingui-id: tu8A/k
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
msgid "Activate Workflow"
msgstr "Ativar Workflow"
#. js-lingui-id: jSZacs
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Activating..."
msgstr ""
#. js-lingui-id: F6pfE9
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/domains/components/SettingsWorkspaceDomainCard.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Active"
@@ -806,6 +820,13 @@ msgstr "Adicionar \"{trimmedName}\" às opções"
msgid "Add a {objectLabelSingular}"
msgstr "Adicionar um {objectLabelSingular}"
#. js-lingui-id: 7W8nJr
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
msgid "Add a Group"
msgstr ""
#. js-lingui-id: CZDwqQ
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
@@ -818,16 +839,10 @@ msgid "Add a node"
msgstr "Adicionar nó"
#. js-lingui-id: nGv1DN
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Add a record"
msgstr ""
#. js-lingui-id: r8W+9y
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
msgid "Add a Section"
msgstr ""
#. js-lingui-id: eMc2xs
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
msgid "Add a step"
@@ -1429,7 +1444,7 @@ msgid "All set!"
msgstr "Tudo pronto!"
#. js-lingui-id: CHvT6e
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectFlow.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
@@ -1574,6 +1589,7 @@ msgstr "Ocorreu um erro ao carregar a imagem."
#. js-lingui-id: XyOToQ
#: src/utils/get-error-message-from-apollo-error.util.ts
#: src/utils/get-error-message-from-apollo-error.util.ts
#: src/modules/views/hooks/internal/usePerformViewSortAPIPersist.ts
#: src/modules/views/hooks/internal/usePerformViewGroupAPIPersist.ts
#: src/modules/views/hooks/internal/usePerformViewFilterAPIPersist.ts
@@ -1664,6 +1680,7 @@ msgstr "API"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "API & Webhooks"
msgstr "API e Webhooks"
@@ -1940,6 +1957,7 @@ msgstr "Ascendente"
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Ask AI"
msgstr "Perguntar ao AI"
@@ -2078,6 +2096,11 @@ msgstr ""
msgid "Attachments"
msgstr "Anexos"
#. js-lingui-id: y2W2Hg
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Audit logs"
msgstr ""
#. js-lingui-id: EPEFrH
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
@@ -2306,6 +2329,11 @@ msgstr "entre o {startOrdinal} e {endOrdinal} do mês"
msgid "Billing"
msgstr "Faturamento"
#. js-lingui-id: dSjFxR
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Billing history"
msgstr ""
#. js-lingui-id: nJGwRf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Billing interval"
@@ -2563,6 +2591,7 @@ msgid "Cancel metered tier switching?"
msgstr "Cancelar alternância de faixa medida?"
#. js-lingui-id: rRK/Lf
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel Plan"
msgstr "Cancelar Plano"
@@ -2578,10 +2607,26 @@ msgid "Cancel plan switching?"
msgstr "Cancelar alternância de plano?"
#. js-lingui-id: N6gPiD
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel your subscription"
msgstr "Cancelar sua assinatura"
#. js-lingui-id: GGWsTU
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Canceled"
msgstr ""
#. js-lingui-id: y4uH7j
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Cancelling"
msgstr ""
#. js-lingui-id: WbPx+C
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Cancels on"
msgstr ""
#. js-lingui-id: XDbjjW
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Cannot delete the only view"
@@ -3077,11 +3122,6 @@ msgstr ""
msgid "Configure fallback login methods for users with SSO bypass permissions"
msgstr "Configurar métodos de login alternativos para usuários com permissões de contorno SSO"
#. js-lingui-id: c7wznw
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
msgid "Configure filters"
msgstr "Configurar filtros"
#. js-lingui-id: ghdb7+
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
msgid "Configure how we should display your events in your calendar"
@@ -3279,6 +3319,7 @@ msgstr ""
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
msgid "Continue"
msgstr "Continuar"
@@ -3438,6 +3479,21 @@ msgstr "Custo por 1k Créditos Extras"
msgid "Could not delete approved access domain"
msgstr "Não foi possível excluir o domínio de acesso aprovado"
#. js-lingui-id: KqYYBp
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not open billing portal. Please check your enterprise key is present, or contact support."
msgstr ""
#. js-lingui-id: ZuI4Sl
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Could not open Stripe. Please contact support."
msgstr ""
#. js-lingui-id: wVw4Am
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not refresh validity token. Please contact support."
msgstr ""
#. js-lingui-id: s8lFtq
#: src/hooks/useCopyToClipboard.tsx
msgid "Couldn't copy to clipboard"
@@ -3815,6 +3871,7 @@ msgstr "Domínio personalizado atualizado"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Custom objects"
msgstr "Objetos personalizados"
@@ -4917,6 +4974,8 @@ msgid "Edit own profile information"
msgstr ""
#. js-lingui-id: h2KoTu
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Edit payment method, see your invoices and more"
msgstr "Editar método de pagamento, ver suas faturas e mais"
@@ -5216,6 +5275,11 @@ msgstr "Aumenta a segurança exigindo um código junto com sua senha"
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr "Aproveite um teste gratuito de {withCreditCardTrialPeriodDuration} dias"
#. js-lingui-id: 6iUnle
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Enjoy a 30-day free trial"
msgstr ""
#. js-lingui-id: T/N+2Z
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormRawJsonFieldInput.tsx
@@ -5422,6 +5486,9 @@ msgstr "Insira sua chave de API"
#. js-lingui-id: GpB8YV
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
msgid "Enterprise"
msgstr "Enterprise"
@@ -5430,6 +5497,22 @@ msgstr "Enterprise"
msgid "Enterprise Feature"
msgstr ""
#. js-lingui-id: S5c4pl
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Enterprise License"
msgstr ""
#. js-lingui-id: KGE5g0
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Enterprise license activated successfully"
msgstr ""
#. js-lingui-id: SLuq/l
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Entity ID"
@@ -5470,6 +5553,11 @@ msgstr "Apagamento de registros excluídos suavemente"
msgid "Error"
msgstr "Erro"
#. js-lingui-id: VouTsQ
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error activating enterprise license"
msgstr ""
#. js-lingui-id: GHKxvg
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error deleting api key."
@@ -5495,11 +5583,6 @@ msgstr "Erro ao excluir Provedor de Identidade SSO"
msgid "Error editing SSO Identity Provider"
msgstr "Erro ao editar Provedor de Identidade SSO"
#. js-lingui-id: GsIfmO
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerMetricsGraph.tsx
msgid "Error fetching worker metrics: {errorMessage}"
msgstr "Erro ao buscar métricas do worker: {errorMessage}"
#. js-lingui-id: GdBN5t
#: src/modules/error-handler/components/AppRootErrorFallback.tsx
msgid "Error illustration"
@@ -5530,11 +5613,26 @@ msgstr "Erro ao carregar mensagem"
msgid "Error Message"
msgstr "Mensagem de Erro"
#. js-lingui-id: Mox63G
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error opening billing portal"
msgstr ""
#. js-lingui-id: e/eieW
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Error opening Stripe"
msgstr ""
#. js-lingui-id: bT/0cM
#: src/modules/ui/field/display/components/PhonesDisplay.tsx
msgid "Error parsing additional phones: {error}"
msgstr "Erro ao analisar telefones adicionais: {error}"
#. js-lingui-id: zRXcyv
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error refreshing validity token. Please contact support."
msgstr ""
#. js-lingui-id: PfAip2
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error regenerating api key."
@@ -5997,6 +6095,11 @@ msgstr ""
msgid "Failed to {translatedOperationType} {translatedMetadataName}. Related {relatedEntityNames} validation failed. Please check your configuration and try again."
msgstr ""
#. js-lingui-id: R1XJV1
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Failed to activate enterprise license. Please check your key or contact support."
msgstr ""
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to activate skill"
@@ -6374,7 +6477,6 @@ msgstr ""
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/views/components/ViewBarFilterButton.tsx
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
#: src/modules/settings/roles/components/SettingsRolesList.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
@@ -6397,6 +6499,7 @@ msgid "Filter group rule options"
msgstr "Opções de regras do grupo de filtros"
#. js-lingui-id: cSev+j
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
msgid "Filters"
msgstr "Filtros"
@@ -6467,6 +6570,11 @@ msgstr "Nome"
msgid "First name can not be empty"
msgstr "O nome não pode estar vazio"
#. js-lingui-id: JREYkg
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Fix the payment issue to keep your enterprise features active."
msgstr ""
#. js-lingui-id: ylQd2j
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
@@ -6486,7 +6594,7 @@ msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
msgid "Folders"
msgstr "Pastas"
@@ -6635,6 +6743,22 @@ msgstr "Arquivos gerados"
msgid "German"
msgstr "Alemão"
#. js-lingui-id: sqtljx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Get Enterprise"
msgstr ""
#. js-lingui-id: o2kSwB
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Get Enterprise Key"
msgstr ""
#. js-lingui-id: NXEW3h
#: src/pages/onboarding/InviteTeam.tsx
msgid "Get the most out of your workspace by inviting your team."
@@ -6655,6 +6779,12 @@ msgstr "Global"
msgid "Go Back"
msgstr ""
#. js-lingui-id: Hb4Cgz
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Go to billing portal"
msgstr ""
#. js-lingui-id: mUbv8L
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
msgid "Go to Companies"
@@ -7240,6 +7370,11 @@ msgstr ""
msgid "Inbox"
msgstr "Caixa de entrada"
#. js-lingui-id: mtGDyy
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Incomplete"
msgstr ""
#. js-lingui-id: O5wNUa
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "index"
@@ -7882,9 +8017,8 @@ msgid "Launch manually"
msgstr "Executar manualmente"
#. js-lingui-id: rdU729
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsLayout.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -7957,6 +8091,12 @@ msgstr ""
msgid "Less than or equal"
msgstr "Menor ou igual"
#. js-lingui-id: 3qg5Ro
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Licensee"
msgstr ""
#. js-lingui-id: 1njn7W
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownThemesComponents.tsx
@@ -8260,6 +8400,8 @@ msgid "Manage billing and subscriptions"
msgstr "Gerenciar cobrança e assinaturas"
#. js-lingui-id: nvgUPq
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Manage billing information"
msgstr "Gerenciar informações de cobrança"
@@ -8612,6 +8754,11 @@ msgstr "Mês do ano"
msgid "monthly"
msgstr "mensal"
#. js-lingui-id: Sew/cK
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Monthly subscription"
msgstr ""
#. js-lingui-id: 6jefe3
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
@@ -8673,7 +8820,7 @@ msgid "Move right"
msgstr "Mover para a direita"
#. js-lingui-id: 6qDVmw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Move to a folder"
msgstr ""
@@ -9274,13 +9421,13 @@ msgid "No Files"
msgstr "Nenhum arquivo"
#. js-lingui-id: pYblOw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
msgid "No folder"
msgstr "Nenhuma pasta"
#. js-lingui-id: 6XMhqL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folders available"
msgstr ""
@@ -9454,8 +9601,8 @@ msgstr "Nenhum resultado"
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/side-panel/components/SidePanelList.tsx
msgid "No results found"
msgstr "Nenhum resultado encontrado"
@@ -10188,11 +10335,26 @@ msgstr "O link de redefinição de senha foi enviado para o e-mail"
msgid "Paste the code below"
msgstr "Cole o código abaixo"
#. js-lingui-id: raz2Pm
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Paste your enterprise key below to activate"
msgstr ""
#. js-lingui-id: dNdgvF
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Paste your enterprise key here"
msgstr ""
#. js-lingui-id: I6gXOa
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "Path"
msgstr "Caminho"
#. js-lingui-id: QmXBEc
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Payment issue"
msgstr ""
#. js-lingui-id: UbRKMZ
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
#: src/modules/settings/security/components/approvedAccessDomains/SettingsApprovedAccessDomainsListCard.tsx
@@ -10329,13 +10491,13 @@ msgid "Pick a {objectLabel} record"
msgstr "Escolha um registro {objectLabel}"
#. js-lingui-id: JqqNlC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Pick a view"
msgstr ""
#. js-lingui-id: Wlba2h
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Pick an object"
msgstr ""
@@ -10953,6 +11115,16 @@ msgstr "Lançamentos"
msgid "Reload"
msgstr "Recarregar"
#. js-lingui-id: qbM5In
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Reload validity token"
msgstr ""
#. js-lingui-id: MZWnSC
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Reloading..."
msgstr ""
#. js-lingui-id: qlAIQ1
#: src/modules/object-metadata/components/RemoteNavigationDrawerSection.tsx
msgid "Remote"
@@ -11228,7 +11400,7 @@ msgstr "Resultado"
#. js-lingui-id: kx0s+n
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Results"
msgstr "Resultados"
@@ -11367,6 +11539,11 @@ msgstr ""
msgid "row level permission predicate group"
msgstr ""
#. js-lingui-id: xPaeO2
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Row-level security"
msgstr ""
#. js-lingui-id: 7jTlsu
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Ruby"
@@ -11485,6 +11662,8 @@ msgstr ""
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Search"
msgstr "Pesquisar"
@@ -11521,7 +11700,7 @@ msgid "Search a field..."
msgstr "Pesquisar um campo..."
#. js-lingui-id: ITQFzL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Search a folder..."
msgstr ""
@@ -11689,7 +11868,7 @@ msgid "Search records"
msgstr "Pesquisar registros"
#. js-lingui-id: rRklUH
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Search records..."
msgstr ""
@@ -11724,11 +11903,13 @@ msgid "Searching the web for {query}"
msgstr ""
#. js-lingui-id: 8sgZS9
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month"
msgstr "assento / mês"
#. js-lingui-id: aQnWwf
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month - billed yearly"
msgstr "assento / mês - cobrado anualmente"
@@ -12556,6 +12737,7 @@ msgstr "SSO"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
@@ -12600,6 +12782,16 @@ msgstr ""
msgid "Start"
msgstr "Iniciar"
#. js-lingui-id: ASqWQi
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Start a new enterprise subscription to re-enable enterprise features."
msgstr ""
#. js-lingui-id: OC6rnK
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Start a new enterprise subscription."
msgstr ""
#. js-lingui-id: D3iCkb
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
msgid "Start Date"
@@ -12625,6 +12817,11 @@ msgid "State"
msgstr "Estado"
#. js-lingui-id: uAQUqI
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
@@ -12920,11 +13117,11 @@ msgstr ""
#. js-lingui-id: 0apULK
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -13227,6 +13424,11 @@ msgstr "Existem colunas obrigatórias que não foram combinadas ou ignoradas. De
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
msgstr "Ainda há algumas linhas que contêm erros. Linhas com erros serão ignoradas ao enviar."
#. js-lingui-id: CA9PTn
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "There is a payment issue with your subscription. Please update your payment method."
msgstr ""
#. js-lingui-id: WQk7Cf
#: src/modules/activities/timeline-activities/components/TimelineCard.tsx
msgid "There is no activity associated with this record."
@@ -13339,9 +13541,9 @@ msgstr ""
msgid "This database value overrides environment settings. "
msgstr "Este valor do banco de dados substitui as configurações do ambiente."
#. js-lingui-id: qHAJQ2
#. js-lingui-id: 8IRnd6
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "This feature is part of the Organization Plan"
msgid "This feature is part of the Enterprise Plan"
msgstr ""
#. js-lingui-id: own57K
@@ -13650,6 +13852,8 @@ msgid "Transfer ownership"
msgstr ""
#. js-lingui-id: lhkaAC
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/internal/PlansTags.tsx
msgid "Trial"
msgstr "Teste"
@@ -13840,7 +14044,7 @@ msgid "Type anything..."
msgstr "Digite qualquer coisa..."
#. js-lingui-id: UhqKcC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Type to search records"
msgstr ""
@@ -13998,6 +14202,11 @@ msgstr "Contatos ilimitados"
msgid "Unlisted"
msgstr "Não Listado"
#. js-lingui-id: Ep1uUU
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
msgstr ""
#. js-lingui-id: eQMhFX
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "unordered"
@@ -14067,6 +14276,11 @@ msgstr "atualizar"
msgid "Update"
msgstr "Atualizar"
#. js-lingui-id: Y69tSP
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Update payment method"
msgstr ""
#. js-lingui-id: 0KAL3W
#: src/modules/side-panel/hooks/useOpenUpdateMultipleRecordsPageInSidePanel.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
@@ -14305,11 +14519,22 @@ msgstr "Usando o valor padrão da aplicação. Configure através de variáveis
msgid "Using default value. Set a custom value to override."
msgstr "Usando valor padrão. Defina um valor personalizado para substituir."
#. js-lingui-id: zzp4XX
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Valid until"
msgstr ""
#. js-lingui-id: Clr4qp
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Validate Data"
msgstr "Validar dados"
#. js-lingui-id: PWZBIT
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Validity token refreshed successfully"
msgstr ""
#. js-lingui-id: wMHvYH
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/KeyValuePairInput.tsx
@@ -14436,6 +14661,8 @@ msgid "View and filter events, page views, object changes"
msgstr ""
#. js-lingui-id: KANz0G
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "View billing details"
msgstr "Ver detalhes de faturamento"
@@ -14485,6 +14712,11 @@ msgstr "grupo de visualização"
msgid "View installed app"
msgstr ""
#. js-lingui-id: B02hom
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "View invoices"
msgstr ""
#. js-lingui-id: lh5BED
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerQueueMetricsSection.tsx
msgid "View Jobs"
@@ -14503,6 +14735,7 @@ msgstr ""
#. js-lingui-id: ecVcAx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "View Previous AI Chats"
msgstr "Ver Conversas Anteriores da IA"
@@ -14852,6 +15085,7 @@ msgstr "Workflows"
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/domains/SettingsDomains.tsx
@@ -15018,6 +15252,11 @@ msgstr "Ano"
msgid "yearly"
msgstr "anual"
#. js-lingui-id: Y1GwUe
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Yearly subscription"
msgstr ""
#. js-lingui-id: +BGee5
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
msgid "years"
@@ -15150,6 +15389,36 @@ msgstr "Os assuntos dos seus e-mails e títulos das reuniões serão compartilha
msgid "Your emails and events content will be shared with your team."
msgstr "O conteúdo dos seus e-mails e eventos será compartilhado com sua equipe."
#. js-lingui-id: ahEwS4
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features are active"
msgstr ""
#. js-lingui-id: XMZLU/
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features are active but your enterprise key is missing or invalid. This may be expected, but if not, please set a valid signed enterprise key to manage your subscription, or contact support."
msgstr ""
#. js-lingui-id: AxcwNj
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features will be disabled"
msgstr ""
#. js-lingui-id: PT137K
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features will remain active until {cancelAtDate}."
msgstr ""
#. js-lingui-id: 69Siss
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
msgid "Your enterprise key format is deprecated. Please activate a new key to keep enterprise features."
msgstr ""
#. js-lingui-id: NTpA4U
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise subscription has been canceled."
msgstr ""
#. js-lingui-id: 9ivpwk
#: src/pages/settings/SettingsProfile.tsx
msgid "Your name as it will be displayed"
@@ -15160,6 +15429,26 @@ msgstr "Seu nome como será mostrado"
msgid "Your name as it will be displayed on the app"
msgstr "Seu nome como será exibido no aplicativo"
#. js-lingui-id: 319YPG
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription is active but your validity token is invalid or has expired. Try reloading it or contact support."
msgstr ""
#. js-lingui-id: Fx0axg
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription is scheduled for cancellation"
msgstr ""
#. js-lingui-id: XgIa/8
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription setup was not completed."
msgstr ""
#. js-lingui-id: Z9kbt6
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription status is: {statusLabel}"
msgstr ""
#. js-lingui-id: QOd24n
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and "
+327 -38
View File
@@ -752,23 +752,37 @@ msgid "Actions users can perform on this object"
msgstr "Ações que os usuários podem realizar neste objeto"
#. js-lingui-id: FQBaXG
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
#: src/modules/settings/data-model/objects/components/SettingsObjectInactiveMenuDropDown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
msgid "Activate"
msgstr "Ativar"
#. js-lingui-id: eqeFkF
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Activate Enterprise Key"
msgstr ""
#. js-lingui-id: tu8A/k
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
msgid "Activate Workflow"
msgstr "Ativar Workflow"
#. js-lingui-id: jSZacs
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Activating..."
msgstr ""
#. js-lingui-id: F6pfE9
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/domains/components/SettingsWorkspaceDomainCard.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Active"
@@ -806,6 +820,13 @@ msgstr "Adicionar \"{trimmedName}\" às opções"
msgid "Add a {objectLabelSingular}"
msgstr "Adicionar um {objectLabelSingular}"
#. js-lingui-id: 7W8nJr
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
msgid "Add a Group"
msgstr ""
#. js-lingui-id: CZDwqQ
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
@@ -818,16 +839,10 @@ msgid "Add a node"
msgstr "Adicionar nó"
#. js-lingui-id: nGv1DN
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Add a record"
msgstr ""
#. js-lingui-id: r8W+9y
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
msgid "Add a Section"
msgstr ""
#. js-lingui-id: eMc2xs
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
msgid "Add a step"
@@ -1429,7 +1444,7 @@ msgid "All set!"
msgstr "Tudo pronto!"
#. js-lingui-id: CHvT6e
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectFlow.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
@@ -1574,6 +1589,7 @@ msgstr "Ocorreu um erro ao carregar a imagem."
#. js-lingui-id: XyOToQ
#: src/utils/get-error-message-from-apollo-error.util.ts
#: src/utils/get-error-message-from-apollo-error.util.ts
#: src/modules/views/hooks/internal/usePerformViewSortAPIPersist.ts
#: src/modules/views/hooks/internal/usePerformViewGroupAPIPersist.ts
#: src/modules/views/hooks/internal/usePerformViewFilterAPIPersist.ts
@@ -1664,6 +1680,7 @@ msgstr "\"API\""
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "API & Webhooks"
msgstr "API e Webhooks"
@@ -1940,6 +1957,7 @@ msgstr "Ascendente"
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Ask AI"
msgstr "Pergunte à IA"
@@ -2078,6 +2096,11 @@ msgstr ""
msgid "Attachments"
msgstr "Anexos"
#. js-lingui-id: y2W2Hg
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Audit logs"
msgstr ""
#. js-lingui-id: EPEFrH
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
@@ -2306,6 +2329,11 @@ msgstr "entre o {startOrdinal} e {endOrdinal} do mês"
msgid "Billing"
msgstr "Faturação"
#. js-lingui-id: dSjFxR
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Billing history"
msgstr ""
#. js-lingui-id: nJGwRf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Billing interval"
@@ -2563,6 +2591,7 @@ msgid "Cancel metered tier switching?"
msgstr "Cancelar mudança de nível medido?"
#. js-lingui-id: rRK/Lf
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel Plan"
msgstr "Cancelar plano"
@@ -2578,10 +2607,26 @@ msgid "Cancel plan switching?"
msgstr "Cancelar mudança de plano?"
#. js-lingui-id: N6gPiD
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel your subscription"
msgstr "Cancelar a sua subscrição"
#. js-lingui-id: GGWsTU
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Canceled"
msgstr ""
#. js-lingui-id: y4uH7j
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Cancelling"
msgstr ""
#. js-lingui-id: WbPx+C
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Cancels on"
msgstr ""
#. js-lingui-id: XDbjjW
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Cannot delete the only view"
@@ -3077,11 +3122,6 @@ msgstr ""
msgid "Configure fallback login methods for users with SSO bypass permissions"
msgstr "Configurar métodos de login alternativos para usuários com permissões de contornar SSO"
#. js-lingui-id: c7wznw
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
msgid "Configure filters"
msgstr "Configurar filtros"
#. js-lingui-id: ghdb7+
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
msgid "Configure how we should display your events in your calendar"
@@ -3279,6 +3319,7 @@ msgstr ""
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
msgid "Continue"
msgstr "Continuar"
@@ -3438,6 +3479,21 @@ msgstr "Custo por 1k Créditos Extras"
msgid "Could not delete approved access domain"
msgstr "Não foi possível excluir o domínio de acesso aprovado"
#. js-lingui-id: KqYYBp
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not open billing portal. Please check your enterprise key is present, or contact support."
msgstr ""
#. js-lingui-id: ZuI4Sl
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Could not open Stripe. Please contact support."
msgstr ""
#. js-lingui-id: wVw4Am
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not refresh validity token. Please contact support."
msgstr ""
#. js-lingui-id: s8lFtq
#: src/hooks/useCopyToClipboard.tsx
msgid "Couldn't copy to clipboard"
@@ -3815,6 +3871,7 @@ msgstr "Domínio personalizado atualizado"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Custom objects"
msgstr "Objetos personalizados"
@@ -4917,6 +4974,8 @@ msgid "Edit own profile information"
msgstr ""
#. js-lingui-id: h2KoTu
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Edit payment method, see your invoices and more"
msgstr "Editar método de pagamento, ver as suas faturas e muito mais"
@@ -5216,6 +5275,11 @@ msgstr "Melhora a segurança ao exigir um código junto com sua senha"
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr "Desfrute de um período experimental gratuito de {withCreditCardTrialPeriodDuration} dias"
#. js-lingui-id: 6iUnle
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Enjoy a 30-day free trial"
msgstr ""
#. js-lingui-id: T/N+2Z
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormRawJsonFieldInput.tsx
@@ -5422,6 +5486,9 @@ msgstr "Introduza a sua chave de API"
#. js-lingui-id: GpB8YV
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
msgid "Enterprise"
msgstr "Enterprise"
@@ -5430,6 +5497,22 @@ msgstr "Enterprise"
msgid "Enterprise Feature"
msgstr ""
#. js-lingui-id: S5c4pl
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Enterprise License"
msgstr ""
#. js-lingui-id: KGE5g0
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Enterprise license activated successfully"
msgstr ""
#. js-lingui-id: SLuq/l
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Entity ID"
@@ -5470,6 +5553,11 @@ msgstr "Apagamento de registros excluídos temporariamente"
msgid "Error"
msgstr "Erro"
#. js-lingui-id: VouTsQ
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error activating enterprise license"
msgstr ""
#. js-lingui-id: GHKxvg
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error deleting api key."
@@ -5495,11 +5583,6 @@ msgstr "Erro ao excluir Fornecedor de Identidade SSO"
msgid "Error editing SSO Identity Provider"
msgstr "Erro ao editar Fornecedor de Identidade SSO"
#. js-lingui-id: GsIfmO
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerMetricsGraph.tsx
msgid "Error fetching worker metrics: {errorMessage}"
msgstr "Erro ao obter métricas do worker: {errorMessage}"
#. js-lingui-id: GdBN5t
#: src/modules/error-handler/components/AppRootErrorFallback.tsx
msgid "Error illustration"
@@ -5530,11 +5613,26 @@ msgstr "Erro ao carregar mensagem"
msgid "Error Message"
msgstr "Mensagem de Erro"
#. js-lingui-id: Mox63G
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error opening billing portal"
msgstr ""
#. js-lingui-id: e/eieW
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Error opening Stripe"
msgstr ""
#. js-lingui-id: bT/0cM
#: src/modules/ui/field/display/components/PhonesDisplay.tsx
msgid "Error parsing additional phones: {error}"
msgstr "Erro ao analisar números de telefone adicionais: {error}"
#. js-lingui-id: zRXcyv
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error refreshing validity token. Please contact support."
msgstr ""
#. js-lingui-id: PfAip2
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error regenerating api key."
@@ -5997,6 +6095,11 @@ msgstr ""
msgid "Failed to {translatedOperationType} {translatedMetadataName}. Related {relatedEntityNames} validation failed. Please check your configuration and try again."
msgstr ""
#. js-lingui-id: R1XJV1
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Failed to activate enterprise license. Please check your key or contact support."
msgstr ""
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to activate skill"
@@ -6374,7 +6477,6 @@ msgstr ""
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/views/components/ViewBarFilterButton.tsx
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
#: src/modules/settings/roles/components/SettingsRolesList.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
@@ -6397,6 +6499,7 @@ msgid "Filter group rule options"
msgstr "Opções de regra do grupo de filtros"
#. js-lingui-id: cSev+j
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
msgid "Filters"
msgstr "Filtros"
@@ -6467,6 +6570,11 @@ msgstr "Nome"
msgid "First name can not be empty"
msgstr "O primeiro nome não pode estar vazio"
#. js-lingui-id: JREYkg
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Fix the payment issue to keep your enterprise features active."
msgstr ""
#. js-lingui-id: ylQd2j
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
@@ -6486,7 +6594,7 @@ msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
msgid "Folders"
msgstr "Pastas"
@@ -6635,6 +6743,22 @@ msgstr "Arquivos gerados"
msgid "German"
msgstr "Alemão"
#. js-lingui-id: sqtljx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Get Enterprise"
msgstr ""
#. js-lingui-id: o2kSwB
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Get Enterprise Key"
msgstr ""
#. js-lingui-id: NXEW3h
#: src/pages/onboarding/InviteTeam.tsx
msgid "Get the most out of your workspace by inviting your team."
@@ -6655,6 +6779,12 @@ msgstr "Global"
msgid "Go Back"
msgstr ""
#. js-lingui-id: Hb4Cgz
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Go to billing portal"
msgstr ""
#. js-lingui-id: mUbv8L
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
msgid "Go to Companies"
@@ -7240,6 +7370,11 @@ msgstr ""
msgid "Inbox"
msgstr "Caixa de entrada"
#. js-lingui-id: mtGDyy
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Incomplete"
msgstr ""
#. js-lingui-id: O5wNUa
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "index"
@@ -7882,9 +8017,8 @@ msgid "Launch manually"
msgstr "Iniciar manualmente"
#. js-lingui-id: rdU729
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsLayout.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -7957,6 +8091,12 @@ msgstr ""
msgid "Less than or equal"
msgstr "Menor que ou igual"
#. js-lingui-id: 3qg5Ro
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Licensee"
msgstr ""
#. js-lingui-id: 1njn7W
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownThemesComponents.tsx
@@ -8260,6 +8400,8 @@ msgid "Manage billing and subscriptions"
msgstr "Gerenciar cobrança e assinaturas"
#. js-lingui-id: nvgUPq
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Manage billing information"
msgstr "Gerenciar informações de faturamento"
@@ -8612,6 +8754,11 @@ msgstr "Mês do ano"
msgid "monthly"
msgstr "mensal"
#. js-lingui-id: Sew/cK
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Monthly subscription"
msgstr ""
#. js-lingui-id: 6jefe3
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
@@ -8673,7 +8820,7 @@ msgid "Move right"
msgstr "Mover para a direita"
#. js-lingui-id: 6qDVmw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Move to a folder"
msgstr ""
@@ -9274,13 +9421,13 @@ msgid "No Files"
msgstr "Nenhum arquivo"
#. js-lingui-id: pYblOw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
msgid "No folder"
msgstr "Nenhuma pasta"
#. js-lingui-id: 6XMhqL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folders available"
msgstr ""
@@ -9454,8 +9601,8 @@ msgstr "Sem Resultados"
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/side-panel/components/SidePanelList.tsx
msgid "No results found"
msgstr "Nenhum resultado encontrado"
@@ -10188,11 +10335,26 @@ msgstr "O link de reposição da palavra-passe foi enviado para o e-mail"
msgid "Paste the code below"
msgstr "Cole o código abaixo"
#. js-lingui-id: raz2Pm
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Paste your enterprise key below to activate"
msgstr ""
#. js-lingui-id: dNdgvF
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Paste your enterprise key here"
msgstr ""
#. js-lingui-id: I6gXOa
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "Path"
msgstr "Caminho"
#. js-lingui-id: QmXBEc
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Payment issue"
msgstr ""
#. js-lingui-id: UbRKMZ
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
#: src/modules/settings/security/components/approvedAccessDomains/SettingsApprovedAccessDomainsListCard.tsx
@@ -10329,13 +10491,13 @@ msgid "Pick a {objectLabel} record"
msgstr "Selecione um registro de {objectLabel}"
#. js-lingui-id: JqqNlC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Pick a view"
msgstr ""
#. js-lingui-id: Wlba2h
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Pick an object"
msgstr ""
@@ -10953,6 +11115,16 @@ msgstr "Lançamentos"
msgid "Reload"
msgstr "Recarregar"
#. js-lingui-id: qbM5In
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Reload validity token"
msgstr ""
#. js-lingui-id: MZWnSC
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Reloading..."
msgstr ""
#. js-lingui-id: qlAIQ1
#: src/modules/object-metadata/components/RemoteNavigationDrawerSection.tsx
msgid "Remote"
@@ -11228,7 +11400,7 @@ msgstr "Resultado"
#. js-lingui-id: kx0s+n
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Results"
msgstr "Resultados"
@@ -11367,6 +11539,11 @@ msgstr ""
msgid "row level permission predicate group"
msgstr ""
#. js-lingui-id: xPaeO2
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Row-level security"
msgstr ""
#. js-lingui-id: 7jTlsu
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Ruby"
@@ -11485,6 +11662,8 @@ msgstr ""
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Search"
msgstr "Pesquisar"
@@ -11521,7 +11700,7 @@ msgid "Search a field..."
msgstr "Pesquisar um campo..."
#. js-lingui-id: ITQFzL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Search a folder..."
msgstr ""
@@ -11689,7 +11868,7 @@ msgid "Search records"
msgstr "Pesquisar registos"
#. js-lingui-id: rRklUH
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Search records..."
msgstr ""
@@ -11724,11 +11903,13 @@ msgid "Searching the web for {query}"
msgstr ""
#. js-lingui-id: 8sgZS9
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month"
msgstr "assento / mês"
#. js-lingui-id: aQnWwf
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month - billed yearly"
msgstr "assento / mês - cobrado anualmente"
@@ -12556,6 +12737,7 @@ msgstr "SSO"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
@@ -12600,6 +12782,16 @@ msgstr ""
msgid "Start"
msgstr "Iniciar"
#. js-lingui-id: ASqWQi
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Start a new enterprise subscription to re-enable enterprise features."
msgstr ""
#. js-lingui-id: OC6rnK
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Start a new enterprise subscription."
msgstr ""
#. js-lingui-id: D3iCkb
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
msgid "Start Date"
@@ -12625,6 +12817,11 @@ msgid "State"
msgstr "Estado"
#. js-lingui-id: uAQUqI
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
@@ -12920,11 +13117,11 @@ msgstr ""
#. js-lingui-id: 0apULK
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -13227,6 +13424,11 @@ msgstr "Existem colunas obrigatórias que não estão correspondidas ou ignorada
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
msgstr "Ainda há algumas linhas que contêm erros. As linhas com erros serão ignoradas ao enviar."
#. js-lingui-id: CA9PTn
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "There is a payment issue with your subscription. Please update your payment method."
msgstr ""
#. js-lingui-id: WQk7Cf
#: src/modules/activities/timeline-activities/components/TimelineCard.tsx
msgid "There is no activity associated with this record."
@@ -13339,9 +13541,9 @@ msgstr ""
msgid "This database value overrides environment settings. "
msgstr "Este valor de banco de dados substitui as configurações de ambiente."
#. js-lingui-id: qHAJQ2
#. js-lingui-id: 8IRnd6
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "This feature is part of the Organization Plan"
msgid "This feature is part of the Enterprise Plan"
msgstr ""
#. js-lingui-id: own57K
@@ -13650,6 +13852,8 @@ msgid "Transfer ownership"
msgstr ""
#. js-lingui-id: lhkaAC
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/internal/PlansTags.tsx
msgid "Trial"
msgstr "Teste"
@@ -13840,7 +14044,7 @@ msgid "Type anything..."
msgstr "Digite qualquer coisa..."
#. js-lingui-id: UhqKcC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Type to search records"
msgstr ""
@@ -13998,6 +14202,11 @@ msgstr "Contactos ilimitados"
msgid "Unlisted"
msgstr "Não listado"
#. js-lingui-id: Ep1uUU
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
msgstr ""
#. js-lingui-id: eQMhFX
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "unordered"
@@ -14067,6 +14276,11 @@ msgstr "atualizar"
msgid "Update"
msgstr "Atualizar"
#. js-lingui-id: Y69tSP
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Update payment method"
msgstr ""
#. js-lingui-id: 0KAL3W
#: src/modules/side-panel/hooks/useOpenUpdateMultipleRecordsPageInSidePanel.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
@@ -14305,11 +14519,22 @@ msgstr "Usando valor padrão do aplicativo. Configure através de variáveis de
msgid "Using default value. Set a custom value to override."
msgstr "Usando valor padrão. Defina um valor personalizado para substituir."
#. js-lingui-id: zzp4XX
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Valid until"
msgstr ""
#. js-lingui-id: Clr4qp
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Validate Data"
msgstr "Validar dados"
#. js-lingui-id: PWZBIT
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Validity token refreshed successfully"
msgstr ""
#. js-lingui-id: wMHvYH
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/KeyValuePairInput.tsx
@@ -14436,6 +14661,8 @@ msgid "View and filter events, page views, object changes"
msgstr ""
#. js-lingui-id: KANz0G
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "View billing details"
msgstr "Ver detalhes de faturação"
@@ -14485,6 +14712,11 @@ msgstr "grupo de visualização"
msgid "View installed app"
msgstr ""
#. js-lingui-id: B02hom
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "View invoices"
msgstr ""
#. js-lingui-id: lh5BED
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerQueueMetricsSection.tsx
msgid "View Jobs"
@@ -14503,6 +14735,7 @@ msgstr ""
#. js-lingui-id: ecVcAx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "View Previous AI Chats"
msgstr "Ver Conversas de IA Anteriores"
@@ -14852,6 +15085,7 @@ msgstr "Workflows"
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/domains/SettingsDomains.tsx
@@ -15018,6 +15252,11 @@ msgstr "Ano"
msgid "yearly"
msgstr "anual"
#. js-lingui-id: Y1GwUe
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Yearly subscription"
msgstr ""
#. js-lingui-id: +BGee5
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
msgid "years"
@@ -15150,6 +15389,36 @@ msgstr "Os assuntos dos seus emails e títulos de reuniões serão partilhados c
msgid "Your emails and events content will be shared with your team."
msgstr "O conteúdo dos seus emails e eventos será partilhado com sua equipa."
#. js-lingui-id: ahEwS4
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features are active"
msgstr ""
#. js-lingui-id: XMZLU/
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features are active but your enterprise key is missing or invalid. This may be expected, but if not, please set a valid signed enterprise key to manage your subscription, or contact support."
msgstr ""
#. js-lingui-id: AxcwNj
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features will be disabled"
msgstr ""
#. js-lingui-id: PT137K
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features will remain active until {cancelAtDate}."
msgstr ""
#. js-lingui-id: 69Siss
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
msgid "Your enterprise key format is deprecated. Please activate a new key to keep enterprise features."
msgstr ""
#. js-lingui-id: NTpA4U
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise subscription has been canceled."
msgstr ""
#. js-lingui-id: 9ivpwk
#: src/pages/settings/SettingsProfile.tsx
msgid "Your name as it will be displayed"
@@ -15160,6 +15429,26 @@ msgstr "O seu nome como será exibido"
msgid "Your name as it will be displayed on the app"
msgstr "O seu nome como será exibido no aplicativo"
#. js-lingui-id: 319YPG
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription is active but your validity token is invalid or has expired. Try reloading it or contact support."
msgstr ""
#. js-lingui-id: Fx0axg
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription is scheduled for cancellation"
msgstr ""
#. js-lingui-id: XgIa/8
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription setup was not completed."
msgstr ""
#. js-lingui-id: Z9kbt6
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription status is: {statusLabel}"
msgstr ""
#. js-lingui-id: QOd24n
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and "
+327 -38
View File
@@ -752,23 +752,37 @@ msgid "Actions users can perform on this object"
msgstr "Acțiuni pe care utilizatorii le pot efectua asupra acestui obiect"
#. js-lingui-id: FQBaXG
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
#: src/modules/settings/data-model/objects/components/SettingsObjectInactiveMenuDropDown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
msgid "Activate"
msgstr "Activează"
#. js-lingui-id: eqeFkF
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Activate Enterprise Key"
msgstr ""
#. js-lingui-id: tu8A/k
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
msgid "Activate Workflow"
msgstr "Activează Fluxul de Lucru"
#. js-lingui-id: jSZacs
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Activating..."
msgstr ""
#. js-lingui-id: F6pfE9
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/domains/components/SettingsWorkspaceDomainCard.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Active"
@@ -806,6 +820,13 @@ msgstr "Adaugă \"{trimmedName}\" la opțiuni"
msgid "Add a {objectLabelSingular}"
msgstr "Adaugă un {objectLabelSingular}"
#. js-lingui-id: 7W8nJr
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
msgid "Add a Group"
msgstr ""
#. js-lingui-id: CZDwqQ
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
@@ -818,16 +839,10 @@ msgid "Add a node"
msgstr "Adaugă nod"
#. js-lingui-id: nGv1DN
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Add a record"
msgstr ""
#. js-lingui-id: r8W+9y
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
msgid "Add a Section"
msgstr ""
#. js-lingui-id: eMc2xs
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
msgid "Add a step"
@@ -1429,7 +1444,7 @@ msgid "All set!"
msgstr "Gata!"
#. js-lingui-id: CHvT6e
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectFlow.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
@@ -1574,6 +1589,7 @@ msgstr "A apărut o eroare la încărcarea imaginii."
#. js-lingui-id: XyOToQ
#: src/utils/get-error-message-from-apollo-error.util.ts
#: src/utils/get-error-message-from-apollo-error.util.ts
#: src/modules/views/hooks/internal/usePerformViewSortAPIPersist.ts
#: src/modules/views/hooks/internal/usePerformViewGroupAPIPersist.ts
#: src/modules/views/hooks/internal/usePerformViewFilterAPIPersist.ts
@@ -1664,6 +1680,7 @@ msgstr "API"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "API & Webhooks"
msgstr "API & Webhooks"
@@ -1940,6 +1957,7 @@ msgstr "Ascendent"
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Ask AI"
msgstr "Întreabă AI"
@@ -2078,6 +2096,11 @@ msgstr ""
msgid "Attachments"
msgstr "Atașamente"
#. js-lingui-id: y2W2Hg
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Audit logs"
msgstr ""
#. js-lingui-id: EPEFrH
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
@@ -2306,6 +2329,11 @@ msgstr "între {startOrdinal} și {endOrdinal} ale lunii"
msgid "Billing"
msgstr "Facturare"
#. js-lingui-id: dSjFxR
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Billing history"
msgstr ""
#. js-lingui-id: nJGwRf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Billing interval"
@@ -2563,6 +2591,7 @@ msgid "Cancel metered tier switching?"
msgstr "Anulați schimbarea nivelului măsurat?"
#. js-lingui-id: rRK/Lf
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel Plan"
msgstr "Anulează planul"
@@ -2578,10 +2607,26 @@ msgid "Cancel plan switching?"
msgstr "Anulați schimbarea planului?"
#. js-lingui-id: N6gPiD
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel your subscription"
msgstr "Anulează abonamentul"
#. js-lingui-id: GGWsTU
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Canceled"
msgstr ""
#. js-lingui-id: y4uH7j
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Cancelling"
msgstr ""
#. js-lingui-id: WbPx+C
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Cancels on"
msgstr ""
#. js-lingui-id: XDbjjW
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Cannot delete the only view"
@@ -3077,11 +3122,6 @@ msgstr ""
msgid "Configure fallback login methods for users with SSO bypass permissions"
msgstr "Configurează metode de conectare alternative pentru utilizatorii cu permisiuni de evitare SSO"
#. js-lingui-id: c7wznw
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
msgid "Configure filters"
msgstr "Configurează filtre"
#. js-lingui-id: ghdb7+
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
msgid "Configure how we should display your events in your calendar"
@@ -3279,6 +3319,7 @@ msgstr ""
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
msgid "Continue"
msgstr "Continuă"
@@ -3438,6 +3479,21 @@ msgstr "Cost per 1k credite suplimentare"
msgid "Could not delete approved access domain"
msgstr "Nu a putut fi șters domeniul de acces aprobat"
#. js-lingui-id: KqYYBp
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not open billing portal. Please check your enterprise key is present, or contact support."
msgstr ""
#. js-lingui-id: ZuI4Sl
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Could not open Stripe. Please contact support."
msgstr ""
#. js-lingui-id: wVw4Am
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not refresh validity token. Please contact support."
msgstr ""
#. js-lingui-id: s8lFtq
#: src/hooks/useCopyToClipboard.tsx
msgid "Couldn't copy to clipboard"
@@ -3815,6 +3871,7 @@ msgstr "Domeniu personalizat actualizat"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Custom objects"
msgstr "Obiecte personalizate"
@@ -4917,6 +4974,8 @@ msgid "Edit own profile information"
msgstr ""
#. js-lingui-id: h2KoTu
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Edit payment method, see your invoices and more"
msgstr "Editează metoda de plată, vezi facturile tale și mai mult"
@@ -5216,6 +5275,11 @@ msgstr "Îmbunătățește securitatea prin solicitarea unui cod împreună cu p
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr "Bucură-te de un proces gratuit de {withCreditCardTrialPeriodDuration} de zile"
#. js-lingui-id: 6iUnle
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Enjoy a 30-day free trial"
msgstr ""
#. js-lingui-id: T/N+2Z
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormRawJsonFieldInput.tsx
@@ -5422,6 +5486,9 @@ msgstr "Introduceți cheia dvs. API"
#. js-lingui-id: GpB8YV
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
msgid "Enterprise"
msgstr "Întreprindere"
@@ -5430,6 +5497,22 @@ msgstr "Întreprindere"
msgid "Enterprise Feature"
msgstr ""
#. js-lingui-id: S5c4pl
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Enterprise License"
msgstr ""
#. js-lingui-id: KGE5g0
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Enterprise license activated successfully"
msgstr ""
#. js-lingui-id: SLuq/l
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Entity ID"
@@ -5470,6 +5553,11 @@ msgstr "Ștergerea înregistrărilor soft-delete"
msgid "Error"
msgstr "Eroare"
#. js-lingui-id: VouTsQ
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error activating enterprise license"
msgstr ""
#. js-lingui-id: GHKxvg
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error deleting api key."
@@ -5495,11 +5583,6 @@ msgstr "Eroare la ștergerea Furnizorului de Identitate SSO"
msgid "Error editing SSO Identity Provider"
msgstr "Eroare la editarea Furnizorului de Identitate SSO"
#. js-lingui-id: GsIfmO
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerMetricsGraph.tsx
msgid "Error fetching worker metrics: {errorMessage}"
msgstr "Eroare la preluarea metricilor workerului: {errorMessage}"
#. js-lingui-id: GdBN5t
#: src/modules/error-handler/components/AppRootErrorFallback.tsx
msgid "Error illustration"
@@ -5530,11 +5613,26 @@ msgstr "Eroare la încărcarea mesajului"
msgid "Error Message"
msgstr "Mesaj de eroare"
#. js-lingui-id: Mox63G
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error opening billing portal"
msgstr ""
#. js-lingui-id: e/eieW
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Error opening Stripe"
msgstr ""
#. js-lingui-id: bT/0cM
#: src/modules/ui/field/display/components/PhonesDisplay.tsx
msgid "Error parsing additional phones: {error}"
msgstr "Eroare la parsarea numerelor de telefon suplimentare: {error}"
#. js-lingui-id: zRXcyv
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error refreshing validity token. Please contact support."
msgstr ""
#. js-lingui-id: PfAip2
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error regenerating api key."
@@ -5997,6 +6095,11 @@ msgstr ""
msgid "Failed to {translatedOperationType} {translatedMetadataName}. Related {relatedEntityNames} validation failed. Please check your configuration and try again."
msgstr ""
#. js-lingui-id: R1XJV1
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Failed to activate enterprise license. Please check your key or contact support."
msgstr ""
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to activate skill"
@@ -6374,7 +6477,6 @@ msgstr ""
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/views/components/ViewBarFilterButton.tsx
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
#: src/modules/settings/roles/components/SettingsRolesList.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
@@ -6397,6 +6499,7 @@ msgid "Filter group rule options"
msgstr "Opțiuni pentru regulile grupului de filtrare"
#. js-lingui-id: cSev+j
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
msgid "Filters"
msgstr "Filtre"
@@ -6467,6 +6570,11 @@ msgstr "Prenume"
msgid "First name can not be empty"
msgstr "Prenumele nu poate fi gol"
#. js-lingui-id: JREYkg
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Fix the payment issue to keep your enterprise features active."
msgstr ""
#. js-lingui-id: ylQd2j
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
@@ -6486,7 +6594,7 @@ msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
msgid "Folders"
msgstr "Foldere"
@@ -6635,6 +6743,22 @@ msgstr "Fișiere generate"
msgid "German"
msgstr "Germană"
#. js-lingui-id: sqtljx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Get Enterprise"
msgstr ""
#. js-lingui-id: o2kSwB
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Get Enterprise Key"
msgstr ""
#. js-lingui-id: NXEW3h
#: src/pages/onboarding/InviteTeam.tsx
msgid "Get the most out of your workspace by inviting your team."
@@ -6655,6 +6779,12 @@ msgstr "Global"
msgid "Go Back"
msgstr ""
#. js-lingui-id: Hb4Cgz
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Go to billing portal"
msgstr ""
#. js-lingui-id: mUbv8L
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
msgid "Go to Companies"
@@ -7240,6 +7370,11 @@ msgstr ""
msgid "Inbox"
msgstr "Inbox"
#. js-lingui-id: mtGDyy
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Incomplete"
msgstr ""
#. js-lingui-id: O5wNUa
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "index"
@@ -7882,9 +8017,8 @@ msgid "Launch manually"
msgstr "Lansează manual"
#. js-lingui-id: rdU729
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsLayout.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -7957,6 +8091,12 @@ msgstr ""
msgid "Less than or equal"
msgstr "Mai mic sau egal"
#. js-lingui-id: 3qg5Ro
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Licensee"
msgstr ""
#. js-lingui-id: 1njn7W
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownThemesComponents.tsx
@@ -8260,6 +8400,8 @@ msgid "Manage billing and subscriptions"
msgstr "Gestionează facturarea și abonamentele"
#. js-lingui-id: nvgUPq
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Manage billing information"
msgstr "Gestionați informațiile de facturare"
@@ -8612,6 +8754,11 @@ msgstr "Luna anului"
msgid "monthly"
msgstr "lunar"
#. js-lingui-id: Sew/cK
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Monthly subscription"
msgstr ""
#. js-lingui-id: 6jefe3
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
@@ -8673,7 +8820,7 @@ msgid "Move right"
msgstr "Mută la dreapta"
#. js-lingui-id: 6qDVmw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Move to a folder"
msgstr ""
@@ -9274,13 +9421,13 @@ msgid "No Files"
msgstr "Niciun Fișier"
#. js-lingui-id: pYblOw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
msgid "No folder"
msgstr "Niciun folder"
#. js-lingui-id: 6XMhqL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folders available"
msgstr ""
@@ -9454,8 +9601,8 @@ msgstr "Niciun rezultat"
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/side-panel/components/SidePanelList.tsx
msgid "No results found"
msgstr "Nu s-au găsit rezultate"
@@ -10188,11 +10335,26 @@ msgstr "Link-ul pentru resetarea parolei a fost trimis către email"
msgid "Paste the code below"
msgstr "Lipește codul de mai jos"
#. js-lingui-id: raz2Pm
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Paste your enterprise key below to activate"
msgstr ""
#. js-lingui-id: dNdgvF
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Paste your enterprise key here"
msgstr ""
#. js-lingui-id: I6gXOa
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "Path"
msgstr "Cale"
#. js-lingui-id: QmXBEc
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Payment issue"
msgstr ""
#. js-lingui-id: UbRKMZ
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
#: src/modules/settings/security/components/approvedAccessDomains/SettingsApprovedAccessDomainsListCard.tsx
@@ -10329,13 +10491,13 @@ msgid "Pick a {objectLabel} record"
msgstr "Alege un înregistrare {objectLabel}"
#. js-lingui-id: JqqNlC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Pick a view"
msgstr ""
#. js-lingui-id: Wlba2h
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Pick an object"
msgstr ""
@@ -10953,6 +11115,16 @@ msgstr "Versiuni"
msgid "Reload"
msgstr "Reîncarcă"
#. js-lingui-id: qbM5In
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Reload validity token"
msgstr ""
#. js-lingui-id: MZWnSC
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Reloading..."
msgstr ""
#. js-lingui-id: qlAIQ1
#: src/modules/object-metadata/components/RemoteNavigationDrawerSection.tsx
msgid "Remote"
@@ -11228,7 +11400,7 @@ msgstr "Rezultat"
#. js-lingui-id: kx0s+n
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Results"
msgstr "Rezultate"
@@ -11367,6 +11539,11 @@ msgstr ""
msgid "row level permission predicate group"
msgstr ""
#. js-lingui-id: xPaeO2
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Row-level security"
msgstr ""
#. js-lingui-id: 7jTlsu
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Ruby"
@@ -11485,6 +11662,8 @@ msgstr ""
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Search"
msgstr "Caută"
@@ -11521,7 +11700,7 @@ msgid "Search a field..."
msgstr "Caută un câmp..."
#. js-lingui-id: ITQFzL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Search a folder..."
msgstr ""
@@ -11689,7 +11868,7 @@ msgid "Search records"
msgstr "Caută înregistrări"
#. js-lingui-id: rRklUH
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Search records..."
msgstr ""
@@ -11724,11 +11903,13 @@ msgid "Searching the web for {query}"
msgstr ""
#. js-lingui-id: 8sgZS9
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month"
msgstr ""
#. js-lingui-id: aQnWwf
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month - billed yearly"
msgstr ""
@@ -12556,6 +12737,7 @@ msgstr "Autentificare Unică"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
@@ -12600,6 +12782,16 @@ msgstr ""
msgid "Start"
msgstr "Începe"
#. js-lingui-id: ASqWQi
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Start a new enterprise subscription to re-enable enterprise features."
msgstr ""
#. js-lingui-id: OC6rnK
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Start a new enterprise subscription."
msgstr ""
#. js-lingui-id: D3iCkb
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
msgid "Start Date"
@@ -12625,6 +12817,11 @@ msgid "State"
msgstr "Stare"
#. js-lingui-id: uAQUqI
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
@@ -12920,11 +13117,11 @@ msgstr ""
#. js-lingui-id: 0apULK
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -13227,6 +13424,11 @@ msgstr "Există coloane obligatorii care nu sunt potrivite sau sunt ignorate. Do
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
msgstr "Există încă unele rânduri care conțin erori. Rândurile cu erori vor fi ignorate la trimitere."
#. js-lingui-id: CA9PTn
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "There is a payment issue with your subscription. Please update your payment method."
msgstr ""
#. js-lingui-id: WQk7Cf
#: src/modules/activities/timeline-activities/components/TimelineCard.tsx
msgid "There is no activity associated with this record."
@@ -13339,9 +13541,9 @@ msgstr ""
msgid "This database value overrides environment settings. "
msgstr "Această valoare a bazei de date suprascrie setările de mediu."
#. js-lingui-id: qHAJQ2
#. js-lingui-id: 8IRnd6
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "This feature is part of the Organization Plan"
msgid "This feature is part of the Enterprise Plan"
msgstr ""
#. js-lingui-id: own57K
@@ -13650,6 +13852,8 @@ msgid "Transfer ownership"
msgstr ""
#. js-lingui-id: lhkaAC
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/internal/PlansTags.tsx
msgid "Trial"
msgstr "Proces"
@@ -13840,7 +14044,7 @@ msgid "Type anything..."
msgstr "Tastează orice..."
#. js-lingui-id: UhqKcC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Type to search records"
msgstr ""
@@ -13998,6 +14202,11 @@ msgstr "Contacte nelimitate"
msgid "Unlisted"
msgstr "Nelistat"
#. js-lingui-id: Ep1uUU
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
msgstr ""
#. js-lingui-id: eQMhFX
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "unordered"
@@ -14067,6 +14276,11 @@ msgstr "actualizează"
msgid "Update"
msgstr "Actualizează"
#. js-lingui-id: Y69tSP
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Update payment method"
msgstr ""
#. js-lingui-id: 0KAL3W
#: src/modules/side-panel/hooks/useOpenUpdateMultipleRecordsPageInSidePanel.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
@@ -14305,11 +14519,22 @@ msgstr "Folosind valoarea implicită a aplicației. Configurați prin variabile
msgid "Using default value. Set a custom value to override."
msgstr "Folosind valoarea implicită. Setați o valoare personalizată pentru a suprascrie."
#. js-lingui-id: zzp4XX
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Valid until"
msgstr ""
#. js-lingui-id: Clr4qp
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Validate Data"
msgstr "Validează datele"
#. js-lingui-id: PWZBIT
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Validity token refreshed successfully"
msgstr ""
#. js-lingui-id: wMHvYH
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/KeyValuePairInput.tsx
@@ -14436,6 +14661,8 @@ msgid "View and filter events, page views, object changes"
msgstr ""
#. js-lingui-id: KANz0G
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "View billing details"
msgstr "Vizualizează detalii despre facturare"
@@ -14485,6 +14712,11 @@ msgstr "grup de vizualizare"
msgid "View installed app"
msgstr ""
#. js-lingui-id: B02hom
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "View invoices"
msgstr ""
#. js-lingui-id: lh5BED
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerQueueMetricsSection.tsx
msgid "View Jobs"
@@ -14503,6 +14735,7 @@ msgstr ""
#. js-lingui-id: ecVcAx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "View Previous AI Chats"
msgstr "Vizualizează Chat-urile AI Anterioare"
@@ -14852,6 +15085,7 @@ msgstr "Fluxuri de lucru"
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/domains/SettingsDomains.tsx
@@ -15018,6 +15252,11 @@ msgstr "An"
msgid "yearly"
msgstr "anual"
#. js-lingui-id: Y1GwUe
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Yearly subscription"
msgstr ""
#. js-lingui-id: +BGee5
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
msgid "years"
@@ -15150,6 +15389,36 @@ msgstr "Subiectele emailurilor și titlurile întâlnirilor vor fi partajate cu
msgid "Your emails and events content will be shared with your team."
msgstr "Conținutul emailurilor și evenimentelor va fi partajat cu echipa dvs."
#. js-lingui-id: ahEwS4
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features are active"
msgstr ""
#. js-lingui-id: XMZLU/
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features are active but your enterprise key is missing or invalid. This may be expected, but if not, please set a valid signed enterprise key to manage your subscription, or contact support."
msgstr ""
#. js-lingui-id: AxcwNj
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features will be disabled"
msgstr ""
#. js-lingui-id: PT137K
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features will remain active until {cancelAtDate}."
msgstr ""
#. js-lingui-id: 69Siss
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
msgid "Your enterprise key format is deprecated. Please activate a new key to keep enterprise features."
msgstr ""
#. js-lingui-id: NTpA4U
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise subscription has been canceled."
msgstr ""
#. js-lingui-id: 9ivpwk
#: src/pages/settings/SettingsProfile.tsx
msgid "Your name as it will be displayed"
@@ -15160,6 +15429,26 @@ msgstr "Numele dvs. așa cum va fi afișat"
msgid "Your name as it will be displayed on the app"
msgstr "Numele dvs. așa cum va fi afișat în aplicație"
#. js-lingui-id: 319YPG
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription is active but your validity token is invalid or has expired. Try reloading it or contact support."
msgstr ""
#. js-lingui-id: Fx0axg
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription is scheduled for cancellation"
msgstr ""
#. js-lingui-id: XgIa/8
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription setup was not completed."
msgstr ""
#. js-lingui-id: Z9kbt6
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription status is: {statusLabel}"
msgstr ""
#. js-lingui-id: QOd24n
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and "
Binary file not shown.
+327 -38
View File
@@ -752,23 +752,37 @@ msgid "Actions users can perform on this object"
msgstr "Акције које корисници могу спровести на овом објекту"
#. js-lingui-id: FQBaXG
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
#: src/modules/settings/data-model/objects/components/SettingsObjectInactiveMenuDropDown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
msgid "Activate"
msgstr "Активирајте"
#. js-lingui-id: eqeFkF
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Activate Enterprise Key"
msgstr ""
#. js-lingui-id: tu8A/k
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
msgid "Activate Workflow"
msgstr "Активирајте радни ток"
#. js-lingui-id: jSZacs
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Activating..."
msgstr ""
#. js-lingui-id: F6pfE9
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/domains/components/SettingsWorkspaceDomainCard.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Active"
@@ -806,6 +820,13 @@ msgstr "Додај \"{trimmedName}\" у опције"
msgid "Add a {objectLabelSingular}"
msgstr "Додај {objectLabelSingular}"
#. js-lingui-id: 7W8nJr
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
msgid "Add a Group"
msgstr ""
#. js-lingui-id: CZDwqQ
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
@@ -818,16 +839,10 @@ msgid "Add a node"
msgstr "Додај чвор"
#. js-lingui-id: nGv1DN
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Add a record"
msgstr ""
#. js-lingui-id: r8W+9y
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
msgid "Add a Section"
msgstr ""
#. js-lingui-id: eMc2xs
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
msgid "Add a step"
@@ -1429,7 +1444,7 @@ msgid "All set!"
msgstr "Све је спремно!"
#. js-lingui-id: CHvT6e
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectFlow.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
@@ -1574,6 +1589,7 @@ msgstr "Дошло је до грешке приликом отпремања с
#. js-lingui-id: XyOToQ
#: src/utils/get-error-message-from-apollo-error.util.ts
#: src/utils/get-error-message-from-apollo-error.util.ts
#: src/modules/views/hooks/internal/usePerformViewSortAPIPersist.ts
#: src/modules/views/hooks/internal/usePerformViewGroupAPIPersist.ts
#: src/modules/views/hooks/internal/usePerformViewFilterAPIPersist.ts
@@ -1664,6 +1680,7 @@ msgstr "АПИ"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "API & Webhooks"
msgstr "API и Вебхукси"
@@ -1940,6 +1957,7 @@ msgstr "Растуће"
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Ask AI"
msgstr "Питајте AI"
@@ -2078,6 +2096,11 @@ msgstr ""
msgid "Attachments"
msgstr "Прилози"
#. js-lingui-id: y2W2Hg
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Audit logs"
msgstr ""
#. js-lingui-id: EPEFrH
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
@@ -2306,6 +2329,11 @@ msgstr "између {startOrdinal} и {endOrdinal} дана у месецу"
msgid "Billing"
msgstr "Наплата"
#. js-lingui-id: dSjFxR
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Billing history"
msgstr ""
#. js-lingui-id: nJGwRf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Billing interval"
@@ -2563,6 +2591,7 @@ msgid "Cancel metered tier switching?"
msgstr "Откажи промену мерног нивоа?"
#. js-lingui-id: rRK/Lf
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel Plan"
msgstr "Откажи план"
@@ -2578,10 +2607,26 @@ msgid "Cancel plan switching?"
msgstr "Откажи промену плана?"
#. js-lingui-id: N6gPiD
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel your subscription"
msgstr "Откажите претплату"
#. js-lingui-id: GGWsTU
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Canceled"
msgstr ""
#. js-lingui-id: y4uH7j
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Cancelling"
msgstr ""
#. js-lingui-id: WbPx+C
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Cancels on"
msgstr ""
#. js-lingui-id: XDbjjW
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Cannot delete the only view"
@@ -3077,11 +3122,6 @@ msgstr ""
msgid "Configure fallback login methods for users with SSO bypass permissions"
msgstr "Конфигуришите резервни метод пријаве за кориснике са дозволом за заобилажење SSO-а"
#. js-lingui-id: c7wznw
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
msgid "Configure filters"
msgstr "Подесите филтере"
#. js-lingui-id: ghdb7+
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
msgid "Configure how we should display your events in your calendar"
@@ -3279,6 +3319,7 @@ msgstr ""
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
msgid "Continue"
msgstr "Настави"
@@ -3438,6 +3479,21 @@ msgstr "Цена по 1к додатних кредита"
msgid "Could not delete approved access domain"
msgstr "Не може се обрисати одобрени приступни домен"
#. js-lingui-id: KqYYBp
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not open billing portal. Please check your enterprise key is present, or contact support."
msgstr ""
#. js-lingui-id: ZuI4Sl
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Could not open Stripe. Please contact support."
msgstr ""
#. js-lingui-id: wVw4Am
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not refresh validity token. Please contact support."
msgstr ""
#. js-lingui-id: s8lFtq
#: src/hooks/useCopyToClipboard.tsx
msgid "Couldn't copy to clipboard"
@@ -3815,6 +3871,7 @@ msgstr "Прилагођени домен ажуриран"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Custom objects"
msgstr "Прилагођени објекти"
@@ -4917,6 +4974,8 @@ msgid "Edit own profile information"
msgstr ""
#. js-lingui-id: h2KoTu
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Edit payment method, see your invoices and more"
msgstr "Измени начин плаћања, погледај своје фактуре и још много тога"
@@ -5216,6 +5275,11 @@ msgstr "Побољшава безбедност тако што захтева
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr "Уживајте у бесплатном пробном периоду од {withCreditCardTrialPeriodDuration} дана"
#. js-lingui-id: 6iUnle
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Enjoy a 30-day free trial"
msgstr ""
#. js-lingui-id: T/N+2Z
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormRawJsonFieldInput.tsx
@@ -5422,6 +5486,9 @@ msgstr "Унесите свој API кључ"
#. js-lingui-id: GpB8YV
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
msgid "Enterprise"
msgstr "Предузеће"
@@ -5430,6 +5497,22 @@ msgstr "Предузеће"
msgid "Enterprise Feature"
msgstr ""
#. js-lingui-id: S5c4pl
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Enterprise License"
msgstr ""
#. js-lingui-id: KGE5g0
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Enterprise license activated successfully"
msgstr ""
#. js-lingui-id: SLuq/l
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Entity ID"
@@ -5470,6 +5553,11 @@ msgstr "Брисање меко-обрисаних записа"
msgid "Error"
msgstr "Грешка"
#. js-lingui-id: VouTsQ
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error activating enterprise license"
msgstr ""
#. js-lingui-id: GHKxvg
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error deleting api key."
@@ -5495,11 +5583,6 @@ msgstr "Грешка приликом брисања провајдера за S
msgid "Error editing SSO Identity Provider"
msgstr "Грешка приликом измене провајдера за SSO идентификацију"
#. js-lingui-id: GsIfmO
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerMetricsGraph.tsx
msgid "Error fetching worker metrics: {errorMessage}"
msgstr "Грешка при дохватању метрика радника: {errorMessage}"
#. js-lingui-id: GdBN5t
#: src/modules/error-handler/components/AppRootErrorFallback.tsx
msgid "Error illustration"
@@ -5530,11 +5613,26 @@ msgstr "Грешка у учитавању поруке"
msgid "Error Message"
msgstr "Порука о грешци"
#. js-lingui-id: Mox63G
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error opening billing portal"
msgstr ""
#. js-lingui-id: e/eieW
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Error opening Stripe"
msgstr ""
#. js-lingui-id: bT/0cM
#: src/modules/ui/field/display/components/PhonesDisplay.tsx
msgid "Error parsing additional phones: {error}"
msgstr "Грешка при рашчлањивању додатних бројева телефона: {error}"
#. js-lingui-id: zRXcyv
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error refreshing validity token. Please contact support."
msgstr ""
#. js-lingui-id: PfAip2
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error regenerating api key."
@@ -5997,6 +6095,11 @@ msgstr ""
msgid "Failed to {translatedOperationType} {translatedMetadataName}. Related {relatedEntityNames} validation failed. Please check your configuration and try again."
msgstr ""
#. js-lingui-id: R1XJV1
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Failed to activate enterprise license. Please check your key or contact support."
msgstr ""
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to activate skill"
@@ -6374,7 +6477,6 @@ msgstr ""
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/views/components/ViewBarFilterButton.tsx
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
#: src/modules/settings/roles/components/SettingsRolesList.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
@@ -6397,6 +6499,7 @@ msgid "Filter group rule options"
msgstr "Опције правила групе филтера"
#. js-lingui-id: cSev+j
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
msgid "Filters"
msgstr "Филтери"
@@ -6467,6 +6570,11 @@ msgstr "Име"
msgid "First name can not be empty"
msgstr "Име не може бити празно"
#. js-lingui-id: JREYkg
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Fix the payment issue to keep your enterprise features active."
msgstr ""
#. js-lingui-id: ylQd2j
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
@@ -6486,7 +6594,7 @@ msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
msgid "Folders"
msgstr "Фасцикле"
@@ -6635,6 +6743,22 @@ msgstr "Генерисане датотеке"
msgid "German"
msgstr "Немачки"
#. js-lingui-id: sqtljx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Get Enterprise"
msgstr ""
#. js-lingui-id: o2kSwB
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Get Enterprise Key"
msgstr ""
#. js-lingui-id: NXEW3h
#: src/pages/onboarding/InviteTeam.tsx
msgid "Get the most out of your workspace by inviting your team."
@@ -6655,6 +6779,12 @@ msgstr "Глобално"
msgid "Go Back"
msgstr ""
#. js-lingui-id: Hb4Cgz
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Go to billing portal"
msgstr ""
#. js-lingui-id: mUbv8L
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
msgid "Go to Companies"
@@ -7240,6 +7370,11 @@ msgstr ""
msgid "Inbox"
msgstr "Пријемно сандуче"
#. js-lingui-id: mtGDyy
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Incomplete"
msgstr ""
#. js-lingui-id: O5wNUa
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "index"
@@ -7882,9 +8017,8 @@ msgid "Launch manually"
msgstr "Покрени ручно"
#. js-lingui-id: rdU729
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsLayout.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -7957,6 +8091,12 @@ msgstr ""
msgid "Less than or equal"
msgstr "Мање или једнако"
#. js-lingui-id: 3qg5Ro
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Licensee"
msgstr ""
#. js-lingui-id: 1njn7W
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownThemesComponents.tsx
@@ -8260,6 +8400,8 @@ msgid "Manage billing and subscriptions"
msgstr "Управљајте наплатом и претплатама"
#. js-lingui-id: nvgUPq
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Manage billing information"
msgstr "Управљајте информацијама о наплати"
@@ -8612,6 +8754,11 @@ msgstr "Месец у години"
msgid "monthly"
msgstr "месечно"
#. js-lingui-id: Sew/cK
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Monthly subscription"
msgstr ""
#. js-lingui-id: 6jefe3
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
@@ -8673,7 +8820,7 @@ msgid "Move right"
msgstr "Помери удесно"
#. js-lingui-id: 6qDVmw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Move to a folder"
msgstr ""
@@ -9274,13 +9421,13 @@ msgid "No Files"
msgstr "Нема фајлова"
#. js-lingui-id: pYblOw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
msgid "No folder"
msgstr "Нема фасцикле"
#. js-lingui-id: 6XMhqL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folders available"
msgstr ""
@@ -9454,8 +9601,8 @@ msgstr "Нема резултата"
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/side-panel/components/SidePanelList.tsx
msgid "No results found"
msgstr "Нема резултата"
@@ -10188,11 +10335,26 @@ msgstr "Линк за ресетовање лозинке је послат на
msgid "Paste the code below"
msgstr "Залепите код испод"
#. js-lingui-id: raz2Pm
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Paste your enterprise key below to activate"
msgstr ""
#. js-lingui-id: dNdgvF
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Paste your enterprise key here"
msgstr ""
#. js-lingui-id: I6gXOa
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "Path"
msgstr "Стаза"
#. js-lingui-id: QmXBEc
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Payment issue"
msgstr ""
#. js-lingui-id: UbRKMZ
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
#: src/modules/settings/security/components/approvedAccessDomains/SettingsApprovedAccessDomainsListCard.tsx
@@ -10329,13 +10491,13 @@ msgid "Pick a {objectLabel} record"
msgstr "Изаберите запис за {objectLabel}"
#. js-lingui-id: JqqNlC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Pick a view"
msgstr ""
#. js-lingui-id: Wlba2h
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Pick an object"
msgstr ""
@@ -10953,6 +11115,16 @@ msgstr "Издања"
msgid "Reload"
msgstr "Учитај поново"
#. js-lingui-id: qbM5In
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Reload validity token"
msgstr ""
#. js-lingui-id: MZWnSC
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Reloading..."
msgstr ""
#. js-lingui-id: qlAIQ1
#: src/modules/object-metadata/components/RemoteNavigationDrawerSection.tsx
msgid "Remote"
@@ -11228,7 +11400,7 @@ msgstr "Резултат"
#. js-lingui-id: kx0s+n
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Results"
msgstr "Резултати"
@@ -11367,6 +11539,11 @@ msgstr ""
msgid "row level permission predicate group"
msgstr ""
#. js-lingui-id: xPaeO2
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Row-level security"
msgstr ""
#. js-lingui-id: 7jTlsu
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Ruby"
@@ -11485,6 +11662,8 @@ msgstr ""
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Search"
msgstr "Претрага"
@@ -11521,7 +11700,7 @@ msgid "Search a field..."
msgstr "Претражите поље..."
#. js-lingui-id: ITQFzL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Search a folder..."
msgstr ""
@@ -11689,7 +11868,7 @@ msgid "Search records"
msgstr "Тражите записе"
#. js-lingui-id: rRklUH
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Search records..."
msgstr ""
@@ -11724,11 +11903,13 @@ msgid "Searching the web for {query}"
msgstr ""
#. js-lingui-id: 8sgZS9
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month"
msgstr "седиште / месец"
#. js-lingui-id: aQnWwf
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month - billed yearly"
msgstr "седиште / месец - наплата годишње"
@@ -12556,6 +12737,7 @@ msgstr "Јединствена пријава"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "SSO (SAML / OIDC)"
msgstr "ССО (SAML / OIDC)"
@@ -12600,6 +12782,16 @@ msgstr ""
msgid "Start"
msgstr "Почни"
#. js-lingui-id: ASqWQi
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Start a new enterprise subscription to re-enable enterprise features."
msgstr ""
#. js-lingui-id: OC6rnK
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Start a new enterprise subscription."
msgstr ""
#. js-lingui-id: D3iCkb
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
msgid "Start Date"
@@ -12625,6 +12817,11 @@ msgid "State"
msgstr "Стање"
#. js-lingui-id: uAQUqI
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
@@ -12920,11 +13117,11 @@ msgstr ""
#. js-lingui-id: 0apULK
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -13227,6 +13424,11 @@ msgstr "Постоје обавезне колоне које нису упар
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
msgstr "Још увек постоје редови који садрже грешке. Редови са грешкама ће бити игнорисани приликом подношења."
#. js-lingui-id: CA9PTn
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "There is a payment issue with your subscription. Please update your payment method."
msgstr ""
#. js-lingui-id: WQk7Cf
#: src/modules/activities/timeline-activities/components/TimelineCard.tsx
msgid "There is no activity associated with this record."
@@ -13339,9 +13541,9 @@ msgstr ""
msgid "This database value overrides environment settings. "
msgstr "Ова вредност из базе података замењује подешавања окружења."
#. js-lingui-id: qHAJQ2
#. js-lingui-id: 8IRnd6
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "This feature is part of the Organization Plan"
msgid "This feature is part of the Enterprise Plan"
msgstr ""
#. js-lingui-id: own57K
@@ -13650,6 +13852,8 @@ msgid "Transfer ownership"
msgstr ""
#. js-lingui-id: lhkaAC
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/internal/PlansTags.tsx
msgid "Trial"
msgstr "Проба"
@@ -13840,7 +14044,7 @@ msgid "Type anything..."
msgstr "Укуцајте било шта..."
#. js-lingui-id: UhqKcC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Type to search records"
msgstr ""
@@ -13998,6 +14202,11 @@ msgstr "Неограничени контакти"
msgid "Unlisted"
msgstr "Непостед"
#. js-lingui-id: Ep1uUU
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
msgstr ""
#. js-lingui-id: eQMhFX
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "unordered"
@@ -14067,6 +14276,11 @@ msgstr "ажурирај"
msgid "Update"
msgstr "Ажурирати"
#. js-lingui-id: Y69tSP
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Update payment method"
msgstr ""
#. js-lingui-id: 0KAL3W
#: src/modules/side-panel/hooks/useOpenUpdateMultipleRecordsPageInSidePanel.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
@@ -14305,11 +14519,22 @@ msgstr "Користи подразумевану вредност аплика
msgid "Using default value. Set a custom value to override."
msgstr "Користећи подразумевану вредност. Поставите прилагођену вредност да би заменили."
#. js-lingui-id: zzp4XX
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Valid until"
msgstr ""
#. js-lingui-id: Clr4qp
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Validate Data"
msgstr "Потврдите податке"
#. js-lingui-id: PWZBIT
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Validity token refreshed successfully"
msgstr ""
#. js-lingui-id: wMHvYH
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/KeyValuePairInput.tsx
@@ -14436,6 +14661,8 @@ msgid "View and filter events, page views, object changes"
msgstr ""
#. js-lingui-id: KANz0G
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "View billing details"
msgstr "Прегледај детаље о плаћању"
@@ -14485,6 +14712,11 @@ msgstr "група приказа"
msgid "View installed app"
msgstr ""
#. js-lingui-id: B02hom
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "View invoices"
msgstr ""
#. js-lingui-id: lh5BED
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerQueueMetricsSection.tsx
msgid "View Jobs"
@@ -14503,6 +14735,7 @@ msgstr ""
#. js-lingui-id: ecVcAx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "View Previous AI Chats"
msgstr "Прегледај претходне разговоре са вештачком интелигенцијом"
@@ -14852,6 +15085,7 @@ msgstr "Токови Рада"
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/domains/SettingsDomains.tsx
@@ -15018,6 +15252,11 @@ msgstr "Година"
msgid "yearly"
msgstr "годишње"
#. js-lingui-id: Y1GwUe
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Yearly subscription"
msgstr ""
#. js-lingui-id: +BGee5
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
msgid "years"
@@ -15150,6 +15389,36 @@ msgstr "Ваша тема имејла и наслови састанака ће
msgid "Your emails and events content will be shared with your team."
msgstr "Ваши имејлови и садржај догађаја ће бити подељени са вашим тимом."
#. js-lingui-id: ahEwS4
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features are active"
msgstr ""
#. js-lingui-id: XMZLU/
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features are active but your enterprise key is missing or invalid. This may be expected, but if not, please set a valid signed enterprise key to manage your subscription, or contact support."
msgstr ""
#. js-lingui-id: AxcwNj
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features will be disabled"
msgstr ""
#. js-lingui-id: PT137K
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features will remain active until {cancelAtDate}."
msgstr ""
#. js-lingui-id: 69Siss
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
msgid "Your enterprise key format is deprecated. Please activate a new key to keep enterprise features."
msgstr ""
#. js-lingui-id: NTpA4U
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise subscription has been canceled."
msgstr ""
#. js-lingui-id: 9ivpwk
#: src/pages/settings/SettingsProfile.tsx
msgid "Your name as it will be displayed"
@@ -15160,6 +15429,26 @@ msgstr "Ваше име како ће бити приказано"
msgid "Your name as it will be displayed on the app"
msgstr "Ваше име како ће бити приказано у апликацији"
#. js-lingui-id: 319YPG
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription is active but your validity token is invalid or has expired. Try reloading it or contact support."
msgstr ""
#. js-lingui-id: Fx0axg
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription is scheduled for cancellation"
msgstr ""
#. js-lingui-id: XgIa/8
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription setup was not completed."
msgstr ""
#. js-lingui-id: Z9kbt6
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription status is: {statusLabel}"
msgstr ""
#. js-lingui-id: QOd24n
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and "
+327 -38
View File
@@ -752,23 +752,37 @@ msgid "Actions users can perform on this object"
msgstr "Åtgärder användare kan utföra på det här objektet"
#. js-lingui-id: FQBaXG
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
#: src/modules/settings/data-model/objects/components/SettingsObjectInactiveMenuDropDown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
msgid "Activate"
msgstr "Aktivera"
#. js-lingui-id: eqeFkF
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Activate Enterprise Key"
msgstr ""
#. js-lingui-id: tu8A/k
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
msgid "Activate Workflow"
msgstr "Aktivera arbetsflöde"
#. js-lingui-id: jSZacs
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Activating..."
msgstr ""
#. js-lingui-id: F6pfE9
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/domains/components/SettingsWorkspaceDomainCard.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Active"
@@ -806,6 +820,13 @@ msgstr "Lägg till \"{trimmedName}\" i alternativ"
msgid "Add a {objectLabelSingular}"
msgstr "Lägg till {objectLabelSingular}"
#. js-lingui-id: 7W8nJr
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
msgid "Add a Group"
msgstr ""
#. js-lingui-id: CZDwqQ
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
@@ -818,16 +839,10 @@ msgid "Add a node"
msgstr "Lägg till en nod"
#. js-lingui-id: nGv1DN
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Add a record"
msgstr ""
#. js-lingui-id: r8W+9y
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
msgid "Add a Section"
msgstr ""
#. js-lingui-id: eMc2xs
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
msgid "Add a step"
@@ -1429,7 +1444,7 @@ msgid "All set!"
msgstr "Klart!"
#. js-lingui-id: CHvT6e
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectFlow.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
@@ -1574,6 +1589,7 @@ msgstr "Ett fel uppstod när bilden laddades upp."
#. js-lingui-id: XyOToQ
#: src/utils/get-error-message-from-apollo-error.util.ts
#: src/utils/get-error-message-from-apollo-error.util.ts
#: src/modules/views/hooks/internal/usePerformViewSortAPIPersist.ts
#: src/modules/views/hooks/internal/usePerformViewGroupAPIPersist.ts
#: src/modules/views/hooks/internal/usePerformViewFilterAPIPersist.ts
@@ -1664,6 +1680,7 @@ msgstr "API"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "API & Webhooks"
msgstr "API & Webhooks"
@@ -1940,6 +1957,7 @@ msgstr "Stigande"
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Ask AI"
msgstr "Fråga AI"
@@ -2078,6 +2096,11 @@ msgstr ""
msgid "Attachments"
msgstr "Bilagor"
#. js-lingui-id: y2W2Hg
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Audit logs"
msgstr ""
#. js-lingui-id: EPEFrH
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
@@ -2306,6 +2329,11 @@ msgstr "mellan den {startOrdinal} och {endOrdinal} av månaden"
msgid "Billing"
msgstr "Fakturering"
#. js-lingui-id: dSjFxR
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Billing history"
msgstr ""
#. js-lingui-id: nJGwRf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Billing interval"
@@ -2563,6 +2591,7 @@ msgid "Cancel metered tier switching?"
msgstr "Avbryt debiteringsnivåbyte?"
#. js-lingui-id: rRK/Lf
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel Plan"
msgstr "Avsluta Plan"
@@ -2578,10 +2607,26 @@ msgid "Cancel plan switching?"
msgstr "Avbryt planbyte?"
#. js-lingui-id: N6gPiD
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel your subscription"
msgstr "Avsluta din prenumeration"
#. js-lingui-id: GGWsTU
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Canceled"
msgstr ""
#. js-lingui-id: y4uH7j
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Cancelling"
msgstr ""
#. js-lingui-id: WbPx+C
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Cancels on"
msgstr ""
#. js-lingui-id: XDbjjW
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Cannot delete the only view"
@@ -3077,11 +3122,6 @@ msgstr ""
msgid "Configure fallback login methods for users with SSO bypass permissions"
msgstr "Konfigurera alternativa inloggningsmetoder för användare med SSO-förbikopplingsrättigheter"
#. js-lingui-id: c7wznw
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
msgid "Configure filters"
msgstr "Konfigurera filter"
#. js-lingui-id: ghdb7+
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
msgid "Configure how we should display your events in your calendar"
@@ -3279,6 +3319,7 @@ msgstr ""
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
msgid "Continue"
msgstr "Fortsätt"
@@ -3438,6 +3479,21 @@ msgstr "Kostnad per 1k extra krediter"
msgid "Could not delete approved access domain"
msgstr "Kunde inte ta bort godkänd åtkomstdomän"
#. js-lingui-id: KqYYBp
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not open billing portal. Please check your enterprise key is present, or contact support."
msgstr ""
#. js-lingui-id: ZuI4Sl
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Could not open Stripe. Please contact support."
msgstr ""
#. js-lingui-id: wVw4Am
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not refresh validity token. Please contact support."
msgstr ""
#. js-lingui-id: s8lFtq
#: src/hooks/useCopyToClipboard.tsx
msgid "Couldn't copy to clipboard"
@@ -3815,6 +3871,7 @@ msgstr "Anpassad domän uppdaterad"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Custom objects"
msgstr "Anpassade objekt"
@@ -4917,6 +4974,8 @@ msgid "Edit own profile information"
msgstr ""
#. js-lingui-id: h2KoTu
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Edit payment method, see your invoices and more"
msgstr "Redigera betalningsmetod, se dina fakturor och mer"
@@ -5216,6 +5275,11 @@ msgstr "Förbättrar säkerheten genom att kräva en kod tillsammans med ditt l
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr "Njut av en {withCreditCardTrialPeriodDuration}-dagars gratis provperiod"
#. js-lingui-id: 6iUnle
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Enjoy a 30-day free trial"
msgstr ""
#. js-lingui-id: T/N+2Z
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormRawJsonFieldInput.tsx
@@ -5422,6 +5486,9 @@ msgstr "Ange din API-nyckel"
#. js-lingui-id: GpB8YV
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
msgid "Enterprise"
msgstr "Företag"
@@ -5430,6 +5497,22 @@ msgstr "Företag"
msgid "Enterprise Feature"
msgstr ""
#. js-lingui-id: S5c4pl
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Enterprise License"
msgstr ""
#. js-lingui-id: KGE5g0
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Enterprise license activated successfully"
msgstr ""
#. js-lingui-id: SLuq/l
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Entity ID"
@@ -5470,6 +5553,11 @@ msgstr "Radering av mjukt raderade poster"
msgid "Error"
msgstr "Fel"
#. js-lingui-id: VouTsQ
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error activating enterprise license"
msgstr ""
#. js-lingui-id: GHKxvg
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error deleting api key."
@@ -5495,11 +5583,6 @@ msgstr "Fel vid radering av SSO-identitetsleverantör"
msgid "Error editing SSO Identity Provider"
msgstr "Fel vid redigering av SSO-identitetsleverantör"
#. js-lingui-id: GsIfmO
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerMetricsGraph.tsx
msgid "Error fetching worker metrics: {errorMessage}"
msgstr "Fel vid hämtning av arbetarmätvärden: {errorMessage}"
#. js-lingui-id: GdBN5t
#: src/modules/error-handler/components/AppRootErrorFallback.tsx
msgid "Error illustration"
@@ -5530,11 +5613,26 @@ msgstr "Fel vid inläsning av meddelande"
msgid "Error Message"
msgstr "Felmeddelande"
#. js-lingui-id: Mox63G
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error opening billing portal"
msgstr ""
#. js-lingui-id: e/eieW
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Error opening Stripe"
msgstr ""
#. js-lingui-id: bT/0cM
#: src/modules/ui/field/display/components/PhonesDisplay.tsx
msgid "Error parsing additional phones: {error}"
msgstr "Fel vid tolkning av ytterligare telefonnummer: {error}"
#. js-lingui-id: zRXcyv
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error refreshing validity token. Please contact support."
msgstr ""
#. js-lingui-id: PfAip2
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error regenerating api key."
@@ -5997,6 +6095,11 @@ msgstr ""
msgid "Failed to {translatedOperationType} {translatedMetadataName}. Related {relatedEntityNames} validation failed. Please check your configuration and try again."
msgstr ""
#. js-lingui-id: R1XJV1
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Failed to activate enterprise license. Please check your key or contact support."
msgstr ""
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to activate skill"
@@ -6374,7 +6477,6 @@ msgstr ""
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/views/components/ViewBarFilterButton.tsx
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
#: src/modules/settings/roles/components/SettingsRolesList.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
@@ -6397,6 +6499,7 @@ msgid "Filter group rule options"
msgstr "Alternativ för filterregelgrupp"
#. js-lingui-id: cSev+j
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
msgid "Filters"
msgstr "Filter"
@@ -6467,6 +6570,11 @@ msgstr "Förnamn"
msgid "First name can not be empty"
msgstr "Förnamn får inte vara tomt"
#. js-lingui-id: JREYkg
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Fix the payment issue to keep your enterprise features active."
msgstr ""
#. js-lingui-id: ylQd2j
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
@@ -6486,7 +6594,7 @@ msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
msgid "Folders"
msgstr "Mappar"
@@ -6635,6 +6743,22 @@ msgstr "Genererade filer"
msgid "German"
msgstr "Tyska"
#. js-lingui-id: sqtljx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Get Enterprise"
msgstr ""
#. js-lingui-id: o2kSwB
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Get Enterprise Key"
msgstr ""
#. js-lingui-id: NXEW3h
#: src/pages/onboarding/InviteTeam.tsx
msgid "Get the most out of your workspace by inviting your team."
@@ -6655,6 +6779,12 @@ msgstr "Global"
msgid "Go Back"
msgstr ""
#. js-lingui-id: Hb4Cgz
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Go to billing portal"
msgstr ""
#. js-lingui-id: mUbv8L
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
msgid "Go to Companies"
@@ -7240,6 +7370,11 @@ msgstr ""
msgid "Inbox"
msgstr "Inkorg"
#. js-lingui-id: mtGDyy
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Incomplete"
msgstr ""
#. js-lingui-id: O5wNUa
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "index"
@@ -7882,9 +8017,8 @@ msgid "Launch manually"
msgstr "Starta manuellt"
#. js-lingui-id: rdU729
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsLayout.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -7957,6 +8091,12 @@ msgstr ""
msgid "Less than or equal"
msgstr "Mindre än eller lika med"
#. js-lingui-id: 3qg5Ro
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Licensee"
msgstr ""
#. js-lingui-id: 1njn7W
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownThemesComponents.tsx
@@ -8260,6 +8400,8 @@ msgid "Manage billing and subscriptions"
msgstr "Hantera fakturering och prenumerationer"
#. js-lingui-id: nvgUPq
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Manage billing information"
msgstr "Hantera faktureringsinformation"
@@ -8614,6 +8756,11 @@ msgstr "Månad på året"
msgid "monthly"
msgstr "månadsvis"
#. js-lingui-id: Sew/cK
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Monthly subscription"
msgstr ""
#. js-lingui-id: 6jefe3
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
@@ -8675,7 +8822,7 @@ msgid "Move right"
msgstr "Flytta åt höger"
#. js-lingui-id: 6qDVmw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Move to a folder"
msgstr ""
@@ -9276,13 +9423,13 @@ msgid "No Files"
msgstr "Inga filer"
#. js-lingui-id: pYblOw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
msgid "No folder"
msgstr "Ingen mapp"
#. js-lingui-id: 6XMhqL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folders available"
msgstr ""
@@ -9456,8 +9603,8 @@ msgstr "Inga resultat"
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/side-panel/components/SidePanelList.tsx
msgid "No results found"
msgstr "Inga resultat hittades"
@@ -10190,11 +10337,26 @@ msgstr "En länk för återställning av lösenordet har skickats till e-postadr
msgid "Paste the code below"
msgstr "Klistra in koden nedan"
#. js-lingui-id: raz2Pm
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Paste your enterprise key below to activate"
msgstr ""
#. js-lingui-id: dNdgvF
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Paste your enterprise key here"
msgstr ""
#. js-lingui-id: I6gXOa
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "Path"
msgstr "Sökväg"
#. js-lingui-id: QmXBEc
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Payment issue"
msgstr ""
#. js-lingui-id: UbRKMZ
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
#: src/modules/settings/security/components/approvedAccessDomains/SettingsApprovedAccessDomainsListCard.tsx
@@ -10331,13 +10493,13 @@ msgid "Pick a {objectLabel} record"
msgstr "Välj en {objectLabel} post"
#. js-lingui-id: JqqNlC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Pick a view"
msgstr ""
#. js-lingui-id: Wlba2h
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Pick an object"
msgstr ""
@@ -10955,6 +11117,16 @@ msgstr "Utgåvor"
msgid "Reload"
msgstr "Ladda om"
#. js-lingui-id: qbM5In
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Reload validity token"
msgstr ""
#. js-lingui-id: MZWnSC
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Reloading..."
msgstr ""
#. js-lingui-id: qlAIQ1
#: src/modules/object-metadata/components/RemoteNavigationDrawerSection.tsx
msgid "Remote"
@@ -11230,7 +11402,7 @@ msgstr "Resultat"
#. js-lingui-id: kx0s+n
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Results"
msgstr "Resultat"
@@ -11369,6 +11541,11 @@ msgstr ""
msgid "row level permission predicate group"
msgstr ""
#. js-lingui-id: xPaeO2
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Row-level security"
msgstr ""
#. js-lingui-id: 7jTlsu
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Ruby"
@@ -11489,6 +11666,8 @@ msgstr ""
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Search"
msgstr "Sök"
@@ -11525,7 +11704,7 @@ msgid "Search a field..."
msgstr "Sök ett fält..."
#. js-lingui-id: ITQFzL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Search a folder..."
msgstr ""
@@ -11693,7 +11872,7 @@ msgid "Search records"
msgstr "Sök poster"
#. js-lingui-id: rRklUH
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Search records..."
msgstr ""
@@ -11728,11 +11907,13 @@ msgid "Searching the web for {query}"
msgstr ""
#. js-lingui-id: 8sgZS9
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month"
msgstr "plats / månad"
#. js-lingui-id: aQnWwf
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month - billed yearly"
msgstr "plats / månad - faktureras årligen"
@@ -12560,6 +12741,7 @@ msgstr "Enkel inloggning"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
@@ -12604,6 +12786,16 @@ msgstr ""
msgid "Start"
msgstr "Starta"
#. js-lingui-id: ASqWQi
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Start a new enterprise subscription to re-enable enterprise features."
msgstr ""
#. js-lingui-id: OC6rnK
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Start a new enterprise subscription."
msgstr ""
#. js-lingui-id: D3iCkb
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
msgid "Start Date"
@@ -12629,6 +12821,11 @@ msgid "State"
msgstr "Delstat"
#. js-lingui-id: uAQUqI
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
@@ -12926,11 +13123,11 @@ msgstr ""
#. js-lingui-id: 0apULK
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -13239,6 +13436,11 @@ msgstr "Det finns obligatoriska kolumner som inte är matchade eller ignorerade.
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
msgstr "Det finns fortfarande några rader som innehåller fel. Rader med fel kommer att ignoreras vid inlämning."
#. js-lingui-id: CA9PTn
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "There is a payment issue with your subscription. Please update your payment method."
msgstr ""
#. js-lingui-id: WQk7Cf
#: src/modules/activities/timeline-activities/components/TimelineCard.tsx
msgid "There is no activity associated with this record."
@@ -13353,9 +13555,9 @@ msgstr ""
msgid "This database value overrides environment settings. "
msgstr "Detta databasvärde åsidosätter miljöinställningar."
#. js-lingui-id: qHAJQ2
#. js-lingui-id: 8IRnd6
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "This feature is part of the Organization Plan"
msgid "This feature is part of the Enterprise Plan"
msgstr ""
#. js-lingui-id: own57K
@@ -13664,6 +13866,8 @@ msgid "Transfer ownership"
msgstr ""
#. js-lingui-id: lhkaAC
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/internal/PlansTags.tsx
msgid "Trial"
msgstr "Provperiod"
@@ -13854,7 +14058,7 @@ msgid "Type anything..."
msgstr "Skriv något..."
#. js-lingui-id: UhqKcC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Type to search records"
msgstr ""
@@ -14012,6 +14216,11 @@ msgstr "Obegränsat med kontakter"
msgid "Unlisted"
msgstr "Olistar"
#. js-lingui-id: Ep1uUU
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
msgstr ""
#. js-lingui-id: eQMhFX
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "unordered"
@@ -14081,6 +14290,11 @@ msgstr "uppdatera"
msgid "Update"
msgstr "Uppdatera"
#. js-lingui-id: Y69tSP
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Update payment method"
msgstr ""
#. js-lingui-id: 0KAL3W
#: src/modules/side-panel/hooks/useOpenUpdateMultipleRecordsPageInSidePanel.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
@@ -14319,11 +14533,22 @@ msgstr "Använder standardapplikationsvärde. Konfigurera via miljövariabler."
msgid "Using default value. Set a custom value to override."
msgstr "Använder standardvärde. Ange ett anpassat värde för att åsidosätta."
#. js-lingui-id: zzp4XX
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Valid until"
msgstr ""
#. js-lingui-id: Clr4qp
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Validate Data"
msgstr "Validera data"
#. js-lingui-id: PWZBIT
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Validity token refreshed successfully"
msgstr ""
#. js-lingui-id: wMHvYH
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/KeyValuePairInput.tsx
@@ -14450,6 +14675,8 @@ msgid "View and filter events, page views, object changes"
msgstr ""
#. js-lingui-id: KANz0G
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "View billing details"
msgstr "Visa fakturadetaljer"
@@ -14499,6 +14726,11 @@ msgstr "view group"
msgid "View installed app"
msgstr ""
#. js-lingui-id: B02hom
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "View invoices"
msgstr ""
#. js-lingui-id: lh5BED
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerQueueMetricsSection.tsx
msgid "View Jobs"
@@ -14517,6 +14749,7 @@ msgstr ""
#. js-lingui-id: ecVcAx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "View Previous AI Chats"
msgstr "Visa tidigare AI-konversationer"
@@ -14866,6 +15099,7 @@ msgstr "Arbetsflöden"
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/domains/SettingsDomains.tsx
@@ -15032,6 +15266,11 @@ msgstr "År"
msgid "yearly"
msgstr "årligen"
#. js-lingui-id: Y1GwUe
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Yearly subscription"
msgstr ""
#. js-lingui-id: +BGee5
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
msgid "years"
@@ -15164,6 +15403,36 @@ msgstr "Dina e-postämnen och mötestitlar kommer att delas med ditt team."
msgid "Your emails and events content will be shared with your team."
msgstr "Ditt innehåll i e-post och händelser kommer att delas med ditt team."
#. js-lingui-id: ahEwS4
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features are active"
msgstr ""
#. js-lingui-id: XMZLU/
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features are active but your enterprise key is missing or invalid. This may be expected, but if not, please set a valid signed enterprise key to manage your subscription, or contact support."
msgstr ""
#. js-lingui-id: AxcwNj
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features will be disabled"
msgstr ""
#. js-lingui-id: PT137K
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features will remain active until {cancelAtDate}."
msgstr ""
#. js-lingui-id: 69Siss
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
msgid "Your enterprise key format is deprecated. Please activate a new key to keep enterprise features."
msgstr ""
#. js-lingui-id: NTpA4U
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise subscription has been canceled."
msgstr ""
#. js-lingui-id: 9ivpwk
#: src/pages/settings/SettingsProfile.tsx
msgid "Your name as it will be displayed"
@@ -15174,6 +15443,26 @@ msgstr "Ditt namn som det kommer att visas"
msgid "Your name as it will be displayed on the app"
msgstr "Ditt namn som det kommer att visas i appen"
#. js-lingui-id: 319YPG
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription is active but your validity token is invalid or has expired. Try reloading it or contact support."
msgstr ""
#. js-lingui-id: Fx0axg
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription is scheduled for cancellation"
msgstr ""
#. js-lingui-id: XgIa/8
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription setup was not completed."
msgstr ""
#. js-lingui-id: Z9kbt6
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription status is: {statusLabel}"
msgstr ""
#. js-lingui-id: QOd24n
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and "
+327 -38
View File
@@ -752,23 +752,37 @@ msgid "Actions users can perform on this object"
msgstr "Kullanıcıların bu nesne üzerinde gerçekleştirebileceği eylemler"
#. js-lingui-id: FQBaXG
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
#: src/modules/settings/data-model/objects/components/SettingsObjectInactiveMenuDropDown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
msgid "Activate"
msgstr "Aktif Et"
#. js-lingui-id: eqeFkF
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Activate Enterprise Key"
msgstr ""
#. js-lingui-id: tu8A/k
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
msgid "Activate Workflow"
msgstr "İş Akışını Aktif Et"
#. js-lingui-id: jSZacs
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Activating..."
msgstr ""
#. js-lingui-id: F6pfE9
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/domains/components/SettingsWorkspaceDomainCard.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Active"
@@ -806,6 +820,13 @@ msgstr "\"{trimmedName}\" seçeneğe ekle"
msgid "Add a {objectLabelSingular}"
msgstr "Bir {objectLabelSingular} ekle"
#. js-lingui-id: 7W8nJr
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
msgid "Add a Group"
msgstr ""
#. js-lingui-id: CZDwqQ
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
@@ -818,16 +839,10 @@ msgid "Add a node"
msgstr "Bir düğüm ekle"
#. js-lingui-id: nGv1DN
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Add a record"
msgstr ""
#. js-lingui-id: r8W+9y
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
msgid "Add a Section"
msgstr ""
#. js-lingui-id: eMc2xs
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
msgid "Add a step"
@@ -1429,7 +1444,7 @@ msgid "All set!"
msgstr "Her şey hazır!"
#. js-lingui-id: CHvT6e
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectFlow.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
@@ -1574,6 +1589,7 @@ msgstr "Resim yüklenirken bir hata oluştu."
#. js-lingui-id: XyOToQ
#: src/utils/get-error-message-from-apollo-error.util.ts
#: src/utils/get-error-message-from-apollo-error.util.ts
#: src/modules/views/hooks/internal/usePerformViewSortAPIPersist.ts
#: src/modules/views/hooks/internal/usePerformViewGroupAPIPersist.ts
#: src/modules/views/hooks/internal/usePerformViewFilterAPIPersist.ts
@@ -1664,6 +1680,7 @@ msgstr "API"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "API & Webhooks"
msgstr "API & Webhook'lar"
@@ -1940,6 +1957,7 @@ msgstr "Artan"
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Ask AI"
msgstr "AI Sor"
@@ -2078,6 +2096,11 @@ msgstr ""
msgid "Attachments"
msgstr "Ekler"
#. js-lingui-id: y2W2Hg
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Audit logs"
msgstr ""
#. js-lingui-id: EPEFrH
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
@@ -2306,6 +2329,11 @@ msgstr "ayın {startOrdinal} ve {endOrdinal} arasında"
msgid "Billing"
msgstr "Faturalandırma"
#. js-lingui-id: dSjFxR
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Billing history"
msgstr ""
#. js-lingui-id: nJGwRf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Billing interval"
@@ -2563,6 +2591,7 @@ msgid "Cancel metered tier switching?"
msgstr "Ölçümlenen seviye değişikliğini iptal et?"
#. js-lingui-id: rRK/Lf
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel Plan"
msgstr "Planı İptal Et"
@@ -2578,10 +2607,26 @@ msgid "Cancel plan switching?"
msgstr "Plan değişikliğini iptal et?"
#. js-lingui-id: N6gPiD
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel your subscription"
msgstr "Aboneliğinizi iptal edin"
#. js-lingui-id: GGWsTU
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Canceled"
msgstr ""
#. js-lingui-id: y4uH7j
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Cancelling"
msgstr ""
#. js-lingui-id: WbPx+C
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Cancels on"
msgstr ""
#. js-lingui-id: XDbjjW
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Cannot delete the only view"
@@ -3077,11 +3122,6 @@ msgstr ""
msgid "Configure fallback login methods for users with SSO bypass permissions"
msgstr "SSO atlama izinleri olan kullanıcılar için yedek giriş yöntemlerini yapılandırın"
#. js-lingui-id: c7wznw
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
msgid "Configure filters"
msgstr "Filtreleri yapılandır"
#. js-lingui-id: ghdb7+
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
msgid "Configure how we should display your events in your calendar"
@@ -3279,6 +3319,7 @@ msgstr ""
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
msgid "Continue"
msgstr "Devam"
@@ -3438,6 +3479,21 @@ msgstr "1k Ekstra Kredi Başına Maliyet"
msgid "Could not delete approved access domain"
msgstr "Onaylı erişim alanı silinemedi"
#. js-lingui-id: KqYYBp
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not open billing portal. Please check your enterprise key is present, or contact support."
msgstr ""
#. js-lingui-id: ZuI4Sl
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Could not open Stripe. Please contact support."
msgstr ""
#. js-lingui-id: wVw4Am
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not refresh validity token. Please contact support."
msgstr ""
#. js-lingui-id: s8lFtq
#: src/hooks/useCopyToClipboard.tsx
msgid "Couldn't copy to clipboard"
@@ -3815,6 +3871,7 @@ msgstr "Özel alan adı güncellendi"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Custom objects"
msgstr "Özel nesneler"
@@ -4917,6 +4974,8 @@ msgid "Edit own profile information"
msgstr ""
#. js-lingui-id: h2KoTu
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Edit payment method, see your invoices and more"
msgstr "Ödeme yöntemini düzenleyin, faturalarınızı görün ve daha fazlası"
@@ -5216,6 +5275,11 @@ msgstr "Parolanızla birlikte bir kod gerektirerek güvenliği artırır"
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr "{withCreditCardTrialPeriodDuration} gün süresince ücretsiz deneme süresinin tadını çıkarın"
#. js-lingui-id: 6iUnle
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Enjoy a 30-day free trial"
msgstr ""
#. js-lingui-id: T/N+2Z
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormRawJsonFieldInput.tsx
@@ -5422,6 +5486,9 @@ msgstr "API anahtarınızı girin"
#. js-lingui-id: GpB8YV
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
msgid "Enterprise"
msgstr "Kurumsal"
@@ -5430,6 +5497,22 @@ msgstr "Kurumsal"
msgid "Enterprise Feature"
msgstr ""
#. js-lingui-id: S5c4pl
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Enterprise License"
msgstr ""
#. js-lingui-id: KGE5g0
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Enterprise license activated successfully"
msgstr ""
#. js-lingui-id: SLuq/l
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Entity ID"
@@ -5470,6 +5553,11 @@ msgstr "Yumuşak silinmiş kayıtların silinmesi"
msgid "Error"
msgstr "Hata"
#. js-lingui-id: VouTsQ
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error activating enterprise license"
msgstr ""
#. js-lingui-id: GHKxvg
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error deleting api key."
@@ -5495,11 +5583,6 @@ msgstr "SSO Kimlik Sağlayıcısını silerken hata"
msgid "Error editing SSO Identity Provider"
msgstr "SSO Kimlik Sağlayıcısı düzenlenirken hata"
#. js-lingui-id: GsIfmO
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerMetricsGraph.tsx
msgid "Error fetching worker metrics: {errorMessage}"
msgstr "Worker metrikleri alınırken hata: {errorMessage}"
#. js-lingui-id: GdBN5t
#: src/modules/error-handler/components/AppRootErrorFallback.tsx
msgid "Error illustration"
@@ -5530,11 +5613,26 @@ msgstr "Mesaj yüklenirken hata oluştu"
msgid "Error Message"
msgstr "Hata Mesajı"
#. js-lingui-id: Mox63G
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error opening billing portal"
msgstr ""
#. js-lingui-id: e/eieW
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Error opening Stripe"
msgstr ""
#. js-lingui-id: bT/0cM
#: src/modules/ui/field/display/components/PhonesDisplay.tsx
msgid "Error parsing additional phones: {error}"
msgstr "Ek telefonlar ayrıştırılırken hata: {error}"
#. js-lingui-id: zRXcyv
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error refreshing validity token. Please contact support."
msgstr ""
#. js-lingui-id: PfAip2
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error regenerating api key."
@@ -5997,6 +6095,11 @@ msgstr ""
msgid "Failed to {translatedOperationType} {translatedMetadataName}. Related {relatedEntityNames} validation failed. Please check your configuration and try again."
msgstr ""
#. js-lingui-id: R1XJV1
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Failed to activate enterprise license. Please check your key or contact support."
msgstr ""
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to activate skill"
@@ -6374,7 +6477,6 @@ msgstr ""
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/views/components/ViewBarFilterButton.tsx
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
#: src/modules/settings/roles/components/SettingsRolesList.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
@@ -6397,6 +6499,7 @@ msgid "Filter group rule options"
msgstr "Filtre grup kuralı seçenekleri"
#. js-lingui-id: cSev+j
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
msgid "Filters"
msgstr "Filtreler"
@@ -6467,6 +6570,11 @@ msgstr "İsim"
msgid "First name can not be empty"
msgstr "Ad boş olamaz"
#. js-lingui-id: JREYkg
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Fix the payment issue to keep your enterprise features active."
msgstr ""
#. js-lingui-id: ylQd2j
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
@@ -6486,7 +6594,7 @@ msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
msgid "Folders"
msgstr "Klasörler"
@@ -6635,6 +6743,22 @@ msgstr "Oluşturulan dosyalar"
msgid "German"
msgstr "Almanca"
#. js-lingui-id: sqtljx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Get Enterprise"
msgstr ""
#. js-lingui-id: o2kSwB
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Get Enterprise Key"
msgstr ""
#. js-lingui-id: NXEW3h
#: src/pages/onboarding/InviteTeam.tsx
msgid "Get the most out of your workspace by inviting your team."
@@ -6655,6 +6779,12 @@ msgstr "Küresel"
msgid "Go Back"
msgstr ""
#. js-lingui-id: Hb4Cgz
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Go to billing portal"
msgstr ""
#. js-lingui-id: mUbv8L
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
msgid "Go to Companies"
@@ -7240,6 +7370,11 @@ msgstr ""
msgid "Inbox"
msgstr "Gelen Kutusu"
#. js-lingui-id: mtGDyy
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Incomplete"
msgstr ""
#. js-lingui-id: O5wNUa
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "index"
@@ -7882,9 +8017,8 @@ msgid "Launch manually"
msgstr "Manuel olarak başlat"
#. js-lingui-id: rdU729
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsLayout.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -7957,6 +8091,12 @@ msgstr ""
msgid "Less than or equal"
msgstr "Küçük veya eşit"
#. js-lingui-id: 3qg5Ro
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Licensee"
msgstr ""
#. js-lingui-id: 1njn7W
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownThemesComponents.tsx
@@ -8260,6 +8400,8 @@ msgid "Manage billing and subscriptions"
msgstr "Fatura ve abonelikleri yönet"
#. js-lingui-id: nvgUPq
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Manage billing information"
msgstr "Fatura bilgilerini yönet"
@@ -8612,6 +8754,11 @@ msgstr "Yılın ayı"
msgid "monthly"
msgstr "aylık"
#. js-lingui-id: Sew/cK
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Monthly subscription"
msgstr ""
#. js-lingui-id: 6jefe3
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
@@ -8673,7 +8820,7 @@ msgid "Move right"
msgstr "Sağa taşı"
#. js-lingui-id: 6qDVmw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Move to a folder"
msgstr ""
@@ -9274,13 +9421,13 @@ msgid "No Files"
msgstr "Dosya Yok"
#. js-lingui-id: pYblOw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
msgid "No folder"
msgstr "Klasör yok"
#. js-lingui-id: 6XMhqL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folders available"
msgstr ""
@@ -9454,8 +9601,8 @@ msgstr "Sonuç Yok"
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/side-panel/components/SidePanelList.tsx
msgid "No results found"
msgstr "Sonuç bulunamadı"
@@ -10188,11 +10335,26 @@ msgstr "Parola sıfırlama bağlantısı e-postaya gönderildi"
msgid "Paste the code below"
msgstr "Aşağıdaki kodu yapıştırın"
#. js-lingui-id: raz2Pm
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Paste your enterprise key below to activate"
msgstr ""
#. js-lingui-id: dNdgvF
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Paste your enterprise key here"
msgstr ""
#. js-lingui-id: I6gXOa
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "Path"
msgstr "Yol"
#. js-lingui-id: QmXBEc
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Payment issue"
msgstr ""
#. js-lingui-id: UbRKMZ
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
#: src/modules/settings/security/components/approvedAccessDomains/SettingsApprovedAccessDomainsListCard.tsx
@@ -10329,13 +10491,13 @@ msgid "Pick a {objectLabel} record"
msgstr "Bir {objectLabel} kaydı seç"
#. js-lingui-id: JqqNlC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Pick a view"
msgstr ""
#. js-lingui-id: Wlba2h
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Pick an object"
msgstr ""
@@ -10953,6 +11115,16 @@ msgstr "Sürümler"
msgid "Reload"
msgstr "Yeniden Yükle"
#. js-lingui-id: qbM5In
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Reload validity token"
msgstr ""
#. js-lingui-id: MZWnSC
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Reloading..."
msgstr ""
#. js-lingui-id: qlAIQ1
#: src/modules/object-metadata/components/RemoteNavigationDrawerSection.tsx
msgid "Remote"
@@ -11228,7 +11400,7 @@ msgstr "Sonuç"
#. js-lingui-id: kx0s+n
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Results"
msgstr "Sonuçlar"
@@ -11367,6 +11539,11 @@ msgstr ""
msgid "row level permission predicate group"
msgstr ""
#. js-lingui-id: xPaeO2
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Row-level security"
msgstr ""
#. js-lingui-id: 7jTlsu
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Ruby"
@@ -11485,6 +11662,8 @@ msgstr ""
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Search"
msgstr "Arama"
@@ -11521,7 +11700,7 @@ msgid "Search a field..."
msgstr "Bir alan ara..."
#. js-lingui-id: ITQFzL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Search a folder..."
msgstr ""
@@ -11689,7 +11868,7 @@ msgid "Search records"
msgstr "Kayıtları ara"
#. js-lingui-id: rRklUH
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Search records..."
msgstr ""
@@ -11724,11 +11903,13 @@ msgid "Searching the web for {query}"
msgstr ""
#. js-lingui-id: 8sgZS9
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month"
msgstr "koltuk / ay"
#. js-lingui-id: aQnWwf
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month - billed yearly"
msgstr "koltuk / ay - yıllık faturalandırılır"
@@ -12556,6 +12737,7 @@ msgstr "Tek Oturum Açma"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
@@ -12600,6 +12782,16 @@ msgstr ""
msgid "Start"
msgstr "Başlat"
#. js-lingui-id: ASqWQi
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Start a new enterprise subscription to re-enable enterprise features."
msgstr ""
#. js-lingui-id: OC6rnK
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Start a new enterprise subscription."
msgstr ""
#. js-lingui-id: D3iCkb
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
msgid "Start Date"
@@ -12625,6 +12817,11 @@ msgid "State"
msgstr "Durum"
#. js-lingui-id: uAQUqI
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
@@ -12920,11 +13117,11 @@ msgstr ""
#. js-lingui-id: 0apULK
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -13227,6 +13424,11 @@ msgstr "Eşleşmeyen veya göz ardı edilen zorunlu sütunlar var. Devam etmek i
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
msgstr "Hâlâ bazı satırlarda hata var. Hatalı satırlar gönderilirken göz ardı edilecektir."
#. js-lingui-id: CA9PTn
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "There is a payment issue with your subscription. Please update your payment method."
msgstr ""
#. js-lingui-id: WQk7Cf
#: src/modules/activities/timeline-activities/components/TimelineCard.tsx
msgid "There is no activity associated with this record."
@@ -13339,9 +13541,9 @@ msgstr ""
msgid "This database value overrides environment settings. "
msgstr "Bu veritabanı değeri çevre ayarlarının üzerine yazar."
#. js-lingui-id: qHAJQ2
#. js-lingui-id: 8IRnd6
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "This feature is part of the Organization Plan"
msgid "This feature is part of the Enterprise Plan"
msgstr ""
#. js-lingui-id: own57K
@@ -13650,6 +13852,8 @@ msgid "Transfer ownership"
msgstr ""
#. js-lingui-id: lhkaAC
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/internal/PlansTags.tsx
msgid "Trial"
msgstr "Deneme"
@@ -13840,7 +14044,7 @@ msgid "Type anything..."
msgstr "Bir şeyler yazın..."
#. js-lingui-id: UhqKcC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Type to search records"
msgstr ""
@@ -13998,6 +14202,11 @@ msgstr "Sınırsız kişilerle iletişim"
msgid "Unlisted"
msgstr "Liste dışı"
#. js-lingui-id: Ep1uUU
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
msgstr ""
#. js-lingui-id: eQMhFX
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "unordered"
@@ -14067,6 +14276,11 @@ msgstr "güncelle"
msgid "Update"
msgstr "Güncelle"
#. js-lingui-id: Y69tSP
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Update payment method"
msgstr ""
#. js-lingui-id: 0KAL3W
#: src/modules/side-panel/hooks/useOpenUpdateMultipleRecordsPageInSidePanel.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
@@ -14305,11 +14519,22 @@ msgstr "Varsayılan uygulama değeri kullanılıyor. Ortam değişkenleri üzeri
msgid "Using default value. Set a custom value to override."
msgstr "Varsayılan değer kullanılıyor. Üzerine yazmak için özel bir değer belirleyin."
#. js-lingui-id: zzp4XX
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Valid until"
msgstr ""
#. js-lingui-id: Clr4qp
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Validate Data"
msgstr "Verileri doğrula"
#. js-lingui-id: PWZBIT
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Validity token refreshed successfully"
msgstr ""
#. js-lingui-id: wMHvYH
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/KeyValuePairInput.tsx
@@ -14436,6 +14661,8 @@ msgid "View and filter events, page views, object changes"
msgstr ""
#. js-lingui-id: KANz0G
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "View billing details"
msgstr "Fatura detaylarını görüntüle"
@@ -14485,6 +14712,11 @@ msgstr "görünüm grubu"
msgid "View installed app"
msgstr ""
#. js-lingui-id: B02hom
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "View invoices"
msgstr ""
#. js-lingui-id: lh5BED
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerQueueMetricsSection.tsx
msgid "View Jobs"
@@ -14503,6 +14735,7 @@ msgstr ""
#. js-lingui-id: ecVcAx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "View Previous AI Chats"
msgstr "Önceki AI Sohbetlerini Görüntüle"
@@ -14852,6 +15085,7 @@ msgstr "İş Akışları"
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/domains/SettingsDomains.tsx
@@ -15018,6 +15252,11 @@ msgstr "Yıl"
msgid "yearly"
msgstr "yıllık"
#. js-lingui-id: Y1GwUe
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Yearly subscription"
msgstr ""
#. js-lingui-id: +BGee5
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
msgid "years"
@@ -15150,6 +15389,36 @@ msgstr "E-posta konularınız ve toplantı başlıklarınız ekibinizle paylaş
msgid "Your emails and events content will be shared with your team."
msgstr "E-postalarınızın ve etkinlik içeriklerinizin içeriği ekibinizle paylaşılacak."
#. js-lingui-id: ahEwS4
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features are active"
msgstr ""
#. js-lingui-id: XMZLU/
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features are active but your enterprise key is missing or invalid. This may be expected, but if not, please set a valid signed enterprise key to manage your subscription, or contact support."
msgstr ""
#. js-lingui-id: AxcwNj
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features will be disabled"
msgstr ""
#. js-lingui-id: PT137K
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features will remain active until {cancelAtDate}."
msgstr ""
#. js-lingui-id: 69Siss
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
msgid "Your enterprise key format is deprecated. Please activate a new key to keep enterprise features."
msgstr ""
#. js-lingui-id: NTpA4U
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise subscription has been canceled."
msgstr ""
#. js-lingui-id: 9ivpwk
#: src/pages/settings/SettingsProfile.tsx
msgid "Your name as it will be displayed"
@@ -15160,6 +15429,26 @@ msgstr "Görüntülenecek adınız"
msgid "Your name as it will be displayed on the app"
msgstr "Uygulamada görüntülenecek adınız"
#. js-lingui-id: 319YPG
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription is active but your validity token is invalid or has expired. Try reloading it or contact support."
msgstr ""
#. js-lingui-id: Fx0axg
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription is scheduled for cancellation"
msgstr ""
#. js-lingui-id: XgIa/8
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription setup was not completed."
msgstr ""
#. js-lingui-id: Z9kbt6
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription status is: {statusLabel}"
msgstr ""
#. js-lingui-id: QOd24n
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and "
+327 -38
View File
@@ -752,23 +752,37 @@ msgid "Actions users can perform on this object"
msgstr "Дії, які користувачі можуть виконувати на цьому об'єкті"
#. js-lingui-id: FQBaXG
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
#: src/modules/settings/data-model/objects/components/SettingsObjectInactiveMenuDropDown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
msgid "Activate"
msgstr "Активувати"
#. js-lingui-id: eqeFkF
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Activate Enterprise Key"
msgstr ""
#. js-lingui-id: tu8A/k
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
msgid "Activate Workflow"
msgstr "Активувати процеси роботи"
#. js-lingui-id: jSZacs
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Activating..."
msgstr ""
#. js-lingui-id: F6pfE9
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/domains/components/SettingsWorkspaceDomainCard.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Active"
@@ -806,6 +820,13 @@ msgstr "Додати \"{trimmedName}\" до параметрів"
msgid "Add a {objectLabelSingular}"
msgstr "Додати {objectLabelSingular}"
#. js-lingui-id: 7W8nJr
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
msgid "Add a Group"
msgstr ""
#. js-lingui-id: CZDwqQ
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
@@ -818,16 +839,10 @@ msgid "Add a node"
msgstr "Додати вузол"
#. js-lingui-id: nGv1DN
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Add a record"
msgstr ""
#. js-lingui-id: r8W+9y
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
msgid "Add a Section"
msgstr ""
#. js-lingui-id: eMc2xs
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
msgid "Add a step"
@@ -1429,7 +1444,7 @@ msgid "All set!"
msgstr "Готово!"
#. js-lingui-id: CHvT6e
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectFlow.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
@@ -1574,6 +1589,7 @@ msgstr "Під час завантаження зображення сталас
#. js-lingui-id: XyOToQ
#: src/utils/get-error-message-from-apollo-error.util.ts
#: src/utils/get-error-message-from-apollo-error.util.ts
#: src/modules/views/hooks/internal/usePerformViewSortAPIPersist.ts
#: src/modules/views/hooks/internal/usePerformViewGroupAPIPersist.ts
#: src/modules/views/hooks/internal/usePerformViewFilterAPIPersist.ts
@@ -1664,6 +1680,7 @@ msgstr "API"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "API & Webhooks"
msgstr "API та Webhooks"
@@ -1940,6 +1957,7 @@ msgstr "За зростанням"
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Ask AI"
msgstr "Запитати AI"
@@ -2078,6 +2096,11 @@ msgstr ""
msgid "Attachments"
msgstr "Вкладення"
#. js-lingui-id: y2W2Hg
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Audit logs"
msgstr ""
#. js-lingui-id: EPEFrH
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
@@ -2306,6 +2329,11 @@ msgstr "між {startOrdinal} та {endOrdinal} числами місяця"
msgid "Billing"
msgstr "Розрахунки"
#. js-lingui-id: dSjFxR
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Billing history"
msgstr ""
#. js-lingui-id: nJGwRf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Billing interval"
@@ -2563,6 +2591,7 @@ msgid "Cancel metered tier switching?"
msgstr "Скасувати перемикання тарифу з лічильником?"
#. js-lingui-id: rRK/Lf
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel Plan"
msgstr "Скасувати план"
@@ -2578,10 +2607,26 @@ msgid "Cancel plan switching?"
msgstr "Скасувати перемикання плану?"
#. js-lingui-id: N6gPiD
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel your subscription"
msgstr "Скасувати підписку"
#. js-lingui-id: GGWsTU
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Canceled"
msgstr ""
#. js-lingui-id: y4uH7j
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Cancelling"
msgstr ""
#. js-lingui-id: WbPx+C
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Cancels on"
msgstr ""
#. js-lingui-id: XDbjjW
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Cannot delete the only view"
@@ -3077,11 +3122,6 @@ msgstr ""
msgid "Configure fallback login methods for users with SSO bypass permissions"
msgstr "Налаштуйте резервні методи входу для користувачів з правами обходу SSO"
#. js-lingui-id: c7wznw
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
msgid "Configure filters"
msgstr "Налаштувати фільтри"
#. js-lingui-id: ghdb7+
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
msgid "Configure how we should display your events in your calendar"
@@ -3279,6 +3319,7 @@ msgstr ""
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
msgid "Continue"
msgstr "Продовжити"
@@ -3438,6 +3479,21 @@ msgstr "Вартість за 1k додаткових кредитів"
msgid "Could not delete approved access domain"
msgstr "Не вдалося видалити затверджений домен доступу"
#. js-lingui-id: KqYYBp
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not open billing portal. Please check your enterprise key is present, or contact support."
msgstr ""
#. js-lingui-id: ZuI4Sl
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Could not open Stripe. Please contact support."
msgstr ""
#. js-lingui-id: wVw4Am
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not refresh validity token. Please contact support."
msgstr ""
#. js-lingui-id: s8lFtq
#: src/hooks/useCopyToClipboard.tsx
msgid "Couldn't copy to clipboard"
@@ -3815,6 +3871,7 @@ msgstr "Користувацький домен оновлено"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Custom objects"
msgstr "Користувацькі об'єкти"
@@ -4917,6 +4974,8 @@ msgid "Edit own profile information"
msgstr ""
#. js-lingui-id: h2KoTu
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Edit payment method, see your invoices and more"
msgstr "Редагувати спосіб оплати, переглядати свої рахунки та більше"
@@ -5216,6 +5275,11 @@ msgstr "Покращує безпеку, вимагаючи введення к
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr "Насолоджуйтеся {withCreditCardTrialPeriodDuration}-денним безкоштовним пробним періодом"
#. js-lingui-id: 6iUnle
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Enjoy a 30-day free trial"
msgstr ""
#. js-lingui-id: T/N+2Z
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormRawJsonFieldInput.tsx
@@ -5422,6 +5486,9 @@ msgstr "Введіть свій ключ API"
#. js-lingui-id: GpB8YV
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
msgid "Enterprise"
msgstr "Підприємство"
@@ -5430,6 +5497,22 @@ msgstr "Підприємство"
msgid "Enterprise Feature"
msgstr ""
#. js-lingui-id: S5c4pl
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Enterprise License"
msgstr ""
#. js-lingui-id: KGE5g0
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Enterprise license activated successfully"
msgstr ""
#. js-lingui-id: SLuq/l
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Entity ID"
@@ -5470,6 +5553,11 @@ msgstr "Видалення м'яко видалених записів"
msgid "Error"
msgstr "Помилка"
#. js-lingui-id: VouTsQ
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error activating enterprise license"
msgstr ""
#. js-lingui-id: GHKxvg
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error deleting api key."
@@ -5495,11 +5583,6 @@ msgstr "Помилка видалення провайдера єдиної си
msgid "Error editing SSO Identity Provider"
msgstr "Помилка редагування провайдера єдиної системи входу"
#. js-lingui-id: GsIfmO
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerMetricsGraph.tsx
msgid "Error fetching worker metrics: {errorMessage}"
msgstr "Помилка отримання метрик воркера: {errorMessage}"
#. js-lingui-id: GdBN5t
#: src/modules/error-handler/components/AppRootErrorFallback.tsx
msgid "Error illustration"
@@ -5530,11 +5613,26 @@ msgstr "Помилка завантаження повідомлення"
msgid "Error Message"
msgstr "Повідомлення про помилку"
#. js-lingui-id: Mox63G
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error opening billing portal"
msgstr ""
#. js-lingui-id: e/eieW
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Error opening Stripe"
msgstr ""
#. js-lingui-id: bT/0cM
#: src/modules/ui/field/display/components/PhonesDisplay.tsx
msgid "Error parsing additional phones: {error}"
msgstr "Помилка розбору додаткових телефонів: {error}"
#. js-lingui-id: zRXcyv
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error refreshing validity token. Please contact support."
msgstr ""
#. js-lingui-id: PfAip2
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error regenerating api key."
@@ -5997,6 +6095,11 @@ msgstr ""
msgid "Failed to {translatedOperationType} {translatedMetadataName}. Related {relatedEntityNames} validation failed. Please check your configuration and try again."
msgstr ""
#. js-lingui-id: R1XJV1
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Failed to activate enterprise license. Please check your key or contact support."
msgstr ""
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to activate skill"
@@ -6374,7 +6477,6 @@ msgstr ""
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/views/components/ViewBarFilterButton.tsx
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
#: src/modules/settings/roles/components/SettingsRolesList.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
@@ -6397,6 +6499,7 @@ msgid "Filter group rule options"
msgstr "Параметри правила групи фільтра"
#. js-lingui-id: cSev+j
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
msgid "Filters"
msgstr "Фільтри"
@@ -6467,6 +6570,11 @@ msgstr "Ім’я"
msgid "First name can not be empty"
msgstr "Ім’я не може бути порожнім"
#. js-lingui-id: JREYkg
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Fix the payment issue to keep your enterprise features active."
msgstr ""
#. js-lingui-id: ylQd2j
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
@@ -6486,7 +6594,7 @@ msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
msgid "Folders"
msgstr "Папки"
@@ -6635,6 +6743,22 @@ msgstr "Згенеровані файли"
msgid "German"
msgstr "Німецька"
#. js-lingui-id: sqtljx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Get Enterprise"
msgstr ""
#. js-lingui-id: o2kSwB
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Get Enterprise Key"
msgstr ""
#. js-lingui-id: NXEW3h
#: src/pages/onboarding/InviteTeam.tsx
msgid "Get the most out of your workspace by inviting your team."
@@ -6655,6 +6779,12 @@ msgstr "Глобальні"
msgid "Go Back"
msgstr ""
#. js-lingui-id: Hb4Cgz
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Go to billing portal"
msgstr ""
#. js-lingui-id: mUbv8L
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
msgid "Go to Companies"
@@ -7240,6 +7370,11 @@ msgstr ""
msgid "Inbox"
msgstr "Вхідні"
#. js-lingui-id: mtGDyy
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Incomplete"
msgstr ""
#. js-lingui-id: O5wNUa
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "index"
@@ -7882,9 +8017,8 @@ msgid "Launch manually"
msgstr "Запустити вручну"
#. js-lingui-id: rdU729
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsLayout.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -7957,6 +8091,12 @@ msgstr ""
msgid "Less than or equal"
msgstr "Менше або дорівнює"
#. js-lingui-id: 3qg5Ro
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Licensee"
msgstr ""
#. js-lingui-id: 1njn7W
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownThemesComponents.tsx
@@ -8260,6 +8400,8 @@ msgid "Manage billing and subscriptions"
msgstr "Керуйте обліковою інформацією та передплатами"
#. js-lingui-id: nvgUPq
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Manage billing information"
msgstr "Керування платіжною інформацією"
@@ -8612,6 +8754,11 @@ msgstr "Місяць року"
msgid "monthly"
msgstr "щомісяця"
#. js-lingui-id: Sew/cK
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Monthly subscription"
msgstr ""
#. js-lingui-id: 6jefe3
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
@@ -8673,7 +8820,7 @@ msgid "Move right"
msgstr "Перемістити вправо"
#. js-lingui-id: 6qDVmw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Move to a folder"
msgstr ""
@@ -9274,13 +9421,13 @@ msgid "No Files"
msgstr "Нема файлів"
#. js-lingui-id: pYblOw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
msgid "No folder"
msgstr "Немає папки"
#. js-lingui-id: 6XMhqL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folders available"
msgstr ""
@@ -9454,8 +9601,8 @@ msgstr "Немає результатів"
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/side-panel/components/SidePanelList.tsx
msgid "No results found"
msgstr "Результатів не знайдено"
@@ -10188,11 +10335,26 @@ msgstr "Посилання для скидання пароля було від
msgid "Paste the code below"
msgstr "Вставте код нижче"
#. js-lingui-id: raz2Pm
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Paste your enterprise key below to activate"
msgstr ""
#. js-lingui-id: dNdgvF
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Paste your enterprise key here"
msgstr ""
#. js-lingui-id: I6gXOa
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "Path"
msgstr "Шлях"
#. js-lingui-id: QmXBEc
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Payment issue"
msgstr ""
#. js-lingui-id: UbRKMZ
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
#: src/modules/settings/security/components/approvedAccessDomains/SettingsApprovedAccessDomainsListCard.tsx
@@ -10329,13 +10491,13 @@ msgid "Pick a {objectLabel} record"
msgstr "Виберіть запис {objectLabel}"
#. js-lingui-id: JqqNlC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Pick a view"
msgstr ""
#. js-lingui-id: Wlba2h
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Pick an object"
msgstr ""
@@ -10953,6 +11115,16 @@ msgstr "Релізи"
msgid "Reload"
msgstr "Перезавантажити"
#. js-lingui-id: qbM5In
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Reload validity token"
msgstr ""
#. js-lingui-id: MZWnSC
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Reloading..."
msgstr ""
#. js-lingui-id: qlAIQ1
#: src/modules/object-metadata/components/RemoteNavigationDrawerSection.tsx
msgid "Remote"
@@ -11228,7 +11400,7 @@ msgstr "Результат"
#. js-lingui-id: kx0s+n
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Results"
msgstr "Результати"
@@ -11367,6 +11539,11 @@ msgstr ""
msgid "row level permission predicate group"
msgstr ""
#. js-lingui-id: xPaeO2
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Row-level security"
msgstr ""
#. js-lingui-id: 7jTlsu
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Ruby"
@@ -11485,6 +11662,8 @@ msgstr ""
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Search"
msgstr "Пошук"
@@ -11521,7 +11700,7 @@ msgid "Search a field..."
msgstr "Пошук поля..."
#. js-lingui-id: ITQFzL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Search a folder..."
msgstr ""
@@ -11689,7 +11868,7 @@ msgid "Search records"
msgstr "Пошук записів"
#. js-lingui-id: rRklUH
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Search records..."
msgstr ""
@@ -11724,11 +11903,13 @@ msgid "Searching the web for {query}"
msgstr ""
#. js-lingui-id: 8sgZS9
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month"
msgstr "місце / місяць"
#. js-lingui-id: aQnWwf
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month - billed yearly"
msgstr "місце / місяць - виставляється рахунок щорічно"
@@ -12556,6 +12737,7 @@ msgstr "Єдиний вхід"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
@@ -12600,6 +12782,16 @@ msgstr ""
msgid "Start"
msgstr "Почати"
#. js-lingui-id: ASqWQi
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Start a new enterprise subscription to re-enable enterprise features."
msgstr ""
#. js-lingui-id: OC6rnK
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Start a new enterprise subscription."
msgstr ""
#. js-lingui-id: D3iCkb
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
msgid "Start Date"
@@ -12625,6 +12817,11 @@ msgid "State"
msgstr "Стан"
#. js-lingui-id: uAQUqI
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
@@ -12920,11 +13117,11 @@ msgstr ""
#. js-lingui-id: 0apULK
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -13227,6 +13424,11 @@ msgstr "Є обов'язкові стовпці, які не зіставлен
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
msgstr "Є ще рядки, що містять помилки. Рядки з помилками будуть проігноровані при відправленні."
#. js-lingui-id: CA9PTn
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "There is a payment issue with your subscription. Please update your payment method."
msgstr ""
#. js-lingui-id: WQk7Cf
#: src/modules/activities/timeline-activities/components/TimelineCard.tsx
msgid "There is no activity associated with this record."
@@ -13341,9 +13543,9 @@ msgstr ""
msgid "This database value overrides environment settings. "
msgstr "Це значення з бази даних перевизначає параметри середовища."
#. js-lingui-id: qHAJQ2
#. js-lingui-id: 8IRnd6
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "This feature is part of the Organization Plan"
msgid "This feature is part of the Enterprise Plan"
msgstr ""
#. js-lingui-id: own57K
@@ -13652,6 +13854,8 @@ msgid "Transfer ownership"
msgstr ""
#. js-lingui-id: lhkaAC
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/internal/PlansTags.tsx
msgid "Trial"
msgstr "Випробування"
@@ -13842,7 +14046,7 @@ msgid "Type anything..."
msgstr "Наберіть щось..."
#. js-lingui-id: UhqKcC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Type to search records"
msgstr ""
@@ -14000,6 +14204,11 @@ msgstr "Необмежена кількість контактів"
msgid "Unlisted"
msgstr "Не перелічено"
#. js-lingui-id: Ep1uUU
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
msgstr ""
#. js-lingui-id: eQMhFX
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "unordered"
@@ -14069,6 +14278,11 @@ msgstr "оновити"
msgid "Update"
msgstr "Оновити"
#. js-lingui-id: Y69tSP
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Update payment method"
msgstr ""
#. js-lingui-id: 0KAL3W
#: src/modules/side-panel/hooks/useOpenUpdateMultipleRecordsPageInSidePanel.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
@@ -14307,11 +14521,22 @@ msgstr "Використовується значення за замовчув
msgid "Using default value. Set a custom value to override."
msgstr "Використовується значення за замовчуванням. Встановіть користувацьке значення, щоб перевизначити."
#. js-lingui-id: zzp4XX
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Valid until"
msgstr ""
#. js-lingui-id: Clr4qp
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Validate Data"
msgstr "Перевірити дані"
#. js-lingui-id: PWZBIT
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Validity token refreshed successfully"
msgstr ""
#. js-lingui-id: wMHvYH
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/KeyValuePairInput.tsx
@@ -14438,6 +14663,8 @@ msgid "View and filter events, page views, object changes"
msgstr ""
#. js-lingui-id: KANz0G
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "View billing details"
msgstr "Переглянути деталі оплати"
@@ -14487,6 +14714,11 @@ msgstr "група перегляду"
msgid "View installed app"
msgstr ""
#. js-lingui-id: B02hom
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "View invoices"
msgstr ""
#. js-lingui-id: lh5BED
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerQueueMetricsSection.tsx
msgid "View Jobs"
@@ -14505,6 +14737,7 @@ msgstr ""
#. js-lingui-id: ecVcAx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "View Previous AI Chats"
msgstr "Переглянути попередні чати з ШІ"
@@ -14854,6 +15087,7 @@ msgstr "Робочі процеси"
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/domains/SettingsDomains.tsx
@@ -15020,6 +15254,11 @@ msgstr "Рік"
msgid "yearly"
msgstr "щорічно"
#. js-lingui-id: Y1GwUe
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Yearly subscription"
msgstr ""
#. js-lingui-id: +BGee5
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
msgid "years"
@@ -15152,6 +15391,36 @@ msgstr "Ваші теми листів та назви зустрічей буд
msgid "Your emails and events content will be shared with your team."
msgstr "Ваш вміст електронних листів та подій буде поділено з вашою командою."
#. js-lingui-id: ahEwS4
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features are active"
msgstr ""
#. js-lingui-id: XMZLU/
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features are active but your enterprise key is missing or invalid. This may be expected, but if not, please set a valid signed enterprise key to manage your subscription, or contact support."
msgstr ""
#. js-lingui-id: AxcwNj
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features will be disabled"
msgstr ""
#. js-lingui-id: PT137K
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features will remain active until {cancelAtDate}."
msgstr ""
#. js-lingui-id: 69Siss
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
msgid "Your enterprise key format is deprecated. Please activate a new key to keep enterprise features."
msgstr ""
#. js-lingui-id: NTpA4U
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise subscription has been canceled."
msgstr ""
#. js-lingui-id: 9ivpwk
#: src/pages/settings/SettingsProfile.tsx
msgid "Your name as it will be displayed"
@@ -15162,6 +15431,26 @@ msgstr "Ваше ім'я, як воно буде відображатися"
msgid "Your name as it will be displayed on the app"
msgstr "Ваше ім'я, як воно буде відображатися в додатку"
#. js-lingui-id: 319YPG
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription is active but your validity token is invalid or has expired. Try reloading it or contact support."
msgstr ""
#. js-lingui-id: Fx0axg
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription is scheduled for cancellation"
msgstr ""
#. js-lingui-id: XgIa/8
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription setup was not completed."
msgstr ""
#. js-lingui-id: Z9kbt6
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription status is: {statusLabel}"
msgstr ""
#. js-lingui-id: QOd24n
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and "
+327 -38
View File
@@ -752,23 +752,37 @@ msgid "Actions users can perform on this object"
msgstr "Các hành động người dùng có thể thực hiện trên đối tượng này"
#. js-lingui-id: FQBaXG
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
#: src/modules/settings/data-model/objects/components/SettingsObjectInactiveMenuDropDown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
msgid "Activate"
msgstr "Kích hoạt"
#. js-lingui-id: eqeFkF
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Activate Enterprise Key"
msgstr ""
#. js-lingui-id: tu8A/k
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
msgid "Activate Workflow"
msgstr "Kích hoạt Workflow"
#. js-lingui-id: jSZacs
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Activating..."
msgstr ""
#. js-lingui-id: F6pfE9
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/domains/components/SettingsWorkspaceDomainCard.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Active"
@@ -806,6 +820,13 @@ msgstr "Thêm \"{trimmedName}\" vào các tùy chọn"
msgid "Add a {objectLabelSingular}"
msgstr "Thêm {objectLabelSingular}"
#. js-lingui-id: 7W8nJr
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
msgid "Add a Group"
msgstr ""
#. js-lingui-id: CZDwqQ
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
@@ -818,16 +839,10 @@ msgid "Add a node"
msgstr "Thêm nút"
#. js-lingui-id: nGv1DN
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Add a record"
msgstr ""
#. js-lingui-id: r8W+9y
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
msgid "Add a Section"
msgstr ""
#. js-lingui-id: eMc2xs
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
msgid "Add a step"
@@ -1429,7 +1444,7 @@ msgid "All set!"
msgstr "Mọi thứ đã sẵn sàng!"
#. js-lingui-id: CHvT6e
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectFlow.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
@@ -1574,6 +1589,7 @@ msgstr "Đã xảy ra lỗi khi tải lên ảnh."
#. js-lingui-id: XyOToQ
#: src/utils/get-error-message-from-apollo-error.util.ts
#: src/utils/get-error-message-from-apollo-error.util.ts
#: src/modules/views/hooks/internal/usePerformViewSortAPIPersist.ts
#: src/modules/views/hooks/internal/usePerformViewGroupAPIPersist.ts
#: src/modules/views/hooks/internal/usePerformViewFilterAPIPersist.ts
@@ -1664,6 +1680,7 @@ msgstr "API"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "API & Webhooks"
msgstr "API & Webhooks"
@@ -1940,6 +1957,7 @@ msgstr "Tăng dần"
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Ask AI"
msgstr "Yêu cầu AI"
@@ -2078,6 +2096,11 @@ msgstr ""
msgid "Attachments"
msgstr "Tập tin đính kèm"
#. js-lingui-id: y2W2Hg
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Audit logs"
msgstr ""
#. js-lingui-id: EPEFrH
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
@@ -2306,6 +2329,11 @@ msgstr "giữa {startOrdinal} và {endOrdinal} của tháng"
msgid "Billing"
msgstr "Thanh toán"
#. js-lingui-id: dSjFxR
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Billing history"
msgstr ""
#. js-lingui-id: nJGwRf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Billing interval"
@@ -2563,6 +2591,7 @@ msgid "Cancel metered tier switching?"
msgstr "Hủy chuyển đổi cấp đo?"
#. js-lingui-id: rRK/Lf
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel Plan"
msgstr "Hủy Kế hoạch"
@@ -2578,10 +2607,26 @@ msgid "Cancel plan switching?"
msgstr "Hủy chuyển đổi kế hoạch?"
#. js-lingui-id: N6gPiD
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel your subscription"
msgstr "Hủy đăng ký của bạn"
#. js-lingui-id: GGWsTU
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Canceled"
msgstr ""
#. js-lingui-id: y4uH7j
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Cancelling"
msgstr ""
#. js-lingui-id: WbPx+C
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Cancels on"
msgstr ""
#. js-lingui-id: XDbjjW
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Cannot delete the only view"
@@ -3077,11 +3122,6 @@ msgstr ""
msgid "Configure fallback login methods for users with SSO bypass permissions"
msgstr "Cấu hình phương pháp đăng nhập dự phòng cho người dùng với quyền bỏ qua SSO"
#. js-lingui-id: c7wznw
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
msgid "Configure filters"
msgstr "Cấu hình bộ lọc"
#. js-lingui-id: ghdb7+
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
msgid "Configure how we should display your events in your calendar"
@@ -3279,6 +3319,7 @@ msgstr ""
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
msgid "Continue"
msgstr "Tiếp tục"
@@ -3438,6 +3479,21 @@ msgstr "Chi phí cho 1k Tín Dụng Thêm"
msgid "Could not delete approved access domain"
msgstr "Không thể xóa tên miền truy cập được phê duyệt"
#. js-lingui-id: KqYYBp
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not open billing portal. Please check your enterprise key is present, or contact support."
msgstr ""
#. js-lingui-id: ZuI4Sl
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Could not open Stripe. Please contact support."
msgstr ""
#. js-lingui-id: wVw4Am
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not refresh validity token. Please contact support."
msgstr ""
#. js-lingui-id: s8lFtq
#: src/hooks/useCopyToClipboard.tsx
msgid "Couldn't copy to clipboard"
@@ -3815,6 +3871,7 @@ msgstr "Tên miền tùy chỉnh đã được cập nhật"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Custom objects"
msgstr "Đối tượng tùy chỉnh"
@@ -4917,6 +4974,8 @@ msgid "Edit own profile information"
msgstr ""
#. js-lingui-id: h2KoTu
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Edit payment method, see your invoices and more"
msgstr "Chỉnh sửa phương pháp thanh toán, xem hóa đơn của bạn và nhiều hơn nữa"
@@ -5216,6 +5275,11 @@ msgstr "Tăng cường bảo mật bằng cách yêu cầu mã cùng với mật
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr "Tận hưởng {withCreditCardTrialPeriodDuration} ngày dùng thử miễn phí"
#. js-lingui-id: 6iUnle
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Enjoy a 30-day free trial"
msgstr ""
#. js-lingui-id: T/N+2Z
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormRawJsonFieldInput.tsx
@@ -5422,6 +5486,9 @@ msgstr "Nhập khóa API của bạn"
#. js-lingui-id: GpB8YV
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
msgid "Enterprise"
msgstr "Doanh nghiệp"
@@ -5430,6 +5497,22 @@ msgstr "Doanh nghiệp"
msgid "Enterprise Feature"
msgstr ""
#. js-lingui-id: S5c4pl
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Enterprise License"
msgstr ""
#. js-lingui-id: KGE5g0
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Enterprise license activated successfully"
msgstr ""
#. js-lingui-id: SLuq/l
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Entity ID"
@@ -5470,6 +5553,11 @@ msgstr "Xóa vĩnh viễn các bản ghi đã xóa mềm"
msgid "Error"
msgstr "Lỗi"
#. js-lingui-id: VouTsQ
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error activating enterprise license"
msgstr ""
#. js-lingui-id: GHKxvg
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error deleting api key."
@@ -5495,11 +5583,6 @@ msgstr "Lỗi khi xóa Nhà Cung Cấp Định Danh SSO"
msgid "Error editing SSO Identity Provider"
msgstr "Lỗi khi chỉnh sửa Nhà Cung Cấp Định Danh SSO"
#. js-lingui-id: GsIfmO
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerMetricsGraph.tsx
msgid "Error fetching worker metrics: {errorMessage}"
msgstr "Lỗi khi lấy chỉ số worker: {errorMessage}"
#. js-lingui-id: GdBN5t
#: src/modules/error-handler/components/AppRootErrorFallback.tsx
msgid "Error illustration"
@@ -5530,11 +5613,26 @@ msgstr "Lỗi tải tin nhắn"
msgid "Error Message"
msgstr "Thông báo lỗi"
#. js-lingui-id: Mox63G
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error opening billing portal"
msgstr ""
#. js-lingui-id: e/eieW
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Error opening Stripe"
msgstr ""
#. js-lingui-id: bT/0cM
#: src/modules/ui/field/display/components/PhonesDisplay.tsx
msgid "Error parsing additional phones: {error}"
msgstr "Lỗi khi phân tích số điện thoại bổ sung: {error}"
#. js-lingui-id: zRXcyv
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error refreshing validity token. Please contact support."
msgstr ""
#. js-lingui-id: PfAip2
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error regenerating api key."
@@ -5997,6 +6095,11 @@ msgstr ""
msgid "Failed to {translatedOperationType} {translatedMetadataName}. Related {relatedEntityNames} validation failed. Please check your configuration and try again."
msgstr ""
#. js-lingui-id: R1XJV1
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Failed to activate enterprise license. Please check your key or contact support."
msgstr ""
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to activate skill"
@@ -6374,7 +6477,6 @@ msgstr ""
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/views/components/ViewBarFilterButton.tsx
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
#: src/modules/settings/roles/components/SettingsRolesList.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
@@ -6397,6 +6499,7 @@ msgid "Filter group rule options"
msgstr "Tùy chọn quy tắc nhóm bộ lọc"
#. js-lingui-id: cSev+j
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
msgid "Filters"
msgstr "\"Bộ lọc\""
@@ -6467,6 +6570,11 @@ msgstr "\"Tên riêng\""
msgid "First name can not be empty"
msgstr "Tên không được để trống"
#. js-lingui-id: JREYkg
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Fix the payment issue to keep your enterprise features active."
msgstr ""
#. js-lingui-id: ylQd2j
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
@@ -6486,7 +6594,7 @@ msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
msgid "Folders"
msgstr "Thư mục"
@@ -6635,6 +6743,22 @@ msgstr "Tệp đã tạo"
msgid "German"
msgstr "\\"
#. js-lingui-id: sqtljx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Get Enterprise"
msgstr ""
#. js-lingui-id: o2kSwB
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Get Enterprise Key"
msgstr ""
#. js-lingui-id: NXEW3h
#: src/pages/onboarding/InviteTeam.tsx
msgid "Get the most out of your workspace by inviting your team."
@@ -6655,6 +6779,12 @@ msgstr "\\"
msgid "Go Back"
msgstr ""
#. js-lingui-id: Hb4Cgz
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Go to billing portal"
msgstr ""
#. js-lingui-id: mUbv8L
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
msgid "Go to Companies"
@@ -7240,6 +7370,11 @@ msgstr ""
msgid "Inbox"
msgstr "Hộp thư"
#. js-lingui-id: mtGDyy
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Incomplete"
msgstr ""
#. js-lingui-id: O5wNUa
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "index"
@@ -7882,9 +8017,8 @@ msgid "Launch manually"
msgstr "Khởi chạy thủ công"
#. js-lingui-id: rdU729
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsLayout.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -7957,6 +8091,12 @@ msgstr ""
msgid "Less than or equal"
msgstr "Nhỏ hơn hoặc bằng"
#. js-lingui-id: 3qg5Ro
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Licensee"
msgstr ""
#. js-lingui-id: 1njn7W
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownThemesComponents.tsx
@@ -8260,6 +8400,8 @@ msgid "Manage billing and subscriptions"
msgstr "Quản lý thanh toán và đăng ký"
#. js-lingui-id: nvgUPq
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Manage billing information"
msgstr "Quản lý thông tin thanh toán"
@@ -8612,6 +8754,11 @@ msgstr "Tháng trong năm"
msgid "monthly"
msgstr "hàng tháng"
#. js-lingui-id: Sew/cK
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Monthly subscription"
msgstr ""
#. js-lingui-id: 6jefe3
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
@@ -8673,7 +8820,7 @@ msgid "Move right"
msgstr "Di chuyển sang phải"
#. js-lingui-id: 6qDVmw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Move to a folder"
msgstr ""
@@ -9274,13 +9421,13 @@ msgid "No Files"
msgstr "Không có tệp"
#. js-lingui-id: pYblOw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
msgid "No folder"
msgstr "Không có thư mục"
#. js-lingui-id: 6XMhqL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folders available"
msgstr ""
@@ -9454,8 +9601,8 @@ msgstr "Không có kết quả"
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/side-panel/components/SidePanelList.tsx
msgid "No results found"
msgstr "Không tìm thấy kết quả"
@@ -10188,11 +10335,26 @@ msgstr "Đường dẫn đặt lại mật khẩu đã được gửi đến ema
msgid "Paste the code below"
msgstr "Dán mã bên dưới"
#. js-lingui-id: raz2Pm
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Paste your enterprise key below to activate"
msgstr ""
#. js-lingui-id: dNdgvF
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Paste your enterprise key here"
msgstr ""
#. js-lingui-id: I6gXOa
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "Path"
msgstr "Đường dẫn"
#. js-lingui-id: QmXBEc
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Payment issue"
msgstr ""
#. js-lingui-id: UbRKMZ
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
#: src/modules/settings/security/components/approvedAccessDomains/SettingsApprovedAccessDomainsListCard.tsx
@@ -10329,13 +10491,13 @@ msgid "Pick a {objectLabel} record"
msgstr "Chọn một bản ghi {objectLabel}"
#. js-lingui-id: JqqNlC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Pick a view"
msgstr ""
#. js-lingui-id: Wlba2h
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Pick an object"
msgstr ""
@@ -10953,6 +11115,16 @@ msgstr "Phát hành"
msgid "Reload"
msgstr "Tải lại"
#. js-lingui-id: qbM5In
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Reload validity token"
msgstr ""
#. js-lingui-id: MZWnSC
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Reloading..."
msgstr ""
#. js-lingui-id: qlAIQ1
#: src/modules/object-metadata/components/RemoteNavigationDrawerSection.tsx
msgid "Remote"
@@ -11228,7 +11400,7 @@ msgstr "Kết quả"
#. js-lingui-id: kx0s+n
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Results"
msgstr "Kết quả"
@@ -11367,6 +11539,11 @@ msgstr ""
msgid "row level permission predicate group"
msgstr ""
#. js-lingui-id: xPaeO2
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Row-level security"
msgstr ""
#. js-lingui-id: 7jTlsu
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Ruby"
@@ -11485,6 +11662,8 @@ msgstr ""
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Search"
msgstr "Tìm kiếm"
@@ -11521,7 +11700,7 @@ msgid "Search a field..."
msgstr "Tìm một trường..."
#. js-lingui-id: ITQFzL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Search a folder..."
msgstr ""
@@ -11689,7 +11868,7 @@ msgid "Search records"
msgstr "Tìm kiếm hồ sơ"
#. js-lingui-id: rRklUH
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Search records..."
msgstr ""
@@ -11724,11 +11903,13 @@ msgid "Searching the web for {query}"
msgstr ""
#. js-lingui-id: 8sgZS9
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month"
msgstr "chỗ ngồi / tháng"
#. js-lingui-id: aQnWwf
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month - billed yearly"
msgstr "chỗ ngồi / tháng - thanh toán hàng năm"
@@ -12556,6 +12737,7 @@ msgstr "Đăng nhập một lần"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
@@ -12600,6 +12782,16 @@ msgstr ""
msgid "Start"
msgstr "Bắt đầu"
#. js-lingui-id: ASqWQi
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Start a new enterprise subscription to re-enable enterprise features."
msgstr ""
#. js-lingui-id: OC6rnK
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Start a new enterprise subscription."
msgstr ""
#. js-lingui-id: D3iCkb
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
msgid "Start Date"
@@ -12625,6 +12817,11 @@ msgid "State"
msgstr "Trạng thái"
#. js-lingui-id: uAQUqI
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
@@ -12920,11 +13117,11 @@ msgstr ""
#. js-lingui-id: 0apULK
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -13227,6 +13424,11 @@ msgstr "Có các cột bắt buộc chưa được khớp hoặc bỏ qua. Bạn
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
msgstr "Vẫn còn một số hàng chứa lỗi. Các hàng chứa lỗi sẽ bị bỏ qua khi gửi đi."
#. js-lingui-id: CA9PTn
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "There is a payment issue with your subscription. Please update your payment method."
msgstr ""
#. js-lingui-id: WQk7Cf
#: src/modules/activities/timeline-activities/components/TimelineCard.tsx
msgid "There is no activity associated with this record."
@@ -13339,9 +13541,9 @@ msgstr ""
msgid "This database value overrides environment settings. "
msgstr "Giá trị cơ sở dữ liệu này ghi đè các thiết lập môi trường."
#. js-lingui-id: qHAJQ2
#. js-lingui-id: 8IRnd6
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "This feature is part of the Organization Plan"
msgid "This feature is part of the Enterprise Plan"
msgstr ""
#. js-lingui-id: own57K
@@ -13650,6 +13852,8 @@ msgid "Transfer ownership"
msgstr ""
#. js-lingui-id: lhkaAC
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/internal/PlansTags.tsx
msgid "Trial"
msgstr "Dùng thử"
@@ -13840,7 +14044,7 @@ msgid "Type anything..."
msgstr "Gõ bất cứ thứ gì..."
#. js-lingui-id: UhqKcC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Type to search records"
msgstr ""
@@ -13998,6 +14202,11 @@ msgstr "Liên hệ không giới hạn"
msgid "Unlisted"
msgstr "Không được liệt kê"
#. js-lingui-id: Ep1uUU
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
msgstr ""
#. js-lingui-id: eQMhFX
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "unordered"
@@ -14067,6 +14276,11 @@ msgstr "cập nhật"
msgid "Update"
msgstr "Cập nhật"
#. js-lingui-id: Y69tSP
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Update payment method"
msgstr ""
#. js-lingui-id: 0KAL3W
#: src/modules/side-panel/hooks/useOpenUpdateMultipleRecordsPageInSidePanel.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
@@ -14305,11 +14519,22 @@ msgstr "Đang sử dụng giá trị ứng dụng mặc định. Cấu hình th
msgid "Using default value. Set a custom value to override."
msgstr "Đang sử dụng giá trị mặc định. Đặt một giá trị tùy chỉnh để ghi đè."
#. js-lingui-id: zzp4XX
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Valid until"
msgstr ""
#. js-lingui-id: Clr4qp
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Validate Data"
msgstr "Xác thực dữ liệu"
#. js-lingui-id: PWZBIT
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Validity token refreshed successfully"
msgstr ""
#. js-lingui-id: wMHvYH
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/KeyValuePairInput.tsx
@@ -14436,6 +14661,8 @@ msgid "View and filter events, page views, object changes"
msgstr ""
#. js-lingui-id: KANz0G
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "View billing details"
msgstr "Xem chi tiết hóa đơn"
@@ -14485,6 +14712,11 @@ msgstr "nhóm xem"
msgid "View installed app"
msgstr ""
#. js-lingui-id: B02hom
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "View invoices"
msgstr ""
#. js-lingui-id: lh5BED
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerQueueMetricsSection.tsx
msgid "View Jobs"
@@ -14503,6 +14735,7 @@ msgstr ""
#. js-lingui-id: ecVcAx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "View Previous AI Chats"
msgstr "Xem các cuộc trò chuyện AI trước đây"
@@ -14852,6 +15085,7 @@ msgstr "Quy Trình Làm Việc"
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/domains/SettingsDomains.tsx
@@ -15018,6 +15252,11 @@ msgstr "Năm"
msgid "yearly"
msgstr "hàng năm"
#. js-lingui-id: Y1GwUe
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Yearly subscription"
msgstr ""
#. js-lingui-id: +BGee5
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
msgid "years"
@@ -15150,6 +15389,36 @@ msgstr "Chủ đề email của bạn và tiêu đề cuộc họp sẽ được
msgid "Your emails and events content will be shared with your team."
msgstr "Nội dung email và sự kiện của bạn sẽ được chia sẻ với nhóm của bạn."
#. js-lingui-id: ahEwS4
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features are active"
msgstr ""
#. js-lingui-id: XMZLU/
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features are active but your enterprise key is missing or invalid. This may be expected, but if not, please set a valid signed enterprise key to manage your subscription, or contact support."
msgstr ""
#. js-lingui-id: AxcwNj
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features will be disabled"
msgstr ""
#. js-lingui-id: PT137K
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features will remain active until {cancelAtDate}."
msgstr ""
#. js-lingui-id: 69Siss
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
msgid "Your enterprise key format is deprecated. Please activate a new key to keep enterprise features."
msgstr ""
#. js-lingui-id: NTpA4U
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise subscription has been canceled."
msgstr ""
#. js-lingui-id: 9ivpwk
#: src/pages/settings/SettingsProfile.tsx
msgid "Your name as it will be displayed"
@@ -15160,6 +15429,26 @@ msgstr "Tên của bạn sẽ được hiển thị như thế nào"
msgid "Your name as it will be displayed on the app"
msgstr "Tên của bạn sẽ được hiển thị như thế nào trên ứng dụng"
#. js-lingui-id: 319YPG
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription is active but your validity token is invalid or has expired. Try reloading it or contact support."
msgstr ""
#. js-lingui-id: Fx0axg
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription is scheduled for cancellation"
msgstr ""
#. js-lingui-id: XgIa/8
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription setup was not completed."
msgstr ""
#. js-lingui-id: Z9kbt6
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription status is: {statusLabel}"
msgstr ""
#. js-lingui-id: QOd24n
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and "
+327 -38
View File
@@ -752,23 +752,37 @@ msgid "Actions users can perform on this object"
msgstr "用户可以在此对象上执行的操作"
#. js-lingui-id: FQBaXG
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
#: src/modules/settings/data-model/objects/components/SettingsObjectInactiveMenuDropDown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
msgid "Activate"
msgstr "激活"
#. js-lingui-id: eqeFkF
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Activate Enterprise Key"
msgstr ""
#. js-lingui-id: tu8A/k
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
msgid "Activate Workflow"
msgstr "激活工作流"
#. js-lingui-id: jSZacs
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Activating..."
msgstr ""
#. js-lingui-id: F6pfE9
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/domains/components/SettingsWorkspaceDomainCard.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Active"
@@ -806,6 +820,13 @@ msgstr "将 \"{trimmedName}\" 添加到选项中"
msgid "Add a {objectLabelSingular}"
msgstr "添加一个 {objectLabelSingular}"
#. js-lingui-id: 7W8nJr
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
msgid "Add a Group"
msgstr ""
#. js-lingui-id: CZDwqQ
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
@@ -818,16 +839,10 @@ msgid "Add a node"
msgstr "添加节点"
#. js-lingui-id: nGv1DN
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Add a record"
msgstr ""
#. js-lingui-id: r8W+9y
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
msgid "Add a Section"
msgstr ""
#. js-lingui-id: eMc2xs
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
msgid "Add a step"
@@ -1429,7 +1444,7 @@ msgid "All set!"
msgstr "一切就绪!"
#. js-lingui-id: CHvT6e
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectFlow.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
@@ -1574,6 +1589,7 @@ msgstr "上传图片时发生错误。"
#. js-lingui-id: XyOToQ
#: src/utils/get-error-message-from-apollo-error.util.ts
#: src/utils/get-error-message-from-apollo-error.util.ts
#: src/modules/views/hooks/internal/usePerformViewSortAPIPersist.ts
#: src/modules/views/hooks/internal/usePerformViewGroupAPIPersist.ts
#: src/modules/views/hooks/internal/usePerformViewFilterAPIPersist.ts
@@ -1664,6 +1680,7 @@ msgstr "接口"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "API & Webhooks"
msgstr "API 和 Webhooks"
@@ -1940,6 +1957,7 @@ msgstr "升序"
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Ask AI"
msgstr "询问 AI"
@@ -2078,6 +2096,11 @@ msgstr ""
msgid "Attachments"
msgstr "附件"
#. js-lingui-id: y2W2Hg
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Audit logs"
msgstr ""
#. js-lingui-id: EPEFrH
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
@@ -2306,6 +2329,11 @@ msgstr "在每月的第 {startOrdinal} 和 {endOrdinal} 之间"
msgid "Billing"
msgstr "账单"
#. js-lingui-id: dSjFxR
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Billing history"
msgstr ""
#. js-lingui-id: nJGwRf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Billing interval"
@@ -2563,6 +2591,7 @@ msgid "Cancel metered tier switching?"
msgstr "取消计量等级切换?"
#. js-lingui-id: rRK/Lf
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel Plan"
msgstr "取消计划"
@@ -2578,10 +2607,26 @@ msgid "Cancel plan switching?"
msgstr "取消计划切换?"
#. js-lingui-id: N6gPiD
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel your subscription"
msgstr "取消订阅"
#. js-lingui-id: GGWsTU
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Canceled"
msgstr ""
#. js-lingui-id: y4uH7j
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Cancelling"
msgstr ""
#. js-lingui-id: WbPx+C
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Cancels on"
msgstr ""
#. js-lingui-id: XDbjjW
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Cannot delete the only view"
@@ -3077,11 +3122,6 @@ msgstr ""
msgid "Configure fallback login methods for users with SSO bypass permissions"
msgstr "为具有SSO绕过权限的用户配置备用登录方法"
#. js-lingui-id: c7wznw
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
msgid "Configure filters"
msgstr "配置筛选器"
#. js-lingui-id: ghdb7+
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
msgid "Configure how we should display your events in your calendar"
@@ -3279,6 +3319,7 @@ msgstr ""
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
msgid "Continue"
msgstr "继续"
@@ -3438,6 +3479,21 @@ msgstr "每千额外积分的成本"
msgid "Could not delete approved access domain"
msgstr "无法删除批准的访问域"
#. js-lingui-id: KqYYBp
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not open billing portal. Please check your enterprise key is present, or contact support."
msgstr ""
#. js-lingui-id: ZuI4Sl
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Could not open Stripe. Please contact support."
msgstr ""
#. js-lingui-id: wVw4Am
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not refresh validity token. Please contact support."
msgstr ""
#. js-lingui-id: s8lFtq
#: src/hooks/useCopyToClipboard.tsx
msgid "Couldn't copy to clipboard"
@@ -3815,6 +3871,7 @@ msgstr "自定义域已更新"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Custom objects"
msgstr "自定义对象"
@@ -4917,6 +4974,8 @@ msgid "Edit own profile information"
msgstr ""
#. js-lingui-id: h2KoTu
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Edit payment method, see your invoices and more"
msgstr "编辑付款方式、查看发票等"
@@ -5216,6 +5275,11 @@ msgstr "通过要求使用代码和密码来增强安全性"
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr "享受 {withCreditCardTrialPeriodDuration} 天的免费试用期"
#. js-lingui-id: 6iUnle
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Enjoy a 30-day free trial"
msgstr ""
#. js-lingui-id: T/N+2Z
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormRawJsonFieldInput.tsx
@@ -5422,6 +5486,9 @@ msgstr "输入您的 API 密钥"
#. js-lingui-id: GpB8YV
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
msgid "Enterprise"
msgstr "企业"
@@ -5430,6 +5497,22 @@ msgstr "企业"
msgid "Enterprise Feature"
msgstr ""
#. js-lingui-id: S5c4pl
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Enterprise License"
msgstr ""
#. js-lingui-id: KGE5g0
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Enterprise license activated successfully"
msgstr ""
#. js-lingui-id: SLuq/l
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Entity ID"
@@ -5470,6 +5553,11 @@ msgstr "软删除记录的擦除"
msgid "Error"
msgstr "错误"
#. js-lingui-id: VouTsQ
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error activating enterprise license"
msgstr ""
#. js-lingui-id: GHKxvg
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error deleting api key."
@@ -5495,11 +5583,6 @@ msgstr "删除 SSO 身份提供商时出错"
msgid "Error editing SSO Identity Provider"
msgstr "编辑 SSO 身份提供商时出错"
#. js-lingui-id: GsIfmO
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerMetricsGraph.tsx
msgid "Error fetching worker metrics: {errorMessage}"
msgstr "获取工作进程指标时出错:{errorMessage}"
#. js-lingui-id: GdBN5t
#: src/modules/error-handler/components/AppRootErrorFallback.tsx
msgid "Error illustration"
@@ -5530,11 +5613,26 @@ msgstr "加载消息时出错"
msgid "Error Message"
msgstr "错误消息"
#. js-lingui-id: Mox63G
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error opening billing portal"
msgstr ""
#. js-lingui-id: e/eieW
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Error opening Stripe"
msgstr ""
#. js-lingui-id: bT/0cM
#: src/modules/ui/field/display/components/PhonesDisplay.tsx
msgid "Error parsing additional phones: {error}"
msgstr "解析附加电话号码时出错:{error}"
#. js-lingui-id: zRXcyv
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error refreshing validity token. Please contact support."
msgstr ""
#. js-lingui-id: PfAip2
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error regenerating api key."
@@ -5997,6 +6095,11 @@ msgstr ""
msgid "Failed to {translatedOperationType} {translatedMetadataName}. Related {relatedEntityNames} validation failed. Please check your configuration and try again."
msgstr ""
#. js-lingui-id: R1XJV1
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Failed to activate enterprise license. Please check your key or contact support."
msgstr ""
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to activate skill"
@@ -6374,7 +6477,6 @@ msgstr ""
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/views/components/ViewBarFilterButton.tsx
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
#: src/modules/settings/roles/components/SettingsRolesList.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
@@ -6397,6 +6499,7 @@ msgid "Filter group rule options"
msgstr "筛选规则组选项"
#. js-lingui-id: cSev+j
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
msgid "Filters"
msgstr "过滤器"
@@ -6467,6 +6570,11 @@ msgstr "名字"
msgid "First name can not be empty"
msgstr "名不能为空"
#. js-lingui-id: JREYkg
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Fix the payment issue to keep your enterprise features active."
msgstr ""
#. js-lingui-id: ylQd2j
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
@@ -6486,7 +6594,7 @@ msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
msgid "Folders"
msgstr "文件夹"
@@ -6635,6 +6743,22 @@ msgstr "生成的文件"
msgid "German"
msgstr "德语"
#. js-lingui-id: sqtljx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Get Enterprise"
msgstr ""
#. js-lingui-id: o2kSwB
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Get Enterprise Key"
msgstr ""
#. js-lingui-id: NXEW3h
#: src/pages/onboarding/InviteTeam.tsx
msgid "Get the most out of your workspace by inviting your team."
@@ -6655,6 +6779,12 @@ msgstr "全局"
msgid "Go Back"
msgstr ""
#. js-lingui-id: Hb4Cgz
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Go to billing portal"
msgstr ""
#. js-lingui-id: mUbv8L
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
msgid "Go to Companies"
@@ -7240,6 +7370,11 @@ msgstr ""
msgid "Inbox"
msgstr "收件箱"
#. js-lingui-id: mtGDyy
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Incomplete"
msgstr ""
#. js-lingui-id: O5wNUa
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "index"
@@ -7882,9 +8017,8 @@ msgid "Launch manually"
msgstr "手动启动"
#. js-lingui-id: rdU729
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsLayout.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -7957,6 +8091,12 @@ msgstr ""
msgid "Less than or equal"
msgstr "小于或等于"
#. js-lingui-id: 3qg5Ro
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Licensee"
msgstr ""
#. js-lingui-id: 1njn7W
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownThemesComponents.tsx
@@ -8260,6 +8400,8 @@ msgid "Manage billing and subscriptions"
msgstr "管理账单和订阅"
#. js-lingui-id: nvgUPq
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Manage billing information"
msgstr "管理账单信息"
@@ -8612,6 +8754,11 @@ msgstr "年份中的月份"
msgid "monthly"
msgstr "每月"
#. js-lingui-id: Sew/cK
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Monthly subscription"
msgstr ""
#. js-lingui-id: 6jefe3
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
@@ -8673,7 +8820,7 @@ msgid "Move right"
msgstr "右移"
#. js-lingui-id: 6qDVmw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Move to a folder"
msgstr ""
@@ -9274,13 +9421,13 @@ msgid "No Files"
msgstr "无文件"
#. js-lingui-id: pYblOw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
msgid "No folder"
msgstr "无文件夹"
#. js-lingui-id: 6XMhqL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folders available"
msgstr ""
@@ -9454,8 +9601,8 @@ msgstr "无结果"
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/side-panel/components/SidePanelList.tsx
msgid "No results found"
msgstr "未找到结果"
@@ -10188,11 +10335,26 @@ msgstr "密码重置链接已发送至电子邮件"
msgid "Paste the code below"
msgstr "粘贴下面的代码"
#. js-lingui-id: raz2Pm
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Paste your enterprise key below to activate"
msgstr ""
#. js-lingui-id: dNdgvF
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Paste your enterprise key here"
msgstr ""
#. js-lingui-id: I6gXOa
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "Path"
msgstr "路径"
#. js-lingui-id: QmXBEc
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Payment issue"
msgstr ""
#. js-lingui-id: UbRKMZ
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
#: src/modules/settings/security/components/approvedAccessDomains/SettingsApprovedAccessDomainsListCard.tsx
@@ -10329,13 +10491,13 @@ msgid "Pick a {objectLabel} record"
msgstr "选择一个 {objectLabel} 记录"
#. js-lingui-id: JqqNlC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Pick a view"
msgstr ""
#. js-lingui-id: Wlba2h
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Pick an object"
msgstr ""
@@ -10953,6 +11115,16 @@ msgstr "发布"
msgid "Reload"
msgstr "重新加载"
#. js-lingui-id: qbM5In
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Reload validity token"
msgstr ""
#. js-lingui-id: MZWnSC
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Reloading..."
msgstr ""
#. js-lingui-id: qlAIQ1
#: src/modules/object-metadata/components/RemoteNavigationDrawerSection.tsx
msgid "Remote"
@@ -11228,7 +11400,7 @@ msgstr "结果"
#. js-lingui-id: kx0s+n
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Results"
msgstr "结果"
@@ -11367,6 +11539,11 @@ msgstr ""
msgid "row level permission predicate group"
msgstr ""
#. js-lingui-id: xPaeO2
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Row-level security"
msgstr ""
#. js-lingui-id: 7jTlsu
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Ruby"
@@ -11485,6 +11662,8 @@ msgstr ""
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Search"
msgstr "搜索"
@@ -11521,7 +11700,7 @@ msgid "Search a field..."
msgstr "搜索字段..."
#. js-lingui-id: ITQFzL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Search a folder..."
msgstr ""
@@ -11689,7 +11868,7 @@ msgid "Search records"
msgstr "搜索记录"
#. js-lingui-id: rRklUH
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Search records..."
msgstr ""
@@ -11724,11 +11903,13 @@ msgid "Searching the web for {query}"
msgstr ""
#. js-lingui-id: 8sgZS9
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month"
msgstr "每座/月"
#. js-lingui-id: aQnWwf
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month - billed yearly"
msgstr "每座/月 - 年费结算"
@@ -12556,6 +12737,7 @@ msgstr "SSO"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
@@ -12600,6 +12782,16 @@ msgstr ""
msgid "Start"
msgstr "开始"
#. js-lingui-id: ASqWQi
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Start a new enterprise subscription to re-enable enterprise features."
msgstr ""
#. js-lingui-id: OC6rnK
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Start a new enterprise subscription."
msgstr ""
#. js-lingui-id: D3iCkb
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
msgid "Start Date"
@@ -12625,6 +12817,11 @@ msgid "State"
msgstr "状态"
#. js-lingui-id: uAQUqI
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
@@ -12920,11 +13117,11 @@ msgstr ""
#. js-lingui-id: 0apULK
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -13227,6 +13424,11 @@ msgstr "有必需的列未匹配或未忽略。您确定要继续吗?"
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
msgstr "仍然有一些行包含错误。提交时将忽略有错误的行。"
#. js-lingui-id: CA9PTn
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "There is a payment issue with your subscription. Please update your payment method."
msgstr ""
#. js-lingui-id: WQk7Cf
#: src/modules/activities/timeline-activities/components/TimelineCard.tsx
msgid "There is no activity associated with this record."
@@ -13339,9 +13541,9 @@ msgstr ""
msgid "This database value overrides environment settings. "
msgstr "此数据库值会覆盖环境设置。"
#. js-lingui-id: qHAJQ2
#. js-lingui-id: 8IRnd6
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "This feature is part of the Organization Plan"
msgid "This feature is part of the Enterprise Plan"
msgstr ""
#. js-lingui-id: own57K
@@ -13650,6 +13852,8 @@ msgid "Transfer ownership"
msgstr ""
#. js-lingui-id: lhkaAC
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/internal/PlansTags.tsx
msgid "Trial"
msgstr "试用"
@@ -13840,7 +14044,7 @@ msgid "Type anything..."
msgstr "输入任何内容..."
#. js-lingui-id: UhqKcC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Type to search records"
msgstr ""
@@ -13998,6 +14202,11 @@ msgstr "无限联系人"
msgid "Unlisted"
msgstr "未列出"
#. js-lingui-id: Ep1uUU
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
msgstr ""
#. js-lingui-id: eQMhFX
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "unordered"
@@ -14067,6 +14276,11 @@ msgstr "更新"
msgid "Update"
msgstr "更新"
#. js-lingui-id: Y69tSP
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Update payment method"
msgstr ""
#. js-lingui-id: 0KAL3W
#: src/modules/side-panel/hooks/useOpenUpdateMultipleRecordsPageInSidePanel.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
@@ -14305,11 +14519,22 @@ msgstr "使用默认的应用程序值。通过环境变量进行配置。"
msgid "Using default value. Set a custom value to override."
msgstr "使用默认值。设置自定义值以覆盖。"
#. js-lingui-id: zzp4XX
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Valid until"
msgstr ""
#. js-lingui-id: Clr4qp
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Validate Data"
msgstr "验证数据"
#. js-lingui-id: PWZBIT
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Validity token refreshed successfully"
msgstr ""
#. js-lingui-id: wMHvYH
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/KeyValuePairInput.tsx
@@ -14436,6 +14661,8 @@ msgid "View and filter events, page views, object changes"
msgstr ""
#. js-lingui-id: KANz0G
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "View billing details"
msgstr "查看账单详情"
@@ -14485,6 +14712,11 @@ msgstr "视图组"
msgid "View installed app"
msgstr ""
#. js-lingui-id: B02hom
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "View invoices"
msgstr ""
#. js-lingui-id: lh5BED
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerQueueMetricsSection.tsx
msgid "View Jobs"
@@ -14503,6 +14735,7 @@ msgstr ""
#. js-lingui-id: ecVcAx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "View Previous AI Chats"
msgstr "查看历史人工智能对话"
@@ -14852,6 +15085,7 @@ msgstr "工作流"
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/domains/SettingsDomains.tsx
@@ -15018,6 +15252,11 @@ msgstr "年"
msgid "yearly"
msgstr "年度计划"
#. js-lingui-id: Y1GwUe
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Yearly subscription"
msgstr ""
#. js-lingui-id: +BGee5
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
msgid "years"
@@ -15150,6 +15389,36 @@ msgstr "您的电子邮件主题和会议标题将与您的团队分享。"
msgid "Your emails and events content will be shared with your team."
msgstr "您的电子邮件和事件内容将与您的团队分享。"
#. js-lingui-id: ahEwS4
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features are active"
msgstr ""
#. js-lingui-id: XMZLU/
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features are active but your enterprise key is missing or invalid. This may be expected, but if not, please set a valid signed enterprise key to manage your subscription, or contact support."
msgstr ""
#. js-lingui-id: AxcwNj
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features will be disabled"
msgstr ""
#. js-lingui-id: PT137K
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features will remain active until {cancelAtDate}."
msgstr ""
#. js-lingui-id: 69Siss
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
msgid "Your enterprise key format is deprecated. Please activate a new key to keep enterprise features."
msgstr ""
#. js-lingui-id: NTpA4U
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise subscription has been canceled."
msgstr ""
#. js-lingui-id: 9ivpwk
#: src/pages/settings/SettingsProfile.tsx
msgid "Your name as it will be displayed"
@@ -15160,6 +15429,26 @@ msgstr "显示的姓名"
msgid "Your name as it will be displayed on the app"
msgstr "您在应用上显示的姓名"
#. js-lingui-id: 319YPG
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription is active but your validity token is invalid or has expired. Try reloading it or contact support."
msgstr ""
#. js-lingui-id: Fx0axg
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription is scheduled for cancellation"
msgstr ""
#. js-lingui-id: XgIa/8
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription setup was not completed."
msgstr ""
#. js-lingui-id: Z9kbt6
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription status is: {statusLabel}"
msgstr ""
#. js-lingui-id: QOd24n
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and "
+327 -38
View File
@@ -752,23 +752,37 @@ msgid "Actions users can perform on this object"
msgstr "用戶可以對此對象執行的操作"
#. js-lingui-id: FQBaXG
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
#: src/modules/settings/data-model/objects/components/SettingsObjectInactiveMenuDropDown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
msgid "Activate"
msgstr "啟用"
#. js-lingui-id: eqeFkF
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Activate Enterprise Key"
msgstr ""
#. js-lingui-id: tu8A/k
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
msgid "Activate Workflow"
msgstr "啟用工作流程"
#. js-lingui-id: jSZacs
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Activating..."
msgstr ""
#. js-lingui-id: F6pfE9
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/domains/components/SettingsWorkspaceDomainCard.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Active"
@@ -806,6 +820,13 @@ msgstr "將 \"{trimmedName}\" 添加到選項中"
msgid "Add a {objectLabelSingular}"
msgstr "新增一個 {objectLabelSingular}"
#. js-lingui-id: 7W8nJr
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
msgid "Add a Group"
msgstr ""
#. js-lingui-id: CZDwqQ
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
@@ -818,16 +839,10 @@ msgid "Add a node"
msgstr "添加節點"
#. js-lingui-id: nGv1DN
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Add a record"
msgstr ""
#. js-lingui-id: r8W+9y
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
msgid "Add a Section"
msgstr ""
#. js-lingui-id: eMc2xs
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
msgid "Add a step"
@@ -1429,7 +1444,7 @@ msgid "All set!"
msgstr "一切就緒!"
#. js-lingui-id: CHvT6e
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectFlow.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
@@ -1574,6 +1589,7 @@ msgstr "上傳圖片時發生錯誤。"
#. js-lingui-id: XyOToQ
#: src/utils/get-error-message-from-apollo-error.util.ts
#: src/utils/get-error-message-from-apollo-error.util.ts
#: src/modules/views/hooks/internal/usePerformViewSortAPIPersist.ts
#: src/modules/views/hooks/internal/usePerformViewGroupAPIPersist.ts
#: src/modules/views/hooks/internal/usePerformViewFilterAPIPersist.ts
@@ -1664,6 +1680,7 @@ msgstr "API"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "API & Webhooks"
msgstr "API 和 Webhooks"
@@ -1940,6 +1957,7 @@ msgstr "升序"
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Ask AI"
msgstr "詢問 AI"
@@ -2078,6 +2096,11 @@ msgstr ""
msgid "Attachments"
msgstr "附件"
#. js-lingui-id: y2W2Hg
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Audit logs"
msgstr ""
#. js-lingui-id: EPEFrH
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
@@ -2306,6 +2329,11 @@ msgstr "在每月的 {startOrdinal} 和 {endOrdinal} 之間"
msgid "Billing"
msgstr "計費"
#. js-lingui-id: dSjFxR
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Billing history"
msgstr ""
#. js-lingui-id: nJGwRf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Billing interval"
@@ -2563,6 +2591,7 @@ msgid "Cancel metered tier switching?"
msgstr "取消計量層級切換?"
#. js-lingui-id: rRK/Lf
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel Plan"
msgstr "取消計劃"
@@ -2578,10 +2607,26 @@ msgid "Cancel plan switching?"
msgstr "取消方案切換?"
#. js-lingui-id: N6gPiD
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel your subscription"
msgstr "取消訂閱"
#. js-lingui-id: GGWsTU
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Canceled"
msgstr ""
#. js-lingui-id: y4uH7j
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Cancelling"
msgstr ""
#. js-lingui-id: WbPx+C
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Cancels on"
msgstr ""
#. js-lingui-id: XDbjjW
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Cannot delete the only view"
@@ -3077,11 +3122,6 @@ msgstr ""
msgid "Configure fallback login methods for users with SSO bypass permissions"
msgstr "為具有 SSO 繞過權限的用戶配置回退登入方法"
#. js-lingui-id: c7wznw
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
msgid "Configure filters"
msgstr "配置過濾器"
#. js-lingui-id: ghdb7+
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
msgid "Configure how we should display your events in your calendar"
@@ -3279,6 +3319,7 @@ msgstr ""
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
msgid "Continue"
msgstr "繼續"
@@ -3438,6 +3479,21 @@ msgstr "每 1k 額外積分的成本"
msgid "Could not delete approved access domain"
msgstr "無法刪除核准訪問域名"
#. js-lingui-id: KqYYBp
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not open billing portal. Please check your enterprise key is present, or contact support."
msgstr ""
#. js-lingui-id: ZuI4Sl
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Could not open Stripe. Please contact support."
msgstr ""
#. js-lingui-id: wVw4Am
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Could not refresh validity token. Please contact support."
msgstr ""
#. js-lingui-id: s8lFtq
#: src/hooks/useCopyToClipboard.tsx
msgid "Couldn't copy to clipboard"
@@ -3815,6 +3871,7 @@ msgstr "自訂網域已更新"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Custom objects"
msgstr "自定義對象"
@@ -4917,6 +4974,8 @@ msgid "Edit own profile information"
msgstr ""
#. js-lingui-id: h2KoTu
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Edit payment method, see your invoices and more"
msgstr "編輯付款方式、查看發票等"
@@ -5216,6 +5275,11 @@ msgstr "增強安全性,除了密碼外還需要輸入代碼"
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr "享受 {withCreditCardTrialPeriodDuration} 天的免費試用期"
#. js-lingui-id: 6iUnle
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Enjoy a 30-day free trial"
msgstr ""
#. js-lingui-id: T/N+2Z
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormRawJsonFieldInput.tsx
@@ -5422,6 +5486,9 @@ msgstr "輸入您的 API 金鑰"
#. js-lingui-id: GpB8YV
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
msgid "Enterprise"
msgstr "企業"
@@ -5430,6 +5497,22 @@ msgstr "企業"
msgid "Enterprise Feature"
msgstr ""
#. js-lingui-id: S5c4pl
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Enterprise License"
msgstr ""
#. js-lingui-id: KGE5g0
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Enterprise license activated successfully"
msgstr ""
#. js-lingui-id: SLuq/l
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Entity ID"
@@ -5470,6 +5553,11 @@ msgstr "擦除已軟刪除的記錄"
msgid "Error"
msgstr "錯誤"
#. js-lingui-id: VouTsQ
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error activating enterprise license"
msgstr ""
#. js-lingui-id: GHKxvg
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error deleting api key."
@@ -5495,11 +5583,6 @@ msgstr "刪除 SSO 身份提供者時出錯"
msgid "Error editing SSO Identity Provider"
msgstr "編輯 SSO 身份提供者時出錯"
#. js-lingui-id: GsIfmO
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerMetricsGraph.tsx
msgid "Error fetching worker metrics: {errorMessage}"
msgstr "擷取工作程序指標時發生錯誤:{errorMessage}"
#. js-lingui-id: GdBN5t
#: src/modules/error-handler/components/AppRootErrorFallback.tsx
msgid "Error illustration"
@@ -5530,11 +5613,26 @@ msgstr "錯誤載入消息"
msgid "Error Message"
msgstr "錯誤信息"
#. js-lingui-id: Mox63G
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error opening billing portal"
msgstr ""
#. js-lingui-id: e/eieW
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Error opening Stripe"
msgstr ""
#. js-lingui-id: bT/0cM
#: src/modules/ui/field/display/components/PhonesDisplay.tsx
msgid "Error parsing additional phones: {error}"
msgstr "解析其他電話號碼時發生錯誤:{error}"
#. js-lingui-id: zRXcyv
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Error refreshing validity token. Please contact support."
msgstr ""
#. js-lingui-id: PfAip2
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error regenerating api key."
@@ -5997,6 +6095,11 @@ msgstr ""
msgid "Failed to {translatedOperationType} {translatedMetadataName}. Related {relatedEntityNames} validation failed. Please check your configuration and try again."
msgstr ""
#. js-lingui-id: R1XJV1
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Failed to activate enterprise license. Please check your key or contact support."
msgstr ""
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to activate skill"
@@ -6374,7 +6477,6 @@ msgstr ""
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/views/components/ViewBarFilterButton.tsx
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
#: src/modules/settings/roles/components/SettingsRolesList.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
@@ -6397,6 +6499,7 @@ msgid "Filter group rule options"
msgstr "篩選群組規則選項"
#. js-lingui-id: cSev+j
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
msgid "Filters"
msgstr "篩選"
@@ -6467,6 +6570,11 @@ msgstr "名字"
msgid "First name can not be empty"
msgstr "名字不可為空"
#. js-lingui-id: JREYkg
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Fix the payment issue to keep your enterprise features active."
msgstr ""
#. js-lingui-id: ylQd2j
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
@@ -6486,7 +6594,7 @@ msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
msgid "Folders"
msgstr "資料夾"
@@ -6635,6 +6743,22 @@ msgstr "產生的檔案"
msgid "German"
msgstr "德語"
#. js-lingui-id: sqtljx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Get Enterprise"
msgstr ""
#. js-lingui-id: o2kSwB
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Get Enterprise Key"
msgstr ""
#. js-lingui-id: NXEW3h
#: src/pages/onboarding/InviteTeam.tsx
msgid "Get the most out of your workspace by inviting your team."
@@ -6655,6 +6779,12 @@ msgstr "全局"
msgid "Go Back"
msgstr ""
#. js-lingui-id: Hb4Cgz
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Go to billing portal"
msgstr ""
#. js-lingui-id: mUbv8L
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
msgid "Go to Companies"
@@ -7240,6 +7370,11 @@ msgstr ""
msgid "Inbox"
msgstr "收件箱"
#. js-lingui-id: mtGDyy
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Incomplete"
msgstr ""
#. js-lingui-id: O5wNUa
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "index"
@@ -7882,9 +8017,8 @@ msgid "Launch manually"
msgstr "手動啟動"
#. js-lingui-id: rdU729
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsLayout.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -7957,6 +8091,12 @@ msgstr ""
msgid "Less than or equal"
msgstr "小於或等於"
#. js-lingui-id: 3qg5Ro
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Licensee"
msgstr ""
#. js-lingui-id: 1njn7W
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownThemesComponents.tsx
@@ -8260,6 +8400,8 @@ msgid "Manage billing and subscriptions"
msgstr "管理賬單和訂閱"
#. js-lingui-id: nvgUPq
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Manage billing information"
msgstr "管理帳單資訊"
@@ -8612,6 +8754,11 @@ msgstr "月份"
msgid "monthly"
msgstr "每月"
#. js-lingui-id: Sew/cK
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Monthly subscription"
msgstr ""
#. js-lingui-id: 6jefe3
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
@@ -8673,7 +8820,7 @@ msgid "Move right"
msgstr "向右移動"
#. js-lingui-id: 6qDVmw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Move to a folder"
msgstr ""
@@ -9274,13 +9421,13 @@ msgid "No Files"
msgstr "無檔案"
#. js-lingui-id: pYblOw
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
msgid "No folder"
msgstr "沒有資料夾"
#. js-lingui-id: 6XMhqL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
msgid "No folders available"
msgstr ""
@@ -9454,8 +9601,8 @@ msgstr "沒有結果"
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
#: src/modules/side-panel/components/SidePanelList.tsx
msgid "No results found"
msgstr "找不到結果"
@@ -10188,11 +10335,26 @@ msgstr "密碼重置鏈接已發送至電子郵件"
msgid "Paste the code below"
msgstr "在下方貼上代碼"
#. js-lingui-id: raz2Pm
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Paste your enterprise key below to activate"
msgstr ""
#. js-lingui-id: dNdgvF
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Paste your enterprise key here"
msgstr ""
#. js-lingui-id: I6gXOa
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "Path"
msgstr "路徑"
#. js-lingui-id: QmXBEc
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Payment issue"
msgstr ""
#. js-lingui-id: UbRKMZ
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
#: src/modules/settings/security/components/approvedAccessDomains/SettingsApprovedAccessDomainsListCard.tsx
@@ -10329,13 +10491,13 @@ msgid "Pick a {objectLabel} record"
msgstr "選擇一個{objectLabel}記錄"
#. js-lingui-id: JqqNlC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Pick a view"
msgstr ""
#. js-lingui-id: Wlba2h
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
msgid "Pick an object"
msgstr ""
@@ -10953,6 +11115,16 @@ msgstr "版本"
msgid "Reload"
msgstr "重新載入"
#. js-lingui-id: qbM5In
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Reload validity token"
msgstr ""
#. js-lingui-id: MZWnSC
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Reloading..."
msgstr ""
#. js-lingui-id: qlAIQ1
#: src/modules/object-metadata/components/RemoteNavigationDrawerSection.tsx
msgid "Remote"
@@ -11228,7 +11400,7 @@ msgstr "結果"
#. js-lingui-id: kx0s+n
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Results"
msgstr "結果"
@@ -11367,6 +11539,11 @@ msgstr ""
msgid "row level permission predicate group"
msgstr ""
#. js-lingui-id: xPaeO2
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Row-level security"
msgstr ""
#. js-lingui-id: 7jTlsu
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Ruby"
@@ -11485,6 +11662,8 @@ msgstr ""
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Search"
msgstr "搜索"
@@ -11521,7 +11700,7 @@ msgid "Search a field..."
msgstr "搜索字段..."
#. js-lingui-id: ITQFzL
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
msgid "Search a folder..."
msgstr ""
@@ -11689,7 +11868,7 @@ msgid "Search records"
msgstr "搜索記錄"
#. js-lingui-id: rRklUH
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Search records..."
msgstr ""
@@ -11724,11 +11903,13 @@ msgid "Searching the web for {query}"
msgstr ""
#. js-lingui-id: 8sgZS9
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month"
msgstr ""
#. js-lingui-id: aQnWwf
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month - billed yearly"
msgstr ""
@@ -12556,6 +12737,7 @@ msgstr "單點登錄"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "SSO (SAML / OIDC)"
msgstr "單一登入系統 (SAML / OIDC)"
@@ -12600,6 +12782,16 @@ msgstr ""
msgid "Start"
msgstr "開始"
#. js-lingui-id: ASqWQi
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Start a new enterprise subscription to re-enable enterprise features."
msgstr ""
#. js-lingui-id: OC6rnK
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Start a new enterprise subscription."
msgstr ""
#. js-lingui-id: D3iCkb
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
msgid "Start Date"
@@ -12625,6 +12817,11 @@ msgid "State"
msgstr "狀態"
#. js-lingui-id: uAQUqI
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
@@ -12920,11 +13117,11 @@ msgstr ""
#. js-lingui-id: 0apULK
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -13227,6 +13424,11 @@ msgstr "有一些必需的欄位尚未匹配或忽略。您要繼續嗎?"
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
msgstr "仍有一些行包含錯誤。提交時,包含錯誤的行將被忽略。"
#. js-lingui-id: CA9PTn
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "There is a payment issue with your subscription. Please update your payment method."
msgstr ""
#. js-lingui-id: WQk7Cf
#: src/modules/activities/timeline-activities/components/TimelineCard.tsx
msgid "There is no activity associated with this record."
@@ -13339,9 +13541,9 @@ msgstr ""
msgid "This database value overrides environment settings. "
msgstr "此資料庫值覆蓋環境設置。"
#. js-lingui-id: qHAJQ2
#. js-lingui-id: 8IRnd6
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "This feature is part of the Organization Plan"
msgid "This feature is part of the Enterprise Plan"
msgstr ""
#. js-lingui-id: own57K
@@ -13650,6 +13852,8 @@ msgid "Transfer ownership"
msgstr ""
#. js-lingui-id: lhkaAC
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/internal/PlansTags.tsx
msgid "Trial"
msgstr "試用"
@@ -13840,7 +14044,7 @@ msgid "Type anything..."
msgstr "輸入任何內容..."
#. js-lingui-id: UhqKcC
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
msgid "Type to search records"
msgstr ""
@@ -13998,6 +14202,11 @@ msgstr "無限聯繫人"
msgid "Unlisted"
msgstr "未列出"
#. js-lingui-id: Ep1uUU
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
msgstr ""
#. js-lingui-id: eQMhFX
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "unordered"
@@ -14067,6 +14276,11 @@ msgstr "更新"
msgid "Update"
msgstr "更新"
#. js-lingui-id: Y69tSP
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Update payment method"
msgstr ""
#. js-lingui-id: 0KAL3W
#: src/modules/side-panel/hooks/useOpenUpdateMultipleRecordsPageInSidePanel.tsx
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
@@ -14305,11 +14519,22 @@ msgstr "使用默認應用值。通過環境變量配置。"
msgid "Using default value. Set a custom value to override."
msgstr "使用默認值。設置自定義值來覆蓋。"
#. js-lingui-id: zzp4XX
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Valid until"
msgstr ""
#. js-lingui-id: Clr4qp
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Validate Data"
msgstr "驗證數據"
#. js-lingui-id: PWZBIT
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Validity token refreshed successfully"
msgstr ""
#. js-lingui-id: wMHvYH
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/KeyValuePairInput.tsx
@@ -14436,6 +14661,8 @@ msgid "View and filter events, page views, object changes"
msgstr ""
#. js-lingui-id: KANz0G
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "View billing details"
msgstr "查看計費詳情"
@@ -14485,6 +14712,11 @@ msgstr "視圖組"
msgid "View installed app"
msgstr ""
#. js-lingui-id: B02hom
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "View invoices"
msgstr ""
#. js-lingui-id: lh5BED
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerQueueMetricsSection.tsx
msgid "View Jobs"
@@ -14503,6 +14735,7 @@ msgstr ""
#. js-lingui-id: ecVcAx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "View Previous AI Chats"
msgstr "查看上一次的 AI 聊天"
@@ -14852,6 +15085,7 @@ msgstr "Workflow"
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
#: src/pages/settings/domains/SettingsDomains.tsx
@@ -15018,6 +15252,11 @@ msgstr "年"
msgid "yearly"
msgstr "年度"
#. js-lingui-id: Y1GwUe
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "Yearly subscription"
msgstr ""
#. js-lingui-id: +BGee5
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
msgid "years"
@@ -15150,6 +15389,36 @@ msgstr "您的電子郵件主題和會議標題將與您的團隊共享。"
msgid "Your emails and events content will be shared with your team."
msgstr "您的電子郵件和事件內容將與您的團隊共享。"
#. js-lingui-id: ahEwS4
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features are active"
msgstr ""
#. js-lingui-id: XMZLU/
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features are active but your enterprise key is missing or invalid. This may be expected, but if not, please set a valid signed enterprise key to manage your subscription, or contact support."
msgstr ""
#. js-lingui-id: AxcwNj
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features will be disabled"
msgstr ""
#. js-lingui-id: PT137K
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise features will remain active until {cancelAtDate}."
msgstr ""
#. js-lingui-id: 69Siss
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
msgid "Your enterprise key format is deprecated. Please activate a new key to keep enterprise features."
msgstr ""
#. js-lingui-id: NTpA4U
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your enterprise subscription has been canceled."
msgstr ""
#. js-lingui-id: 9ivpwk
#: src/pages/settings/SettingsProfile.tsx
msgid "Your name as it will be displayed"
@@ -15160,6 +15429,26 @@ msgstr "顯示您的姓名"
msgid "Your name as it will be displayed on the app"
msgstr "您的名字將如何在應用程式上顯示"
#. js-lingui-id: 319YPG
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription is active but your validity token is invalid or has expired. Try reloading it or contact support."
msgstr ""
#. js-lingui-id: Fx0axg
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription is scheduled for cancellation"
msgstr ""
#. js-lingui-id: XgIa/8
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription setup was not completed."
msgstr ""
#. js-lingui-id: Z9kbt6
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
msgid "Your subscription status is: {statusLabel}"
msgstr ""
#. js-lingui-id: QOd24n
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and "
@@ -1,4 +1,4 @@
import { getOperationName } from '@apollo/client/utilities';
import { getOperationName } from '~/utils/getOperationName';
import { type Meta, type StoryObj } from '@storybook/react-vite';
import { HttpResponse, graphql } from 'msw';
@@ -5,18 +5,18 @@ import { useObjectMetadataItem } from '@/object-metadata/hooks/useObjectMetadata
import { CoreObjectNameSingular } from 'twenty-shared/types';
import { useCreateOneRecord } from '@/object-record/hooks/useCreateOneRecord';
import { useIsFeatureEnabled } from '@/workspace/hooks/useIsFeatureEnabled';
import { useApolloClient } from '@apollo/client';
import { useApolloClient, useMutation } from '@apollo/client/react';
import { t } from '@lingui/core/macro';
import { assertIsDefinedOrThrow, isDefined } from 'twenty-shared/utils';
import {
FeatureFlagKey,
FieldMetadataType,
useUploadFilesFieldFileMutation,
UploadFilesFieldFileDocument,
} from '~/generated-metadata/graphql';
export const useUploadAttachmentFile = () => {
const apolloClient = useApolloClient();
const [uploadFilesFieldFile] = useUploadFilesFieldFileMutation({
const [uploadFilesFieldFile] = useMutation(UploadFilesFieldFileDocument, {
client: apolloClient,
});
const isAttachmentMigrated = useIsFeatureEnabled(
@@ -1,5 +1,5 @@
import { gql, InMemoryCache } from '@apollo/client';
import { MockedProvider } from '@apollo/client/testing';
import { MockedProvider } from '@apollo/client/testing/react';
import { act, renderHook } from '@testing-library/react';
import { type ReactNode } from 'react';
import { Provider as JotaiProvider } from 'jotai';
@@ -2,14 +2,14 @@ import {
type DocumentNode,
type OperationVariables,
type TypedDocumentNode,
useQuery,
} from '@apollo/client';
import { useQuery } from '@apollo/client/react';
import { useState } from 'react';
import { type ActivityTargetableObject } from '@/activities/types/ActivityTargetableEntity';
import { useSnackBarOnQueryError } from '@/apollo/hooks/useSnackBarOnQueryError';
import { useApolloCoreClient } from '@/object-metadata/hooks/useApolloCoreClient';
import { CoreObjectNameSingular } from 'twenty-shared/types';
import { useSnackBar } from '@/ui/feedback/snack-bar-manager/hooks/useSnackBar';
type CustomResolverQueryResult<
T extends {
@@ -37,7 +37,6 @@ export const useCustomResolver = <
isFetchingMore: boolean;
fetchMoreRecords: () => Promise<void>;
} => {
const { enqueueErrorSnackBar } = useSnackBar();
const apolloCoreClient = useApolloCoreClient();
const [page, setPage] = useState({
@@ -63,16 +62,14 @@ export const useCustomResolver = <
data,
loading: firstQueryLoading,
fetchMore,
error,
} = useQuery<CustomResolverQueryResult<T>>(query, {
client: apolloCoreClient,
variables: queryVariables,
onError: (error) => {
enqueueErrorSnackBar({
apolloError: error,
});
},
});
useSnackBarOnQueryError(error);
const fetchMoreRecords = async () => {
if (page.hasNextPage && !isFetchingMore && !firstQueryLoading) {
setIsFetchingMore(true);
@@ -8,10 +8,10 @@ import { type CalendarEvent } from '@/activities/calendar/types/CalendarEvent';
import { useOpenCalendarEventInSidePanel } from '@/side-panel/hooks/useOpenCalendarEventInSidePanel';
import { CoreObjectNameSingular } from 'twenty-shared/types';
import { useFindOneRecord } from '@/object-record/hooks/useFindOneRecord';
import { useUpsertRecordsInStore } from '@/object-record/record-store/hooks/useUpsertRecordsInStore';
import { UserContext } from '@/users/contexts/UserContext';
import { useContext } from 'react';
import { FIELD_RESTRICTED_ADDITIONAL_PERMISSIONS_REQUIRED } from 'twenty-shared/constants';
import { CombinedGraphQLErrors } from '@apollo/client/errors';
import { isDefined } from 'twenty-shared/utils';
import { themeCssVariables } from 'twenty-ui/theme-constants';
import {
@@ -96,7 +96,6 @@ export const EventCardCalendarEvent = ({
}: {
calendarEventId: string;
}) => {
const { upsertRecordsInStore } = useUpsertRecordsInStore();
const { openCalendarEventInSidePanel } = useOpenCalendarEventInSidePanel();
const {
@@ -118,28 +117,27 @@ export const EventCardCalendarEvent = ({
displayName: true,
},
},
onCompleted: (data) => {
upsertRecordsInStore({ partialRecords: [data] });
},
});
const { timeZone } = useContext(UserContext);
if (isDefined(error)) {
const shouldHideMessageContent = error.graphQLErrors.some(
(e) => e.extensions?.code === 'FORBIDDEN',
);
if (CombinedGraphQLErrors.is(error)) {
const shouldHideMessageContent = error.errors.some(
(e) => e.extensions?.code === 'FORBIDDEN',
);
if (shouldHideMessageContent) {
return <CalendarEventNotSharedContent />;
}
if (shouldHideMessageContent) {
return <CalendarEventNotSharedContent />;
}
const shouldHandleNotFound = error.graphQLErrors.some(
(e) => e.extensions?.code === 'NOT_FOUND',
);
const shouldHandleNotFound = error.errors.some(
(e) => e.extensions?.code === 'NOT_FOUND',
);
if (shouldHandleNotFound) {
return <div>{t`Calendar event not found`}</div>;
if (shouldHandleNotFound) {
return <div>{t`Calendar event not found`}</div>;
}
}
return <div>{t`Error loading calendar event`}</div>;
@@ -6,9 +6,9 @@ import { EventCardMessageForbidden } from '@/activities/timeline-activities/rows
import { useOpenEmailThreadInSidePanel } from '@/side-panel/hooks/useOpenEmailThreadInSidePanel';
import { CoreObjectNameSingular } from 'twenty-shared/types';
import { useFindOneRecord } from '@/object-record/hooks/useFindOneRecord';
import { useUpsertRecordsInStore } from '@/object-record/record-store/hooks/useUpsertRecordsInStore';
import { Trans, useLingui } from '@lingui/react/macro';
import { FIELD_RESTRICTED_ADDITIONAL_PERMISSIONS_REQUIRED } from 'twenty-shared/constants';
import { CombinedGraphQLErrors } from '@apollo/client/errors';
import { isDefined } from 'twenty-shared/utils';
import { OverflowingTextWithTooltip } from 'twenty-ui/display';
import { themeCssVariables } from 'twenty-ui/theme-constants';
@@ -61,7 +61,6 @@ export const EventCardMessage = ({
authorFullName: string;
}) => {
const { t } = useLingui();
const { upsertRecordsInStore } = useUpsertRecordsInStore();
const { openEmailThreadInSidePanel } = useOpenEmailThreadInSidePanel();
const {
@@ -81,30 +80,31 @@ export const EventCardMessage = ({
handle: true,
},
},
onCompleted: (data) => {
upsertRecordsInStore({ partialRecords: [data] });
},
});
if (isDefined(error)) {
const shouldHideMessageContent = error.graphQLErrors.some(
(e) => e.extensions?.code === 'FORBIDDEN',
);
if (shouldHideMessageContent) {
return <EventCardMessageForbidden notSharedByFullName={authorFullName} />;
}
const shouldHandleNotFound = error.graphQLErrors.some(
(e) => e.extensions?.code === 'NOT_FOUND',
);
if (shouldHandleNotFound) {
return (
<div>
<Trans>Message not found</Trans>
</div>
if (CombinedGraphQLErrors.is(error)) {
const shouldHideMessageContent = error.errors.some(
(e) => e.extensions?.code === 'FORBIDDEN',
);
if (shouldHideMessageContent) {
return (
<EventCardMessageForbidden notSharedByFullName={authorFullName} />
);
}
const shouldHandleNotFound = error.errors.some(
(e) => e.extensions?.code === 'NOT_FOUND',
);
if (shouldHandleNotFound) {
return (
<div>
<Trans>Message not found</Trans>
</div>
);
}
}
return (
@@ -7,11 +7,12 @@ import {
isDefined,
} from 'twenty-shared/utils';
import { type WorkflowAttachment } from 'twenty-shared/workflow';
import { useUploadWorkflowFileMutation } from '~/generated-metadata/graphql';
import { useMutation } from '@apollo/client/react';
import { UploadWorkflowFileDocument } from '~/generated-metadata/graphql';
import { logError } from '~/utils/logError';
export const useUploadWorkflowFile = () => {
const [uploadWorkflowFileMutation] = useUploadWorkflowFileMutation();
const [uploadWorkflowFileMutation] = useMutation(UploadWorkflowFileDocument);
const { enqueueSuccessSnackBar, enqueueErrorSnackBar } = useSnackBar();
const uploadWorkflowFile = async (
@@ -8,10 +8,11 @@ import { useState } from 'react';
import { SettingsPath } from 'twenty-shared/types';
import { getSettingsPath, isDefined } from 'twenty-shared/utils';
import { IconSparkles } from 'twenty-ui/display';
import { useQuery } from '@apollo/client/react';
import {
PermissionFlagType,
SubscriptionStatus,
useBillingPortalSessionQuery,
BillingPortalSessionDocument,
} from '~/generated-metadata/graphql';
export const AIChatCreditsExhaustedMessage = () => {
@@ -26,12 +27,14 @@ export const AIChatCreditsExhaustedMessage = () => {
const { [PermissionFlagType.WORKSPACE]: hasPermissionToManageBilling } =
usePermissionFlagMap();
const { data: billingPortalData, loading: isBillingPortalLoading } =
useBillingPortalSessionQuery({
const { data: billingPortalData, loading: isBillingPortalLoading } = useQuery(
BillingPortalSessionDocument,
{
variables: {
returnUrlPath: getSettingsPath(SettingsPath.Billing),
},
});
},
);
const openBillingPortal = () => {
if (
@@ -2,16 +2,16 @@ import { agentChatSelectedFilesState } from '@/ai/states/agentChatSelectedFilesS
import { agentChatUploadedFilesState } from '@/ai/states/agentChatUploadedFilesState';
import { useSnackBar } from '@/ui/feedback/snack-bar-manager/hooks/useSnackBar';
import { useAtomState } from '@/ui/utilities/state/jotai/hooks/useAtomState';
import { useApolloClient } from '@apollo/client';
import { useApolloClient, useMutation } from '@apollo/client/react';
import { useLingui } from '@lingui/react/macro';
import { isDefined } from 'twenty-shared/utils';
import { type AgentChatFileUIPart } from '@/ai/types/agent-chat-file-ui-part.type';
import { useUploadAiChatFileMutation } from '~/generated-metadata/graphql';
import { UploadAiChatFileDocument } from '~/generated-metadata/graphql';
export const useAIChatFileUpload = () => {
const apolloClient = useApolloClient();
const [uploadAiChatFile] = useUploadAiChatFileMutation({
const [uploadAiChatFile] = useMutation(UploadAiChatFileDocument, {
client: apolloClient,
});
const { t } = useLingui();
@@ -1,5 +1,5 @@
import { AGENT_CHAT_SEND_MESSAGE_EVENT_NAME } from '@/ai/constants/AgentChatSendMessageEventName';
import { useApolloClient } from '@apollo/client';
import { useApolloClient } from '@apollo/client/react';
import { useGetBrowsingContext } from '@/ai/hooks/useBrowsingContext';
import { agentChatSelectedFilesState } from '@/ai/states/agentChatSelectedFilesState';
@@ -1,5 +1,6 @@
import { useApolloClient } from '@apollo/client';
import { getOperationName } from '@apollo/client/utilities';
import { useApolloClient, useMutation, useQuery } from '@apollo/client/react';
import { getOperationName } from '~/utils/getOperationName';
import { useCallback, useEffect, useMemo } from 'react';
import { useStore } from 'jotai';
import { isDefined } from 'twenty-shared/utils';
@@ -27,9 +28,8 @@ import { useSetAtomState } from '@/ui/utilities/state/jotai/hooks/useSetAtomStat
import {
type GetChatThreadsQuery,
GetChatThreadsDocument,
useCreateChatThreadMutation,
useGetChatMessagesQuery,
useGetChatThreadsQuery,
CreateChatThreadDocument,
GetChatMessagesDocument,
} from '~/generated-metadata/graphql';
export const useAgentChatData = () => {
@@ -53,7 +53,7 @@ export const useAgentChatData = () => {
const { scrollToBottom } = useAgentChatScrollToBottom();
const [createChatThread] = useCreateChatThreadMutation({
const [createChatThread] = useMutation(CreateChatThreadDocument, {
onCompleted: (data) => {
if (store.get(isCreatingForFirstSendState.atom)) {
store.set(isCreatingForFirstSendState.atom, false);
@@ -136,62 +136,84 @@ export const useAgentChatData = () => {
],
});
const { loading: threadsLoading } = useGetChatThreadsQuery({
variables: { paging: { first: CHAT_THREADS_PAGE_SIZE } },
skip: isDefined(currentAIChatThread),
onCompleted: (data) => {
const threads = data.chatThreads.edges.map((edge) => edge.node);
if (threads.length > 0) {
const firstThread = threads[0];
const newDraft =
store.get(agentChatDraftsByThreadIdState.atom)[firstThread.id] ?? '';
setCurrentAIChatThread(firstThread.id);
setAgentChatInput(newDraft);
setCurrentAIChatThreadTitle(firstThread.title ?? null);
const hasUsageData =
(firstThread.conversationSize ?? 0) > 0 &&
isDefined(firstThread.contextWindowTokens);
setAgentChatUsage(
hasUsageData
? {
lastMessage: null,
conversationSize: firstThread.conversationSize ?? 0,
contextWindowTokens: firstThread.contextWindowTokens ?? 0,
inputTokens: firstThread.totalInputTokens,
outputTokens: firstThread.totalOutputTokens,
inputCredits: firstThread.totalInputCredits,
outputCredits: firstThread.totalOutputCredits,
}
: null,
);
} else {
store.set(hasTriggeredCreateForDraftState.atom, false);
setCurrentAIChatThread(AGENT_CHAT_NEW_THREAD_DRAFT_KEY);
setAgentChatInput(
store.get(agentChatDraftsByThreadIdState.atom)[
AGENT_CHAT_NEW_THREAD_DRAFT_KEY
] ?? '',
);
setCurrentAIChatThreadTitle(null);
setAgentChatUsage(null);
}
const { loading: threadsLoading, data: threadsData } = useQuery(
GetChatThreadsDocument,
{
variables: { paging: { first: CHAT_THREADS_PAGE_SIZE } },
skip: isDefined(currentAIChatThread),
},
});
);
const isNewThread = currentAIChatThread === AGENT_CHAT_NEW_THREAD_DRAFT_KEY;
const { loading: messagesLoading, data } = useGetChatMessagesQuery({
// TODO: Refactor this useEffect to avoid unnecessary re-renders (see PR #18584 review)
useEffect(() => {
if (!threadsData) return;
const threads = threadsData.chatThreads.edges.map((edge) => edge.node);
if (threads.length > 0) {
const firstThread = threads[0];
const newDraft =
store.get(agentChatDraftsByThreadIdState.atom)[firstThread.id] ?? '';
setCurrentAIChatThread(firstThread.id);
setAgentChatInput(newDraft);
setCurrentAIChatThreadTitle(firstThread.title ?? null);
const hasUsageData =
(firstThread.conversationSize ?? 0) > 0 &&
isDefined(firstThread.contextWindowTokens);
setAgentChatUsage(
hasUsageData
? {
lastMessage: null,
conversationSize: firstThread.conversationSize ?? 0,
contextWindowTokens: firstThread.contextWindowTokens ?? 0,
inputTokens: firstThread.totalInputTokens,
outputTokens: firstThread.totalOutputTokens,
inputCredits: firstThread.totalInputCredits,
outputCredits: firstThread.totalOutputCredits,
}
: null,
);
} else {
store.set(hasTriggeredCreateForDraftState.atom, false);
setCurrentAIChatThread(AGENT_CHAT_NEW_THREAD_DRAFT_KEY);
setAgentChatInput(
store.get(agentChatDraftsByThreadIdState.atom)[
AGENT_CHAT_NEW_THREAD_DRAFT_KEY
] ?? '',
);
setCurrentAIChatThreadTitle(null);
setAgentChatUsage(null);
}
}, [
threadsData,
store,
setCurrentAIChatThread,
setAgentChatInput,
setCurrentAIChatThreadTitle,
setAgentChatUsage,
]);
const isNewThread = useMemo(
() => currentAIChatThread === AGENT_CHAT_NEW_THREAD_DRAFT_KEY,
[currentAIChatThread],
);
const { loading: messagesLoading, data } = useQuery(GetChatMessagesDocument, {
variables: { threadId: currentAIChatThread! },
skip: !isDefined(currentAIChatThread) || isNewThread,
onCompleted: () => {
store.set(skipMessagesSkeletonUntilLoadedState.atom, false);
scrollToBottom();
},
});
const ensureThreadForDraft = () => {
// TODO: Refactor this useEffect to avoid unnecessary re-renders (see PR #18584 review)
useEffect(() => {
if (data) {
store.set(skipMessagesSkeletonUntilLoadedState.atom, false);
scrollToBottom();
}
}, [data, store, scrollToBottom]);
const ensureThreadForDraft = useCallback(() => {
const current = store.get(currentAIChatThreadState.atom);
if (current !== AGENT_CHAT_NEW_THREAD_DRAFT_KEY) {
return;
@@ -218,9 +240,16 @@ export const useAgentChatData = () => {
threadIdPromise.finally(() => {
setPendingCreateFromDraftPromise(null);
});
};
}, [
createChatThread,
setPendingCreateFromDraftPromise,
store,
setIsCreatingChatThread,
]);
const ensureThreadIdForSend = async (): Promise<string | null> => {
const ensureThreadIdForSend = useCallback(async (): Promise<
string | null
> => {
const current = store.get(currentAIChatThreadState.atom);
if (current !== AGENT_CHAT_NEW_THREAD_DRAFT_KEY) {
return current;
@@ -247,16 +276,33 @@ export const useAgentChatData = () => {
} finally {
setIsCreatingChatThread(false);
}
};
}, [createChatThread, store, setIsCreatingChatThread]);
const uiMessages = mapDBMessagesToUIMessages(data?.chatMessages || []);
const isLoading = messagesLoading || threadsLoading;
const threadsLoadingMemoized = useMemo(
() => threadsLoading,
[threadsLoading],
);
const messagesLoadingMemoized = useMemo(
() => messagesLoading,
[messagesLoading],
);
const uiMessages = useMemo(
() => mapDBMessagesToUIMessages(data?.chatMessages || []),
[data?.chatMessages],
);
const isLoading = useMemo(
() => messagesLoadingMemoized || threadsLoadingMemoized,
[messagesLoadingMemoized, threadsLoadingMemoized],
);
return {
uiMessages,
isLoading,
threadsLoading,
messagesLoading,
threadsLoading: threadsLoadingMemoized,
messagesLoading: messagesLoadingMemoized,
ensureThreadForDraft,
ensureThreadIdForSend,
};
@@ -2,6 +2,7 @@ import { AI_CHAT_SCROLL_WRAPPER_ID } from '@/ai/constants/AiChatScrollWrapperId'
import { useScrollWrapperHTMLElement } from '@/ui/utilities/scroll/hooks/useScrollWrapperHTMLElement';
import { scrollWrapperScrollBottomComponentState } from '@/ui/utilities/scroll/states/scrollWrapperScrollBottomComponentState';
import { useAtomComponentStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomComponentStateValue';
import { useCallback, useMemo } from 'react';
import { isDefined } from 'twenty-shared/utils';
const SCROLL_BOTTOM_THRESHOLD_PX = 10;
@@ -16,9 +17,12 @@ export const useAgentChatScrollToBottom = () => {
AI_CHAT_SCROLL_WRAPPER_ID,
);
const isNearBottom = scrollWrapperScrollBottom <= SCROLL_BOTTOM_THRESHOLD_PX;
const isNearBottom = useMemo(
() => scrollWrapperScrollBottom <= SCROLL_BOTTOM_THRESHOLD_PX,
[scrollWrapperScrollBottom],
);
const scrollToBottom = () => {
const scrollToBottom = useCallback(() => {
const { scrollWrapperElement } = getScrollWrapperElement();
if (!isDefined(scrollWrapperElement)) {
return;
@@ -27,7 +31,7 @@ export const useAgentChatScrollToBottom = () => {
scrollWrapperElement.scrollTo({
top: scrollWrapperElement.scrollHeight,
});
};
}, [getScrollWrapperElement]);
return { scrollToBottom, isNearBottom };
};
@@ -5,21 +5,25 @@ import { isDefined } from 'twenty-shared/utils';
import { CHAT_THREADS_PAGE_SIZE } from '@/ai/constants/ChatThreads';
import { useGetChatThreadsQuery } from '~/generated-metadata/graphql';
import { useQuery } from '@apollo/client/react';
import { GetChatThreadsDocument } from '~/generated-metadata/graphql';
const FETCH_MORE_ROOT_MARGIN = '200px';
export const useChatThreads = () => {
const [shouldFetchMore, setShouldFetchMore] = useState(false);
const { data, loading, fetchMore } = useGetChatThreadsQuery({
const { data, loading, fetchMore } = useQuery(GetChatThreadsDocument, {
variables: {
paging: { first: CHAT_THREADS_PAGE_SIZE },
},
onCompleted: () => {
setShouldFetchMore(false);
},
});
useEffect(() => {
if (data) {
setShouldFetchMore(false);
}
}, [data]);
const edges = data?.chatThreads?.edges ?? [];
const threads = edges.map((edge) => edge.node);
const pageInfo = data?.chatThreads?.pageInfo;
@@ -1,5 +1,5 @@
import { GET_TOOL_INDEX } from '@/ai/graphql/queries/getToolIndex';
import { useQuery } from '@apollo/client';
import { useQuery } from '@apollo/client/react';
type ToolIndexEntry = {
name: string;
@@ -2,7 +2,6 @@ import { useProcessNewMessageStreamIncrement } from '@/ai/hooks/useProcessNewMes
import { agentChatMessageComponentFamilyState } from '@/ai/states/agentChatMessageComponentFamilyState';
import { useAtomComponentFamilyStateCallbackState } from '@/ui/utilities/state/jotai/hooks/useAtomComponentFamilyStateCallbackState';
import { jotaiStore } from '@/ui/utilities/state/jotai/jotaiStore';
import { cloneDeep } from '@apollo/client/utilities';
import { useCallback } from 'react';
import { type ExtendedUIMessage } from 'twenty-shared/ai';
import { isDefined } from 'twenty-shared/utils';
@@ -38,7 +37,7 @@ export const useProcessIncrementalStreamMessages = () => {
continue;
}
const clonedMessage = cloneDeep(updatedMessage);
const clonedMessage = structuredClone(updatedMessage);
jotaiStore.set(
agentChatMessageFamilyCallbackState(updatedMessage.id),
@@ -80,9 +80,26 @@ export const useProcessUIToolCallMessage = () => {
break;
}
case 'navigateToView':
// TODO: implement
case 'navigateToView': {
const viewObjectNamePlural = objectMetadataItems.find(
(item) =>
item.nameSingular === navigateAppOutput.objectNameSingular,
)?.namePlural;
if (!isDefined(viewObjectNamePlural)) {
throw new Error(
`Object with singular name ${navigateAppOutput.objectNameSingular} not found, cannot navigate to view from chat.`,
);
}
navigateApp(
AppPath.RecordIndexPage,
{ objectNamePlural: viewObjectNamePlural },
{ viewId: navigateAppOutput.viewId },
);
break;
}
case 'wait': {
await sleep(navigateAppOutput.durationMs);
break;
@@ -1,5 +1,6 @@
import { gql } from '@apollo/client';
import { MockedProvider, type MockedResponse } from '@apollo/client/testing';
import { type MockedResponse } from '@apollo/client/testing';
import { MockedProvider } from '@apollo/client/testing/react';
import { act, renderHook, waitFor } from '@testing-library/react';
import { type ReactNode } from 'react';
import {
@@ -94,9 +95,7 @@ const mocks: MockedResponse[] = [
];
const Wrapper = ({ children }: { children: ReactNode }) => (
<MockedProvider mocks={mocks} addTypename={false}>
{children}
</MockedProvider>
<MockedProvider mocks={mocks}>{children}</MockedProvider>
);
describe('useEventTracker', () => {

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