Compare commits

..
Author SHA1 Message Date
Sonarly Claude Code 6460e344a2 Missing null check on action.settings.outputSchema crashes HTTP Request workflow editor
https://sonarly.com/issue/13598?type=bug

`useHttpRequestOutputSchema` hook calls `Object.keys(action.settings.outputSchema)` without guarding against `undefined`, crashing when a workflow's HTTP Request step has no `outputSchema` in its persisted settings JSON.

Fix: Added an `isDefined(action.settings.outputSchema)` guard before calling `Object.keys(action.settings.outputSchema)` in `useHttpRequestOutputSchema.ts`.

When a workflow's HTTP Request step has stored settings JSON that is missing the `outputSchema` field (e.g., from direct DB manipulation or a code path that didn't include it), the hook now gracefully initializes the `outputSchema` state to `null` instead of crashing with `TypeError: undefined is not an object`.

This matches the team's established pattern of using `isDefined()` from `twenty-shared/utils` for null guards, as seen in `filterOutputSchema.ts` and `useAvailableVariablesInWorkflowStep.ts`.

The fix is minimal and safe: when `outputSchema` is missing, the user sees an empty output schema field they can populate — the same experience as a newly created HTTP Request step.
2026-03-12 08:44:36 +00:00
540 changed files with 11459 additions and 21989 deletions
@@ -0,0 +1,66 @@
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
View File
@@ -207,6 +207,7 @@
"packages/twenty-e2e-testing",
"packages/twenty-shared",
"packages/twenty-sdk",
"packages/twenty-standard-application",
"packages/twenty-apps",
"packages/twenty-cli",
"packages/create-twenty-app",
+4 -1
View File
@@ -15,6 +15,7 @@ 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
@@ -28,11 +29,13 @@ 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-server
RUN yarn workspaces focus --production twenty-emails twenty-shared twenty-sdk twenty-standard-application twenty-server
# Build the front
FROM common-deps AS twenty-front-build
@@ -297,60 +297,46 @@ yarn command:prod cron:workflow:automated-cron-trigger
**وضع بيئي فقط:** إذا كنت قد ضبطت `IS_CONFIG_VARIABLES_IN_DB_ENABLED=false`، فأضف هذه المتغيرات إلى ملف `.env` الخاص بك بدلاً من ذلك.
</Warning>
## الوظائف المنطقية ومفسر الشيفرة
## الوظائف المنطقية
تدعم Twenty الوظائف المنطقية لعمليات سير العمل ومفسر الشيفرة لتحليل بيانات الذكاء الاصطناعي. كلاهما يقوم بتشغيل الشيفرة المقدمة من المستخدم ويتطلب تهيئة صريحة لأغراض الأمان.
### الإعدادات الافتراضية للأمان
**في بيئة الإنتاج (NODE_ENV=production):** يكون الإعداد الافتراضي لكل من الوظائف المنطقية ومفسر الشيفرة هو **معطل**. يجب تمكينهما صراحة باستخدام `LOGIC_FUNCTION_TYPE` و`CODE_INTERPRETER_TYPE` إذا كنت تحتاج إلى هذه الميزات.
**في بيئة التطوير (NODE_ENV=development):** يكون الإعداد الافتراضي لكليهما **LOCAL** لتسهيل التشغيل محلياً.
تدعم Twenty الوظائف المنطقية لعمليات سير العمل والمنطق المخصص. يتم تكوين بيئة التنفيذ عبر متغير البيئة `SERVERLESS_TYPE`.
<Warning>
**ملاحظة أمنية:** يقوم برنامج التشغيل المحلي (`LOGIC_FUNCTION_TYPE=LOCAL` أو `CODE_INTERPRETER_TYPE=LOCAL`) بتشغيل الشيفرة مباشرة على المضيف ضمن عملية Node.js من دون عزل. يجب استخدامه فقط للشيفرة الموثوقة أثناء التطوير. لعمليات النشر الإنتاجية التي تتعامل مع شيفرة غير موثوقة، استخدم `LOGIC_FUNCTION_TYPE=LAMBDA` أو `CODE_INTERPRETER_TYPE=E2B` (مع وضع الحماية)، أو اتركهما مُعطَّلَيْن.
**ملاحظة أمنية:** يقوم برنامج التشغيل المحلي (`SERVERLESS_TYPE=LOCAL`) بتشغيل الشيفرة مباشرةً على المضيف ضمن عملية Node.js من دون عزل. يجب استخدامه فقط للشيفرة الموثوقة أثناء التطوير. بالنسبة لعمليات النشر الإنتاجية التي تتعامل مع شيفرة غير موثوق بها، نوصي بشدة باستخدام `SERVERLESS_TYPE=LAMBDA` أو `SERVERLESS_TYPE=DISABLED`.
</Warning>
### الوظائف المنطقية - برامج التشغيل المتاحة
### برامج التشغيل المتاحة
| برنامج التشغيل | متغير البيئة | حالة الاستخدام | مستوى الأمان |
| -------------- | ------------------------------ | ------------------------------- | ----------------------------- |
| معطل | `LOGIC_FUNCTION_TYPE=DISABLED` | تعطيل الوظائف المنطقية بالكامل | غير متاح |
| محلي | `LOGIC_FUNCTION_TYPE=LOCAL` | بيئات التطوير والبيئات الموثوقة | منخفض (من دون عزل) |
| Lambda | `LOGIC_FUNCTION_TYPE=LAMBDA` | الإنتاج مع شيفرة غير موثوق بها | مرتفع (عزل على مستوى الأجهزة) |
| برنامج التشغيل | متغير البيئة | حالة الاستخدام | مستوى الأمان |
| -------------- | -------------------------- | ------------------------------- | ----------------------------- |
| معطل | `SERVERLESS_TYPE=DISABLED` | تعطيل الوظائف المنطقية بالكامل | غير متاح |
| محلي | `SERVERLESS_TYPE=LOCAL` | بيئات التطوير والبيئات الموثوقة | منخفض (من دون عزل) |
| Lambda | `SERVERLESS_TYPE=LAMBDA` | الإنتاج مع شيفرة غير موثوق بها | مرتفع (عزل على مستوى الأجهزة) |
### الوظائف المنطقية - الإعداد الموصى به
### التكوين الموصى به
**للتطوير:**
```bash
LOGIC_FUNCTION_TYPE=LOCAL # default when NODE_ENV=development
SERVERLESS_TYPE=LOCAL # default
```
**للإنتاج (AWS):**
```bash
LOGIC_FUNCTION_TYPE=LAMBDA
LOGIC_FUNCTION_LAMBDA_REGION=us-east-1
LOGIC_FUNCTION_LAMBDA_ROLE=arn:aws:iam::123456789:role/your-lambda-role
LOGIC_FUNCTION_LAMBDA_ACCESS_KEY_ID=your-access-key
LOGIC_FUNCTION_LAMBDA_SECRET_ACCESS_KEY=your-secret-key
SERVERLESS_TYPE=LAMBDA
SERVERLESS_LAMBDA_REGION=us-east-1
SERVERLESS_LAMBDA_ROLE=arn:aws:iam::123456789:role/your-lambda-role
SERVERLESS_LAMBDA_ACCESS_KEY_ID=your-access-key
SERVERLESS_LAMBDA_SECRET_ACCESS_KEY=your-secret-key
```
**لتعطيل الوظائف المنطقية:**
```bash
LOGIC_FUNCTION_TYPE=DISABLED # default when NODE_ENV=production
SERVERLESS_TYPE=DISABLED
```
### مفسر الشيفرة - برامج التشغيل المتاحة
| برنامج التشغيل | متغير البيئة | حالة الاستخدام | مستوى الأمان |
| -------------- | -------------------------------- | ------------------------------------- | ------------------------ |
| معطل | `CODE_INTERPRETER_TYPE=DISABLED` | تعطيل تنفيذ الشيفرة بالذكاء الاصطناعي | غير متاح |
| محلي | `CODE_INTERPRETER_TYPE=LOCAL` | للتطوير فقط | منخفض (من دون عزل) |
| E2B | `CODE_INTERPRETER_TYPE=E_2_B` | الإنتاج مع تنفيذ ضمن صندوق رمل معزول | مرتفعة (صندوق رمل معزول) |
<Note>
عند استخدام `LOGIC_FUNCTION_TYPE=DISABLED` أو `CODE_INTERPRETER_TYPE=DISABLED`، سترجع أي محاولة للتنفيذ خطأً. يكون هذا مفيدًا إذا كنت ترغب في تشغيل Twenty من دون هذه الإمكانات.
عند استخدام `SERVERLESS_TYPE=DISABLED`، ستؤدي أي محاولة لتنفيذ وظيفة منطقية إلى إرجاع خطأ. يكون هذا مفيدًا إذا كنت ترغب في تشغيل Twenty من دون إمكانات الوظائف المنطقية.
</Note>
@@ -297,60 +297,46 @@ yarn command:prod cron:workflow:automated-cron-trigger
**Nur-Umgebungsmodus:** Wenn Sie `IS_CONFIG_VARIABLES_IN_DB_ENABLED=false` setzen, fügen Sie diese Variablen stattdessen Ihrer `.env`-Datei hinzu.
</Warning>
## Logikfunktionen & Code-Interpreter
## Logikfunktionen
Twenty unterstützt Logikfunktionen für Workflows und den Code-Interpreter für KI-Datenanalyse. Beide führen vom Benutzer bereitgestellten Code aus und erfordern aus Sicherheitsgründen eine explizite Konfiguration.
### Sicherheits-Standardeinstellungen
**In Produktion (NODE_ENV=production):** Sowohl Logikfunktionen als auch der Code-Interpreter sind standardmäßig **deaktiviert**. Sie müssen sie, wenn Sie diese Funktionen benötigen, explizit mit `LOGIC_FUNCTION_TYPE` und `CODE_INTERPRETER_TYPE` aktivieren.
**In der Entwicklung (NODE_ENV=development):** Beide sind der Einfachheit halber beim lokalen Betrieb standardmäßig **LOCAL**.
Twenty unterstützt Logikfunktionen für Workflows und benutzerdefinierte Logik. Die Ausführungsumgebung wird über die Umgebungsvariable `SERVERLESS_TYPE` konfiguriert.
<Warning>
**Sicherheitshinweis:** Der lokale Treiber (`LOGIC_FUNCTION_TYPE=LOCAL` oder `CODE_INTERPRETER_TYPE=LOCAL`) führt Code ohne Sandbox direkt auf dem Host in einem Node.js-Prozess aus. Er sollte nur für vertrauenswürdigen Code in der Entwicklung verwendet werden. Für Produktionsbereitstellungen, die nicht vertrauenswürdigen Code verarbeiten, verwenden Sie `LOGIC_FUNCTION_TYPE=LAMBDA` oder `CODE_INTERPRETER_TYPE=E2B` (mit Sandbox-Isolierung), oder lassen Sie sie deaktiviert.
**Sicherheitshinweis:** Der lokale Treiber (`SERVERLESS_TYPE=LOCAL`) führt Code ohne Sandbox direkt auf dem Host in einem Node.js-Prozess aus. Er sollte nur für vertrauenswürdigen Code in der Entwicklung verwendet werden. Für Produktivbereitstellungen, die nicht vertrauenswürdigen Code verarbeiten, empfehlen wir nachdrücklich, `SERVERLESS_TYPE=LAMBDA` oder `SERVERLESS_TYPE=DISABLED` zu verwenden.
</Warning>
### Logikfunktionen - Verfügbare Treiber
### Verfügbare Treiber
| Treiber | Umgebungsvariable | Anwendungsfall | Sicherheitsstufe |
| ----------- | ------------------------------ | -------------------------------------------------- | ---------------------------------- |
| Deaktiviert | `LOGIC_FUNCTION_TYPE=DISABLED` | Logikfunktionen vollständig deaktivieren | N/A |
| Lokal | `LOGIC_FUNCTION_TYPE=LOCAL` | Entwicklung und vertrauenswürdige Umgebungen | Niedrig (keine Sandbox) |
| Lambda | `LOGIC_FUNCTION_TYPE=LAMBDA` | Produktivbetrieb mit nicht vertrauenswürdigem Code | Hoch (Isolation auf Hardwareebene) |
| Treiber | Umgebungsvariable | Anwendungsfall | Sicherheitsstufe |
| ----------- | -------------------------- | -------------------------------------------------- | ---------------------------------- |
| Deaktiviert | `SERVERLESS_TYPE=DISABLED` | Logikfunktionen vollständig deaktivieren | N/A |
| Lokal | `SERVERLESS_TYPE=LOCAL` | Entwicklung und vertrauenswürdige Umgebungen | Niedrig (keine Sandbox) |
| Lambda | `SERVERLESS_TYPE=LAMBDA` | Produktivbetrieb mit nicht vertrauenswürdigem Code | Hoch (Isolation auf Hardwareebene) |
### Logikfunktionen - Empfohlene Konfiguration
### Empfohlene Konfiguration
**Für die Entwicklung:**
```bash
LOGIC_FUNCTION_TYPE=LOCAL # default when NODE_ENV=development
SERVERLESS_TYPE=LOCAL # default
```
**Für den Produktivbetrieb (AWS):**
```bash
LOGIC_FUNCTION_TYPE=LAMBDA
LOGIC_FUNCTION_LAMBDA_REGION=us-east-1
LOGIC_FUNCTION_LAMBDA_ROLE=arn:aws:iam::123456789:role/your-lambda-role
LOGIC_FUNCTION_LAMBDA_ACCESS_KEY_ID=your-access-key
LOGIC_FUNCTION_LAMBDA_SECRET_ACCESS_KEY=your-secret-key
SERVERLESS_TYPE=LAMBDA
SERVERLESS_LAMBDA_REGION=us-east-1
SERVERLESS_LAMBDA_ROLE=arn:aws:iam::123456789:role/your-lambda-role
SERVERLESS_LAMBDA_ACCESS_KEY_ID=your-access-key
SERVERLESS_LAMBDA_SECRET_ACCESS_KEY=your-secret-key
```
**Zum Deaktivieren von Logikfunktionen:**
```bash
LOGIC_FUNCTION_TYPE=DISABLED # default when NODE_ENV=production
SERVERLESS_TYPE=DISABLED
```
### Code-Interpreter - Verfügbare Treiber
| Treiber | Umgebungsvariable | Anwendungsfall | Sicherheitsstufe |
| ----------- | -------------------------------- | ------------------------------------------ | ------------------------ |
| Deaktiviert | `CODE_INTERPRETER_TYPE=DISABLED` | KI-Codeausführung deaktivieren | N/A |
| Lokal | `CODE_INTERPRETER_TYPE=LOCAL` | Nur für die Entwicklung | Niedrig (keine Sandbox) |
| E2B | `CODE_INTERPRETER_TYPE=E_2_B` | Produktion mit Ausführung in einer Sandbox | Hoch (isolierte Sandbox) |
<Note>
Bei Verwendung von `LOGIC_FUNCTION_TYPE=DISABLED` oder `CODE_INTERPRETER_TYPE=DISABLED` führt jeder Ausführungsversuch zu einem Fehler. Dies ist nützlich, wenn Sie Twenty ohne diese Funktionen betreiben möchten.
Bei Verwendung von `SERVERLESS_TYPE=DISABLED` führt jeder Versuch, eine Logikfunktion auszuführen, zu einem Fehler. Dies ist nützlich, wenn Sie Twenty ohne Unterstützung für Logikfunktionen betreiben möchten.
</Note>
@@ -296,60 +296,46 @@ yarn command:prod cron:workflow:automated-cron-trigger
**Modalità solo ambiente:** Se imposti `IS_CONFIG_VARIABLES_IN_DB_ENABLED=false`, aggiungi queste variabili al tuo file `.env` invece.
</Warning>
## Funzioni logiche & interprete del codice
## Funzioni logiche
Twenty supporta le funzioni logiche per i workflow e l'interprete del codice per l'analisi dei dati con IA. Entrambi eseguono codice fornito dall'utente e richiedono una configurazione esplicita per motivi di sicurezza.
### Impostazioni di sicurezza predefinite
**In produzione (NODE_ENV=production):** Sia le funzioni logiche sia l'interprete del codice hanno come impostazione predefinita **Disabilitato**. È necessario abilitarli esplicitamente con `LOGIC_FUNCTION_TYPE` e `CODE_INTERPRETER_TYPE` se queste funzionalità sono necessarie.
**In sviluppo (NODE_ENV=development):** Entrambi sono impostati su **LOCAL** per comodità quando vengono eseguiti in locale.
Twenty supporta le funzioni logiche per i workflow e la logica personalizzata. L'ambiente di esecuzione è configurato tramite la variabile di ambiente `SERVERLESS_TYPE`.
<Warning>
**Avviso di sicurezza:** Il driver locale (`LOGIC_FUNCTION_TYPE=LOCAL` o `CODE_INTERPRETER_TYPE=LOCAL`) esegue il codice direttamente sull'host in un processo Node.js senza sandboxing. Dovrebbe essere utilizzato solo per codice attendibile in fase di sviluppo. Per le distribuzioni in produzione che gestiscono codice non affidabile, usa `LOGIC_FUNCTION_TYPE=LAMBDA` o `CODE_INTERPRETER_TYPE=E2B` (con sandboxing), oppure lasciali disabilitati.
**Avviso di sicurezza:** Il driver locale (`SERVERLESS_TYPE=LOCAL`) esegue il codice direttamente sull'host in un processo Node.js senza sandboxing. Dovrebbe essere utilizzato solo per codice attendibile in fase di sviluppo. Per le distribuzioni in produzione che gestiscono codice non attendibile, consigliamo vivamente di usare `SERVERLESS_TYPE=LAMBDA` o `SERVERLESS_TYPE=DISABLED`.
</Warning>
### Funzioni logiche - Driver disponibili
### Driver disponibili
| Driver | Variabile di ambiente | Caso d'uso | Livello di sicurezza |
| ------------ | ------------------------------ | -------------------------------------------- | ------------------------------------ |
| Disabilitato | `LOGIC_FUNCTION_TYPE=DISABLED` | Disabilita completamente le funzioni logiche | N/A |
| Locale | `LOGIC_FUNCTION_TYPE=LOCAL` | Ambienti di sviluppo e attendibili | Basso (nessuna sandbox) |
| Lambda | `LOGIC_FUNCTION_TYPE=LAMBDA` | Produzione con codice non attendibile | Alto (isolamento a livello hardware) |
| Driver | Variabile di ambiente | Caso d'uso | Livello di sicurezza |
| ------------ | -------------------------- | -------------------------------------------- | ------------------------------------ |
| Disabilitato | `SERVERLESS_TYPE=DISABLED` | Disabilita completamente le funzioni logiche | N/A |
| Locale | `SERVERLESS_TYPE=LOCAL` | Ambienti di sviluppo e attendibili | Basso (nessuna sandbox) |
| Lambda | `SERVERLESS_TYPE=LAMBDA` | Produzione con codice non attendibile | Alto (isolamento a livello hardware) |
### Funzioni logiche - Configurazione consigliata
### Configurazione consigliata
**Per lo sviluppo:**
```bash
LOGIC_FUNCTION_TYPE=LOCAL # default when NODE_ENV=development
SERVERLESS_TYPE=LOCAL # default
```
**Per la produzione (AWS):**
```bash
LOGIC_FUNCTION_TYPE=LAMBDA
LOGIC_FUNCTION_LAMBDA_REGION=us-east-1
LOGIC_FUNCTION_LAMBDA_ROLE=arn:aws:iam::123456789:role/your-lambda-role
LOGIC_FUNCTION_LAMBDA_ACCESS_KEY_ID=your-access-key
LOGIC_FUNCTION_LAMBDA_SECRET_ACCESS_KEY=your-secret-key
SERVERLESS_TYPE=LAMBDA
SERVERLESS_LAMBDA_REGION=us-east-1
SERVERLESS_LAMBDA_ROLE=arn:aws:iam::123456789:role/your-lambda-role
SERVERLESS_LAMBDA_ACCESS_KEY_ID=your-access-key
SERVERLESS_LAMBDA_SECRET_ACCESS_KEY=your-secret-key
```
**Per disabilitare le funzioni logiche:**
```bash
LOGIC_FUNCTION_TYPE=DISABLED # default when NODE_ENV=production
SERVERLESS_TYPE=DISABLED
```
### Interprete del codice - Driver disponibili
| Driver | Variabile di ambiente | Caso d'uso | Livello di sicurezza |
| ------------ | -------------------------------- | ------------------------------------- | ----------------------- |
| Disabilitato | `CODE_INTERPRETER_TYPE=DISABLED` | Disabilita l'esecuzione del codice IA | N/A |
| Locale | `CODE_INTERPRETER_TYPE=LOCAL` | Solo per lo sviluppo | Basso (nessuna sandbox) |
| E2B | `CODE_INTERPRETER_TYPE=E_2_B` | Produzione con esecuzione in sandbox | Alta (sandbox isolata) |
<Note>
Quando si utilizza `LOGIC_FUNCTION_TYPE=DISABLED` o `CODE_INTERPRETER_TYPE=DISABLED`, qualsiasi tentativo di esecuzione restituirà un errore. Ciò è utile se si desidera eseguire Twenty senza queste funzionalità.
Quando si utilizza `SERVERLESS_TYPE=DISABLED`, qualsiasi tentativo di eseguire una funzione logica restituirà un errore. Ciò è utile se si desidera eseguire Twenty senza il supporto per le funzioni logiche.
</Note>
@@ -297,60 +297,46 @@ yarn command:prod cron:workflow:automated-cron-trigger
**Modo somente ambiente:** Se você definir `IS_CONFIG_VARIABLES_IN_DB_ENABLED=false`, adicione estas variáveis ao seu arquivo `.env`.
</Warning>
## Funções lógicas e interpretador de código
## Funções lógicas
O Twenty oferece suporte a funções lógicas para fluxos de trabalho e ao interpretador de código para análise de dados com IA. Ambos executam código fornecido pelo usuário e exigem configuração explícita por motivos de segurança.
### Padrões de segurança
**Em produção (NODE_ENV=production):** Tanto as funções lógicas quanto o interpretador de código têm como padrão **Desativado**. Você deve habilitá-los explicitamente com `LOGIC_FUNCTION_TYPE` e `CODE_INTERPRETER_TYPE` se precisar desses recursos.
**Em desenvolvimento (NODE_ENV=development):** Ambos têm como padrão **LOCAL** por conveniência ao executar localmente.
O Twenty oferece suporte a funções lógicas para fluxos de trabalho e lógica personalizada. O ambiente de execução é configurado por meio da variável de ambiente `SERVERLESS_TYPE`.
<Warning>
**Aviso de segurança:** O driver local (`LOGIC_FUNCTION_TYPE=LOCAL` ou `CODE_INTERPRETER_TYPE=LOCAL`) executa código diretamente no host em um processo Node.js sem sandbox. Deve ser usado apenas para código confiável em desenvolvimento. Para implantações de produção que lidam com código não confiável, use `LOGIC_FUNCTION_TYPE=LAMBDA` ou `CODE_INTERPRETER_TYPE=E2B` (com sandbox), ou mantenha-os desativados.
**Aviso de segurança:** O driver local (`SERVERLESS_TYPE=LOCAL`) executa código diretamente no host em um processo Node.js sem sandbox. Deve ser usado apenas para código confiável em desenvolvimento. Para implantações de produção que lidam com código não confiável, recomendamos fortemente usar `SERVERLESS_TYPE=LAMBDA` ou `SERVERLESS_TYPE=DISABLED`.
</Warning>
### Funções lógicas - Drivers disponíveis
### Drivers disponíveis
| Driver | Variável de ambiente | Caso de uso | Nível de segurança |
| ---------- | ------------------------------ | ------------------------------------------ | -------------------------------------- |
| Desativado | `LOGIC_FUNCTION_TYPE=DISABLED` | Desativar completamente as funções lógicas | N/A |
| Local | `LOGIC_FUNCTION_TYPE=LOCAL` | Desenvolvimento e ambientes confiáveis | Baixo (sem sandbox) |
| Lambda | `LOGIC_FUNCTION_TYPE=LAMBDA` | Produção com código não confiável | Alto (isolamento em nível de hardware) |
| Driver | Variável de ambiente | Caso de uso | Nível de segurança |
| ---------- | -------------------------- | ------------------------------------------ | -------------------------------------- |
| Desativado | `SERVERLESS_TYPE=DISABLED` | Desativar completamente as funções lógicas | N/A |
| Local | `SERVERLESS_TYPE=LOCAL` | Desenvolvimento e ambientes confiáveis | Baixo (sem sandbox) |
| Lambda | `SERVERLESS_TYPE=LAMBDA` | Produção com código não confiável | Alto (isolamento em nível de hardware) |
### Funções lógicas - Configuração recomendada
### Configuração recomendada
**Para desenvolvimento:**
```bash
LOGIC_FUNCTION_TYPE=LOCAL # default when NODE_ENV=development
SERVERLESS_TYPE=LOCAL # default
```
**Para produção (AWS):**
```bash
LOGIC_FUNCTION_TYPE=LAMBDA
LOGIC_FUNCTION_LAMBDA_REGION=us-east-1
LOGIC_FUNCTION_LAMBDA_ROLE=arn:aws:iam::123456789:role/your-lambda-role
LOGIC_FUNCTION_LAMBDA_ACCESS_KEY_ID=your-access-key
LOGIC_FUNCTION_LAMBDA_SECRET_ACCESS_KEY=your-secret-key
SERVERLESS_TYPE=LAMBDA
SERVERLESS_LAMBDA_REGION=us-east-1
SERVERLESS_LAMBDA_ROLE=arn:aws:iam::123456789:role/your-lambda-role
SERVERLESS_LAMBDA_ACCESS_KEY_ID=your-access-key
SERVERLESS_LAMBDA_SECRET_ACCESS_KEY=your-secret-key
```
**Para desativar as funções lógicas:**
```bash
LOGIC_FUNCTION_TYPE=DISABLED # default when NODE_ENV=production
SERVERLESS_TYPE=DISABLED
```
### Interpretador de código - Drivers disponíveis
| Driver | Variável de ambiente | Caso de uso | Nível de segurança |
| ---------- | -------------------------------- | ------------------------------------ | ---------------------- |
| Desativado | `CODE_INTERPRETER_TYPE=DISABLED` | Desativar a execução de código de IA | N/A |
| Local | `CODE_INTERPRETER_TYPE=LOCAL` | Apenas para desenvolvimento | Baixo (sem sandbox) |
| E2B | `CODE_INTERPRETER_TYPE=E_2_B` | Produção com execução em sandbox | Alto (sandbox isolado) |
<Note>
Ao usar `LOGIC_FUNCTION_TYPE=DISABLED` ou `CODE_INTERPRETER_TYPE=DISABLED`, qualquer tentativa de execução retornará um erro. Isso é útil se você quiser executar o Twenty sem esses recursos.
Ao usar `SERVERLESS_TYPE=DISABLED`, qualquer tentativa de executar uma função lógica retornará um erro. Isso é útil se você quiser executar o Twenty sem recursos de funções lógicas.
</Note>
@@ -297,60 +297,46 @@ yarn command:prod cron:workflow:automated-cron-trigger
**Mod doar pentru mediu:** Dacă setați `IS_CONFIG_VARIABLES_IN_DB_ENABLED=false`, adăugați aceste variabile în fișierul dvs. `.env` în schimb.
</Warning>
## Funcții logice și interpretor de cod
## Funcții logice
Twenty acceptă funcții logice pentru fluxuri de lucru și interpretorul de cod pentru analiza datelor cu AI. Ambele rulează cod furnizat de utilizator și necesită o configurare explicită din motive de securitate.
### Valori implicite de securitate
**În producție (NODE_ENV=production):** Atât funcțiile logice, cât și interpretorul de cod au implicit valoarea **Dezactivat**. Trebuie să le activezi explicit cu `LOGIC_FUNCTION_TYPE` și `CODE_INTERPRETER_TYPE` dacă ai nevoie de aceste funcționalități.
**În dezvoltare (NODE_ENV=development):** Ambele au implicit valoarea **LOCAL** pentru comoditate când rulezi local.
Twenty acceptă funcții logice pentru fluxuri de lucru și logică personalizată. Mediul de execuție este configurat prin variabila de mediu `SERVERLESS_TYPE`.
<Warning>
**Atenționare de securitate:** Driverul local (`LOGIC_FUNCTION_TYPE=LOCAL` sau `CODE_INTERPRETER_TYPE=LOCAL`) rulează codul direct pe gazdă într-un proces Node.js, fără sandboxing. Ar trebui utilizat doar pentru cod de încredere, în dezvoltare. Pentru implementări în producție care gestionează cod neverificat, folosiți `LOGIC_FUNCTION_TYPE=LAMBDA` sau `CODE_INTERPRETER_TYPE=E2B` (cu sandboxing) ori păstrați-le dezactivate.
**Atenționare de securitate:** Driverul local (`SERVERLESS_TYPE=LOCAL`) rulează codul direct pe gazdă într-un proces Node.js, fără sandboxing. Ar trebui utilizat doar pentru cod de încredere, în dezvoltare. Pentru implementări de producție care gestionează cod neverificat, recomandăm cu tărie utilizarea `SERVERLESS_TYPE=LAMBDA` sau `SERVERLESS_TYPE=DISABLED`.
</Warning>
### Funcții logice - Drivere disponibile
### Drivere disponibile
| Driver | Variabilă de mediu | Caz de utilizare | Nivel de securitate |
| ---------- | ------------------------------ | ------------------------------------- | -------------------------------------- |
| Dezactivat | `LOGIC_FUNCTION_TYPE=DISABLED` | Dezactivează complet funcțiile logice | N/A |
| Local | `LOGIC_FUNCTION_TYPE=LOCAL` | Dezvoltare și medii de încredere | Scăzut (fără sandboxing) |
| Lambda | `LOGIC_FUNCTION_TYPE=LAMBDA` | Producție cu cod neverificat | Ridicat (izolare la nivel de hardware) |
| Driver | Variabilă de mediu | Caz de utilizare | Nivel de securitate |
| ---------- | -------------------------- | ------------------------------------- | -------------------------------------- |
| Dezactivat | `SERVERLESS_TYPE=DISABLED` | Dezactivează complet funcțiile logice | N/A |
| Local | `SERVERLESS_TYPE=LOCAL` | Dezvoltare și medii de încredere | Scăzut (fără sandboxing) |
| Lambda | `SERVERLESS_TYPE=LAMBDA` | Producție cu cod neverificat | Ridicat (izolare la nivel de hardware) |
### Funcții logice - Configurare recomandată
### Configurație recomandată
**Pentru dezvoltare:**
```bash
LOGIC_FUNCTION_TYPE=LOCAL # default when NODE_ENV=development
SERVERLESS_TYPE=LOCAL # default
```
**Pentru producție (AWS):**
```bash
LOGIC_FUNCTION_TYPE=LAMBDA
LOGIC_FUNCTION_LAMBDA_REGION=us-east-1
LOGIC_FUNCTION_LAMBDA_ROLE=arn:aws:iam::123456789:role/your-lambda-role
LOGIC_FUNCTION_LAMBDA_ACCESS_KEY_ID=your-access-key
LOGIC_FUNCTION_LAMBDA_SECRET_ACCESS_KEY=your-secret-key
SERVERLESS_TYPE=LAMBDA
SERVERLESS_LAMBDA_REGION=us-east-1
SERVERLESS_LAMBDA_ROLE=arn:aws:iam::123456789:role/your-lambda-role
SERVERLESS_LAMBDA_ACCESS_KEY_ID=your-access-key
SERVERLESS_LAMBDA_SECRET_ACCESS_KEY=your-secret-key
```
**Pentru a dezactiva funcțiile logice:**
```bash
LOGIC_FUNCTION_TYPE=DISABLED # default when NODE_ENV=production
SERVERLESS_TYPE=DISABLED
```
### Interpretor de cod - Drivere disponibile
| Driver | Variabilă de mediu | Caz de utilizare | Nivel de securitate |
| ---------- | -------------------------------- | ---------------------------------------- | ------------------------ |
| Dezactivat | `CODE_INTERPRETER_TYPE=DISABLED` | Dezactivați execuția codului de către AI | N/A |
| Local | `CODE_INTERPRETER_TYPE=LOCAL` | Doar pentru dezvoltare | Scăzut (fără sandboxing) |
| E2B | `CODE_INTERPRETER_TYPE=E_2_B` | Producție cu execuție în sandbox | Ridicat (sandbox izolat) |
<Note>
Când utilizați `LOGIC_FUNCTION_TYPE=DISABLED` sau `CODE_INTERPRETER_TYPE=DISABLED`, orice încercare de execuție va returna o eroare. Acest lucru este util dacă doriți să rulați Twenty fără aceste capabilități.
Când se utilizează `SERVERLESS_TYPE=DISABLED`, orice încercare de a executa o funcție logică va returna o eroare. Acest lucru este util dacă doriți să rulați Twenty fără capabilități de funcții logice.
</Note>
@@ -296,60 +296,46 @@ yarn command:prod cron:workflow:automated-cron-trigger
**Режим только для среды:** если вы установили `IS_CONFIG_VARIABLES_IN_DB_ENABLED=false`, добавьте эти переменные в свой `.env` файл вместо этого.
</Warning>
## Логические функции и интерпретатор кода
## Логические функции
Twenty поддерживает логические функции для рабочих процессов и интерпретатор кода для анализа данных ИИ. Оба запускают предоставленный пользователем код и требуют явной настройки в целях безопасности.
### Настройки безопасности по умолчанию
**В продакшене (NODE_ENV=production):** логические функции и интерпретатор кода по умолчанию — **Отключено**. Если вам нужны эти функции, вы должны явно включить их с помощью `LOGIC_FUNCTION_TYPE` и `CODE_INTERPRETER_TYPE`.
**В разработке (NODE_ENV=development):** оба по умолчанию — **LOCAL** для удобства при локальном запуске.
Twenty поддерживает логические функции для рабочих процессов и пользовательской логики. Среда выполнения настраивается через переменную окружения `SERVERLESS_TYPE`.
<Warning>
**Уведомление о безопасности:** локальный драйвер (`LOGIC_FUNCTION_TYPE=LOCAL` или `CODE_INTERPRETER_TYPE=LOCAL`) выполняет код напрямую на хосте в процессе Node.js без изоляции. Его следует использовать только для доверенного кода в разработке. Для рабочих развёртываний, обрабатывающих недоверенный код, используйте `LOGIC_FUNCTION_TYPE=LAMBDA` или `CODE_INTERPRETER_TYPE=E2B` (с песочницей) либо оставьте их отключёнными.
**Уведомление о безопасности:** локальный драйвер (`SERVERLESS_TYPE=LOCAL`) выполняет код напрямую на хосте в процессе Node.js без изоляции. Его следует использовать только для доверенного кода в разработке. Для промышленных развертываний, обрабатывающих недоверенный код, настоятельно рекомендуем использовать `SERVERLESS_TYPE=LAMBDA` или `SERVERLESS_TYPE=DISABLED`.
</Warning>
### Логические функции — доступные драйверы
### Доступные драйверы
| Драйвер | Переменная окружения | Сценарий использования | Уровень безопасности |
| --------- | ------------------------------ | -------------------------------------- | ----------------------------------------- |
| Отключено | `LOGIC_FUNCTION_TYPE=DISABLED` | Полностью отключить логические функции | Н/Д |
| Локальный | `LOGIC_FUNCTION_TYPE=LOCAL` | Разработка и доверенные среды | Низкий (без изоляции) |
| Lambda | `LOGIC_FUNCTION_TYPE=LAMBDA` | Продакшн с недоверенным кодом | Высокий (изоляция на уровне оборудования) |
| Драйвер | Переменная окружения | Сценарий использования | Уровень безопасности |
| --------- | -------------------------- | -------------------------------------- | ----------------------------------------- |
| Отключено | `SERVERLESS_TYPE=DISABLED` | Полностью отключить логические функции | Н/Д |
| Локальный | `SERVERLESS_TYPE=LOCAL` | Разработка и доверенные среды | Низкий (без изоляции) |
| Lambda | `SERVERLESS_TYPE=LAMBDA` | Продакшн с недоверенным кодом | Высокий (изоляция на уровне оборудования) |
### Логические функции — рекомендуемая конфигурация
### Рекомендуемая конфигурация
**Для разработки:**
```bash
LOGIC_FUNCTION_TYPE=LOCAL # default when NODE_ENV=development
SERVERLESS_TYPE=LOCAL # default
```
**Для продакшна (AWS):**
```bash
LOGIC_FUNCTION_TYPE=LAMBDA
LOGIC_FUNCTION_LAMBDA_REGION=us-east-1
LOGIC_FUNCTION_LAMBDA_ROLE=arn:aws:iam::123456789:role/your-lambda-role
LOGIC_FUNCTION_LAMBDA_ACCESS_KEY_ID=your-access-key
LOGIC_FUNCTION_LAMBDA_SECRET_ACCESS_KEY=your-secret-key
SERVERLESS_TYPE=LAMBDA
SERVERLESS_LAMBDA_REGION=us-east-1
SERVERLESS_LAMBDA_ROLE=arn:aws:iam::123456789:role/your-lambda-role
SERVERLESS_LAMBDA_ACCESS_KEY_ID=your-access-key
SERVERLESS_LAMBDA_SECRET_ACCESS_KEY=your-secret-key
```
**Чтобы отключить логические функции:**
```bash
LOGIC_FUNCTION_TYPE=DISABLED # default when NODE_ENV=production
SERVERLESS_TYPE=DISABLED
```
### Интерпретатор кода — доступные драйверы
| Драйвер | Переменная окружения | Сценарий использования | Уровень безопасности |
| --------- | -------------------------------- | ----------------------------------------------------- | --------------------------------- |
| Отключено | `CODE_INTERPRETER_TYPE=DISABLED` | Отключить выполнение кода ИИ | Н/Д |
| Локальный | `CODE_INTERPRETER_TYPE=LOCAL` | Только для разработки | Низкий (без изоляции) |
| E2B | `CODE_INTERPRETER_TYPE=E_2_B` | Рабочая среда с изолированным исполнением в песочнице | Высокий (изолированная песочница) |
<Note>
При использовании `LOGIC_FUNCTION_TYPE=DISABLED` или `CODE_INTERPRETER_TYPE=DISABLED` любая попытка выполнения вернёт ошибку. Это полезно, если вы хотите запускать Twenty без этих возможностей.
При использовании `SERVERLESS_TYPE=DISABLED` любая попытка выполнить логическую функцию вернет ошибку. Это полезно, если вы хотите запускать Twenty без возможностей логических функций.
</Note>
@@ -297,60 +297,46 @@ yarn command:prod cron:workflow:automated-cron-trigger
**Çevre-yalnızca modu:** `IS_CONFIG_VARIABLES_IN_DB_ENABLED=false` ayarlarsanız, bu değişkenleri `.env` dosyanıza ekleyin.
</Warning>
## Mantıksal İşlevler ve Kod Yorumlayıcısı
## Mantıksal işlevler
Twenty, iş akışları için mantıksal işlevleri ve yapay zekâ veri analizi için kod yorumlayıcısını destekler. Her ikisi de kullanıcı tarafından sağlanan kodu çalıştırır ve güvenlik için açık bir yapılandırma gerektirir.
### Güvenlik Varsayılanları
**Üretimde (NODE_ENV=production):** Hem mantıksal işlevler hem de kod yorumlayıcı varsayılan olarak **Devre Dışı**dır. Bu özelliklere ihtiyacınız varsa, onları `LOGIC_FUNCTION_TYPE` ve `CODE_INTERPRETER_TYPE` ile açıkça etkinleştirmeniz gerekir.
**Geliştirmede (NODE_ENV=development):** Yerel olarak çalıştırırken kolaylık olması için her ikisinin varsayılanı **LOCAL**dır.
Twenty, iş akışları ve özel mantık için mantıksal işlevleri destekler. Yürütme ortamı, `SERVERLESS_TYPE` ortam değişkeni aracılığıyla yapılandırılır.
<Warning>
**Güvenlik Notu:** Yerel sürücü (`LOGIC_FUNCTION_TYPE=LOCAL` veya `CODE_INTERPRETER_TYPE=LOCAL`), herhangi bir sandbox olmadan kodu ana makinede doğrudan bir Node.js sürecinde çalıştırır. Yalnızca geliştirirken güvenilen kod için kullanılmalıdır. Üretim dağıtımlarında güvenilmeyen kodu işlerken, `LOGIC_FUNCTION_TYPE=LAMBDA` veya `CODE_INTERPRETER_TYPE=E2B` (korumalı alanla) kullanın ya da bunları devre dışı bırakın.
**Güvenlik Notu:** Yerel sürücü (`SERVERLESS_TYPE=LOCAL`), herhangi bir sandbox olmadan kodu ana makinede doğrudan bir Node.js sürecinde çalıştırır. Yalnızca geliştirirken güvenilen kod için kullanılmalıdır. Güvenilmeyen kodu işleyen üretim dağıtımları için `SERVERLESS_TYPE=LAMBDA` veya `SERVERLESS_TYPE=DISABLED` kullanmanızı şiddetle öneririz.
</Warning>
### Mantıksal İşlevler - Kullanılabilir Sürücüler
### Kullanılabilir Sürücüler
| Sürücü | Ortam Değişkeni | Kullanım alanı | Güvenlik Düzeyi |
| ---------- | ------------------------------ | ---------------------------------------------- | ------------------------------------ |
| Devre dışı | `LOGIC_FUNCTION_TYPE=DISABLED` | Mantıksal işlevleri tamamen devre dışı bırakın | Uygulanamaz |
| Yerel | `LOGIC_FUNCTION_TYPE=LOCAL` | Geliştirme ve güvenilir ortamlar | Düşük (sandbox yok) |
| Lambda | `LOGIC_FUNCTION_TYPE=LAMBDA` | Güvenilmeyen kodla üretim | Yüksek (donanım düzeyinde izolasyon) |
| Sürücü | Ortam Değişkeni | Kullanım alanı | Güvenlik Düzeyi |
| ---------- | -------------------------- | ---------------------------------------------- | ------------------------------------ |
| Devre dışı | `SERVERLESS_TYPE=DISABLED` | Mantıksal işlevleri tamamen devre dışı bırakın | Uygulanamaz |
| Yerel | `SERVERLESS_TYPE=LOCAL` | Geliştirme ve güvenilir ortamlar | Düşük (sandbox yok) |
| Lambda | `SERVERLESS_TYPE=LAMBDA` | Güvenilmeyen kodla üretim | Yüksek (donanım düzeyinde izolasyon) |
### Mantıksal İşlevler - Önerilen Yapılandırma
### Önerilen Yapılandırma
**Geliştirme için:**
```bash
LOGIC_FUNCTION_TYPE=LOCAL # default when NODE_ENV=development
SERVERLESS_TYPE=LOCAL # default
```
**Üretim için (AWS):**
```bash
LOGIC_FUNCTION_TYPE=LAMBDA
LOGIC_FUNCTION_LAMBDA_REGION=us-east-1
LOGIC_FUNCTION_LAMBDA_ROLE=arn:aws:iam::123456789:role/your-lambda-role
LOGIC_FUNCTION_LAMBDA_ACCESS_KEY_ID=your-access-key
LOGIC_FUNCTION_LAMBDA_SECRET_ACCESS_KEY=your-secret-key
SERVERLESS_TYPE=LAMBDA
SERVERLESS_LAMBDA_REGION=us-east-1
SERVERLESS_LAMBDA_ROLE=arn:aws:iam::123456789:role/your-lambda-role
SERVERLESS_LAMBDA_ACCESS_KEY_ID=your-access-key
SERVERLESS_LAMBDA_SECRET_ACCESS_KEY=your-secret-key
```
**Mantıksal işlevleri devre dışı bırakmak için:**
```bash
LOGIC_FUNCTION_TYPE=DISABLED # default when NODE_ENV=production
SERVERLESS_TYPE=DISABLED
```
### Kod Yorumlayıcısı - Kullanılabilir Sürücüler
| Sürücü | Ortam Değişkeni | Kullanım Senaryosu | Güvenlik Düzeyi |
| ---------- | -------------------------------- | --------------------------------------------- | --------------------------------- |
| Devre dışı | `CODE_INTERPRETER_TYPE=DISABLED` | Yapay zekâ kod yürütmesini devre dışı bırakın | Uygulanamaz |
| Yerel | `CODE_INTERPRETER_TYPE=LOCAL` | Yalnızca geliştirme için | Düşük (sandbox yok) |
| E2B | `CODE_INTERPRETER_TYPE=E_2_B` | Korumalı alanlı yürütmeyle üretim | Yüksek (yalıtılmış korumalı alan) |
<Note>
`LOGIC_FUNCTION_TYPE=DISABLED` veya `CODE_INTERPRETER_TYPE=DISABLED` kullanıldığında, herhangi bir yürütme girişimi bir hata döndürür. Bu, Twenty'yi bu yetenekler olmadan çalıştırmak istiyorsanız kullanışlıdır.
`SERVERLESS_TYPE=DISABLED` kullanıldığında, bir mantıksal işlevi yürütmeye yönelik herhangi bir girişim bir hata döndürür. Bu, Twenty'yi mantıksal işlev yetenekleri olmadan çalıştırmak istiyorsanız kullanışlıdır.
</Note>
@@ -297,60 +297,46 @@ yarn command:prod cron:workflow:automated-cron-trigger
**仅限环境模式:** 如果你设置 `IS_CONFIG_VARIABLES_IN_DB_ENABLED=false`,请将这些变量添加到 `.env` 文件中。
</Warning>
## 逻辑函数与代码解释器
## 逻辑函数
Twenty 支持用于工作流的逻辑函数,以及用于 AI 数据分析的代码解释器。 二者都会运行用户提供的代码,并要求进行显式配置以确保安全
### 安全默认设置
**在生产环境(NODE_ENV=production):** 逻辑函数和代码解释器的默认设置为**禁用**。 如需这些功能,必须通过 `LOGIC_FUNCTION_TYPE` 和 `CODE_INTERPRETER_TYPE` 显式启用它们。
**在开发环境(NODE_ENV=development):** 为方便在本地运行,二者默认均为**LOCAL**。
Twenty 支持用于工作流和自定义逻辑的逻辑函数。 执行环境通过 `SERVERLESS_TYPE` 环境变量进行配置
<Warning>
**安全提示:** 本地驱动(`LOGIC_FUNCTION_TYPE=LOCAL` 或 `CODE_INTERPRETER_TYPE=LOCAL`在没有沙箱的情况下,在主机上的 Node.js 进程中直接运行代码。 它应仅在开发环境中用于可信代码。 对于在生产环境中处理不受信任代码的部署,请使用 `LOGIC_FUNCTION_TYPE=LAMBDA` 或 `CODE_INTERPRETER_TYPE=E2B`(使用沙盒),或将它们保持禁用
\*\*安全提示:\*\*本地驱动(`SERVERLESS_TYPE=LOCAL`)在没有沙箱的情况下,在主机上的 Node.js 进程中直接运行代码。 它应仅在开发环境中用于可信代码。 对于在生产环境中处理不受信任代码的部署,我们强烈建议使用 `SERVERLESS_TYPE=LAMBDA` 或 `SERVERLESS_TYPE=DISABLED`
</Warning>
### 逻辑函数 - 可用驱动程序
### 可用驱动
| 驱动 | 环境变量 | 用例 | 安全级别 |
| ------ | ------------------------------ | -------------- | -------- |
| 禁用 | `LOGIC_FUNCTION_TYPE=DISABLED` | 完全禁用逻辑函数 | 不适用 |
| 本地 | `LOGIC_FUNCTION_TYPE=LOCAL` | 开发和可信环境 | 低(无沙箱) |
| Lambda | `LOGIC_FUNCTION_TYPE=LAMBDA` | 生产环境(处理不受信任代码) | 高(硬件级隔离) |
| 驱动 | 环境变量 | 用例 | 安全级别 |
| ------ | -------------------------- | -------------- | -------- |
| 禁用 | `SERVERLESS_TYPE=DISABLED` | 完全禁用逻辑函数 | 不适用 |
| 本地 | `SERVERLESS_TYPE=LOCAL` | 开发和可信环境 | 低(无沙箱) |
| Lambda | `SERVERLESS_TYPE=LAMBDA` | 生产环境(处理不受信任代码) | 高(硬件级隔离) |
### 逻辑函数 - 推荐配置
### 推荐配置
**用于开发:**
```bash
LOGIC_FUNCTION_TYPE=LOCAL # default when NODE_ENV=development
SERVERLESS_TYPE=LOCAL # default
```
**用于生产(AWS):**
```bash
LOGIC_FUNCTION_TYPE=LAMBDA
LOGIC_FUNCTION_LAMBDA_REGION=us-east-1
LOGIC_FUNCTION_LAMBDA_ROLE=arn:aws:iam::123456789:role/your-lambda-role
LOGIC_FUNCTION_LAMBDA_ACCESS_KEY_ID=your-access-key
LOGIC_FUNCTION_LAMBDA_SECRET_ACCESS_KEY=your-secret-key
SERVERLESS_TYPE=LAMBDA
SERVERLESS_LAMBDA_REGION=us-east-1
SERVERLESS_LAMBDA_ROLE=arn:aws:iam::123456789:role/your-lambda-role
SERVERLESS_LAMBDA_ACCESS_KEY_ID=your-access-key
SERVERLESS_LAMBDA_SECRET_ACCESS_KEY=your-secret-key
```
**要禁用逻辑函数:**
```bash
LOGIC_FUNCTION_TYPE=DISABLED # default when NODE_ENV=production
SERVERLESS_TYPE=DISABLED
```
### 代码解释器 - 可用驱动程序
| 驱动 | 环境变量 | 用例 | 安全级别 |
| --- | -------------------------------- | ----------- | ------- |
| 禁用 | `CODE_INTERPRETER_TYPE=DISABLED` | 禁用 AI 代码执行 | 不适用 |
| 本地 | `CODE_INTERPRETER_TYPE=LOCAL` | 仅限开发环境 | 低(无沙箱) |
| E2B | `CODE_INTERPRETER_TYPE=E_2_B` | 生产环境(沙盒化执行) | 高(隔离沙盒) |
<Note>
使用 `LOGIC_FUNCTION_TYPE=DISABLED` 或 `CODE_INTERPRETER_TYPE=DISABLED` 时,任何执行尝试都会返回错误。 如果你想在不启用这些功能的情况下运行 Twenty,这将很有用。
使用 `SERVERLESS_TYPE=DISABLED` 时,任何尝试执行逻辑函数的操作都会返回错误。 如果你想在不启用逻辑函数能力的情况下运行 Twenty,这将很有用。
</Note>
File diff suppressed because one or more lines are too long
+8 -307
View File
@@ -752,37 +752,23 @@ 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"
@@ -820,13 +806,6 @@ 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: "
@@ -843,6 +822,12 @@ msgstr "Voeg 'n nodus by"
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"
@@ -1679,7 +1664,6 @@ 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"
@@ -1956,7 +1940,6 @@ 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"
@@ -2095,11 +2078,6 @@ 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
@@ -2328,11 +2306,6 @@ 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"
@@ -2590,7 +2563,6 @@ 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"
@@ -2606,26 +2578,10 @@ 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"
@@ -3323,7 +3279,6 @@ 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"
@@ -3483,21 +3438,6 @@ 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"
@@ -3875,7 +3815,6 @@ 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"
@@ -4978,8 +4917,6 @@ 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"
@@ -5279,11 +5216,6 @@ 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
@@ -5490,9 +5422,6 @@ 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"
@@ -5501,22 +5430,6 @@ 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"
@@ -5557,11 +5470,6 @@ 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."
@@ -5622,26 +5530,11 @@ 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."
@@ -6104,11 +5997,6 @@ 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"
@@ -6579,11 +6467,6 @@ 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
@@ -6752,22 +6635,6 @@ 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."
@@ -6788,12 +6655,6 @@ 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"
@@ -7379,11 +7240,6 @@ 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"
@@ -8101,12 +7957,6 @@ 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
@@ -8410,8 +8260,6 @@ 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"
@@ -8764,11 +8612,6 @@ 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
@@ -10345,26 +10188,11 @@ 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
@@ -11125,16 +10953,6 @@ 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"
@@ -11549,11 +11367,6 @@ 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"
@@ -11672,8 +11485,6 @@ 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"
@@ -11913,13 +11724,11 @@ 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"
@@ -12747,7 +12556,6 @@ 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)"
@@ -12792,16 +12600,6 @@ 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"
@@ -12827,11 +12625,6 @@ 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
@@ -13434,11 +13227,6 @@ 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."
@@ -13551,9 +13339,9 @@ msgstr ""
msgid "This database value overrides environment settings. "
msgstr "Hierdie databasis waarde oorskry omgewingsinstellings."
#. js-lingui-id: 8IRnd6
#. js-lingui-id: qHAJQ2
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "This feature is part of the Enterprise Plan"
msgid "This feature is part of the Organization Plan"
msgstr ""
#. js-lingui-id: own57K
@@ -13862,8 +13650,6 @@ 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"
@@ -14212,11 +13998,6 @@ 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"
@@ -14286,11 +14067,6 @@ 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
@@ -14529,22 +14305,11 @@ 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
@@ -14671,8 +14436,6 @@ 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"
@@ -14722,11 +14485,6 @@ 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"
@@ -14745,7 +14503,6 @@ 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"
@@ -15095,7 +14852,6 @@ 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
@@ -15262,11 +15018,6 @@ 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"
@@ -15399,36 +15150,6 @@ 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"
@@ -15439,26 +15160,6 @@ 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 "
+8 -307
View File
@@ -752,37 +752,23 @@ 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"
@@ -820,13 +806,6 @@ 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: "
@@ -843,6 +822,12 @@ msgstr "إضافة عقدة"
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"
@@ -1679,7 +1664,6 @@ 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 "واجهة برمجة التطبيقات والويب هوك"
@@ -1956,7 +1940,6 @@ 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 "اسأل الذكاء الاصطناعي"
@@ -2095,11 +2078,6 @@ 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
@@ -2328,11 +2306,6 @@ 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"
@@ -2590,7 +2563,6 @@ 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 "إلغاء الخطة"
@@ -2606,26 +2578,10 @@ 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"
@@ -3323,7 +3279,6 @@ 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 "استمر"
@@ -3483,21 +3438,6 @@ 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"
@@ -3875,7 +3815,6 @@ 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 "كائنات مخصصة"
@@ -4978,8 +4917,6 @@ 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 "تعديل طريقة الدفع، ومشاهدة الفواتير والمزيد"
@@ -5279,11 +5216,6 @@ 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
@@ -5490,9 +5422,6 @@ 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 "مؤسسة"
@@ -5501,22 +5430,6 @@ 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"
@@ -5557,11 +5470,6 @@ 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."
@@ -5622,26 +5530,11 @@ 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."
@@ -6104,11 +5997,6 @@ 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"
@@ -6579,11 +6467,6 @@ 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
@@ -6752,22 +6635,6 @@ 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."
@@ -6788,12 +6655,6 @@ 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"
@@ -7379,11 +7240,6 @@ 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"
@@ -8101,12 +7957,6 @@ 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
@@ -8410,8 +8260,6 @@ 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 "إدارة معلومات الفوترة"
@@ -8764,11 +8612,6 @@ 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
@@ -10345,26 +10188,11 @@ 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
@@ -11125,16 +10953,6 @@ 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"
@@ -11549,11 +11367,6 @@ 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"
@@ -11672,8 +11485,6 @@ 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 "\\\\"
@@ -11913,13 +11724,11 @@ 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 "مقعد / شهر - مدفوع سنويًا"
@@ -12747,7 +12556,6 @@ 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)"
@@ -12792,16 +12600,6 @@ 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"
@@ -12827,11 +12625,6 @@ 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
@@ -13434,11 +13227,6 @@ 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."
@@ -13551,9 +13339,9 @@ msgstr ""
msgid "This database value overrides environment settings. "
msgstr "هذه القيمة في قاعدة البيانات تتخطى إعدادات البيئة."
#. js-lingui-id: 8IRnd6
#. js-lingui-id: qHAJQ2
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "This feature is part of the Enterprise Plan"
msgid "This feature is part of the Organization Plan"
msgstr ""
#. js-lingui-id: own57K
@@ -13862,8 +13650,6 @@ 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 "تجربة"
@@ -14212,11 +13998,6 @@ 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"
@@ -14286,11 +14067,6 @@ 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
@@ -14529,22 +14305,11 @@ 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
@@ -14671,8 +14436,6 @@ 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 "عرض تفاصيل الفوترة"
@@ -14722,11 +14485,6 @@ 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"
@@ -14745,7 +14503,6 @@ 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 "عرض الذكاءات الاصطناعية السابقة"
@@ -15093,7 +14850,6 @@ 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
@@ -15260,11 +15016,6 @@ 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"
@@ -15397,36 +15148,6 @@ 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"
@@ -15437,26 +15158,6 @@ 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 "
+8 -307
View File
@@ -752,37 +752,23 @@ 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"
@@ -820,13 +806,6 @@ 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: "
@@ -843,6 +822,12 @@ msgstr "Afegeix un node"
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"
@@ -1679,7 +1664,6 @@ 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"
@@ -1956,7 +1940,6 @@ 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"
@@ -2095,11 +2078,6 @@ 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
@@ -2328,11 +2306,6 @@ 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"
@@ -2590,7 +2563,6 @@ 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"
@@ -2606,26 +2578,10 @@ 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"
@@ -3323,7 +3279,6 @@ 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"
@@ -3483,21 +3438,6 @@ 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"
@@ -3875,7 +3815,6 @@ 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"
@@ -4978,8 +4917,6 @@ 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"
@@ -5279,11 +5216,6 @@ 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
@@ -5490,9 +5422,6 @@ 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"
@@ -5501,22 +5430,6 @@ 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"
@@ -5557,11 +5470,6 @@ 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."
@@ -5622,26 +5530,11 @@ 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."
@@ -6104,11 +5997,6 @@ 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"
@@ -6579,11 +6467,6 @@ 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
@@ -6752,22 +6635,6 @@ 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."
@@ -6788,12 +6655,6 @@ 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"
@@ -7379,11 +7240,6 @@ 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"
@@ -8101,12 +7957,6 @@ 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
@@ -8410,8 +8260,6 @@ 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ó"
@@ -8764,11 +8612,6 @@ 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
@@ -10345,26 +10188,11 @@ 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
@@ -11125,16 +10953,6 @@ 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"
@@ -11549,11 +11367,6 @@ 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"
@@ -11672,8 +11485,6 @@ 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"
@@ -11913,13 +11724,11 @@ 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 ""
@@ -12747,7 +12556,6 @@ 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)"
@@ -12792,16 +12600,6 @@ 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"
@@ -12827,11 +12625,6 @@ 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
@@ -13434,11 +13227,6 @@ 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."
@@ -13551,9 +13339,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: 8IRnd6
#. js-lingui-id: qHAJQ2
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "This feature is part of the Enterprise Plan"
msgid "This feature is part of the Organization Plan"
msgstr ""
#. js-lingui-id: own57K
@@ -13862,8 +13650,6 @@ 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"
@@ -14212,11 +13998,6 @@ 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"
@@ -14286,11 +14067,6 @@ 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
@@ -14529,22 +14305,11 @@ 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
@@ -14671,8 +14436,6 @@ 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ó"
@@ -14722,11 +14485,6 @@ 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"
@@ -14745,7 +14503,6 @@ 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"
@@ -15095,7 +14852,6 @@ 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
@@ -15262,11 +15018,6 @@ 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"
@@ -15399,36 +15150,6 @@ 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"
@@ -15439,26 +15160,6 @@ 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 "
+8 -307
View File
@@ -752,37 +752,23 @@ 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"
@@ -820,13 +806,6 @@ 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: "
@@ -843,6 +822,12 @@ msgstr "Přidat uzel"
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"
@@ -1679,7 +1664,6 @@ 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"
@@ -1956,7 +1940,6 @@ 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"
@@ -2095,11 +2078,6 @@ 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
@@ -2328,11 +2306,6 @@ 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"
@@ -2590,7 +2563,6 @@ 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"
@@ -2606,26 +2578,10 @@ 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"
@@ -3323,7 +3279,6 @@ 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"
@@ -3483,21 +3438,6 @@ 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"
@@ -3875,7 +3815,6 @@ 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"
@@ -4978,8 +4917,6 @@ 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ší"
@@ -5279,11 +5216,6 @@ 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
@@ -5490,9 +5422,6 @@ 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"
@@ -5501,22 +5430,6 @@ 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"
@@ -5557,11 +5470,6 @@ 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."
@@ -5622,26 +5530,11 @@ 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."
@@ -6104,11 +5997,6 @@ 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"
@@ -6579,11 +6467,6 @@ 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
@@ -6752,22 +6635,6 @@ 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."
@@ -6788,12 +6655,6 @@ 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"
@@ -7379,11 +7240,6 @@ 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"
@@ -8101,12 +7957,6 @@ 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
@@ -8410,8 +8260,6 @@ 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ů"
@@ -8764,11 +8612,6 @@ 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
@@ -10345,26 +10188,11 @@ 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
@@ -11125,16 +10953,6 @@ 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"
@@ -11549,11 +11367,6 @@ 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"
@@ -11672,8 +11485,6 @@ 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"
@@ -11913,13 +11724,11 @@ 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ě"
@@ -12747,7 +12556,6 @@ 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)"
@@ -12792,16 +12600,6 @@ 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"
@@ -12827,11 +12625,6 @@ 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
@@ -13434,11 +13227,6 @@ 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."
@@ -13551,9 +13339,9 @@ msgstr ""
msgid "This database value overrides environment settings. "
msgstr "Tato hodnota databáze přepisuje nastavení prostředí."
#. js-lingui-id: 8IRnd6
#. js-lingui-id: qHAJQ2
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "This feature is part of the Enterprise Plan"
msgid "This feature is part of the Organization Plan"
msgstr ""
#. js-lingui-id: own57K
@@ -13862,8 +13650,6 @@ 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"
@@ -14212,11 +13998,6 @@ 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"
@@ -14286,11 +14067,6 @@ 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
@@ -14529,22 +14305,11 @@ 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
@@ -14671,8 +14436,6 @@ 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"
@@ -14722,11 +14485,6 @@ 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"
@@ -14745,7 +14503,6 @@ 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"
@@ -15095,7 +14852,6 @@ 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
@@ -15262,11 +15018,6 @@ 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"
@@ -15399,36 +15150,6 @@ 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"
@@ -15439,26 +15160,6 @@ 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 "
+8 -307
View File
@@ -752,37 +752,23 @@ 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"
@@ -820,13 +806,6 @@ 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: "
@@ -843,6 +822,12 @@ msgstr "Tilføj en node"
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"
@@ -1679,7 +1664,6 @@ 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"
@@ -1956,7 +1940,6 @@ 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"
@@ -2095,11 +2078,6 @@ 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
@@ -2328,11 +2306,6 @@ 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"
@@ -2590,7 +2563,6 @@ 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"
@@ -2606,26 +2578,10 @@ 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"
@@ -3323,7 +3279,6 @@ 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"
@@ -3483,21 +3438,6 @@ 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"
@@ -3875,7 +3815,6 @@ 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"
@@ -4978,8 +4917,6 @@ 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"
@@ -5279,11 +5216,6 @@ 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
@@ -5490,9 +5422,6 @@ 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"
@@ -5501,22 +5430,6 @@ 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"
@@ -5557,11 +5470,6 @@ 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."
@@ -5622,26 +5530,11 @@ 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."
@@ -6104,11 +5997,6 @@ 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"
@@ -6579,11 +6467,6 @@ 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
@@ -6752,22 +6635,6 @@ 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."
@@ -6788,12 +6655,6 @@ 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"
@@ -7379,11 +7240,6 @@ 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"
@@ -8101,12 +7957,6 @@ 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
@@ -8410,8 +8260,6 @@ 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"
@@ -8764,11 +8612,6 @@ 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
@@ -10345,26 +10188,11 @@ 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
@@ -11125,16 +10953,6 @@ 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"
@@ -11549,11 +11367,6 @@ 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"
@@ -11672,8 +11485,6 @@ 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"
@@ -11913,13 +11724,11 @@ 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"
@@ -12747,7 +12556,6 @@ 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)"
@@ -12792,16 +12600,6 @@ 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"
@@ -12827,11 +12625,6 @@ 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
@@ -13434,11 +13227,6 @@ 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."
@@ -13553,9 +13341,9 @@ msgstr ""
msgid "This database value overrides environment settings. "
msgstr "Denne databaseværdi overskriver miljøindstillingerne."
#. js-lingui-id: 8IRnd6
#. js-lingui-id: qHAJQ2
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "This feature is part of the Enterprise Plan"
msgid "This feature is part of the Organization Plan"
msgstr ""
#. js-lingui-id: own57K
@@ -13864,8 +13652,6 @@ 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"
@@ -14214,11 +14000,6 @@ 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"
@@ -14288,11 +14069,6 @@ 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
@@ -14531,22 +14307,11 @@ 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
@@ -14673,8 +14438,6 @@ 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"
@@ -14724,11 +14487,6 @@ 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"
@@ -14747,7 +14505,6 @@ 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"
@@ -15097,7 +14854,6 @@ 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
@@ -15264,11 +15020,6 @@ 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"
@@ -15401,36 +15152,6 @@ 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"
@@ -15441,26 +15162,6 @@ 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 "
+8 -307
View File
@@ -752,37 +752,23 @@ 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"
@@ -820,13 +806,6 @@ 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: "
@@ -843,6 +822,12 @@ msgstr "Knoten hinzufügen"
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"
@@ -1679,7 +1664,6 @@ 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"
@@ -1956,7 +1940,6 @@ 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"
@@ -2095,11 +2078,6 @@ 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
@@ -2328,11 +2306,6 @@ 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"
@@ -2590,7 +2563,6 @@ 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"
@@ -2606,26 +2578,10 @@ 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"
@@ -3323,7 +3279,6 @@ 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"
@@ -3483,21 +3438,6 @@ 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"
@@ -3875,7 +3815,6 @@ 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"
@@ -4978,8 +4917,6 @@ 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"
@@ -5279,11 +5216,6 @@ 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
@@ -5490,9 +5422,6 @@ 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"
@@ -5501,22 +5430,6 @@ 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"
@@ -5557,11 +5470,6 @@ 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."
@@ -5622,26 +5530,11 @@ 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."
@@ -6104,11 +5997,6 @@ 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"
@@ -6579,11 +6467,6 @@ 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
@@ -6752,22 +6635,6 @@ 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."
@@ -6788,12 +6655,6 @@ 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"
@@ -7379,11 +7240,6 @@ 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"
@@ -8101,12 +7957,6 @@ 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
@@ -8410,8 +8260,6 @@ 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"
@@ -8764,11 +8612,6 @@ 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
@@ -10345,26 +10188,11 @@ 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
@@ -11125,16 +10953,6 @@ 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"
@@ -11549,11 +11367,6 @@ 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"
@@ -11672,8 +11485,6 @@ 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"
@@ -11913,13 +11724,11 @@ 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"
@@ -12747,7 +12556,6 @@ 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)"
@@ -12792,16 +12600,6 @@ 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"
@@ -12827,11 +12625,6 @@ 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
@@ -13434,11 +13227,6 @@ 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."
@@ -13551,9 +13339,9 @@ msgstr ""
msgid "This database value overrides environment settings. "
msgstr "Dieser Datenbankwert überschreibt die Umgebungsanstellungen."
#. js-lingui-id: 8IRnd6
#. js-lingui-id: qHAJQ2
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "This feature is part of the Enterprise Plan"
msgid "This feature is part of the Organization Plan"
msgstr ""
#. js-lingui-id: own57K
@@ -13862,8 +13650,6 @@ 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"
@@ -14212,11 +13998,6 @@ 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"
@@ -14286,11 +14067,6 @@ 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
@@ -14529,22 +14305,11 @@ 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
@@ -14671,8 +14436,6 @@ 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"
@@ -14722,11 +14485,6 @@ 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"
@@ -14745,7 +14503,6 @@ 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"
@@ -15095,7 +14852,6 @@ 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
@@ -15262,11 +15018,6 @@ 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"
@@ -15399,36 +15150,6 @@ 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"
@@ -15439,26 +15160,6 @@ 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 "
+8 -307
View File
@@ -752,37 +752,23 @@ 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"
@@ -820,13 +806,6 @@ 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: "
@@ -843,6 +822,12 @@ msgstr "Προσθήκη κόμβου"
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"
@@ -1679,7 +1664,6 @@ 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"
@@ -1956,7 +1940,6 @@ 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"
@@ -2095,11 +2078,6 @@ 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
@@ -2328,11 +2306,6 @@ 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"
@@ -2590,7 +2563,6 @@ 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 "Ακύρωση σχεδίου"
@@ -2606,26 +2578,10 @@ 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"
@@ -3323,7 +3279,6 @@ 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 "Συνέχεια"
@@ -3483,21 +3438,6 @@ 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"
@@ -3875,7 +3815,6 @@ 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 "Προσαρμοσμένα αντικείμενα"
@@ -4978,8 +4917,6 @@ 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 "Επεξεργασία τρόπου πληρωμής, προβολή των τιμολογίων σου και άλλα"
@@ -5279,11 +5216,6 @@ 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
@@ -5490,9 +5422,6 @@ 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 "Επιχειρήσεις"
@@ -5501,22 +5430,6 @@ 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"
@@ -5557,11 +5470,6 @@ 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."
@@ -5622,26 +5530,11 @@ 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."
@@ -6104,11 +5997,6 @@ 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"
@@ -6579,11 +6467,6 @@ 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
@@ -6752,22 +6635,6 @@ 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."
@@ -6788,12 +6655,6 @@ 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"
@@ -7379,11 +7240,6 @@ 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"
@@ -8101,12 +7957,6 @@ 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
@@ -8410,8 +8260,6 @@ 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 "Διαχείριση πληροφοριών χρέωσης"
@@ -8764,11 +8612,6 @@ 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
@@ -10345,26 +10188,11 @@ 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
@@ -11125,16 +10953,6 @@ 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"
@@ -11549,11 +11367,6 @@ 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"
@@ -11672,8 +11485,6 @@ 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 "Αναζήτηση"
@@ -11913,13 +11724,11 @@ 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 "θέση / μήνας - χρέωση ετησίως"
@@ -12749,7 +12558,6 @@ 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)"
@@ -12794,16 +12602,6 @@ 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"
@@ -12829,11 +12627,6 @@ 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
@@ -13436,11 +13229,6 @@ 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."
@@ -13555,9 +13343,9 @@ msgstr ""
msgid "This database value overrides environment settings. "
msgstr "Αυτή η τιμή βάσης δεδομένων υπερισχύει των ρυθμίσεων περιβάλλοντος."
#. js-lingui-id: 8IRnd6
#. js-lingui-id: qHAJQ2
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "This feature is part of the Enterprise Plan"
msgid "This feature is part of the Organization Plan"
msgstr ""
#. js-lingui-id: own57K
@@ -13866,8 +13654,6 @@ 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 "Δοκιμή"
@@ -14216,11 +14002,6 @@ 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"
@@ -14290,11 +14071,6 @@ 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
@@ -14533,22 +14309,11 @@ 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
@@ -14675,8 +14440,6 @@ 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 "Προβολή λεπτομερειών χρέωσης"
@@ -14726,11 +14489,6 @@ 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"
@@ -14749,7 +14507,6 @@ 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"
@@ -15099,7 +14856,6 @@ 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
@@ -15266,11 +15022,6 @@ 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"
@@ -15403,36 +15154,6 @@ 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"
@@ -15443,26 +15164,6 @@ 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 "
+9 -308
View File
@@ -747,37 +747,23 @@ 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"
@@ -815,13 +801,6 @@ 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: "
@@ -838,6 +817,12 @@ msgstr "Add a node"
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"
@@ -1674,7 +1659,6 @@ 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"
@@ -1951,7 +1935,6 @@ 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"
@@ -2090,11 +2073,6 @@ 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
@@ -2323,11 +2301,6 @@ 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"
@@ -2585,7 +2558,6 @@ 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"
@@ -2601,26 +2573,10 @@ 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"
@@ -3318,7 +3274,6 @@ 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"
@@ -3478,21 +3433,6 @@ 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"
@@ -3870,7 +3810,6 @@ 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"
@@ -4973,8 +4912,6 @@ 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"
@@ -5274,11 +5211,6 @@ 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
@@ -5485,9 +5417,6 @@ 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"
@@ -5496,22 +5425,6 @@ 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"
@@ -5552,11 +5465,6 @@ 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."
@@ -5617,26 +5525,11 @@ 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."
@@ -6099,11 +5992,6 @@ 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"
@@ -6574,11 +6462,6 @@ 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
@@ -6747,22 +6630,6 @@ 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."
@@ -6783,12 +6650,6 @@ 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"
@@ -7374,11 +7235,6 @@ 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"
@@ -8096,12 +7952,6 @@ 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
@@ -8405,8 +8255,6 @@ 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"
@@ -8759,11 +8607,6 @@ 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
@@ -10340,26 +10183,11 @@ 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
@@ -11120,16 +10948,6 @@ 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"
@@ -11544,11 +11362,6 @@ 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"
@@ -11667,8 +11480,6 @@ 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"
@@ -11908,13 +11719,11 @@ 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"
@@ -12742,7 +12551,6 @@ 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)"
@@ -12787,16 +12595,6 @@ 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"
@@ -12822,11 +12620,6 @@ 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
@@ -13429,11 +13222,6 @@ 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."
@@ -13548,10 +13336,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: 8IRnd6
#. js-lingui-id: qHAJQ2
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "This feature is part of the Enterprise Plan"
msgstr "This feature is part of the Enterprise Plan"
msgid "This feature is part of the Organization Plan"
msgstr "This feature is part of the Organization Plan"
#. js-lingui-id: own57K
#: src/modules/activities/files/components/DocumentViewer.tsx
@@ -13859,8 +13647,6 @@ 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"
@@ -14209,11 +13995,6 @@ 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"
@@ -14283,11 +14064,6 @@ 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
@@ -14526,22 +14302,11 @@ 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
@@ -14668,8 +14433,6 @@ 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"
@@ -14719,11 +14482,6 @@ 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"
@@ -14742,7 +14500,6 @@ 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"
@@ -15092,7 +14849,6 @@ 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
@@ -15259,11 +15015,6 @@ 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"
@@ -15396,36 +15147,6 @@ 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"
@@ -15436,26 +15157,6 @@ 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 "
+8 -307
View File
@@ -752,37 +752,23 @@ 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"
@@ -820,13 +806,6 @@ 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: "
@@ -843,6 +822,12 @@ msgstr "Añadir un nodo"
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"
@@ -1679,7 +1664,6 @@ 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"
@@ -1956,7 +1940,6 @@ 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"
@@ -2095,11 +2078,6 @@ 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
@@ -2328,11 +2306,6 @@ 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"
@@ -2590,7 +2563,6 @@ 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"
@@ -2606,26 +2578,10 @@ 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"
@@ -3323,7 +3279,6 @@ 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"
@@ -3483,21 +3438,6 @@ 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"
@@ -3875,7 +3815,6 @@ 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"
@@ -4978,8 +4917,6 @@ 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"
@@ -5279,11 +5216,6 @@ 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
@@ -5490,9 +5422,6 @@ 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"
@@ -5501,22 +5430,6 @@ 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"
@@ -5557,11 +5470,6 @@ 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."
@@ -5622,26 +5530,11 @@ 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."
@@ -6104,11 +5997,6 @@ 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"
@@ -6579,11 +6467,6 @@ 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
@@ -6752,22 +6635,6 @@ 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."
@@ -6788,12 +6655,6 @@ 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"
@@ -7379,11 +7240,6 @@ 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"
@@ -8101,12 +7957,6 @@ 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
@@ -8410,8 +8260,6 @@ 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"
@@ -8764,11 +8612,6 @@ 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
@@ -10345,26 +10188,11 @@ 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
@@ -11125,16 +10953,6 @@ 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"
@@ -11549,11 +11367,6 @@ 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"
@@ -11672,8 +11485,6 @@ 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"
@@ -11913,13 +11724,11 @@ 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"
@@ -12747,7 +12556,6 @@ 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)"
@@ -12792,16 +12600,6 @@ 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"
@@ -12827,11 +12625,6 @@ 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
@@ -13434,11 +13227,6 @@ 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."
@@ -13553,9 +13341,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: 8IRnd6
#. js-lingui-id: qHAJQ2
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "This feature is part of the Enterprise Plan"
msgid "This feature is part of the Organization Plan"
msgstr ""
#. js-lingui-id: own57K
@@ -13864,8 +13652,6 @@ 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"
@@ -14214,11 +14000,6 @@ 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"
@@ -14288,11 +14069,6 @@ 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
@@ -14531,22 +14307,11 @@ 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
@@ -14673,8 +14438,6 @@ 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"
@@ -14724,11 +14487,6 @@ 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"
@@ -14747,7 +14505,6 @@ 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"
@@ -15097,7 +14854,6 @@ 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
@@ -15264,11 +15020,6 @@ 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"
@@ -15401,36 +15152,6 @@ 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"
@@ -15441,26 +15162,6 @@ 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 "
+8 -307
View File
@@ -752,37 +752,23 @@ 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"
@@ -820,13 +806,6 @@ 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: "
@@ -843,6 +822,12 @@ msgstr "Lisää solmu"
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"
@@ -1679,7 +1664,6 @@ 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"
@@ -1956,7 +1940,6 @@ 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"
@@ -2095,11 +2078,6 @@ 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
@@ -2328,11 +2306,6 @@ 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"
@@ -2590,7 +2563,6 @@ 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"
@@ -2606,26 +2578,10 @@ 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"
@@ -3323,7 +3279,6 @@ 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"
@@ -3483,21 +3438,6 @@ 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"
@@ -3875,7 +3815,6 @@ 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"
@@ -4978,8 +4917,6 @@ 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"
@@ -5279,11 +5216,6 @@ 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
@@ -5490,9 +5422,6 @@ 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"
@@ -5501,22 +5430,6 @@ 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"
@@ -5557,11 +5470,6 @@ 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."
@@ -5622,26 +5530,11 @@ 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."
@@ -6104,11 +5997,6 @@ 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"
@@ -6579,11 +6467,6 @@ 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
@@ -6752,22 +6635,6 @@ 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."
@@ -6788,12 +6655,6 @@ 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"
@@ -7379,11 +7240,6 @@ 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"
@@ -8101,12 +7957,6 @@ 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
@@ -8410,8 +8260,6 @@ 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"
@@ -8764,11 +8612,6 @@ 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
@@ -10345,26 +10188,11 @@ 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
@@ -11125,16 +10953,6 @@ 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"
@@ -11549,11 +11367,6 @@ 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"
@@ -11672,8 +11485,6 @@ 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"
@@ -11913,13 +11724,11 @@ 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"
@@ -12747,7 +12556,6 @@ 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)"
@@ -12792,16 +12600,6 @@ 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"
@@ -12827,11 +12625,6 @@ 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
@@ -13434,11 +13227,6 @@ 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."
@@ -13551,9 +13339,9 @@ msgstr ""
msgid "This database value overrides environment settings. "
msgstr "Tämä tietokanta-arvo ohittaa ympäristöasetukset."
#. js-lingui-id: 8IRnd6
#. js-lingui-id: qHAJQ2
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "This feature is part of the Enterprise Plan"
msgid "This feature is part of the Organization Plan"
msgstr ""
#. js-lingui-id: own57K
@@ -13862,8 +13650,6 @@ 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"
@@ -14212,11 +13998,6 @@ 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"
@@ -14286,11 +14067,6 @@ 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
@@ -14529,22 +14305,11 @@ 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
@@ -14671,8 +14436,6 @@ 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"
@@ -14722,11 +14485,6 @@ 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"
@@ -14745,7 +14503,6 @@ 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"
@@ -15095,7 +14852,6 @@ 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
@@ -15262,11 +15018,6 @@ 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"
@@ -15399,36 +15150,6 @@ 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"
@@ -15439,26 +15160,6 @@ 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 "
+8 -307
View File
@@ -752,37 +752,23 @@ 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"
@@ -820,13 +806,6 @@ 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: "
@@ -843,6 +822,12 @@ msgstr "Ajouter un nœud"
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"
@@ -1679,7 +1664,6 @@ 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"
@@ -1956,7 +1940,6 @@ 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"
@@ -2095,11 +2078,6 @@ 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
@@ -2328,11 +2306,6 @@ 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"
@@ -2590,7 +2563,6 @@ 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"
@@ -2606,26 +2578,10 @@ 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"
@@ -3323,7 +3279,6 @@ 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"
@@ -3483,21 +3438,6 @@ 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"
@@ -3875,7 +3815,6 @@ 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"
@@ -4978,8 +4917,6 @@ 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"
@@ -5279,11 +5216,6 @@ 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
@@ -5490,9 +5422,6 @@ 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"
@@ -5501,22 +5430,6 @@ 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"
@@ -5557,11 +5470,6 @@ 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."
@@ -5622,26 +5530,11 @@ 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."
@@ -6104,11 +5997,6 @@ 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"
@@ -6579,11 +6467,6 @@ 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
@@ -6752,22 +6635,6 @@ 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."
@@ -6788,12 +6655,6 @@ 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"
@@ -7379,11 +7240,6 @@ 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"
@@ -8101,12 +7957,6 @@ 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
@@ -8410,8 +8260,6 @@ 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"
@@ -8764,11 +8612,6 @@ 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
@@ -10345,26 +10188,11 @@ 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
@@ -11125,16 +10953,6 @@ 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"
@@ -11549,11 +11367,6 @@ 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"
@@ -11672,8 +11485,6 @@ 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"
@@ -11913,13 +11724,11 @@ 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"
@@ -12747,7 +12556,6 @@ 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)"
@@ -12792,16 +12600,6 @@ 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"
@@ -12827,11 +12625,6 @@ 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
@@ -13434,11 +13227,6 @@ 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."
@@ -13553,9 +13341,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: 8IRnd6
#. js-lingui-id: qHAJQ2
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "This feature is part of the Enterprise Plan"
msgid "This feature is part of the Organization Plan"
msgstr ""
#. js-lingui-id: own57K
@@ -13864,8 +13652,6 @@ 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"
@@ -14214,11 +14000,6 @@ 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"
@@ -14288,11 +14069,6 @@ 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
@@ -14531,22 +14307,11 @@ 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
@@ -14673,8 +14438,6 @@ 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"
@@ -14724,11 +14487,6 @@ 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"
@@ -14747,7 +14505,6 @@ 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"
@@ -15097,7 +14854,6 @@ 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
@@ -15264,11 +15020,6 @@ 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"
@@ -15401,36 +15152,6 @@ 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"
@@ -15441,26 +15162,6 @@ 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
+8 -307
View File
@@ -752,37 +752,23 @@ 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"
@@ -820,13 +806,6 @@ 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: "
@@ -843,6 +822,12 @@ msgstr "הוסף צומת"
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"
@@ -1679,7 +1664,6 @@ 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"
@@ -1956,7 +1940,6 @@ 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"
@@ -2095,11 +2078,6 @@ 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
@@ -2328,11 +2306,6 @@ 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"
@@ -2590,7 +2563,6 @@ 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 "בטל תוכנית"
@@ -2606,26 +2578,10 @@ 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"
@@ -3323,7 +3279,6 @@ 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 "המשך"
@@ -3483,21 +3438,6 @@ 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"
@@ -3875,7 +3815,6 @@ 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 "עצמים מותאמים אישית"
@@ -4978,8 +4917,6 @@ 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 "ערוך שיטת תשלום, צפה בחשבוניות שלך ועוד"
@@ -5279,11 +5216,6 @@ 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
@@ -5490,9 +5422,6 @@ 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 "אנטרפרייז"
@@ -5501,22 +5430,6 @@ 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"
@@ -5557,11 +5470,6 @@ 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."
@@ -5622,26 +5530,11 @@ 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."
@@ -6104,11 +5997,6 @@ 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"
@@ -6579,11 +6467,6 @@ 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
@@ -6752,22 +6635,6 @@ 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."
@@ -6788,12 +6655,6 @@ 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"
@@ -7379,11 +7240,6 @@ 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"
@@ -8101,12 +7957,6 @@ 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
@@ -8410,8 +8260,6 @@ 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 "נהל מידע לתשלום"
@@ -8764,11 +8612,6 @@ 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
@@ -10345,26 +10188,11 @@ 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
@@ -11125,16 +10953,6 @@ 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"
@@ -11549,11 +11367,6 @@ 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"
@@ -11672,8 +11485,6 @@ 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 "\\"
@@ -11913,13 +11724,11 @@ 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 "מושב / חודש - מחויב שנתי"
@@ -12747,7 +12556,6 @@ 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)"
@@ -12792,16 +12600,6 @@ 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"
@@ -12827,11 +12625,6 @@ 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
@@ -13434,11 +13227,6 @@ 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."
@@ -13551,9 +13339,9 @@ msgstr ""
msgid "This database value overrides environment settings. "
msgstr "ערך בסיס הנתונים הזה גובר על הגדרות הסביבה."
#. js-lingui-id: 8IRnd6
#. js-lingui-id: qHAJQ2
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "This feature is part of the Enterprise Plan"
msgid "This feature is part of the Organization Plan"
msgstr ""
#. js-lingui-id: own57K
@@ -13862,8 +13650,6 @@ 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 "ניסיון"
@@ -14212,11 +13998,6 @@ 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"
@@ -14286,11 +14067,6 @@ 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
@@ -14529,22 +14305,11 @@ 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
@@ -14671,8 +14436,6 @@ 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 "צפייה בפרטי החשבונית"
@@ -14722,11 +14485,6 @@ 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"
@@ -14745,7 +14503,6 @@ 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 קודמות"
@@ -15095,7 +14852,6 @@ 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
@@ -15262,11 +15018,6 @@ 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"
@@ -15399,36 +15150,6 @@ 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"
@@ -15439,26 +15160,6 @@ 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 "
+8 -307
View File
@@ -752,37 +752,23 @@ 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"
@@ -820,13 +806,6 @@ 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: "
@@ -843,6 +822,12 @@ msgstr "Csomópont hozzáadása"
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"
@@ -1679,7 +1664,6 @@ 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"
@@ -1956,7 +1940,6 @@ 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"
@@ -2095,11 +2078,6 @@ 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
@@ -2328,11 +2306,6 @@ 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"
@@ -2590,7 +2563,6 @@ 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"
@@ -2606,26 +2578,10 @@ 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"
@@ -3323,7 +3279,6 @@ 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"
@@ -3483,21 +3438,6 @@ 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"
@@ -3875,7 +3815,6 @@ 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"
@@ -4978,8 +4917,6 @@ 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"
@@ -5279,11 +5216,6 @@ 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
@@ -5490,9 +5422,6 @@ 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"
@@ -5501,22 +5430,6 @@ 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"
@@ -5557,11 +5470,6 @@ 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."
@@ -5622,26 +5530,11 @@ 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."
@@ -6104,11 +5997,6 @@ 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"
@@ -6579,11 +6467,6 @@ 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
@@ -6752,22 +6635,6 @@ 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."
@@ -6788,12 +6655,6 @@ 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"
@@ -7379,11 +7240,6 @@ 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"
@@ -8101,12 +7957,6 @@ 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
@@ -8410,8 +8260,6 @@ 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"
@@ -8764,11 +8612,6 @@ 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
@@ -10345,26 +10188,11 @@ 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
@@ -11125,16 +10953,6 @@ 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"
@@ -11549,11 +11367,6 @@ 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"
@@ -11672,8 +11485,6 @@ 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"
@@ -11913,13 +11724,11 @@ 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"
@@ -12747,7 +12556,6 @@ 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)"
@@ -12792,16 +12600,6 @@ 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"
@@ -12827,11 +12625,6 @@ 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
@@ -13434,11 +13227,6 @@ 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."
@@ -13551,9 +13339,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: 8IRnd6
#. js-lingui-id: qHAJQ2
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "This feature is part of the Enterprise Plan"
msgid "This feature is part of the Organization Plan"
msgstr ""
#. js-lingui-id: own57K
@@ -13862,8 +13650,6 @@ 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"
@@ -14212,11 +13998,6 @@ 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"
@@ -14286,11 +14067,6 @@ 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
@@ -14529,22 +14305,11 @@ 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
@@ -14671,8 +14436,6 @@ 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"
@@ -14722,11 +14485,6 @@ 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"
@@ -14745,7 +14503,6 @@ 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"
@@ -15095,7 +14852,6 @@ 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
@@ -15262,11 +15018,6 @@ 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"
@@ -15399,36 +15150,6 @@ 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"
@@ -15439,26 +15160,6 @@ 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 "
+8 -307
View File
@@ -752,37 +752,23 @@ 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"
@@ -820,13 +806,6 @@ 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: "
@@ -843,6 +822,12 @@ msgstr "Aggiungi un nodo"
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"
@@ -1679,7 +1664,6 @@ 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"
@@ -1956,7 +1940,6 @@ 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"
@@ -2095,11 +2078,6 @@ 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
@@ -2328,11 +2306,6 @@ 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"
@@ -2590,7 +2563,6 @@ 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"
@@ -2606,26 +2578,10 @@ 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"
@@ -3323,7 +3279,6 @@ 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"
@@ -3483,21 +3438,6 @@ 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"
@@ -3875,7 +3815,6 @@ 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"
@@ -4978,8 +4917,6 @@ 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"
@@ -5279,11 +5216,6 @@ 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
@@ -5490,9 +5422,6 @@ 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"
@@ -5501,22 +5430,6 @@ 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"
@@ -5557,11 +5470,6 @@ 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."
@@ -5622,26 +5530,11 @@ 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."
@@ -6104,11 +5997,6 @@ 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"
@@ -6579,11 +6467,6 @@ 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
@@ -6752,22 +6635,6 @@ 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."
@@ -6788,12 +6655,6 @@ 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"
@@ -7379,11 +7240,6 @@ 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"
@@ -8101,12 +7957,6 @@ 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
@@ -8410,8 +8260,6 @@ 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"
@@ -8764,11 +8612,6 @@ 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
@@ -10345,26 +10188,11 @@ 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
@@ -11125,16 +10953,6 @@ 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"
@@ -11549,11 +11367,6 @@ 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"
@@ -11672,8 +11485,6 @@ 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"
@@ -11913,13 +11724,11 @@ 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"
@@ -12747,7 +12556,6 @@ 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)"
@@ -12792,16 +12600,6 @@ 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"
@@ -12827,11 +12625,6 @@ 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
@@ -13434,11 +13227,6 @@ 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."
@@ -13553,9 +13341,9 @@ msgstr ""
msgid "This database value overrides environment settings. "
msgstr "Questo valore del database sovrascrive le impostazioni dell'ambiente."
#. js-lingui-id: 8IRnd6
#. js-lingui-id: qHAJQ2
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "This feature is part of the Enterprise Plan"
msgid "This feature is part of the Organization Plan"
msgstr ""
#. js-lingui-id: own57K
@@ -13864,8 +13652,6 @@ 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"
@@ -14214,11 +14000,6 @@ 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"
@@ -14288,11 +14069,6 @@ 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
@@ -14531,22 +14307,11 @@ 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
@@ -14673,8 +14438,6 @@ 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"
@@ -14724,11 +14487,6 @@ 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"
@@ -14747,7 +14505,6 @@ 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"
@@ -15097,7 +14854,6 @@ 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
@@ -15264,11 +15020,6 @@ 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"
@@ -15401,36 +15152,6 @@ 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"
@@ -15441,26 +15162,6 @@ 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 "
+8 -307
View File
@@ -752,37 +752,23 @@ 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"
@@ -820,13 +806,6 @@ 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: "
@@ -843,6 +822,12 @@ msgstr "ノードを追加する"
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"
@@ -1679,7 +1664,6 @@ 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"
@@ -1956,7 +1940,6 @@ 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に尋ねる"
@@ -2095,11 +2078,6 @@ 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
@@ -2328,11 +2306,6 @@ 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"
@@ -2590,7 +2563,6 @@ 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 "プランをキャンセル"
@@ -2606,26 +2578,10 @@ 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"
@@ -3323,7 +3279,6 @@ 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 "続行"
@@ -3483,21 +3438,6 @@ 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"
@@ -3875,7 +3815,6 @@ 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 "カスタムオブジェクト"
@@ -4978,8 +4917,6 @@ 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 "支払い方法の編集、請求書の確認など"
@@ -5279,11 +5216,6 @@ 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
@@ -5490,9 +5422,6 @@ 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 "エンタープライズ"
@@ -5501,22 +5430,6 @@ 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"
@@ -5557,11 +5470,6 @@ 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."
@@ -5622,26 +5530,11 @@ 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."
@@ -6104,11 +5997,6 @@ 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"
@@ -6579,11 +6467,6 @@ 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
@@ -6752,22 +6635,6 @@ 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."
@@ -6788,12 +6655,6 @@ 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"
@@ -7379,11 +7240,6 @@ 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"
@@ -8101,12 +7957,6 @@ 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
@@ -8410,8 +8260,6 @@ 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 "請求情報を管理する"
@@ -8764,11 +8612,6 @@ 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
@@ -10345,26 +10188,11 @@ 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
@@ -11125,16 +10953,6 @@ 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"
@@ -11549,11 +11367,6 @@ 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"
@@ -11672,8 +11485,6 @@ 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 "検索"
@@ -11913,13 +11724,11 @@ 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 "座席 / 月 - 年間請求"
@@ -12747,7 +12556,6 @@ 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"
@@ -12792,16 +12600,6 @@ 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"
@@ -12827,11 +12625,6 @@ 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
@@ -13434,11 +13227,6 @@ 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."
@@ -13551,9 +13339,9 @@ msgstr ""
msgid "This database value overrides environment settings. "
msgstr "このデータベース値は環境設定を上書きします。"
#. js-lingui-id: 8IRnd6
#. js-lingui-id: qHAJQ2
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "This feature is part of the Enterprise Plan"
msgid "This feature is part of the Organization Plan"
msgstr ""
#. js-lingui-id: own57K
@@ -13862,8 +13650,6 @@ 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 "トライアル"
@@ -14212,11 +13998,6 @@ 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"
@@ -14286,11 +14067,6 @@ 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
@@ -14529,22 +14305,11 @@ 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
@@ -14671,8 +14436,6 @@ 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 "請求の詳細を表示"
@@ -14722,11 +14485,6 @@ 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"
@@ -14745,7 +14503,6 @@ 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チャットを見る"
@@ -15095,7 +14852,6 @@ 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
@@ -15262,11 +15018,6 @@ 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"
@@ -15399,36 +15150,6 @@ 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"
@@ -15439,26 +15160,6 @@ 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 "
+8 -307
View File
@@ -752,37 +752,23 @@ 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"
@@ -820,13 +806,6 @@ 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: "
@@ -843,6 +822,12 @@ msgstr "노드 추가"
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"
@@ -1679,7 +1664,6 @@ 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 및 웹훅"
@@ -1956,7 +1940,6 @@ 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에게 질문하기"
@@ -2095,11 +2078,6 @@ 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
@@ -2328,11 +2306,6 @@ 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"
@@ -2590,7 +2563,6 @@ 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 "요금제 취소"
@@ -2606,26 +2578,10 @@ 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"
@@ -3323,7 +3279,6 @@ 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 "계속"
@@ -3483,21 +3438,6 @@ 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"
@@ -3875,7 +3815,6 @@ 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 "사용자 지정 개체"
@@ -4978,8 +4917,6 @@ 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 "결제 방법 편집, 송장 확인 등"
@@ -5279,11 +5216,6 @@ 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
@@ -5490,9 +5422,6 @@ 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 "엔터프라이즈"
@@ -5501,22 +5430,6 @@ 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"
@@ -5557,11 +5470,6 @@ 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."
@@ -5622,26 +5530,11 @@ 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."
@@ -6104,11 +5997,6 @@ 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"
@@ -6579,11 +6467,6 @@ 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
@@ -6752,22 +6635,6 @@ 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."
@@ -6788,12 +6655,6 @@ 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"
@@ -7379,11 +7240,6 @@ 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"
@@ -8101,12 +7957,6 @@ 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
@@ -8410,8 +8260,6 @@ 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 "청구 정보를 관리하세요"
@@ -8764,11 +8612,6 @@ 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
@@ -10345,26 +10188,11 @@ 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
@@ -11125,16 +10953,6 @@ 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"
@@ -11549,11 +11367,6 @@ 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"
@@ -11672,8 +11485,6 @@ 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 "검색"
@@ -11913,13 +11724,11 @@ 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 "좌석 / 월 - 연간 청구"
@@ -12747,7 +12556,6 @@ 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)"
@@ -12792,16 +12600,6 @@ 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"
@@ -12827,11 +12625,6 @@ 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
@@ -13434,11 +13227,6 @@ 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."
@@ -13551,9 +13339,9 @@ msgstr ""
msgid "This database value overrides environment settings. "
msgstr "이 데이터베이스 값은 환경 설정을 덮어씁니다."
#. js-lingui-id: 8IRnd6
#. js-lingui-id: qHAJQ2
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "This feature is part of the Enterprise Plan"
msgid "This feature is part of the Organization Plan"
msgstr ""
#. js-lingui-id: own57K
@@ -13862,8 +13650,6 @@ 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 "시험"
@@ -14212,11 +13998,6 @@ 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"
@@ -14286,11 +14067,6 @@ 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
@@ -14529,22 +14305,11 @@ 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
@@ -14671,8 +14436,6 @@ 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 "청구 세부 정보 보기"
@@ -14722,11 +14485,6 @@ 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"
@@ -14745,7 +14503,6 @@ 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 채팅 보기"
@@ -15095,7 +14852,6 @@ 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
@@ -15262,11 +15018,6 @@ 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"
@@ -15399,36 +15150,6 @@ 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"
@@ -15439,26 +15160,6 @@ 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 "
+8 -307
View File
@@ -752,37 +752,23 @@ 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"
@@ -820,13 +806,6 @@ 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: "
@@ -843,6 +822,12 @@ msgstr "Voeg een knooppunt toe"
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"
@@ -1679,7 +1664,6 @@ 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"
@@ -1956,7 +1940,6 @@ 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"
@@ -2095,11 +2078,6 @@ 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
@@ -2328,11 +2306,6 @@ 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"
@@ -2590,7 +2563,6 @@ 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"
@@ -2606,26 +2578,10 @@ 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"
@@ -3323,7 +3279,6 @@ 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"
@@ -3483,21 +3438,6 @@ 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"
@@ -3875,7 +3815,6 @@ 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"
@@ -4978,8 +4917,6 @@ 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"
@@ -5279,11 +5216,6 @@ 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
@@ -5490,9 +5422,6 @@ 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"
@@ -5501,22 +5430,6 @@ 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"
@@ -5557,11 +5470,6 @@ 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."
@@ -5622,26 +5530,11 @@ 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."
@@ -6104,11 +5997,6 @@ 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"
@@ -6579,11 +6467,6 @@ 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
@@ -6752,22 +6635,6 @@ 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."
@@ -6788,12 +6655,6 @@ 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"
@@ -7379,11 +7240,6 @@ 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"
@@ -8101,12 +7957,6 @@ 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
@@ -8410,8 +8260,6 @@ 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"
@@ -8764,11 +8612,6 @@ 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
@@ -10345,26 +10188,11 @@ 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
@@ -11125,16 +10953,6 @@ 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"
@@ -11549,11 +11367,6 @@ 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"
@@ -11672,8 +11485,6 @@ 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"
@@ -11913,13 +11724,11 @@ 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"
@@ -12747,7 +12556,6 @@ 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)"
@@ -12792,16 +12600,6 @@ 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"
@@ -12827,11 +12625,6 @@ 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
@@ -13434,11 +13227,6 @@ 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."
@@ -13553,9 +13341,9 @@ msgstr ""
msgid "This database value overrides environment settings. "
msgstr "Deze databasewaarde overschrijft omgevingsinstellingen."
#. js-lingui-id: 8IRnd6
#. js-lingui-id: qHAJQ2
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "This feature is part of the Enterprise Plan"
msgid "This feature is part of the Organization Plan"
msgstr ""
#. js-lingui-id: own57K
@@ -13864,8 +13652,6 @@ 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"
@@ -14214,11 +14000,6 @@ 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"
@@ -14288,11 +14069,6 @@ 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
@@ -14531,22 +14307,11 @@ 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
@@ -14673,8 +14438,6 @@ 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"
@@ -14724,11 +14487,6 @@ 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"
@@ -14747,7 +14505,6 @@ 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"
@@ -15097,7 +14854,6 @@ 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
@@ -15264,11 +15020,6 @@ 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"
@@ -15401,36 +15152,6 @@ 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"
@@ -15441,26 +15162,6 @@ 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 "
+8 -307
View File
@@ -752,37 +752,23 @@ 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"
@@ -820,13 +806,6 @@ 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: "
@@ -843,6 +822,12 @@ msgstr "Legg til node"
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"
@@ -1679,7 +1664,6 @@ 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"
@@ -1956,7 +1940,6 @@ 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"
@@ -2095,11 +2078,6 @@ 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
@@ -2328,11 +2306,6 @@ 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"
@@ -2590,7 +2563,6 @@ 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"
@@ -2606,26 +2578,10 @@ 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"
@@ -3323,7 +3279,6 @@ 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"
@@ -3483,21 +3438,6 @@ 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"
@@ -3875,7 +3815,6 @@ 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"
@@ -4978,8 +4917,6 @@ 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"
@@ -5279,11 +5216,6 @@ 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
@@ -5490,9 +5422,6 @@ 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"
@@ -5501,22 +5430,6 @@ 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"
@@ -5557,11 +5470,6 @@ 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."
@@ -5622,26 +5530,11 @@ 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."
@@ -6104,11 +5997,6 @@ 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"
@@ -6579,11 +6467,6 @@ 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
@@ -6752,22 +6635,6 @@ 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."
@@ -6788,12 +6655,6 @@ 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"
@@ -7379,11 +7240,6 @@ 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"
@@ -8101,12 +7957,6 @@ 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
@@ -8410,8 +8260,6 @@ 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"
@@ -8764,11 +8612,6 @@ 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
@@ -10345,26 +10188,11 @@ 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
@@ -11125,16 +10953,6 @@ 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"
@@ -11549,11 +11367,6 @@ 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"
@@ -11672,8 +11485,6 @@ 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"
@@ -11913,13 +11724,11 @@ 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"
@@ -12747,7 +12556,6 @@ 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)"
@@ -12792,16 +12600,6 @@ 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"
@@ -12827,11 +12625,6 @@ 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
@@ -13434,11 +13227,6 @@ 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."
@@ -13551,9 +13339,9 @@ msgstr ""
msgid "This database value overrides environment settings. "
msgstr "Denne databaseverdien overstyrer miljøinnstillinger."
#. js-lingui-id: 8IRnd6
#. js-lingui-id: qHAJQ2
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "This feature is part of the Enterprise Plan"
msgid "This feature is part of the Organization Plan"
msgstr ""
#. js-lingui-id: own57K
@@ -13862,8 +13650,6 @@ 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"
@@ -14212,11 +13998,6 @@ 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"
@@ -14286,11 +14067,6 @@ 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
@@ -14529,22 +14305,11 @@ 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
@@ -14671,8 +14436,6 @@ 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"
@@ -14722,11 +14485,6 @@ 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"
@@ -14745,7 +14503,6 @@ 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"
@@ -15095,7 +14852,6 @@ 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
@@ -15262,11 +15018,6 @@ 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"
@@ -15399,36 +15150,6 @@ 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"
@@ -15439,26 +15160,6 @@ 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 "
+8 -307
View File
@@ -752,37 +752,23 @@ 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"
@@ -820,13 +806,6 @@ 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: "
@@ -843,6 +822,12 @@ msgstr "Dodaj węzeł"
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"
@@ -1679,7 +1664,6 @@ 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"
@@ -1956,7 +1940,6 @@ 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"
@@ -2095,11 +2078,6 @@ 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
@@ -2328,11 +2306,6 @@ 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"
@@ -2590,7 +2563,6 @@ 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ę"
@@ -2606,26 +2578,10 @@ 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"
@@ -3323,7 +3279,6 @@ 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"
@@ -3483,21 +3438,6 @@ 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"
@@ -3875,7 +3815,6 @@ 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"
@@ -4978,8 +4917,6 @@ 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"
@@ -5279,11 +5216,6 @@ 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
@@ -5490,9 +5422,6 @@ 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"
@@ -5501,22 +5430,6 @@ 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"
@@ -5557,11 +5470,6 @@ 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."
@@ -5622,26 +5530,11 @@ 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."
@@ -6104,11 +5997,6 @@ 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"
@@ -6579,11 +6467,6 @@ 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
@@ -6752,22 +6635,6 @@ 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."
@@ -6788,12 +6655,6 @@ 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"
@@ -7379,11 +7240,6 @@ 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"
@@ -8101,12 +7957,6 @@ 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
@@ -8410,8 +8260,6 @@ 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"
@@ -8764,11 +8612,6 @@ 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
@@ -10345,26 +10188,11 @@ 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
@@ -11125,16 +10953,6 @@ 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"
@@ -11549,11 +11367,6 @@ 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"
@@ -11672,8 +11485,6 @@ 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"
@@ -11913,13 +11724,11 @@ 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"
@@ -12747,7 +12556,6 @@ 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)"
@@ -12792,16 +12600,6 @@ 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"
@@ -12827,11 +12625,6 @@ 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
@@ -13434,11 +13227,6 @@ 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."
@@ -13551,9 +13339,9 @@ msgstr ""
msgid "This database value overrides environment settings. "
msgstr "Ta wartość z bazy danych zastępuje ustawienia środowiska."
#. js-lingui-id: 8IRnd6
#. js-lingui-id: qHAJQ2
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "This feature is part of the Enterprise Plan"
msgid "This feature is part of the Organization Plan"
msgstr ""
#. js-lingui-id: own57K
@@ -13862,8 +13650,6 @@ 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"
@@ -14212,11 +13998,6 @@ 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"
@@ -14286,11 +14067,6 @@ 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
@@ -14529,22 +14305,11 @@ 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
@@ -14671,8 +14436,6 @@ 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"
@@ -14722,11 +14485,6 @@ 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"
@@ -14745,7 +14503,6 @@ 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"
@@ -15095,7 +14852,6 @@ 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
@@ -15262,11 +15018,6 @@ 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"
@@ -15399,36 +15150,6 @@ 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"
@@ -15439,26 +15160,6 @@ 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 "
+8 -307
View File
@@ -747,37 +747,23 @@ 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"
@@ -815,13 +801,6 @@ 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: "
@@ -838,6 +817,12 @@ msgstr ""
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"
@@ -1674,7 +1659,6 @@ 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 ""
@@ -1951,7 +1935,6 @@ 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 ""
@@ -2090,11 +2073,6 @@ 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
@@ -2323,11 +2301,6 @@ 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"
@@ -2585,7 +2558,6 @@ 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 ""
@@ -2601,26 +2573,10 @@ 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"
@@ -3318,7 +3274,6 @@ 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 ""
@@ -3478,21 +3433,6 @@ 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"
@@ -3870,7 +3810,6 @@ 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 ""
@@ -4973,8 +4912,6 @@ 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 ""
@@ -5274,11 +5211,6 @@ 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
@@ -5485,9 +5417,6 @@ 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 ""
@@ -5496,22 +5425,6 @@ 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"
@@ -5552,11 +5465,6 @@ 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."
@@ -5617,26 +5525,11 @@ 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."
@@ -6099,11 +5992,6 @@ 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"
@@ -6574,11 +6462,6 @@ 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
@@ -6747,22 +6630,6 @@ 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."
@@ -6783,12 +6650,6 @@ 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"
@@ -7374,11 +7235,6 @@ 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"
@@ -8096,12 +7952,6 @@ 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
@@ -8405,8 +8255,6 @@ 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 ""
@@ -8759,11 +8607,6 @@ 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
@@ -10340,26 +10183,11 @@ 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
@@ -11120,16 +10948,6 @@ 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"
@@ -11544,11 +11362,6 @@ 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"
@@ -11667,8 +11480,6 @@ 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 ""
@@ -11908,13 +11719,11 @@ 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 ""
@@ -12742,7 +12551,6 @@ msgstr ""
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "SSO (SAML / OIDC)"
msgstr ""
@@ -12787,16 +12595,6 @@ 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"
@@ -12822,11 +12620,6 @@ 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
@@ -13429,11 +13222,6 @@ 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."
@@ -13546,9 +13334,9 @@ msgstr ""
msgid "This database value overrides environment settings. "
msgstr ""
#. js-lingui-id: 8IRnd6
#. js-lingui-id: qHAJQ2
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "This feature is part of the Enterprise Plan"
msgid "This feature is part of the Organization Plan"
msgstr ""
#. js-lingui-id: own57K
@@ -13857,8 +13645,6 @@ 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 ""
@@ -14207,11 +13993,6 @@ 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"
@@ -14281,11 +14062,6 @@ 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
@@ -14524,22 +14300,11 @@ 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
@@ -14666,8 +14431,6 @@ 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 ""
@@ -14717,11 +14480,6 @@ 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"
@@ -14740,7 +14498,6 @@ 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 ""
@@ -15088,7 +14845,6 @@ 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
@@ -15255,11 +15011,6 @@ 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"
@@ -15392,36 +15143,6 @@ 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"
@@ -15432,26 +15153,6 @@ 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 "
+8 -307
View File
@@ -752,37 +752,23 @@ 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"
@@ -820,13 +806,6 @@ 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: "
@@ -843,6 +822,12 @@ msgstr "Adicionar nó"
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"
@@ -1679,7 +1664,6 @@ 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"
@@ -1956,7 +1940,6 @@ 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"
@@ -2095,11 +2078,6 @@ 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
@@ -2328,11 +2306,6 @@ 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"
@@ -2590,7 +2563,6 @@ 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"
@@ -2606,26 +2578,10 @@ 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"
@@ -3323,7 +3279,6 @@ 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"
@@ -3483,21 +3438,6 @@ 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"
@@ -3875,7 +3815,6 @@ 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"
@@ -4978,8 +4917,6 @@ 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"
@@ -5279,11 +5216,6 @@ 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
@@ -5490,9 +5422,6 @@ 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"
@@ -5501,22 +5430,6 @@ 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"
@@ -5557,11 +5470,6 @@ 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."
@@ -5622,26 +5530,11 @@ 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."
@@ -6104,11 +5997,6 @@ 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"
@@ -6579,11 +6467,6 @@ 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
@@ -6752,22 +6635,6 @@ 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."
@@ -6788,12 +6655,6 @@ 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"
@@ -7379,11 +7240,6 @@ 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"
@@ -8101,12 +7957,6 @@ 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
@@ -8410,8 +8260,6 @@ 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"
@@ -8764,11 +8612,6 @@ 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
@@ -10345,26 +10188,11 @@ 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
@@ -11125,16 +10953,6 @@ 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"
@@ -11549,11 +11367,6 @@ 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"
@@ -11672,8 +11485,6 @@ 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"
@@ -11913,13 +11724,11 @@ 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"
@@ -12747,7 +12556,6 @@ 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)"
@@ -12792,16 +12600,6 @@ 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"
@@ -12827,11 +12625,6 @@ 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
@@ -13434,11 +13227,6 @@ 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."
@@ -13551,9 +13339,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: 8IRnd6
#. js-lingui-id: qHAJQ2
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "This feature is part of the Enterprise Plan"
msgid "This feature is part of the Organization Plan"
msgstr ""
#. js-lingui-id: own57K
@@ -13862,8 +13650,6 @@ 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"
@@ -14212,11 +13998,6 @@ 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"
@@ -14286,11 +14067,6 @@ 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
@@ -14529,22 +14305,11 @@ 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
@@ -14671,8 +14436,6 @@ 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"
@@ -14722,11 +14485,6 @@ 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"
@@ -14745,7 +14503,6 @@ 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"
@@ -15095,7 +14852,6 @@ 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
@@ -15262,11 +15018,6 @@ 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"
@@ -15399,36 +15150,6 @@ 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"
@@ -15439,26 +15160,6 @@ 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 "
+8 -307
View File
@@ -752,37 +752,23 @@ 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"
@@ -820,13 +806,6 @@ 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: "
@@ -843,6 +822,12 @@ msgstr "Adicionar nó"
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"
@@ -1679,7 +1664,6 @@ 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"
@@ -1956,7 +1940,6 @@ 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"
@@ -2095,11 +2078,6 @@ 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
@@ -2328,11 +2306,6 @@ 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"
@@ -2590,7 +2563,6 @@ 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"
@@ -2606,26 +2578,10 @@ 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"
@@ -3323,7 +3279,6 @@ 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"
@@ -3483,21 +3438,6 @@ 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"
@@ -3875,7 +3815,6 @@ 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"
@@ -4978,8 +4917,6 @@ 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"
@@ -5279,11 +5216,6 @@ 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
@@ -5490,9 +5422,6 @@ 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"
@@ -5501,22 +5430,6 @@ 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"
@@ -5557,11 +5470,6 @@ 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."
@@ -5622,26 +5530,11 @@ 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."
@@ -6104,11 +5997,6 @@ 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"
@@ -6579,11 +6467,6 @@ 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
@@ -6752,22 +6635,6 @@ 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."
@@ -6788,12 +6655,6 @@ 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"
@@ -7379,11 +7240,6 @@ 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"
@@ -8101,12 +7957,6 @@ 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
@@ -8410,8 +8260,6 @@ 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"
@@ -8764,11 +8612,6 @@ 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
@@ -10345,26 +10188,11 @@ 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
@@ -11125,16 +10953,6 @@ 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"
@@ -11549,11 +11367,6 @@ 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"
@@ -11672,8 +11485,6 @@ 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"
@@ -11913,13 +11724,11 @@ 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"
@@ -12747,7 +12556,6 @@ 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)"
@@ -12792,16 +12600,6 @@ 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"
@@ -12827,11 +12625,6 @@ 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
@@ -13434,11 +13227,6 @@ 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."
@@ -13551,9 +13339,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: 8IRnd6
#. js-lingui-id: qHAJQ2
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "This feature is part of the Enterprise Plan"
msgid "This feature is part of the Organization Plan"
msgstr ""
#. js-lingui-id: own57K
@@ -13862,8 +13650,6 @@ 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"
@@ -14212,11 +13998,6 @@ 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"
@@ -14286,11 +14067,6 @@ 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
@@ -14529,22 +14305,11 @@ 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
@@ -14671,8 +14436,6 @@ 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"
@@ -14722,11 +14485,6 @@ 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"
@@ -14745,7 +14503,6 @@ 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"
@@ -15095,7 +14852,6 @@ 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
@@ -15262,11 +15018,6 @@ 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"
@@ -15399,36 +15150,6 @@ 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"
@@ -15439,26 +15160,6 @@ 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 "
+8 -307
View File
@@ -752,37 +752,23 @@ 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"
@@ -820,13 +806,6 @@ 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: "
@@ -843,6 +822,12 @@ msgstr "Adaugă nod"
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"
@@ -1679,7 +1664,6 @@ 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"
@@ -1956,7 +1940,6 @@ 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"
@@ -2095,11 +2078,6 @@ 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
@@ -2328,11 +2306,6 @@ 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"
@@ -2590,7 +2563,6 @@ 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"
@@ -2606,26 +2578,10 @@ 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"
@@ -3323,7 +3279,6 @@ 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ă"
@@ -3483,21 +3438,6 @@ 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"
@@ -3875,7 +3815,6 @@ 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"
@@ -4978,8 +4917,6 @@ 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"
@@ -5279,11 +5216,6 @@ 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
@@ -5490,9 +5422,6 @@ 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"
@@ -5501,22 +5430,6 @@ 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"
@@ -5557,11 +5470,6 @@ 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."
@@ -5622,26 +5530,11 @@ 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."
@@ -6104,11 +5997,6 @@ 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"
@@ -6579,11 +6467,6 @@ 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
@@ -6752,22 +6635,6 @@ 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."
@@ -6788,12 +6655,6 @@ 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"
@@ -7379,11 +7240,6 @@ 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"
@@ -8101,12 +7957,6 @@ 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
@@ -8410,8 +8260,6 @@ 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"
@@ -8764,11 +8612,6 @@ 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
@@ -10345,26 +10188,11 @@ 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
@@ -11125,16 +10953,6 @@ 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"
@@ -11549,11 +11367,6 @@ 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"
@@ -11672,8 +11485,6 @@ 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ă"
@@ -11913,13 +11724,11 @@ 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 ""
@@ -12747,7 +12556,6 @@ 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)"
@@ -12792,16 +12600,6 @@ 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"
@@ -12827,11 +12625,6 @@ 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
@@ -13434,11 +13227,6 @@ 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."
@@ -13551,9 +13339,9 @@ msgstr ""
msgid "This database value overrides environment settings. "
msgstr "Această valoare a bazei de date suprascrie setările de mediu."
#. js-lingui-id: 8IRnd6
#. js-lingui-id: qHAJQ2
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "This feature is part of the Enterprise Plan"
msgid "This feature is part of the Organization Plan"
msgstr ""
#. js-lingui-id: own57K
@@ -13862,8 +13650,6 @@ 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"
@@ -14212,11 +13998,6 @@ 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"
@@ -14286,11 +14067,6 @@ 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
@@ -14529,22 +14305,11 @@ 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
@@ -14671,8 +14436,6 @@ 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"
@@ -14722,11 +14485,6 @@ 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"
@@ -14745,7 +14503,6 @@ 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"
@@ -15095,7 +14852,6 @@ 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
@@ -15262,11 +15018,6 @@ 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"
@@ -15399,36 +15150,6 @@ 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"
@@ -15439,26 +15160,6 @@ 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.
+8 -307
View File
@@ -752,37 +752,23 @@ 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"
@@ -820,13 +806,6 @@ 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: "
@@ -843,6 +822,12 @@ msgstr "Додај чвор"
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"
@@ -1679,7 +1664,6 @@ 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 и Вебхукси"
@@ -1956,7 +1940,6 @@ 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"
@@ -2095,11 +2078,6 @@ 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
@@ -2328,11 +2306,6 @@ 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"
@@ -2590,7 +2563,6 @@ 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 "Откажи план"
@@ -2606,26 +2578,10 @@ 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"
@@ -3323,7 +3279,6 @@ 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 "Настави"
@@ -3483,21 +3438,6 @@ 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"
@@ -3875,7 +3815,6 @@ 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 "Прилагођени објекти"
@@ -4978,8 +4917,6 @@ 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 "Измени начин плаћања, погледај своје фактуре и још много тога"
@@ -5279,11 +5216,6 @@ 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
@@ -5490,9 +5422,6 @@ 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 "Предузеће"
@@ -5501,22 +5430,6 @@ 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"
@@ -5557,11 +5470,6 @@ 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."
@@ -5622,26 +5530,11 @@ 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."
@@ -6104,11 +5997,6 @@ 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"
@@ -6579,11 +6467,6 @@ 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
@@ -6752,22 +6635,6 @@ 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."
@@ -6788,12 +6655,6 @@ 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"
@@ -7379,11 +7240,6 @@ 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"
@@ -8101,12 +7957,6 @@ 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
@@ -8410,8 +8260,6 @@ 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 "Управљајте информацијама о наплати"
@@ -8764,11 +8612,6 @@ 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
@@ -10345,26 +10188,11 @@ 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
@@ -11125,16 +10953,6 @@ 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"
@@ -11549,11 +11367,6 @@ 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"
@@ -11672,8 +11485,6 @@ 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 "Претрага"
@@ -11913,13 +11724,11 @@ 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 "седиште / месец - наплата годишње"
@@ -12747,7 +12556,6 @@ 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)"
@@ -12792,16 +12600,6 @@ 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"
@@ -12827,11 +12625,6 @@ 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
@@ -13434,11 +13227,6 @@ 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."
@@ -13551,9 +13339,9 @@ msgstr ""
msgid "This database value overrides environment settings. "
msgstr "Ова вредност из базе података замењује подешавања окружења."
#. js-lingui-id: 8IRnd6
#. js-lingui-id: qHAJQ2
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "This feature is part of the Enterprise Plan"
msgid "This feature is part of the Organization Plan"
msgstr ""
#. js-lingui-id: own57K
@@ -13862,8 +13650,6 @@ 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 "Проба"
@@ -14212,11 +13998,6 @@ 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"
@@ -14286,11 +14067,6 @@ 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
@@ -14529,22 +14305,11 @@ 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
@@ -14671,8 +14436,6 @@ 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 "Прегледај детаље о плаћању"
@@ -14722,11 +14485,6 @@ 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"
@@ -14745,7 +14503,6 @@ 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 "Прегледај претходне разговоре са вештачком интелигенцијом"
@@ -15095,7 +14852,6 @@ 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
@@ -15262,11 +15018,6 @@ 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"
@@ -15399,36 +15150,6 @@ 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"
@@ -15439,26 +15160,6 @@ 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 "
+8 -307
View File
@@ -752,37 +752,23 @@ 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"
@@ -820,13 +806,6 @@ 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: "
@@ -843,6 +822,12 @@ msgstr "Lägg till en nod"
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"
@@ -1679,7 +1664,6 @@ 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"
@@ -1956,7 +1940,6 @@ 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"
@@ -2095,11 +2078,6 @@ 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
@@ -2328,11 +2306,6 @@ 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"
@@ -2590,7 +2563,6 @@ 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"
@@ -2606,26 +2578,10 @@ 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"
@@ -3323,7 +3279,6 @@ 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"
@@ -3483,21 +3438,6 @@ 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"
@@ -3875,7 +3815,6 @@ 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"
@@ -4978,8 +4917,6 @@ 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"
@@ -5279,11 +5216,6 @@ 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
@@ -5490,9 +5422,6 @@ 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"
@@ -5501,22 +5430,6 @@ 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"
@@ -5557,11 +5470,6 @@ 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."
@@ -5622,26 +5530,11 @@ 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."
@@ -6104,11 +5997,6 @@ 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"
@@ -6579,11 +6467,6 @@ 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
@@ -6752,22 +6635,6 @@ 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."
@@ -6788,12 +6655,6 @@ 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"
@@ -7379,11 +7240,6 @@ 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"
@@ -8101,12 +7957,6 @@ 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
@@ -8410,8 +8260,6 @@ 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"
@@ -8766,11 +8614,6 @@ 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
@@ -10347,26 +10190,11 @@ 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
@@ -11127,16 +10955,6 @@ 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"
@@ -11551,11 +11369,6 @@ 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"
@@ -11676,8 +11489,6 @@ 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"
@@ -11917,13 +11728,11 @@ 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"
@@ -12751,7 +12560,6 @@ 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)"
@@ -12796,16 +12604,6 @@ 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"
@@ -12831,11 +12629,6 @@ 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
@@ -13446,11 +13239,6 @@ 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."
@@ -13565,9 +13353,9 @@ msgstr ""
msgid "This database value overrides environment settings. "
msgstr "Detta databasvärde åsidosätter miljöinställningar."
#. js-lingui-id: 8IRnd6
#. js-lingui-id: qHAJQ2
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "This feature is part of the Enterprise Plan"
msgid "This feature is part of the Organization Plan"
msgstr ""
#. js-lingui-id: own57K
@@ -13876,8 +13664,6 @@ 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"
@@ -14226,11 +14012,6 @@ 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"
@@ -14300,11 +14081,6 @@ 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
@@ -14543,22 +14319,11 @@ 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
@@ -14685,8 +14450,6 @@ 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"
@@ -14736,11 +14499,6 @@ 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"
@@ -14759,7 +14517,6 @@ 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"
@@ -15109,7 +14866,6 @@ 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
@@ -15276,11 +15032,6 @@ 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"
@@ -15413,36 +15164,6 @@ 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"
@@ -15453,26 +15174,6 @@ 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 "
+8 -307
View File
@@ -752,37 +752,23 @@ 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"
@@ -820,13 +806,6 @@ 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: "
@@ -843,6 +822,12 @@ msgstr "Bir düğüm ekle"
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"
@@ -1679,7 +1664,6 @@ 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"
@@ -1956,7 +1940,6 @@ 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"
@@ -2095,11 +2078,6 @@ 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
@@ -2328,11 +2306,6 @@ 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"
@@ -2590,7 +2563,6 @@ 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"
@@ -2606,26 +2578,10 @@ 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"
@@ -3323,7 +3279,6 @@ 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"
@@ -3483,21 +3438,6 @@ 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"
@@ -3875,7 +3815,6 @@ 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"
@@ -4978,8 +4917,6 @@ 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ı"
@@ -5279,11 +5216,6 @@ 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
@@ -5490,9 +5422,6 @@ 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"
@@ -5501,22 +5430,6 @@ 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"
@@ -5557,11 +5470,6 @@ 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."
@@ -5622,26 +5530,11 @@ 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."
@@ -6104,11 +5997,6 @@ 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"
@@ -6579,11 +6467,6 @@ 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
@@ -6752,22 +6635,6 @@ 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."
@@ -6788,12 +6655,6 @@ 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"
@@ -7379,11 +7240,6 @@ 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"
@@ -8101,12 +7957,6 @@ 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
@@ -8410,8 +8260,6 @@ 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"
@@ -8764,11 +8612,6 @@ 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
@@ -10345,26 +10188,11 @@ 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
@@ -11125,16 +10953,6 @@ 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"
@@ -11549,11 +11367,6 @@ 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"
@@ -11672,8 +11485,6 @@ 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"
@@ -11913,13 +11724,11 @@ 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"
@@ -12747,7 +12556,6 @@ 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)"
@@ -12792,16 +12600,6 @@ 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"
@@ -12827,11 +12625,6 @@ 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
@@ -13434,11 +13227,6 @@ 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."
@@ -13551,9 +13339,9 @@ msgstr ""
msgid "This database value overrides environment settings. "
msgstr "Bu veritabanı değeri çevre ayarlarının üzerine yazar."
#. js-lingui-id: 8IRnd6
#. js-lingui-id: qHAJQ2
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "This feature is part of the Enterprise Plan"
msgid "This feature is part of the Organization Plan"
msgstr ""
#. js-lingui-id: own57K
@@ -13862,8 +13650,6 @@ 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"
@@ -14212,11 +13998,6 @@ 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"
@@ -14286,11 +14067,6 @@ 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
@@ -14529,22 +14305,11 @@ 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
@@ -14671,8 +14436,6 @@ 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"
@@ -14722,11 +14485,6 @@ 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"
@@ -14745,7 +14503,6 @@ 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"
@@ -15095,7 +14852,6 @@ 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
@@ -15262,11 +15018,6 @@ 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"
@@ -15399,36 +15150,6 @@ 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"
@@ -15439,26 +15160,6 @@ 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 "
+8 -307
View File
@@ -752,37 +752,23 @@ 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"
@@ -820,13 +806,6 @@ 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: "
@@ -843,6 +822,12 @@ msgstr "Додати вузол"
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"
@@ -1679,7 +1664,6 @@ 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"
@@ -1956,7 +1940,6 @@ 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"
@@ -2095,11 +2078,6 @@ 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
@@ -2328,11 +2306,6 @@ 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"
@@ -2590,7 +2563,6 @@ 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 "Скасувати план"
@@ -2606,26 +2578,10 @@ 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"
@@ -3323,7 +3279,6 @@ 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 "Продовжити"
@@ -3483,21 +3438,6 @@ 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"
@@ -3875,7 +3815,6 @@ 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 "Користувацькі об'єкти"
@@ -4978,8 +4917,6 @@ 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 "Редагувати спосіб оплати, переглядати свої рахунки та більше"
@@ -5279,11 +5216,6 @@ 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
@@ -5490,9 +5422,6 @@ 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 "Підприємство"
@@ -5501,22 +5430,6 @@ 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"
@@ -5557,11 +5470,6 @@ 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."
@@ -5622,26 +5530,11 @@ 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."
@@ -6104,11 +5997,6 @@ 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"
@@ -6579,11 +6467,6 @@ 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
@@ -6752,22 +6635,6 @@ 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."
@@ -6788,12 +6655,6 @@ 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"
@@ -7379,11 +7240,6 @@ 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"
@@ -8101,12 +7957,6 @@ 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
@@ -8410,8 +8260,6 @@ 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 "Керування платіжною інформацією"
@@ -8764,11 +8612,6 @@ 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
@@ -10345,26 +10188,11 @@ 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
@@ -11125,16 +10953,6 @@ 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"
@@ -11549,11 +11367,6 @@ 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"
@@ -11672,8 +11485,6 @@ 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 "Пошук"
@@ -11913,13 +11724,11 @@ 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 "місце / місяць - виставляється рахунок щорічно"
@@ -12747,7 +12556,6 @@ 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)"
@@ -12792,16 +12600,6 @@ 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"
@@ -12827,11 +12625,6 @@ 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
@@ -13434,11 +13227,6 @@ 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."
@@ -13553,9 +13341,9 @@ msgstr ""
msgid "This database value overrides environment settings. "
msgstr "Це значення з бази даних перевизначає параметри середовища."
#. js-lingui-id: 8IRnd6
#. js-lingui-id: qHAJQ2
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "This feature is part of the Enterprise Plan"
msgid "This feature is part of the Organization Plan"
msgstr ""
#. js-lingui-id: own57K
@@ -13864,8 +13652,6 @@ 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 "Випробування"
@@ -14214,11 +14000,6 @@ 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"
@@ -14288,11 +14069,6 @@ 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
@@ -14531,22 +14307,11 @@ 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
@@ -14673,8 +14438,6 @@ 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 "Переглянути деталі оплати"
@@ -14724,11 +14487,6 @@ 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"
@@ -14747,7 +14505,6 @@ 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 "Переглянути попередні чати з ШІ"
@@ -15097,7 +14854,6 @@ 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
@@ -15264,11 +15020,6 @@ 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"
@@ -15401,36 +15152,6 @@ 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"
@@ -15441,26 +15162,6 @@ 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 "
+8 -307
View File
@@ -752,37 +752,23 @@ 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"
@@ -820,13 +806,6 @@ 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: "
@@ -843,6 +822,12 @@ msgstr "Thêm nút"
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"
@@ -1679,7 +1664,6 @@ 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"
@@ -1956,7 +1940,6 @@ 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"
@@ -2095,11 +2078,6 @@ 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
@@ -2328,11 +2306,6 @@ 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"
@@ -2590,7 +2563,6 @@ 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"
@@ -2606,26 +2578,10 @@ 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"
@@ -3323,7 +3279,6 @@ 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"
@@ -3483,21 +3438,6 @@ 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"
@@ -3875,7 +3815,6 @@ 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"
@@ -4978,8 +4917,6 @@ 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"
@@ -5279,11 +5216,6 @@ 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
@@ -5490,9 +5422,6 @@ 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"
@@ -5501,22 +5430,6 @@ 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"
@@ -5557,11 +5470,6 @@ 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."
@@ -5622,26 +5530,11 @@ 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."
@@ -6104,11 +5997,6 @@ 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"
@@ -6579,11 +6467,6 @@ 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
@@ -6752,22 +6635,6 @@ 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."
@@ -6788,12 +6655,6 @@ 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"
@@ -7379,11 +7240,6 @@ 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"
@@ -8101,12 +7957,6 @@ 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
@@ -8410,8 +8260,6 @@ 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"
@@ -8764,11 +8612,6 @@ 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
@@ -10345,26 +10188,11 @@ 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
@@ -11125,16 +10953,6 @@ 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"
@@ -11549,11 +11367,6 @@ 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"
@@ -11672,8 +11485,6 @@ 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"
@@ -11913,13 +11724,11 @@ 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"
@@ -12747,7 +12556,6 @@ 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)"
@@ -12792,16 +12600,6 @@ 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"
@@ -12827,11 +12625,6 @@ 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
@@ -13434,11 +13227,6 @@ 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."
@@ -13551,9 +13339,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: 8IRnd6
#. js-lingui-id: qHAJQ2
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "This feature is part of the Enterprise Plan"
msgid "This feature is part of the Organization Plan"
msgstr ""
#. js-lingui-id: own57K
@@ -13862,8 +13650,6 @@ 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ử"
@@ -14212,11 +13998,6 @@ 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"
@@ -14286,11 +14067,6 @@ 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
@@ -14529,22 +14305,11 @@ 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
@@ -14671,8 +14436,6 @@ 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"
@@ -14722,11 +14485,6 @@ 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"
@@ -14745,7 +14503,6 @@ 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"
@@ -15095,7 +14852,6 @@ 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
@@ -15262,11 +15018,6 @@ 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"
@@ -15399,36 +15150,6 @@ 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"
@@ -15439,26 +15160,6 @@ 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 "
+8 -307
View File
@@ -752,37 +752,23 @@ 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"
@@ -820,13 +806,6 @@ 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: "
@@ -843,6 +822,12 @@ msgstr "添加节点"
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"
@@ -1679,7 +1664,6 @@ 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"
@@ -1956,7 +1940,6 @@ 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"
@@ -2095,11 +2078,6 @@ 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
@@ -2328,11 +2306,6 @@ 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"
@@ -2590,7 +2563,6 @@ 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 "取消计划"
@@ -2606,26 +2578,10 @@ 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"
@@ -3323,7 +3279,6 @@ 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 "继续"
@@ -3483,21 +3438,6 @@ 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"
@@ -3875,7 +3815,6 @@ 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 "自定义对象"
@@ -4978,8 +4917,6 @@ 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 "编辑付款方式、查看发票等"
@@ -5279,11 +5216,6 @@ 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
@@ -5490,9 +5422,6 @@ 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 "企业"
@@ -5501,22 +5430,6 @@ 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"
@@ -5557,11 +5470,6 @@ 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."
@@ -5622,26 +5530,11 @@ 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."
@@ -6104,11 +5997,6 @@ 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"
@@ -6579,11 +6467,6 @@ 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
@@ -6752,22 +6635,6 @@ 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."
@@ -6788,12 +6655,6 @@ 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"
@@ -7379,11 +7240,6 @@ 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"
@@ -8101,12 +7957,6 @@ 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
@@ -8410,8 +8260,6 @@ 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 "管理账单信息"
@@ -8764,11 +8612,6 @@ 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
@@ -10345,26 +10188,11 @@ 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
@@ -11125,16 +10953,6 @@ 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"
@@ -11549,11 +11367,6 @@ 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"
@@ -11672,8 +11485,6 @@ 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 "搜索"
@@ -11913,13 +11724,11 @@ 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 "每座/月 - 年费结算"
@@ -12747,7 +12556,6 @@ 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)"
@@ -12792,16 +12600,6 @@ 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"
@@ -12827,11 +12625,6 @@ 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
@@ -13434,11 +13227,6 @@ 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."
@@ -13551,9 +13339,9 @@ msgstr ""
msgid "This database value overrides environment settings. "
msgstr "此数据库值会覆盖环境设置。"
#. js-lingui-id: 8IRnd6
#. js-lingui-id: qHAJQ2
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "This feature is part of the Enterprise Plan"
msgid "This feature is part of the Organization Plan"
msgstr ""
#. js-lingui-id: own57K
@@ -13862,8 +13650,6 @@ 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 "试用"
@@ -14212,11 +13998,6 @@ 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"
@@ -14286,11 +14067,6 @@ 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
@@ -14529,22 +14305,11 @@ 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
@@ -14671,8 +14436,6 @@ 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 "查看账单详情"
@@ -14722,11 +14485,6 @@ 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"
@@ -14745,7 +14503,6 @@ 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 "查看历史人工智能对话"
@@ -15095,7 +14852,6 @@ 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
@@ -15262,11 +15018,6 @@ 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"
@@ -15399,36 +15150,6 @@ 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"
@@ -15439,26 +15160,6 @@ 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 "
+8 -307
View File
@@ -752,37 +752,23 @@ 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"
@@ -820,13 +806,6 @@ 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: "
@@ -843,6 +822,12 @@ msgstr "添加節點"
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"
@@ -1679,7 +1664,6 @@ 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"
@@ -1956,7 +1940,6 @@ 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"
@@ -2095,11 +2078,6 @@ 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
@@ -2328,11 +2306,6 @@ 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"
@@ -2590,7 +2563,6 @@ 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 "取消計劃"
@@ -2606,26 +2578,10 @@ 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"
@@ -3323,7 +3279,6 @@ 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 "繼續"
@@ -3483,21 +3438,6 @@ 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"
@@ -3875,7 +3815,6 @@ 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 "自定義對象"
@@ -4978,8 +4917,6 @@ 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 "編輯付款方式、查看發票等"
@@ -5279,11 +5216,6 @@ 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
@@ -5490,9 +5422,6 @@ 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 "企業"
@@ -5501,22 +5430,6 @@ 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"
@@ -5557,11 +5470,6 @@ 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."
@@ -5622,26 +5530,11 @@ 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."
@@ -6104,11 +5997,6 @@ 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"
@@ -6579,11 +6467,6 @@ 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
@@ -6752,22 +6635,6 @@ 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."
@@ -6788,12 +6655,6 @@ 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"
@@ -7379,11 +7240,6 @@ 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"
@@ -8101,12 +7957,6 @@ 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
@@ -8410,8 +8260,6 @@ 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 "管理帳單資訊"
@@ -8764,11 +8612,6 @@ 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
@@ -10345,26 +10188,11 @@ 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
@@ -11125,16 +10953,6 @@ 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"
@@ -11549,11 +11367,6 @@ 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"
@@ -11672,8 +11485,6 @@ 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 "搜索"
@@ -11913,13 +11724,11 @@ 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 ""
@@ -12747,7 +12556,6 @@ 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)"
@@ -12792,16 +12600,6 @@ 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"
@@ -12827,11 +12625,6 @@ 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
@@ -13434,11 +13227,6 @@ 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."
@@ -13551,9 +13339,9 @@ msgstr ""
msgid "This database value overrides environment settings. "
msgstr "此資料庫值覆蓋環境設置。"
#. js-lingui-id: 8IRnd6
#. js-lingui-id: qHAJQ2
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "This feature is part of the Enterprise Plan"
msgid "This feature is part of the Organization Plan"
msgstr ""
#. js-lingui-id: own57K
@@ -13862,8 +13650,6 @@ 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 "試用"
@@ -14212,11 +13998,6 @@ 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"
@@ -14286,11 +14067,6 @@ 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
@@ -14529,22 +14305,11 @@ 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
@@ -14671,8 +14436,6 @@ 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 "查看計費詳情"
@@ -14722,11 +14485,6 @@ 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"
@@ -14745,7 +14503,6 @@ 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 聊天"
@@ -15095,7 +14852,6 @@ 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
@@ -15262,11 +15018,6 @@ 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"
@@ -15399,36 +15150,6 @@ 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"
@@ -15439,26 +15160,6 @@ 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 "
@@ -24,7 +24,6 @@ import { mapDBMessagesToUIMessages } from '@/ai/utils/mapDBMessagesToUIMessages'
import { useAtomState } from '@/ui/utilities/state/jotai/hooks/useAtomState';
import { useSetAtomState } from '@/ui/utilities/state/jotai/hooks/useSetAtomState';
import { useCallback, useMemo } from 'react';
import {
type GetChatThreadsQuery,
GetChatThreadsDocument,
@@ -182,11 +181,7 @@ export const useAgentChatData = () => {
},
});
const isNewThread = useMemo(
() => currentAIChatThread === AGENT_CHAT_NEW_THREAD_DRAFT_KEY,
[currentAIChatThread],
);
const isNewThread = currentAIChatThread === AGENT_CHAT_NEW_THREAD_DRAFT_KEY;
const { loading: messagesLoading, data } = useGetChatMessagesQuery({
variables: { threadId: currentAIChatThread! },
skip: !isDefined(currentAIChatThread) || isNewThread,
@@ -196,7 +191,7 @@ export const useAgentChatData = () => {
},
});
const ensureThreadForDraft = useCallback(() => {
const ensureThreadForDraft = () => {
const current = store.get(currentAIChatThreadState.atom);
if (current !== AGENT_CHAT_NEW_THREAD_DRAFT_KEY) {
return;
@@ -223,16 +218,9 @@ export const useAgentChatData = () => {
threadIdPromise.finally(() => {
setPendingCreateFromDraftPromise(null);
});
}, [
createChatThread,
setPendingCreateFromDraftPromise,
store,
setIsCreatingChatThread,
]);
};
const ensureThreadIdForSend = useCallback(async (): Promise<
string | null
> => {
const ensureThreadIdForSend = async (): Promise<string | null> => {
const current = store.get(currentAIChatThreadState.atom);
if (current !== AGENT_CHAT_NEW_THREAD_DRAFT_KEY) {
return current;
@@ -259,33 +247,16 @@ export const useAgentChatData = () => {
} finally {
setIsCreatingChatThread(false);
}
}, [createChatThread, store, setIsCreatingChatThread]);
};
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],
);
const uiMessages = mapDBMessagesToUIMessages(data?.chatMessages || []);
const isLoading = messagesLoading || threadsLoading;
return {
uiMessages,
isLoading,
threadsLoading: threadsLoadingMemoized,
messagesLoading: messagesLoadingMemoized,
threadsLoading,
messagesLoading,
ensureThreadForDraft,
ensureThreadIdForSend,
};
@@ -2,7 +2,6 @@ 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;
@@ -17,12 +16,9 @@ export const useAgentChatScrollToBottom = () => {
AI_CHAT_SCROLL_WRAPPER_ID,
);
const isNearBottom = useMemo(
() => scrollWrapperScrollBottom <= SCROLL_BOTTOM_THRESHOLD_PX,
[scrollWrapperScrollBottom],
);
const isNearBottom = scrollWrapperScrollBottom <= SCROLL_BOTTOM_THRESHOLD_PX;
const scrollToBottom = useCallback(() => {
const scrollToBottom = () => {
const { scrollWrapperElement } = getScrollWrapperElement();
if (!isDefined(scrollWrapperElement)) {
return;
@@ -31,7 +27,7 @@ export const useAgentChatScrollToBottom = () => {
scrollWrapperElement.scrollTo({
top: scrollWrapperElement.scrollHeight,
});
}, [getScrollWrapperElement]);
};
return { scrollToBottom, isNearBottom };
};
@@ -80,26 +80,9 @@ export const useProcessUIToolCallMessage = () => {
break;
}
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 },
);
case 'navigateToView':
// TODO: implement
break;
}
case 'wait': {
await sleep(navigateAppOutput.durationMs);
break;
@@ -58,9 +58,6 @@ const mockWorkspace = {
isPasswordAuthBypassEnabled: false,
isMicrosoftAuthBypassEnabled: false,
hasValidEnterpriseKey: false,
hasActivatedAndValidEnterpriseKey: false,
hasValidSignedEnterpriseKey: false,
hasValidEnterpriseValidityToken: false,
subdomain: 'test',
customDomain: 'test.com',
workspaceUrls: {
@@ -1,11 +1,10 @@
import { lazy, Suspense } from 'react';
import { Navigate, Route, Routes } from 'react-router-dom';
import { Route, Routes } from 'react-router-dom';
import { SettingsProtectedRouteWrapper } from '@/settings/components/SettingsProtectedRouteWrapper';
import { SettingsSkeletonLoader } from '@/settings/components/SettingsSkeletonLoader';
import { SettingPublicDomain } from '@/settings/domains/components/SettingPublicDomain';
import { SettingsPath } from 'twenty-shared/types';
import { getSettingsPath } from 'twenty-shared/utils';
import {
FeatureFlagKey,
PermissionFlagType,
@@ -663,15 +662,6 @@ export const SettingsRoutes = ({ isAdminPageEnabled }: SettingsRoutesProps) => (
{isAdminPageEnabled && (
<>
<Route path={SettingsPath.AdminPanel} element={<SettingsAdmin />} />
<Route
path={SettingsPath.Enterprise}
element={
<Navigate
to={getSettingsPath(SettingsPath.AdminPanelEnterprise)}
replace
/>
}
/>
<Route
path={SettingsPath.AdminPanelIndicatorHealthStatus}
element={<SettingsAdminIndicatorHealthStatus />}
@@ -52,7 +52,7 @@ import { useOrigin } from '@/domain-manager/hooks/useOrigin';
import { useRedirect } from '@/domain-manager/hooks/useRedirect';
import { useRedirectToWorkspaceDomain } from '@/domain-manager/hooks/useRedirectToWorkspaceDomain';
import { domainConfigurationState } from '@/domain-manager/states/domainConfigurationState';
import { useClearSseClient } from '@/sse-db-event/hooks/useClearSseClient';
import { sseClientState } from '@/sse-db-event/states/sseClientState';
import { useLoadCurrentUser } from '@/users/hooks/useLoadCurrentUser';
import { workspaceAuthProvidersState } from '@/workspace/states/workspaceAuthProvidersState';
import { i18n } from '@lingui/core';
@@ -81,7 +81,6 @@ export const useAuth = () => {
isEmailVerificationRequiredState,
);
const { loadCurrentUser } = useLoadCurrentUser();
const { clearSseClient } = useClearSseClient();
const { reloadWorkspaceMetadata, resetToMockedMetadata } =
useReloadWorkspaceMetadata();
@@ -118,7 +117,9 @@ export const useAuth = () => {
const navigate = useNavigate();
const clearSession = useCallback(async () => {
clearSseClient();
const sseClient = store.get(sseClientState.atom);
sseClient?.dispose();
const authProvidersValue = store.get(workspaceAuthProvidersState.atom);
const domainConfigurationValue = store.get(domainConfigurationState.atom);
@@ -161,7 +162,6 @@ export const useAuth = () => {
navigate(AppPath.SignInUp);
store.set(isAppEffectRedirectEnabledState.atom, true);
}, [
clearSseClient,
client,
setLastAuthenticateWorkspaceDomain,
resetToMockedMetadata,
@@ -27,8 +27,6 @@ export type CurrentWorkspace = Pick<
| 'isPasswordAuthBypassEnabled'
| 'isCustomDomainEnabled'
| 'hasValidEnterpriseKey'
| 'hasValidSignedEnterpriseKey'
| 'hasValidEnterpriseValidityToken'
| 'subdomain'
| 'customDomain'
| 'workspaceUrls'
@@ -1,6 +1,6 @@
import { OBJECT_RECORD_OPERATION_BROWSER_EVENT_NAME } from '@/browser-event/constants/ObjectRecordOperationBrowserEventName';
import { type ObjectRecordOperationBrowserEventDetail } from '@/browser-event/types/ObjectRecordOperationBrowserEventDetail';
import { type ObjectRecordOperation } from '@/object-record/types/ObjectRecordOperation';
import { type ObjectRecordOperationBrowserEventDetail } from '@/browser-event/types/ObjectRecordOperationBrowserEventDetail';
import { useEffect } from 'react';
import { isDefined, isNonEmptyArray } from 'twenty-shared/utils';
@@ -1,262 +0,0 @@
import { CommandLink } from '@/command-menu-item/display/components/CommandLink';
import { CommandMenuItemOpenSidePanelPage } from '@/command-menu-item/display/components/CommandMenuItemOpenSidePanelPage';
import { DeleteMultipleRecordsCommand } from '@/command-menu-item/record/multiple-records/components/DeleteMultipleRecordsCommand';
import { DestroyMultipleRecordsCommand } from '@/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand';
import { ExportMultipleRecordsCommand } from '@/command-menu-item/record/multiple-records/components/ExportMultipleRecordsCommand';
import { MergeMultipleRecordsCommand } from '@/command-menu-item/record/multiple-records/components/MergeMultipleRecordsCommand';
import { RestoreMultipleRecordsCommand } from '@/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand';
import { UpdateMultipleRecordsCommand } from '@/command-menu-item/record/multiple-records/components/UpdateMultipleRecordsCommand';
import { CreateNewIndexRecordNoSelectionRecordCommand } from '@/command-menu-item/record/no-selection/components/CreateNewIndexRecordNoSelectionRecordCommand';
import { CreateNewViewNoSelectionRecordCommand } from '@/command-menu-item/record/no-selection/components/CreateNewViewNoSelectionRecordCommand';
import { HideDeletedRecordsNoSelectionRecordCommand } from '@/command-menu-item/record/no-selection/components/HideDeletedRecordsNoSelectionRecordCommand';
import { ImportRecordsNoSelectionRecordCommand } from '@/command-menu-item/record/no-selection/components/ImportRecordsNoSelectionRecordCommand';
import { SeeDeletedRecordsNoSelectionRecordCommand } from '@/command-menu-item/record/no-selection/components/SeeDeletedRecordsNoSelectionRecordCommand';
import { AddToFavoritesSingleRecordCommand } from '@/command-menu-item/record/single-record/components/AddToFavoritesSingleRecordCommand';
import { DeleteSingleRecordCommand } from '@/command-menu-item/record/single-record/components/DeleteSingleRecordCommand';
import { DestroySingleRecordCommand } from '@/command-menu-item/record/single-record/components/DestroySingleRecordCommand';
import { ExportNoteSingleRecordCommand } from '@/command-menu-item/record/single-record/components/ExportNoteSingleRecordCommand';
import { ExportSingleRecordCommand } from '@/command-menu-item/record/single-record/components/ExportSingleRecordCommand';
import { NavigateToNextRecordSingleRecordCommand } from '@/command-menu-item/record/single-record/components/NavigateToNextRecordSingleRecordCommand';
import { NavigateToPreviousRecordSingleRecordCommand } from '@/command-menu-item/record/single-record/components/NavigateToPreviousRecordSingleRecordCommand';
import { RemoveFromFavoritesSingleRecordCommand } from '@/command-menu-item/record/single-record/components/RemoveFromFavoritesSingleRecordCommand';
import { RestoreSingleRecordCommand } from '@/command-menu-item/record/single-record/components/RestoreSingleRecordCommand';
import { CancelDashboardSingleRecordCommand } from '@/command-menu-item/record/single-record/dashboard/components/CancelDashboardSingleRecordCommand';
import { DuplicateDashboardSingleRecordCommand } from '@/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand';
import { EditDashboardSingleRecordCommand } from '@/command-menu-item/record/single-record/dashboard/components/EditDashboardSingleRecordCommand';
import { SaveDashboardSingleRecordCommand } from '@/command-menu-item/record/single-record/dashboard/components/SaveDashboardSingleRecordCommand';
import { CancelRecordPageLayoutSingleRecordCommand } from '@/command-menu-item/record/single-record/record-page-layout/components/CancelRecordPageLayoutSingleRecordCommand';
import { EditRecordPageLayoutSingleRecordCommand } from '@/command-menu-item/record/single-record/record-page-layout/components/EditRecordPageLayoutSingleRecordCommand';
import { SaveRecordPageLayoutSingleRecordCommand } from '@/command-menu-item/record/single-record/record-page-layout/components/SaveRecordPageLayoutSingleRecordCommand';
import { SeeVersionWorkflowRunSingleRecordCommand } from '@/command-menu-item/record/single-record/workflow-runs/components/SeeVersionWorkflowRunSingleRecordCommand';
import { SeeWorkflowWorkflowRunSingleRecordCommand } from '@/command-menu-item/record/single-record/workflow-runs/components/SeeWorkflowWorkflowRunSingleRecordCommand';
import { StopWorkflowRunSingleRecordCommand } from '@/command-menu-item/record/single-record/workflow-runs/components/StopWorkflowRunSingleRecordCommand';
import { SeeRunsWorkflowVersionSingleRecordCommand } from '@/command-menu-item/record/single-record/workflow-versions/components/SeeRunsWorkflowVersionSingleRecordCommand';
import { SeeVersionsWorkflowVersionSingleRecordCommand } from '@/command-menu-item/record/single-record/workflow-versions/components/SeeVersionsWorkflowVersionSingleRecordCommand';
import { SeeWorkflowWorkflowVersionSingleRecordCommand } from '@/command-menu-item/record/single-record/workflow-versions/components/SeeWorkflowWorkflowVersionSingleRecordCommand';
import { UseAsDraftWorkflowVersionSingleRecordCommand } from '@/command-menu-item/record/single-record/workflow-versions/components/UseAsDraftWorkflowVersionSingleRecordCommand';
import { ActivateWorkflowSingleRecordCommand } from '@/command-menu-item/record/single-record/workflow/components/ActivateWorkflowSingleRecordCommand';
import { AddNodeWorkflowSingleRecordCommand } from '@/command-menu-item/record/single-record/workflow/components/AddNodeWorkflowSingleRecordCommand';
import { DeactivateWorkflowSingleRecordCommand } from '@/command-menu-item/record/single-record/workflow/components/DeactivateWorkflowSingleRecordCommand';
import { DiscardDraftWorkflowSingleRecordCommand } from '@/command-menu-item/record/single-record/workflow/components/DiscardDraftWorkflowSingleRecordCommand';
import { DuplicateWorkflowSingleRecordCommand } from '@/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand';
import { SeeActiveVersionWorkflowSingleRecordCommand } from '@/command-menu-item/record/single-record/workflow/components/SeeActiveVersionWorkflowSingleRecordCommand';
import { SeeRunsWorkflowSingleRecordCommand } from '@/command-menu-item/record/single-record/workflow/components/SeeRunsWorkflowSingleRecordCommand';
import { SeeVersionsWorkflowSingleRecordCommand } from '@/command-menu-item/record/single-record/workflow/components/SeeVersionsWorkflowSingleRecordCommand';
import { TestWorkflowSingleRecordCommand } from '@/command-menu-item/record/single-record/workflow/components/TestWorkflowSingleRecordCommand';
import { TidyUpWorkflowSingleRecordCommand } from '@/command-menu-item/record/single-record/workflow/components/TidyUpWorkflowSingleRecordCommand';
import { CoreObjectNamePlural } from '@/object-metadata/types/CoreObjectNamePlural';
import { msg } from '@lingui/core/macro';
import { AppPath, SettingsPath, SidePanelPages } from 'twenty-shared/types';
import { IconHistory, IconSearch, IconSparkles } from 'twenty-ui/display';
import { EngineComponentKey } from '~/generated-metadata/graphql';
export const ENGINE_COMPONENT_KEY_COMPONENT_MAP: Record<
EngineComponentKey,
React.ReactNode
> = {
[EngineComponentKey.CREATE_NEW_RECORD]: (
<CreateNewIndexRecordNoSelectionRecordCommand />
),
[EngineComponentKey.DELETE_SINGLE_RECORD]: <DeleteSingleRecordCommand />,
[EngineComponentKey.DELETE_MULTIPLE_RECORDS]: (
<DeleteMultipleRecordsCommand />
),
[EngineComponentKey.RESTORE_SINGLE_RECORD]: <RestoreSingleRecordCommand />,
[EngineComponentKey.RESTORE_MULTIPLE_RECORDS]: (
<RestoreMultipleRecordsCommand />
),
[EngineComponentKey.DESTROY_SINGLE_RECORD]: <DestroySingleRecordCommand />,
[EngineComponentKey.DESTROY_MULTIPLE_RECORDS]: (
<DestroyMultipleRecordsCommand />
),
[EngineComponentKey.ADD_TO_FAVORITES]: <AddToFavoritesSingleRecordCommand />,
[EngineComponentKey.REMOVE_FROM_FAVORITES]: (
<RemoveFromFavoritesSingleRecordCommand />
),
[EngineComponentKey.MERGE_MULTIPLE_RECORDS]: <MergeMultipleRecordsCommand />,
[EngineComponentKey.DUPLICATE_DASHBOARD]: (
<DuplicateDashboardSingleRecordCommand />
),
[EngineComponentKey.DUPLICATE_WORKFLOW]: (
<DuplicateWorkflowSingleRecordCommand />
),
[EngineComponentKey.ACTIVATE_WORKFLOW]: (
<ActivateWorkflowSingleRecordCommand />
),
[EngineComponentKey.DEACTIVATE_WORKFLOW]: (
<DeactivateWorkflowSingleRecordCommand />
),
[EngineComponentKey.DISCARD_DRAFT_WORKFLOW]: (
<DiscardDraftWorkflowSingleRecordCommand />
),
[EngineComponentKey.TEST_WORKFLOW]: <TestWorkflowSingleRecordCommand />,
[EngineComponentKey.STOP_WORKFLOW_RUN]: (
<StopWorkflowRunSingleRecordCommand />
),
[EngineComponentKey.USE_AS_DRAFT_WORKFLOW_VERSION]: (
<UseAsDraftWorkflowVersionSingleRecordCommand />
),
[EngineComponentKey.SAVE_RECORD_PAGE_LAYOUT]: (
<SaveRecordPageLayoutSingleRecordCommand />
),
[EngineComponentKey.SAVE_DASHBOARD_LAYOUT]: (
<SaveDashboardSingleRecordCommand />
),
[EngineComponentKey.TIDY_UP_WORKFLOW]: <TidyUpWorkflowSingleRecordCommand />,
[EngineComponentKey.NAVIGATE_TO_NEXT_RECORD]: (
<NavigateToNextRecordSingleRecordCommand />
),
[EngineComponentKey.NAVIGATE_TO_PREVIOUS_RECORD]: (
<NavigateToPreviousRecordSingleRecordCommand />
),
[EngineComponentKey.EXPORT_NOTE_TO_PDF]: <ExportNoteSingleRecordCommand />,
[EngineComponentKey.EXPORT_FROM_RECORD_INDEX]: (
<ExportMultipleRecordsCommand />
),
[EngineComponentKey.EXPORT_FROM_RECORD_SHOW]: <ExportSingleRecordCommand />,
[EngineComponentKey.EXPORT_MULTIPLE_RECORDS]: (
<ExportMultipleRecordsCommand />
),
[EngineComponentKey.UPDATE_MULTIPLE_RECORDS]: (
<UpdateMultipleRecordsCommand />
),
[EngineComponentKey.IMPORT_RECORDS]: (
<ImportRecordsNoSelectionRecordCommand />
),
[EngineComponentKey.EXPORT_VIEW]: <ExportMultipleRecordsCommand />,
[EngineComponentKey.SEE_DELETED_RECORDS]: (
<SeeDeletedRecordsNoSelectionRecordCommand />
),
[EngineComponentKey.CREATE_NEW_VIEW]: (
<CreateNewViewNoSelectionRecordCommand />
),
[EngineComponentKey.HIDE_DELETED_RECORDS]: (
<HideDeletedRecordsNoSelectionRecordCommand />
),
[EngineComponentKey.EDIT_RECORD_PAGE_LAYOUT]: (
<EditRecordPageLayoutSingleRecordCommand />
),
[EngineComponentKey.CANCEL_RECORD_PAGE_LAYOUT]: (
<CancelRecordPageLayoutSingleRecordCommand />
),
[EngineComponentKey.EDIT_DASHBOARD_LAYOUT]: (
<EditDashboardSingleRecordCommand />
),
[EngineComponentKey.CANCEL_DASHBOARD_LAYOUT]: (
<CancelDashboardSingleRecordCommand />
),
[EngineComponentKey.GO_TO_PEOPLE]: (
<CommandLink
to={AppPath.RecordIndexPage}
params={{ objectNamePlural: CoreObjectNamePlural.Person }}
/>
),
[EngineComponentKey.GO_TO_COMPANIES]: (
<CommandLink
to={AppPath.RecordIndexPage}
params={{ objectNamePlural: CoreObjectNamePlural.Company }}
/>
),
[EngineComponentKey.GO_TO_DASHBOARDS]: (
<CommandLink
to={AppPath.RecordIndexPage}
params={{ objectNamePlural: CoreObjectNamePlural.Dashboard }}
/>
),
[EngineComponentKey.GO_TO_OPPORTUNITIES]: (
<CommandLink
to={AppPath.RecordIndexPage}
params={{
objectNamePlural: CoreObjectNamePlural.Opportunity,
}}
/>
),
[EngineComponentKey.GO_TO_SETTINGS]: (
<CommandLink
to={AppPath.SettingsCatchAll}
params={{
'*': SettingsPath.ProfilePage,
}}
/>
),
[EngineComponentKey.GO_TO_TASKS]: (
<CommandLink
to={AppPath.RecordIndexPage}
params={{ objectNamePlural: CoreObjectNamePlural.Task }}
/>
),
[EngineComponentKey.GO_TO_NOTES]: (
<CommandLink
to={AppPath.RecordIndexPage}
params={{ objectNamePlural: CoreObjectNamePlural.Note }}
/>
),
[EngineComponentKey.GO_TO_WORKFLOWS]: (
<CommandLink
to={AppPath.RecordIndexPage}
params={{ objectNamePlural: CoreObjectNamePlural.Workflow }}
/>
),
[EngineComponentKey.GO_TO_RUNS]: (
<CommandLink
to={AppPath.RecordIndexPage}
params={{ objectNamePlural: CoreObjectNamePlural.WorkflowRun }}
/>
),
[EngineComponentKey.SEARCH_RECORDS]: (
<CommandMenuItemOpenSidePanelPage
page={SidePanelPages.SearchRecords}
pageTitle={msg`Search`}
pageIcon={IconSearch}
shouldResetSearchState={true}
/>
),
[EngineComponentKey.SEARCH_RECORDS_FALLBACK]: (
<CommandMenuItemOpenSidePanelPage
page={SidePanelPages.SearchRecords}
pageTitle={msg`Search`}
pageIcon={IconSearch}
/>
),
[EngineComponentKey.ASK_AI]: (
<CommandMenuItemOpenSidePanelPage
page={SidePanelPages.AskAI}
pageTitle={msg`Ask AI`}
pageIcon={IconSparkles}
/>
),
[EngineComponentKey.VIEW_PREVIOUS_AI_CHATS]: (
<CommandMenuItemOpenSidePanelPage
page={SidePanelPages.ViewPreviousAIChats}
pageTitle={msg`View Previous AI Chats`}
pageIcon={IconHistory}
/>
),
[EngineComponentKey.SEE_ACTIVE_VERSION_WORKFLOW]: (
<SeeActiveVersionWorkflowSingleRecordCommand />
),
[EngineComponentKey.SEE_RUNS_WORKFLOW]: (
<SeeRunsWorkflowSingleRecordCommand />
),
[EngineComponentKey.SEE_VERSIONS_WORKFLOW]: (
<SeeVersionsWorkflowSingleRecordCommand />
),
[EngineComponentKey.ADD_NODE_WORKFLOW]: (
<AddNodeWorkflowSingleRecordCommand />
),
[EngineComponentKey.SEE_VERSION_WORKFLOW_RUN]: (
<SeeVersionWorkflowRunSingleRecordCommand />
),
[EngineComponentKey.SEE_WORKFLOW_WORKFLOW_RUN]: (
<SeeWorkflowWorkflowRunSingleRecordCommand />
),
[EngineComponentKey.SEE_RUNS_WORKFLOW_VERSION]: (
<SeeRunsWorkflowVersionSingleRecordCommand />
),
[EngineComponentKey.SEE_WORKFLOW_WORKFLOW_VERSION]: (
<SeeWorkflowWorkflowVersionSingleRecordCommand />
),
[EngineComponentKey.SEE_VERSIONS_WORKFLOW_VERSION]: (
<SeeVersionsWorkflowVersionSingleRecordCommand />
),
};
@@ -10,7 +10,6 @@ export const COMMAND_MENU_ITEM_FRAGMENT = gql`
name
isHeadless
}
engineComponentKey
label
icon
shortLabel
@@ -142,10 +142,8 @@ export const DEFAULT_RECORD_COMMAND_MENU_ITEMS_CONFIG: Record<
selectedRecord,
hasAnySoftDeleteFilterOnView,
objectPermissions,
objectMetadataItem,
}) =>
(!objectMetadataItem?.isSystem &&
isDefined(selectedRecord) &&
(isDefined(selectedRecord) &&
!selectedRecord.isRemote &&
!hasAnySoftDeleteFilterOnView &&
objectPermissions.canSoftDeleteObjectRecords &&
@@ -172,10 +170,8 @@ export const DEFAULT_RECORD_COMMAND_MENU_ITEMS_CONFIG: Record<
isRemote,
hasAnySoftDeleteFilterOnView,
numberOfSelectedRecords,
objectMetadataItem,
}) =>
(!objectMetadataItem?.isSystem &&
objectPermissions.canSoftDeleteObjectRecords &&
(objectPermissions.canSoftDeleteObjectRecords &&
!isRemote &&
!hasAnySoftDeleteFilterOnView &&
isDefined(numberOfSelectedRecords) &&
@@ -200,10 +196,8 @@ export const DEFAULT_RECORD_COMMAND_MENU_ITEMS_CONFIG: Record<
isRemote,
isShowPage,
hasAnySoftDeleteFilterOnView,
objectMetadataItem,
}) =>
(!objectMetadataItem?.isSystem &&
!isRemote &&
(!isRemote &&
isDefined(selectedRecord?.deletedAt) &&
objectPermissions.canSoftDeleteObjectRecords &&
((isDefined(isShowPage) && isShowPage) ||
@@ -231,10 +225,8 @@ export const DEFAULT_RECORD_COMMAND_MENU_ITEMS_CONFIG: Record<
isRemote,
hasAnySoftDeleteFilterOnView,
numberOfSelectedRecords,
objectMetadataItem,
}) =>
(!objectMetadataItem?.isSystem &&
objectPermissions.canSoftDeleteObjectRecords &&
(objectPermissions.canSoftDeleteObjectRecords &&
!isRemote &&
isDefined(hasAnySoftDeleteFilterOnView) &&
hasAnySoftDeleteFilterOnView &&
@@ -254,14 +246,8 @@ export const DEFAULT_RECORD_COMMAND_MENU_ITEMS_CONFIG: Record<
Icon: IconTrashX,
accent: 'danger',
isPinned: true,
shouldBeRegistered: ({
selectedRecord,
objectPermissions,
isRemote,
objectMetadataItem,
}) =>
(!objectMetadataItem?.isSystem &&
objectPermissions.canDestroyObjectRecords &&
shouldBeRegistered: ({ selectedRecord, objectPermissions, isRemote }) =>
(objectPermissions.canDestroyObjectRecords &&
!isRemote &&
isDefined(selectedRecord?.deletedAt)) ??
false,
@@ -286,10 +272,8 @@ export const DEFAULT_RECORD_COMMAND_MENU_ITEMS_CONFIG: Record<
isRemote,
hasAnySoftDeleteFilterOnView,
numberOfSelectedRecords,
objectMetadataItem,
}) =>
(!objectMetadataItem?.isSystem &&
objectPermissions.canDestroyObjectRecords &&
(objectPermissions.canDestroyObjectRecords &&
!isRemote &&
isDefined(hasAnySoftDeleteFilterOnView) &&
hasAnySoftDeleteFilterOnView &&
@@ -313,9 +297,7 @@ export const DEFAULT_RECORD_COMMAND_MENU_ITEMS_CONFIG: Record<
selectedRecord,
isFavorite,
hasAnySoftDeleteFilterOnView,
objectMetadataItem,
}) =>
!objectMetadataItem?.isSystem &&
!selectedRecord?.isRemote &&
!isFavorite &&
!isDefined(selectedRecord?.deletedAt) &&
@@ -339,9 +321,7 @@ export const DEFAULT_RECORD_COMMAND_MENU_ITEMS_CONFIG: Record<
selectedRecord,
isFavorite,
hasAnySoftDeleteFilterOnView,
objectMetadataItem,
}) =>
!objectMetadataItem?.isSystem &&
isDefined(selectedRecord) &&
!selectedRecord?.isRemote &&
isDefined(isFavorite) &&
@@ -412,10 +392,8 @@ export const DEFAULT_RECORD_COMMAND_MENU_ITEMS_CONFIG: Record<
Icon: IconEdit,
accent: 'default',
isPinned: true,
shouldBeRegistered: ({ objectPermissions, isRemote, objectMetadataItem }) =>
!objectMetadataItem?.isSystem &&
objectPermissions.canUpdateObjectRecords &&
!isRemote,
shouldBeRegistered: ({ objectPermissions, isRemote }) =>
objectPermissions.canUpdateObjectRecords && !isRemote,
availableOn: [CommandMenuItemViewType.INDEX_PAGE_BULK_SELECTION],
component: <UpdateMultipleRecordsCommand />,
},
@@ -1,4 +1,3 @@
import { ENGINE_COMPONENT_KEY_COMPONENT_MAP } from '@/command-menu-item/constants/EngineComponentKeyComponentMap';
import { Command } from '@/command-menu-item/display/components/Command';
import { HeadlessFrontComponentCommandMenuItem } from '@/command-menu-item/display/components/HeadlessFrontComponentCommandMenuItem';
import { CommandMenuItemScope } from '@/command-menu-item/types/CommandMenuItemScope';
@@ -23,7 +22,6 @@ import { COMMAND_MENU_DEFAULT_ICON } from '@/workflow/workflow-trigger/constants
import {
CommandMenuItemAvailabilityType,
type CommandMenuItemFieldsFragment,
type EngineComponentKey,
useFindManyCommandMenuItemsQuery,
} from '~/generated-metadata/graphql';
@@ -32,10 +30,6 @@ type CommandMenuItemWithFrontComponent = CommandMenuItemFieldsFragment & {
conditionalAvailabilityExpression?: string | null;
};
type CommandMenuItemWithSource = CommandMenuItemFieldsFragment & {
conditionalAvailabilityExpression?: string | null;
};
type BuildCommandMenuItemFromFrontComponentParams = {
item: CommandMenuItemWithFrontComponent;
type?: CommandMenuItemType;
@@ -59,6 +53,8 @@ type BuildCommandMenuItemFromFrontComponentParams = {
commandMenuContextApi: CommandMenuContextApi;
};
// TODO: we should remove this backward compatibility logic in the future
// once we have migrated all command menu items
const buildCommandMenuItemFromFrontComponent = ({
item,
type = CommandMenuItemType.FrontComponent,
@@ -119,47 +115,6 @@ const buildCommandMenuItemFromFrontComponent = ({
};
};
type BuildCommandMenuItemFromStandardKeyParams = {
item: CommandMenuItemWithSource;
engineComponentKey: EngineComponentKey;
type?: CommandMenuItemType;
scope: CommandMenuItemScope;
isPinned: boolean;
getIcon: ReturnType<typeof useIcons>['getIcon'];
commandMenuContextApi: CommandMenuContextApi;
};
const buildCommandItemFromEngineKey = ({
item,
engineComponentKey,
type = CommandMenuItemType.Standard,
scope,
isPinned,
getIcon,
commandMenuContextApi,
}: BuildCommandMenuItemFromStandardKeyParams) => {
const Icon = getIcon(item.icon, COMMAND_MENU_DEFAULT_ICON);
const component = ENGINE_COMPONENT_KEY_COMPONENT_MAP[engineComponentKey];
return {
type,
key: `command-menu-item-engine-${item.id}`,
scope,
label: item.label,
shortLabel: item.shortLabel ?? undefined,
position: item.position,
isPinned,
Icon,
shouldBeRegistered: () =>
evaluateConditionalAvailabilityExpression(
item.conditionalAvailabilityExpression,
commandMenuContextApi,
),
component,
};
};
export const useCommandMenuItemFrontComponentCommands = (
commandMenuContextApi: CommandMenuContextApi,
) => {
@@ -204,102 +159,74 @@ export const useCommandMenuItemFrontComponentCommands = (
const { data } = useFindManyCommandMenuItemsQuery();
const allItems = data?.commandMenuItems ?? [];
const frontComponentItems =
data?.commandMenuItems?.filter(
(item): item is CommandMenuItemWithFrontComponent =>
isDefined(item.frontComponentId),
) ?? [];
const objectMatches = (item: CommandMenuItemFieldsFragment) =>
const objectMatches = (item: CommandMenuItemWithFrontComponent) =>
!isDefined(item.availabilityObjectMetadataId) ||
item.availabilityObjectMetadataId ===
contextStoreCurrentObjectMetadataItemId;
const itemsWithObjectMatches = allItems.filter(objectMatches);
const frontComponentItemsWithObjectMatches =
frontComponentItems.filter(objectMatches);
const buildCommandMenuItem = ({
item,
scope,
isPinned,
typeOverride,
}: {
item: CommandMenuItemFieldsFragment;
scope: CommandMenuItemScope;
isPinned: boolean;
typeOverride?: CommandMenuItemType;
}) => {
if (isDefined(item.engineComponentKey)) {
return buildCommandItemFromEngineKey({
item,
engineComponentKey: item.engineComponentKey,
type: typeOverride,
scope,
isPinned,
getIcon,
commandMenuContextApi,
});
}
if (isDefined(item.frontComponentId)) {
return buildCommandMenuItemFromFrontComponent({
item: item as CommandMenuItemWithFrontComponent,
type: typeOverride,
scope,
isPinned,
getIcon,
openFrontComponentInSidePanel,
mountHeadlessFrontComponent,
commandMenuContextApi,
mountContext,
});
}
return null;
};
const globalItems = itemsWithObjectMatches.filter(
const globalItems = frontComponentItemsWithObjectMatches.filter(
(item) => item.availabilityType === CommandMenuItemAvailabilityType.GLOBAL,
);
const recordScopedItems = itemsWithObjectMatches.filter(
const recordScopedItems = frontComponentItemsWithObjectMatches.filter(
(item) =>
item.availabilityType ===
CommandMenuItemAvailabilityType.RECORD_SELECTION,
);
const fallbackItems = itemsWithObjectMatches.filter(
const fallbackItems = frontComponentItemsWithObjectMatches.filter(
(item) =>
item.availabilityType === CommandMenuItemAvailabilityType.FALLBACK,
);
const globalCommandMenuItems = globalItems
.map((item) =>
buildCommandMenuItem({
item,
scope: CommandMenuItemScope.Global,
isPinned: !contextStoreIsPageInEditMode && item.isPinned,
}),
)
.filter(isDefined);
const globalCommandMenuItems = globalItems.map((item) =>
buildCommandMenuItemFromFrontComponent({
item,
scope: CommandMenuItemScope.Global,
isPinned: !contextStoreIsPageInEditMode && item.isPinned,
getIcon,
openFrontComponentInSidePanel,
mountHeadlessFrontComponent,
commandMenuContextApi,
}),
);
const recordScopedCommandMenuItems = hasRecordSelection
? recordScopedItems
.map((item) =>
buildCommandMenuItem({
item,
scope: CommandMenuItemScope.RecordSelection,
isPinned: !contextStoreIsPageInEditMode && item.isPinned,
}),
)
.filter(isDefined)
? recordScopedItems.map((item) =>
buildCommandMenuItemFromFrontComponent({
item,
scope: CommandMenuItemScope.RecordSelection,
isPinned: !contextStoreIsPageInEditMode && item.isPinned,
getIcon,
openFrontComponentInSidePanel,
mountHeadlessFrontComponent,
commandMenuContextApi,
mountContext,
}),
)
: [];
const fallbackCommandMenuItems = fallbackItems
.map((item) =>
buildCommandMenuItem({
item,
scope: CommandMenuItemScope.Global,
isPinned: false,
typeOverride: CommandMenuItemType.Fallback,
}),
)
.filter(isDefined);
const fallbackCommandMenuItems = fallbackItems.map((item) =>
buildCommandMenuItemFromFrontComponent({
item,
type: CommandMenuItemType.Fallback,
scope: CommandMenuItemScope.Global,
isPinned: false,
getIcon,
openFrontComponentInSidePanel,
mountHeadlessFrontComponent,
commandMenuContextApi,
}),
);
return [
...globalCommandMenuItems,
@@ -1,30 +1,17 @@
import { returnToPathState } from '@/auth/states/returnToPathState';
import { useLastAuthenticatedWorkspaceDomain } from '@/domain-manager/hooks/useLastAuthenticatedWorkspaceDomain';
import { useReadDefaultDomainFromConfiguration } from '@/domain-manager/hooks/useReadDefaultDomainFromConfiguration';
import { useRedirect } from '@/domain-manager/hooks/useRedirect';
import { isNonEmptyString } from '@sniptt/guards';
import { useStore } from 'jotai';
export const useRedirectToDefaultDomain = () => {
const { defaultDomain } = useReadDefaultDomainFromConfiguration();
const { setLastAuthenticateWorkspaceDomain } =
useLastAuthenticatedWorkspaceDomain();
const store = useStore();
const { redirect } = useRedirect();
const redirectToDefaultDomain = () => {
const url = new URL(window.location.href);
if (url.hostname !== defaultDomain) {
setLastAuthenticateWorkspaceDomain(null);
const returnToPath = store.get(returnToPathState.atom);
if (
isNonEmptyString(returnToPath) &&
!url.searchParams.has('returnToPath')
) {
url.searchParams.set('returnToPath', returnToPath);
}
url.hostname = defaultDomain;
redirect(url.toString());
}
@@ -15,6 +15,7 @@ import { themeCssVariables } from 'twenty-ui/theme-constants';
const StyledText = styled.div`
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
`;
const StyledCloseButtonContainer = styled.div`
@@ -6,7 +6,6 @@ import { InformationBannerBillingSubscriptionPaused } from '@/information-banner
import { InformationBannerEndTrialPeriod } from '@/information-banner/components/billing/InformationBannerEndTrialPeriod';
import { InformationBannerFailPaymentInfo } from '@/information-banner/components/billing/InformationBannerFailPaymentInfo';
import { InformationBannerNoBillingSubscription } from '@/information-banner/components/billing/InformationBannerNoBillingSubscription';
import { InformationBannerLegacyEnterpriseKey } from '@/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey';
import { InformationBannerReconnectAccountEmailAliases } from '@/information-banner/components/reconnect-account/InformationBannerReconnectAccountEmailAliases';
import { InformationBannerReconnectAccountInsufficientPermissions } from '@/information-banner/components/reconnect-account/InformationBannerReconnectAccountInsufficientPermissions';
import { usePermissionFlagMap } from '@/settings/roles/hooks/usePermissionFlagMap';
@@ -53,7 +52,6 @@ export const InformationBannerWrapper = () => {
return (
<StyledInformationBannerWrapper>
<InformationBannerLegacyEnterpriseKey />
{isAccountSyncEnabled && (
<InformationBannerReconnectAccountInsufficientPermissions />
)}
@@ -1,45 +0,0 @@
import { currentWorkspaceState } from '@/auth/states/currentWorkspaceState';
import { InformationBanner } from '@/information-banner/components/InformationBanner';
import { informationBannerIsOpenComponentState } from '@/information-banner/states/informationBannerIsOpenComponentState';
import { useAtomStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomStateValue';
import { useSetAtomComponentState } from '@/ui/utilities/state/jotai/hooks/useSetAtomComponentState';
import { useLingui } from '@lingui/react/macro';
import { useNavigate } from 'react-router-dom';
import { SettingsPath } from 'twenty-shared/types';
import { getSettingsPath } from 'twenty-shared/utils';
import { IconKey } from 'twenty-ui/display';
const COMPONENT_INSTANCE_ID = 'information-banner-legacy-enterprise-key';
export const InformationBannerLegacyEnterpriseKey = () => {
const { t } = useLingui();
const navigate = useNavigate();
const currentWorkspace = useAtomStateValue(currentWorkspaceState);
const setInformationBannerIsOpen = useSetAtomComponentState(
informationBannerIsOpenComponentState,
COMPONENT_INSTANCE_ID,
);
const hasLegacyKey =
currentWorkspace?.hasValidEnterpriseKey === true &&
currentWorkspace?.hasValidSignedEnterpriseKey !== true;
if (!hasLegacyKey) {
return null;
}
return (
<InformationBanner
componentInstanceId={COMPONENT_INSTANCE_ID}
variant="default"
message={t`Your enterprise key format is deprecated. Please activate a new key to keep enterprise features.`}
buttonTitle={t`Activate`}
buttonIcon={IconKey}
buttonOnClick={() =>
navigate(getSettingsPath(SettingsPath.AdminPanelEnterprise))
}
onClose={() => setInformationBannerIsOpen(false)}
/>
);
};
@@ -181,8 +181,6 @@ export const responseData = {
activationStatus: 'active',
isPublicInviteLinkEnabled: false,
hasValidEnterpriseKey: false,
hasValidSignedEnterpriseKey: false,
hasValidEnterpriseValidityToken: false,
isGoogleAuthEnabled: true,
isMicrosoftAuthEnabled: false,
isPasswordAuthEnabled: true,
@@ -33,8 +33,6 @@ describe('useColumnDefinitionsFromObjectMetadata', () => {
subdomain: 'test',
activationStatus: WorkspaceActivationStatus.ACTIVE,
hasValidEnterpriseKey: false,
hasValidSignedEnterpriseKey: false,
hasValidEnterpriseValidityToken: false,
metadataVersion: 1,
isPublicInviteLinkEnabled: false,
isGoogleAuthEnabled: true,
@@ -15,9 +15,8 @@ import { useAtomComponentStateValue } from '@/ui/utilities/state/jotai/hooks/use
import { useLingui } from '@lingui/react/macro';
import { isNonEmptyString } from '@sniptt/guards';
import { type ChangeEvent, useState } from 'react';
import { isDefined, parseJson } from 'twenty-shared/utils';
import { isDefined } from 'twenty-shared/utils';
import { MenuItem, MenuItemMultiSelectAvatar } from 'twenty-ui/navigation';
import { z } from 'zod';
export const EMPTY_FILTER_VALUE = '[]';
export const MAX_ITEMS_TO_DISPLAY = 5;
@@ -45,10 +44,7 @@ export const ObjectFilterDropdownCountrySelect = () => {
const selectedCountryNames = isNonEmptyString(
objectFilterDropdownCurrentRecordFilter?.value,
)
? (z
.array(z.string())
.safeParse(parseJson(objectFilterDropdownCurrentRecordFilter.value))
.data ?? [])
? (JSON.parse(objectFilterDropdownCurrentRecordFilter.value) as string[]) // TODO: replace by a safe parse
: [];
const filteredSelectableItems = countriesAsSelectableItems.filter(
@@ -14,9 +14,8 @@ import { useAtomComponentStateValue } from '@/ui/utilities/state/jotai/hooks/use
import { useLingui } from '@lingui/react/macro';
import { isNonEmptyString } from '@sniptt/guards';
import { type ChangeEvent, useState } from 'react';
import { isDefined, parseJson } from 'twenty-shared/utils';
import { isDefined } from 'twenty-shared/utils';
import { MenuItem, MenuItemMultiSelectAvatar } from 'twenty-ui/navigation';
import { z } from 'zod';
export const EMPTY_FILTER_VALUE = '[]';
export const MAX_ITEMS_TO_DISPLAY = 3;
@@ -42,10 +41,7 @@ export const ObjectFilterDropdownCurrencySelect = () => {
const selectedCurrencies = isNonEmptyString(
objectFilterDropdownCurrentRecordFilter?.value,
)
? (z
.array(z.string())
.safeParse(parseJson(objectFilterDropdownCurrentRecordFilter.value))
.data ?? [])
? (JSON.parse(objectFilterDropdownCurrentRecordFilter.value) as string[]) // TODO: replace by a safe parse
: [];
const filteredSelectableItems = currenciesAsSelectableItems.filter(
@@ -22,9 +22,8 @@ import { useAtomComponentStateValue } from '@/ui/utilities/state/jotai/hooks/use
import { t } from '@lingui/core/macro';
import { isNonEmptyString } from '@sniptt/guards';
import { MAX_OPTIONS_TO_DISPLAY } from 'twenty-shared/constants';
import { isDefined, parseJson } from 'twenty-shared/utils';
import { isDefined } from 'twenty-shared/utils';
import { MenuItem, MenuItemMultiSelect } from 'twenty-ui/navigation';
import { z } from 'zod';
export const EMPTY_FILTER_VALUE = '';
@@ -59,10 +58,9 @@ export const ObjectFilterDropdownOptionSelect = ({
const selectedOptions = useMemo(
() =>
isNonEmptyString(objectFilterDropdownCurrentRecordFilter?.value)
? (z
.array(z.string())
.safeParse(parseJson(objectFilterDropdownCurrentRecordFilter.value))
.data ?? [])
? (JSON.parse(
objectFilterDropdownCurrentRecordFilter.value,
) as string[]) // TODO: replace by a safe parse
: [],
[objectFilterDropdownCurrentRecordFilter?.value],
);
@@ -11,8 +11,7 @@ import { useAtomComponentSelectorValue } from '@/ui/utilities/state/jotai/hooks/
import { useAtomComponentStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomComponentStateValue';
import { t } from '@lingui/core/macro';
import { isNonEmptyString } from '@sniptt/guards';
import { isDefined, parseJson } from 'twenty-shared/utils';
import { z } from 'zod';
import { isDefined } from 'twenty-shared/utils';
export const EMPTY_FILTER_VALUE = '[]';
export const MAX_ITEMS_TO_DISPLAY = 3;
@@ -40,10 +39,7 @@ export const ObjectFilterDropdownSourceSelect = ({
const selectedSources = isNonEmptyString(
objectFilterDropdownCurrentRecordFilter?.value,
)
? (z
.array(z.string())
.safeParse(parseJson(objectFilterDropdownCurrentRecordFilter.value))
.data ?? [])
? (JSON.parse(objectFilterDropdownCurrentRecordFilter.value) as string[]) // TODO: replace by a safe parse
: [];
const sourceTypes = getActorSourceMultiSelectOptions(selectedSources);
@@ -55,8 +55,8 @@ export const SingleRecordPickerMenuItems = ({
const isSelectedItemId = useAtomComponentFamilyStateValue(
isSelectedItemIdComponentFamilyState,
'select-none',
selectableListComponentInstanceId,
'select-none',
);
useHotkeysOnFocusedElement({
@@ -69,10 +69,9 @@ export const SingleRecordPickerMenuItems = ({
dependencies: [onCancel, resetSelectedItem],
});
const selectableItemIds = [
...(emptyLabel ? ['select-none'] : []),
...pickableMorphItems.map((morphItem) => morphItem.recordId),
];
const selectableItemIds = pickableMorphItems.map(
(morphItem) => morphItem.recordId,
);
const [singleRecordPickerSelectedId, setSingleRecordPickerSelectedId] =
useAtomComponentState(singleRecordPickerSelectedIdComponentState);
@@ -15,7 +15,7 @@ import { useAtomComponentStateCallbackState } from '@/ui/utilities/state/jotai/h
import { useAtomComponentStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomComponentStateValue';
import { useStore } from 'jotai';
import { useCallback, useMemo } from 'react';
import { useMemo } from 'react';
import { computeRecordGqlOperationFilter } from 'twenty-shared/utils';
export const RecordTableEmptyHasNewRecordEffect = () => {
@@ -79,28 +79,20 @@ export const RecordTableEmptyHasNewRecordEffect = () => {
operationSignature,
});
const handleObjectRecordOperation = useCallback(
(
objectRecordOperationEventDetail: ObjectRecordOperationBrowserEventDetail,
) => {
const objectRecordOperation = objectRecordOperationEventDetail.operation;
const handleObjectRecordOperation = (
objectRecordOperationEventDetail: ObjectRecordOperationBrowserEventDetail,
) => {
const objectRecordOperation = objectRecordOperationEventDetail.operation;
if (
objectRecordOperation.type.includes('update') ||
objectRecordOperation.type.includes('create')
) {
if (!isRecordTableInitialLoading && !recordTableHasRecords) {
store.set(recordTableWentFromEmptyToNotEmptyCallbackState, true);
}
if (
objectRecordOperation.type.includes('update') ||
objectRecordOperation.type.includes('create')
) {
if (!isRecordTableInitialLoading && !recordTableHasRecords) {
store.set(recordTableWentFromEmptyToNotEmptyCallbackState, true);
}
},
[
recordTableHasRecords,
isRecordTableInitialLoading,
store,
recordTableWentFromEmptyToNotEmptyCallbackState,
],
);
}
};
useListenToObjectRecordOperationBrowserEvent({
onObjectRecordOperationBrowserEvent: handleObjectRecordOperation,
@@ -1,5 +1,3 @@
import { metadataStoreState } from '@/metadata-store/states/metadataStoreState';
import { type ObjectMetadataItem } from '@/object-metadata/types/ObjectMetadataItem';
import { PageLayoutLeftPanel } from '@/page-layout/components/PageLayoutLeftPanel';
import { PageLayoutTabList } from '@/page-layout/components/PageLayoutTabList';
import { PageLayoutTabListEffect } from '@/page-layout/components/PageLayoutTabListEffect';
@@ -21,7 +19,6 @@ import { useLayoutRenderingContext } from '@/ui/layout/contexts/LayoutRenderingC
import { activeTabIdComponentState } from '@/ui/layout/tab-list/states/activeTabIdComponentState';
import { ScrollWrapper } from '@/ui/utilities/scroll/components/ScrollWrapper';
import { useAtomComponentStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomComponentStateValue';
import { useAtomFamilyStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomFamilyStateValue';
import { useSetAtomComponentState } from '@/ui/utilities/state/jotai/hooks/useSetAtomComponentState';
import { styled } from '@linaria/react';
import { t } from '@lingui/core/macro';
@@ -75,17 +72,6 @@ export const PageLayoutRendererContent = () => {
const isMobile = useIsMobile();
const metadataStore = useAtomFamilyStateValue(
metadataStoreState,
'objectMetadataItems',
);
const isSystemObject =
(metadataStore.current as ObjectMetadataItem[]).find(
(item) =>
item.nameSingular === targetRecordIdentifier?.targetObjectNameSingular,
)?.isSystem ?? false;
if (!isDefined(currentPageLayout)) {
return null;
}
@@ -114,14 +100,8 @@ export const PageLayoutRendererContent = () => {
isEditMode: isPageLayoutInEditMode,
});
const tabsForCurrentObject = isSystemObject
? tabsWithVisibleWidgets.filter(
(tab) => tab.title === 'Home' || tab.title === 'Timeline',
)
: tabsWithVisibleWidgets;
const { tabsToRenderInTabList, pinnedLeftTab } = getTabsByDisplayMode({
tabs: tabsForCurrentObject,
tabs: tabsWithVisibleWidgets,
pageLayoutType: currentPageLayout.type,
isMobile,
isInSidePanel,
@@ -25,8 +25,6 @@ import { useOpenDropdown } from '@/ui/layout/dropdown/hooks/useOpenDropdown';
import { useAtomComponentStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomComponentStateValue';
import { useLingui } from '@lingui/react/macro';
import { useState } from 'react';
import { IconNewSection } from 'twenty-ui/display';
import { MenuItem } from 'twenty-ui/navigation';
const StyledGroupsDroppable = styled.div`
display: flex;
@@ -34,10 +32,6 @@ const StyledGroupsDroppable = styled.div`
width: 100%;
`;
const StyledAddGroupButtonContainer = styled.div`
border: 1px solid transparent;
`;
type FieldsConfigurationEditorProps = {
pageLayoutId: string;
widgetId: string;
@@ -256,16 +250,6 @@ export const FieldsConfigurationEditor = ({
</Draggable>
))}
{provided.placeholder}
<StyledAddGroupButtonContainer>
<MenuItem
LeftIcon={IconNewSection}
text={t`Add a Group`}
onClick={() => handleAddGroup({})}
withIconContainer
withIconContainerBackground={false}
/>
</StyledAddGroupButtonContainer>
</StyledGroupsDroppable>
)}
</Droppable>

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