Compare commits
27
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d87260536d | ||
|
|
2e00457432 | ||
|
|
d126d54bbc | ||
|
|
5041b3e14b | ||
|
|
1e2b31b040 | ||
|
|
340a01567a | ||
|
|
4985270e69 | ||
|
|
b87762b1c2 | ||
|
|
578d990b9c | ||
|
|
dfe9cb4346 | ||
|
|
91374262f2 | ||
|
|
7335d352a9 | ||
|
|
bfdbc93b1c | ||
|
|
3abef48663 | ||
|
|
441a9464d1 | ||
|
|
72dd3af155 | ||
|
|
6c1db2e7fb | ||
|
|
511d1bd7ab | ||
|
|
d47ddad4c5 | ||
|
|
33a474c8e6 | ||
|
|
cc247c2e8e | ||
|
|
4d6c8db205 | ||
|
|
a8dad6c882 | ||
|
|
895bb58fc6 | ||
|
|
4fbe0a92ae | ||
|
|
5f0d6553f6 | ||
|
|
13ea3ec75c |
@@ -1746,6 +1746,7 @@ enum FeatureFlagKey {
|
||||
IS_RECORD_PAGE_LAYOUT_GLOBAL_EDITION_ENABLED
|
||||
IS_CONNECTED_ACCOUNT_MIGRATED
|
||||
IS_GRAPHQL_QUERY_TIMING_ENABLED
|
||||
IS_RECORD_TABLE_WIDGET_ENABLED
|
||||
}
|
||||
|
||||
type ClientConfig {
|
||||
@@ -4089,6 +4090,7 @@ input UpdateObjectPayload {
|
||||
labelIdentifierFieldMetadataId: UUID
|
||||
imageIdentifierFieldMetadataId: UUID
|
||||
isLabelSyncedWithName: Boolean
|
||||
isSearchable: Boolean
|
||||
}
|
||||
|
||||
input UpdateViewFieldInput {
|
||||
|
||||
@@ -1427,7 +1427,7 @@ export interface PublicFeatureFlag {
|
||||
__typename: 'PublicFeatureFlag'
|
||||
}
|
||||
|
||||
export type FeatureFlagKey = 'IS_UNIQUE_INDEXES_ENABLED' | 'IS_JSON_FILTER_ENABLED' | 'IS_AI_ENABLED' | 'IS_APPLICATION_ENABLED' | 'IS_MARKETPLACE_ENABLED' | 'IS_RECORD_PAGE_LAYOUT_EDITING_ENABLED' | 'IS_PUBLIC_DOMAIN_ENABLED' | 'IS_EMAILING_DOMAIN_ENABLED' | 'IS_DASHBOARD_V2_ENABLED' | 'IS_ATTACHMENT_MIGRATED' | 'IS_NOTE_TARGET_MIGRATED' | 'IS_TASK_TARGET_MIGRATED' | 'IS_ROW_LEVEL_PERMISSION_PREDICATES_ENABLED' | 'IS_JUNCTION_RELATIONS_ENABLED' | 'IS_COMMAND_MENU_ITEM_ENABLED' | 'IS_NAVIGATION_MENU_ITEM_ENABLED' | 'IS_DATE_TIME_WHOLE_DAY_FILTER_ENABLED' | 'IS_NAVIGATION_MENU_ITEM_EDITING_ENABLED' | 'IS_DRAFT_EMAIL_ENABLED' | 'IS_USAGE_ANALYTICS_ENABLED' | 'IS_RICH_TEXT_V1_MIGRATED' | 'IS_DIRECT_GRAPHQL_EXECUTION_ENABLED' | 'IS_RECORD_PAGE_LAYOUT_GLOBAL_EDITION_ENABLED' | 'IS_CONNECTED_ACCOUNT_MIGRATED' | 'IS_GRAPHQL_QUERY_TIMING_ENABLED'
|
||||
export type FeatureFlagKey = 'IS_UNIQUE_INDEXES_ENABLED' | 'IS_JSON_FILTER_ENABLED' | 'IS_AI_ENABLED' | 'IS_APPLICATION_ENABLED' | 'IS_MARKETPLACE_ENABLED' | 'IS_RECORD_PAGE_LAYOUT_EDITING_ENABLED' | 'IS_PUBLIC_DOMAIN_ENABLED' | 'IS_EMAILING_DOMAIN_ENABLED' | 'IS_DASHBOARD_V2_ENABLED' | 'IS_ATTACHMENT_MIGRATED' | 'IS_NOTE_TARGET_MIGRATED' | 'IS_TASK_TARGET_MIGRATED' | 'IS_ROW_LEVEL_PERMISSION_PREDICATES_ENABLED' | 'IS_JUNCTION_RELATIONS_ENABLED' | 'IS_COMMAND_MENU_ITEM_ENABLED' | 'IS_NAVIGATION_MENU_ITEM_ENABLED' | 'IS_DATE_TIME_WHOLE_DAY_FILTER_ENABLED' | 'IS_NAVIGATION_MENU_ITEM_EDITING_ENABLED' | 'IS_DRAFT_EMAIL_ENABLED' | 'IS_USAGE_ANALYTICS_ENABLED' | 'IS_RICH_TEXT_V1_MIGRATED' | 'IS_DIRECT_GRAPHQL_EXECUTION_ENABLED' | 'IS_RECORD_PAGE_LAYOUT_GLOBAL_EDITION_ENABLED' | 'IS_CONNECTED_ACCOUNT_MIGRATED' | 'IS_GRAPHQL_QUERY_TIMING_ENABLED' | 'IS_RECORD_TABLE_WIDGET_ENABLED'
|
||||
|
||||
export interface ClientConfig {
|
||||
appVersion?: Scalars['String']
|
||||
@@ -6475,7 +6475,7 @@ export interface UpdateOneObjectInput {update: UpdateObjectPayload,
|
||||
/** The id of the object to update */
|
||||
id: Scalars['UUID']}
|
||||
|
||||
export interface UpdateObjectPayload {labelSingular?: (Scalars['String'] | null),labelPlural?: (Scalars['String'] | null),nameSingular?: (Scalars['String'] | null),namePlural?: (Scalars['String'] | null),description?: (Scalars['String'] | null),icon?: (Scalars['String'] | null),shortcut?: (Scalars['String'] | null),color?: (Scalars['String'] | null),isActive?: (Scalars['Boolean'] | null),labelIdentifierFieldMetadataId?: (Scalars['UUID'] | null),imageIdentifierFieldMetadataId?: (Scalars['UUID'] | null),isLabelSyncedWithName?: (Scalars['Boolean'] | null)}
|
||||
export interface UpdateObjectPayload {labelSingular?: (Scalars['String'] | null),labelPlural?: (Scalars['String'] | null),nameSingular?: (Scalars['String'] | null),namePlural?: (Scalars['String'] | null),description?: (Scalars['String'] | null),icon?: (Scalars['String'] | null),shortcut?: (Scalars['String'] | null),color?: (Scalars['String'] | null),isActive?: (Scalars['Boolean'] | null),labelIdentifierFieldMetadataId?: (Scalars['UUID'] | null),imageIdentifierFieldMetadataId?: (Scalars['UUID'] | null),isLabelSyncedWithName?: (Scalars['Boolean'] | null),isSearchable?: (Scalars['Boolean'] | null)}
|
||||
|
||||
export interface UpdateViewFieldInput {
|
||||
/** The id of the view field to update */
|
||||
@@ -9154,7 +9154,8 @@ export const enumFeatureFlagKey = {
|
||||
IS_DIRECT_GRAPHQL_EXECUTION_ENABLED: 'IS_DIRECT_GRAPHQL_EXECUTION_ENABLED' as const,
|
||||
IS_RECORD_PAGE_LAYOUT_GLOBAL_EDITION_ENABLED: 'IS_RECORD_PAGE_LAYOUT_GLOBAL_EDITION_ENABLED' as const,
|
||||
IS_CONNECTED_ACCOUNT_MIGRATED: 'IS_CONNECTED_ACCOUNT_MIGRATED' as const,
|
||||
IS_GRAPHQL_QUERY_TIMING_ENABLED: 'IS_GRAPHQL_QUERY_TIMING_ENABLED' as const
|
||||
IS_GRAPHQL_QUERY_TIMING_ENABLED: 'IS_GRAPHQL_QUERY_TIMING_ENABLED' as const,
|
||||
IS_RECORD_TABLE_WIDGET_ENABLED: 'IS_RECORD_TABLE_WIDGET_ENABLED' as const
|
||||
}
|
||||
|
||||
export const enumConfigSource = {
|
||||
|
||||
@@ -10303,6 +10303,9 @@ export default {
|
||||
"isLabelSyncedWithName": [
|
||||
6
|
||||
],
|
||||
"isSearchable": [
|
||||
6
|
||||
],
|
||||
"__typename": [
|
||||
1
|
||||
]
|
||||
|
||||
@@ -16,3 +16,5 @@ STORAGE_TYPE=local
|
||||
# STORAGE_S3_REGION=eu-west3
|
||||
# STORAGE_S3_NAME=my-bucket
|
||||
# STORAGE_S3_ENDPOINT=
|
||||
# STORAGE_S3_ACCESS_KEY_ID=
|
||||
# STORAGE_S3_SECRET_ACCESS_KEY=
|
||||
|
||||
@@ -17,6 +17,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-client-sdk/package.json /app/packages/twenty-client-sdk/
|
||||
|
||||
RUN yarn && yarn cache clean && npx nx reset
|
||||
|
||||
@@ -27,6 +28,7 @@ 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-client-sdk /app/packages/twenty-client-sdk
|
||||
COPY ./packages/twenty-server /app/packages/twenty-server
|
||||
|
||||
RUN npx nx run twenty-server:lingui:extract && \
|
||||
@@ -47,7 +49,7 @@ RUN npx esbuild packages/twenty-server/scripts/setup-db.ts \
|
||||
RUN find /app/packages/twenty-server/dist -name '*.d.ts' -delete \
|
||||
&& rm -rf /app/packages/twenty-server/dist/packages/twenty-server/test
|
||||
|
||||
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-client-sdk twenty-server
|
||||
|
||||
|
||||
FROM common-deps AS twenty-front-build
|
||||
@@ -58,6 +60,7 @@ COPY ./packages/twenty-front /app/packages/twenty-front
|
||||
COPY ./packages/twenty-ui /app/packages/twenty-ui
|
||||
COPY ./packages/twenty-shared /app/packages/twenty-shared
|
||||
COPY ./packages/twenty-sdk /app/packages/twenty-sdk
|
||||
COPY ./packages/twenty-client-sdk /app/packages/twenty-client-sdk
|
||||
RUN npx nx run twenty-front:lingui:extract && \
|
||||
npx nx run twenty-front:lingui:compile
|
||||
# To skip the memory-intensive frontend build, pre-build on the host:
|
||||
@@ -106,6 +109,8 @@ COPY --chown=1000 --from=twenty-server-build /app/packages/twenty-shared/dist /a
|
||||
COPY --chown=1000 --from=twenty-server-build /app/packages/twenty-emails/package.json /app/packages/twenty-emails/
|
||||
COPY --chown=1000 --from=twenty-server-build /app/packages/twenty-emails/dist /app/packages/twenty-emails/dist
|
||||
COPY --chown=1000 --from=twenty-server-build /app/packages/twenty-sdk/package.json /app/packages/twenty-sdk/
|
||||
COPY --chown=1000 --from=twenty-server-build /app/packages/twenty-client-sdk/package.json /app/packages/twenty-client-sdk/
|
||||
COPY --chown=1000 --from=twenty-server-build /app/packages/twenty-client-sdk/dist /app/packages/twenty-client-sdk/dist
|
||||
COPY --chown=1000 --from=twenty-server-build /app/packages/twenty-ui/package.json /app/packages/twenty-ui/
|
||||
COPY --chown=1000 --from=twenty-server-build /app/packages/twenty-front/package.json /app/packages/twenty-front/
|
||||
|
||||
@@ -180,6 +185,8 @@ COPY --from=twenty-server-build /app/packages/twenty-shared/dist /app/packages/t
|
||||
COPY --from=twenty-server-build /app/packages/twenty-emails/package.json /app/packages/twenty-emails/
|
||||
COPY --from=twenty-server-build /app/packages/twenty-emails/dist /app/packages/twenty-emails/dist
|
||||
COPY --from=twenty-server-build /app/packages/twenty-sdk/package.json /app/packages/twenty-sdk/
|
||||
COPY --from=twenty-server-build /app/packages/twenty-client-sdk/package.json /app/packages/twenty-client-sdk/
|
||||
COPY --from=twenty-server-build /app/packages/twenty-client-sdk/dist /app/packages/twenty-client-sdk/dist
|
||||
COPY --from=twenty-server-build /app/packages/twenty-ui/package.json /app/packages/twenty-ui/
|
||||
COPY --from=twenty-server-build /app/packages/twenty-front/package.json /app/packages/twenty-front/
|
||||
|
||||
|
||||
@@ -289,6 +289,16 @@ yarn command:prod cron:workflow:automated-cron-trigger
|
||||
**Environment-only mode:** If you set `IS_CONFIG_VARIABLES_IN_DB_ENABLED=false`, add these variables to your `.env` file instead.
|
||||
</Warning>
|
||||
|
||||
## S3 Storage
|
||||
|
||||
<Warning>
|
||||
By default, Twenty stores uploaded files on the local filesystem. For production deployments, use S3 or an S3-compatible service (MinIO, DigitalOcean Spaces, etc.) to ensure files persist across container restarts and scale across multiple server instances.
|
||||
</Warning>
|
||||
|
||||
Set `STORAGE_TYPE=S_3` and configure the `STORAGE_S3_*` variables through the admin panel or `.env`. See the [config-variables.ts reference](https://github.com/twentyhq/twenty/blob/main/packages/twenty-server/src/engine/core-modules/twenty-config/config-variables.ts) for the full list of S3 variables.
|
||||
|
||||
When using S3 with CORS-dependent features (e.g. in-browser file downloads), make sure your bucket allows your Twenty frontend origin in its CORS configuration.
|
||||
|
||||
## Logic Functions & Code Interpreter
|
||||
|
||||
Twenty supports logic functions for workflows and the code interpreter for AI data analysis. Both run user-provided code and require explicit configuration for security.
|
||||
|
||||
@@ -297,6 +297,16 @@ yarn command:prod cron:workflow:automated-cron-trigger
|
||||
**وضع بيئي فقط:** إذا كنت قد ضبطت `IS_CONFIG_VARIABLES_IN_DB_ENABLED=false`، فأضف هذه المتغيرات إلى ملف `.env` الخاص بك بدلاً من ذلك.
|
||||
</Warning>
|
||||
|
||||
## تخزين S3
|
||||
|
||||
<Warning>
|
||||
افتراضياً، تقوم Twenty بتخزين الملفات المرفوعة على نظام الملفات المحلي. بالنسبة لعمليات النشر في بيئة الإنتاج، استخدم S3 أو خدمة متوافقة مع S3 (MinIO، DigitalOcean Spaces، إلخ) لضمان بقاء الملفات عبر إعادة تشغيل الحاويات وإتاحة التوسّع عبر مثيلات خوادم متعددة.
|
||||
</Warning>
|
||||
|
||||
عيّن `STORAGE_TYPE=S_3` وقم بتهيئة متغيرات `STORAGE_S3_*` من خلال لوحة الإدارة أو `.env`. راجع [مرجع config-variables.ts](https://github.com/twentyhq/twenty/blob/main/packages/twenty-server/src/engine/core-modules/twenty-config/config-variables.ts) للاطلاع على القائمة الكاملة لمتغيرات S3.
|
||||
|
||||
عند استخدام S3 مع الميزات المعتمدة على CORS (مثل تنزيل الملفات داخل المتصفح)، تأكد من أن حاويتك تسمح بأصل واجهة Twenty الأمامية ضمن تهيئة CORS الخاصة بها.
|
||||
|
||||
## الوظائف المنطقية ومفسر الشيفرة
|
||||
|
||||
تدعم Twenty الوظائف المنطقية لعمليات سير العمل ومفسر الشيفرة لتحليل بيانات الذكاء الاصطناعي. كلاهما يقوم بتشغيل الشيفرة المقدمة من المستخدم ويتطلب تهيئة صريحة لأغراض الأمان.
|
||||
|
||||
@@ -297,6 +297,16 @@ yarn command:prod cron:workflow:automated-cron-trigger
|
||||
**Režim pouze s prostředím:** Pokud nastavíte `IS_CONFIG_VARIABLES_IN_DB_ENABLED=false`, přidejte tyto proměnné do souboru `.env`
|
||||
</Warning>
|
||||
|
||||
## Úložiště S3
|
||||
|
||||
<Warning>
|
||||
Ve výchozím nastavení Twenty ukládá nahrané soubory do místního souborového systému. Pro produkční nasazení použijte S3 nebo službu kompatibilní se S3 (MinIO, DigitalOcean Spaces atd.). aby byly soubory zachovány při restartech kontejnerů a bylo možné škálovat napříč více instancemi serveru.
|
||||
</Warning>
|
||||
|
||||
Nastavte `STORAGE_TYPE=S_3` a nakonfigurujte proměnné `STORAGE_S3_*` prostřednictvím administračního panelu nebo `.env`. Viz [referenci config-variables.ts](https://github.com/twentyhq/twenty/blob/main/packages/twenty-server/src/engine/core-modules/twenty-config/config-variables.ts) pro úplný seznam proměnných S3.
|
||||
|
||||
Při používání S3 s funkcemi závislými na CORS (např. stahování souborů v prohlížeči) se ujistěte, že váš bucket povoluje origin vašeho frontendu Twenty ve své konfiguraci CORS.
|
||||
|
||||
## Logické funkce a interpret kódu
|
||||
|
||||
Twenty podporuje logické funkce pro pracovní postupy a interpret kódu pro analýzu dat s využitím AI. Obě spouštějí kód poskytnutý uživatelem a z důvodu zabezpečení vyžadují explicitní konfiguraci.
|
||||
|
||||
@@ -297,6 +297,16 @@ 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>
|
||||
|
||||
## S3-Speicher
|
||||
|
||||
<Warning>
|
||||
Standardmäßig speichert Twenty hochgeladene Dateien auf dem lokalen Dateisystem. Für Produktionsbereitstellungen verwenden Sie S3 oder einen S3-kompatiblen Dienst (MinIO, DigitalOcean Spaces usw.). um sicherzustellen, dass Dateien Container-Neustarts überdauern und über mehrere Serverinstanzen skaliert werden können.
|
||||
</Warning>
|
||||
|
||||
Setzen Sie `STORAGE_TYPE=S_3` und konfigurieren Sie die Variablen `STORAGE_S3_*` über das Admin-Panel oder `.env`. Siehe die [Referenz zu config-variables.ts](https://github.com/twentyhq/twenty/blob/main/packages/twenty-server/src/engine/core-modules/twenty-config/config-variables.ts) für die vollständige Liste der S3-Variablen.
|
||||
|
||||
Wenn Sie S3 mit CORS-abhängigen Funktionen verwenden (z. B. Dateidownloads im Browser), stellen Sie sicher, dass Ihr Bucket in seiner CORS-Konfiguration die Origin Ihres Twenty-Frontends zulässt.
|
||||
|
||||
## Logikfunktionen & Code-Interpreter
|
||||
|
||||
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.
|
||||
|
||||
@@ -296,6 +296,16 @@ 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>
|
||||
|
||||
## Archiviazione S3
|
||||
|
||||
<Warning>
|
||||
Per impostazione predefinita, Twenty archivia i file caricati nel file system locale. Per le distribuzioni in produzione, usa S3 o un servizio compatibile con S3 (MinIO, DigitalOcean Spaces, ecc.). per garantire che i file persistano tra i riavvii dei container e per poter scalare su più istanze server.
|
||||
</Warning>
|
||||
|
||||
Imposta `STORAGE_TYPE=S_3` e configura le variabili `STORAGE_S3_*` tramite il pannello di amministrazione o `.env`. Consulta il [riferimento a config-variables.ts](https://github.com/twentyhq/twenty/blob/main/packages/twenty-server/src/engine/core-modules/twenty-config/config-variables.ts) per l'elenco completo delle variabili S3.
|
||||
|
||||
Quando si usa S3 con funzionalità che dipendono da CORS (ad esempio i download di file nel browser), assicurati che il tuo bucket consenta l'origine del tuo frontend di Twenty nella sua configurazione CORS.
|
||||
|
||||
## Funzioni logiche & interprete del codice
|
||||
|
||||
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.
|
||||
|
||||
@@ -297,6 +297,16 @@ 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>
|
||||
|
||||
## Stocare S3
|
||||
|
||||
<Warning>
|
||||
În mod implicit, Twenty stochează fișierele încărcate în sistemul de fișiere local. Pentru implementări în producție, utilizați S3 sau un serviciu compatibil cu S3 (MinIO, DigitalOcean Spaces etc.). pentru a vă asigura că fișierele persistă între repornirile containerelor și se scalează pe mai multe instanțe de server.
|
||||
</Warning>
|
||||
|
||||
Setați `STORAGE_TYPE=S_3` și configurați variabilele `STORAGE_S3_*` prin panoul de administrare sau `.env`. Consultați [referința config-variables.ts](https://github.com/twentyhq/twenty/blob/main/packages/twenty-server/src/engine/core-modules/twenty-config/config-variables.ts) pentru lista completă a variabilelor S3.
|
||||
|
||||
Când utilizați S3 cu funcționalități dependente de CORS (de ex., descărcări de fișiere în browser), asigurați-vă că bucketul permite originea frontend-ului Twenty în configurația sa CORS.
|
||||
|
||||
## Funcții logice și interpretor de cod
|
||||
|
||||
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.
|
||||
|
||||
@@ -296,6 +296,16 @@ yarn command:prod cron:workflow:automated-cron-trigger
|
||||
**Режим только для среды:** если вы установили `IS_CONFIG_VARIABLES_IN_DB_ENABLED=false`, добавьте эти переменные в свой `.env` файл вместо этого.
|
||||
</Warning>
|
||||
|
||||
## S3 Storage
|
||||
|
||||
<Warning>
|
||||
By default, Twenty stores uploaded files on the local filesystem. Для продакшн-развертываний используйте S3 или совместимый с S3 сервис (MinIO, DigitalOcean Spaces и т. д.). чтобы файлы сохранялись при перезапусках контейнеров и были доступны на нескольких экземплярах сервера при масштабировании.
|
||||
</Warning>
|
||||
|
||||
Установите `STORAGE_TYPE=S_3` и настройте переменные `STORAGE_S3_*` через админ-панель или `.env`. См. [справочник config-variables.ts](https://github.com/twentyhq/twenty/blob/main/packages/twenty-server/src/engine/core-modules/twenty-config/config-variables.ts) для полного списка переменных S3.
|
||||
|
||||
При использовании S3 с функциями, зависящими от CORS (например, загрузки файлов в браузере), убедитесь, что в конфигурации CORS вашего бакета разрешен origin фронтенда Twenty.
|
||||
|
||||
## Логические функции и интерпретатор кода
|
||||
|
||||
Twenty поддерживает логические функции для рабочих процессов и интерпретатор кода для анализа данных ИИ. Оба запускают предоставленный пользователем код и требуют явной настройки в целях безопасности.
|
||||
|
||||
@@ -297,6 +297,16 @@ 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>
|
||||
|
||||
## S3 Depolama
|
||||
|
||||
<Warning>
|
||||
Varsayılan olarak, Twenty yüklenen dosyaları yerel dosya sisteminde depolar. Üretim dağıtımları için S3 veya S3 uyumlu bir hizmet (MinIO, DigitalOcean Spaces vb.) kullanın. dosyaların kapsayıcı yeniden başlatmaları arasında kalıcı olmasını ve birden çok sunucu örneği arasında ölçeklenmesini sağlamak için.
|
||||
</Warning>
|
||||
|
||||
`STORAGE_TYPE=S_3` değerini ayarlayın ve `STORAGE_S3_*` değişkenlerini yönetici paneli veya `.env` üzerinden yapılandırın. S3 değişkenlerinin tam listesi için [config-variables.ts referansına](https://github.com/twentyhq/twenty/blob/main/packages/twenty-server/src/engine/core-modules/twenty-config/config-variables.ts) bakın.
|
||||
|
||||
S3'ü CORS'a bağlı özelliklerle kullanırken (örn. tarayıcı içi dosya indirmeleri), bucket'ınızın CORS yapılandırmasında Twenty frontend origin'inize izin verdiğinden emin olun.
|
||||
|
||||
## Mantıksal İşlevler ve Kod Yorumlayıcısı
|
||||
|
||||
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.
|
||||
|
||||
@@ -297,6 +297,16 @@ yarn command:prod cron:workflow:automated-cron-trigger
|
||||
**仅限环境模式:** 如果你设置 `IS_CONFIG_VARIABLES_IN_DB_ENABLED=false`,请将这些变量添加到 `.env` 文件中。
|
||||
</Warning>
|
||||
|
||||
## S3 存储
|
||||
|
||||
<Warning>
|
||||
默认情况下,Twenty 将上传的文件存储在本地文件系统上。 对于生产环境部署,请使用 S3 或兼容 S3 的服务(MinIO、DigitalOcean Spaces 等)。 以确保文件在容器重启后仍然存在,并可在多个服务器实例间扩展。
|
||||
</Warning>
|
||||
|
||||
设置 `STORAGE_TYPE=S_3`,并通过管理面板或 `.env` 配置 `STORAGE_S3_*` 变量。 有关 S3 变量的完整列表,请参见[config-variables.ts 参考](https://github.com/twentyhq/twenty/blob/main/packages/twenty-server/src/engine/core-modules/twenty-config/config-variables.ts)。
|
||||
|
||||
在将 S3 与依赖 CORS 的功能(例如浏览器内文件下载)一起使用时,请确保你的存储桶在其 CORS 配置中允许你的 Twenty 前端来源。
|
||||
|
||||
## 逻辑函数与代码解释器
|
||||
|
||||
Twenty 支持用于工作流的逻辑函数,以及用于 AI 数据分析的代码解释器。 二者都会运行用户提供的代码,并要求进行显式配置以确保安全。
|
||||
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 91 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 93 KiB |
@@ -1720,6 +1720,7 @@ export enum FeatureFlagKey {
|
||||
IS_PUBLIC_DOMAIN_ENABLED = 'IS_PUBLIC_DOMAIN_ENABLED',
|
||||
IS_RECORD_PAGE_LAYOUT_EDITING_ENABLED = 'IS_RECORD_PAGE_LAYOUT_EDITING_ENABLED',
|
||||
IS_RECORD_PAGE_LAYOUT_GLOBAL_EDITION_ENABLED = 'IS_RECORD_PAGE_LAYOUT_GLOBAL_EDITION_ENABLED',
|
||||
IS_RECORD_TABLE_WIDGET_ENABLED = 'IS_RECORD_TABLE_WIDGET_ENABLED',
|
||||
IS_RICH_TEXT_V1_MIGRATED = 'IS_RICH_TEXT_V1_MIGRATED',
|
||||
IS_ROW_LEVEL_PERMISSION_PREDICATES_ENABLED = 'IS_ROW_LEVEL_PERMISSION_PREDICATES_ENABLED',
|
||||
IS_TASK_TARGET_MIGRATED = 'IS_TASK_TARGET_MIGRATED',
|
||||
@@ -5326,6 +5327,7 @@ export type UpdateObjectPayload = {
|
||||
imageIdentifierFieldMetadataId?: InputMaybe<Scalars['UUID']>;
|
||||
isActive?: InputMaybe<Scalars['Boolean']>;
|
||||
isLabelSyncedWithName?: InputMaybe<Scalars['Boolean']>;
|
||||
isSearchable?: InputMaybe<Scalars['Boolean']>;
|
||||
labelIdentifierFieldMetadataId?: InputMaybe<Scalars['UUID']>;
|
||||
labelPlural?: InputMaybe<Scalars['String']>;
|
||||
labelSingular?: InputMaybe<Scalars['String']>;
|
||||
|
||||
@@ -506,10 +506,10 @@ msgstr "1. Tipe"
|
||||
msgid "10,000 workflow node executions"
|
||||
msgstr "10 000 werkvloeiknoopuitvoerings"
|
||||
|
||||
#. js-lingui-id: bM5lnW
|
||||
#. js-lingui-id: rU05hS
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "12h - {hour12Label}"
|
||||
msgstr "12u - {hour12Label}"
|
||||
msgid "12h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 4EdXYs
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -542,10 +542,10 @@ msgstr "20 000 werkvloeiknoopuitvoerings"
|
||||
msgid "200 OK - {duration}ms"
|
||||
msgstr "200 OK - {duration}ms"
|
||||
|
||||
#. js-lingui-id: mwTnop
|
||||
#. js-lingui-id: W1k7eB
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "24h - {hour24Label}"
|
||||
msgstr "24u - {hour24Label}"
|
||||
msgid "24h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QsMprd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -1456,6 +1456,11 @@ msgstr "Alle lede"
|
||||
msgid "All Metadata"
|
||||
msgstr "Alle Metadata"
|
||||
|
||||
#. js-lingui-id: zIk4M6
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
msgid "All objects"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: aFE/OW
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsTableHeader.tsx
|
||||
@@ -1746,6 +1751,11 @@ msgstr "API-sleutel is na knipbord gekopieer"
|
||||
msgid "API key is required"
|
||||
msgstr "API-sleutel word vereis"
|
||||
|
||||
#. js-lingui-id: sb6i1L
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "API key name cannot be empty"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Widx6n
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
msgid "API key roles"
|
||||
@@ -1811,10 +1821,10 @@ msgstr "API's"
|
||||
msgid "APIs & Webhooks"
|
||||
msgstr "API's & Webhooks"
|
||||
|
||||
#. js-lingui-id: BnUHmx
|
||||
#. js-lingui-id: 0UMxlw
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Apostrophe and dot - {apostropheAndDotExample}"
|
||||
msgstr "Afkappingsteken en punt - {apostropheAndDotExample}"
|
||||
msgid "Apostrophe and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
@@ -2362,6 +2372,11 @@ msgstr "Omdat hierdie werkvloei nie 'n handmatige sneller gebruik nie, sal die v
|
||||
msgid "Before"
|
||||
msgstr "Voor"
|
||||
|
||||
#. js-lingui-id: KYr9vA
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Best"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NgFKo1
|
||||
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getMonthsDescription.ts
|
||||
msgid "between {startMonth} and {endMonth}"
|
||||
@@ -3109,10 +3124,10 @@ msgstr "opdragkieslysitem"
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr "Opdragte na knipbord gekopieer"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#. js-lingui-id: QeCopv
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Commas and dot - {commasAndDotExample}"
|
||||
msgstr "Kommas en punt - {commasAndDotExample}"
|
||||
msgid "Commas and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NBdIgR
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
@@ -3218,6 +3233,11 @@ msgstr "Konfigureer verstek-AI-modelle en beskikbaarheid"
|
||||
msgid "Configure fallback login methods for users with SSO bypass permissions"
|
||||
msgstr "Konfigureer terugval-aanmeldmetodes vir gebruikers met SSO omseil toestemmings"
|
||||
|
||||
#. js-lingui-id: OLqG0t
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
|
||||
msgid "Configure how this object appears in search results"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ghdb7+
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
|
||||
msgid "Configure how we should display your events in your calendar"
|
||||
@@ -4214,6 +4234,7 @@ msgstr "Data-ligging"
|
||||
#. js-lingui-id: r+cVRP
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/field-permissions/components/SettingsRolePermissionsObjectLevelObjectFieldPermissionTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Data type"
|
||||
msgstr "Data tipe"
|
||||
|
||||
@@ -4345,7 +4366,7 @@ msgstr "Deaktiveer Werksvloei"
|
||||
#. js-lingui-id: yAT3be
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
|
||||
@@ -4363,6 +4384,11 @@ msgstr "Ontfoutingsinligting"
|
||||
msgid "Decide which Sub-address fields you want to display"
|
||||
msgstr "Besluit watter Subadresvelde jy wil vertoon"
|
||||
|
||||
#. js-lingui-id: Bn9+El
|
||||
#: src/modules/ai/components/AIChatEditorSection.tsx
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ovBPCi
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
|
||||
@@ -4931,10 +4957,10 @@ msgstr "Moenie kontakte van/na Gmail, Outlook e-posse skep nie"
|
||||
msgid "Don't sync emails from team@ support@ noreply@..."
|
||||
msgstr "Moenie e-posse vanaf team@ support@ noreply@... sinkroniseer nie"
|
||||
|
||||
#. js-lingui-id: bd+DPX
|
||||
#. js-lingui-id: Wm78zZ
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Dots and comma - {dotsAndCommaExample}"
|
||||
msgstr "Punte en komma - {dotsAndCommaExample}"
|
||||
msgid "Dots and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LE8J+K
|
||||
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
|
||||
@@ -6355,7 +6381,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
|
||||
msgstr "Kon nie die ondernemingslisensie aktiveer nie. Gaan asseblief jou sleutel na of kontak ondersteuning."
|
||||
|
||||
#. js-lingui-id: vJiM7T
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to activate skill"
|
||||
msgstr "Kon nie vaardigheid aktiveer nie"
|
||||
|
||||
@@ -6380,7 +6406,7 @@ msgid "Failed to delete jobs. Please try again later."
|
||||
msgstr "Kon nie werke uitvee nie. Probeer asseblief later weer."
|
||||
|
||||
#. js-lingui-id: bmwWKk
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to delete skill"
|
||||
msgstr "Kon nie vaardigheid verwyder nie"
|
||||
|
||||
@@ -6753,9 +6779,6 @@ msgid "Files"
|
||||
msgstr "Lêers"
|
||||
|
||||
#. js-lingui-id: o7J4JM
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/find-records-action/components/WorkflowEditActionFindRecords.tsx
|
||||
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
|
||||
#: src/modules/views/components/ViewBarFilterButton.tsx
|
||||
@@ -6772,6 +6795,11 @@ msgstr "Filtreer"
|
||||
msgid "Filter by event"
|
||||
msgstr "Filter volgens gebeurtenis"
|
||||
|
||||
#. js-lingui-id: yZOiaW
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdown.tsx
|
||||
msgid "Filter by object type"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gVEHcL
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Filter by record ID"
|
||||
@@ -7512,6 +7540,11 @@ msgstr "Identiteitsverskaffer Metadata XML"
|
||||
msgid "if"
|
||||
msgstr "indien"
|
||||
|
||||
#. js-lingui-id: K6ChR5
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "If disabled, use advanced search filters to find these records"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ZfP/Ap
|
||||
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
|
||||
msgid "If this is unexpected, please verify your settings."
|
||||
@@ -7687,6 +7720,11 @@ msgstr "Onaktiewe vaardigheidsopsies"
|
||||
msgid "Inbox"
|
||||
msgstr "Inboks"
|
||||
|
||||
#. js-lingui-id: Wyip/m
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Include in default search"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mtGDyy
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Incomplete"
|
||||
@@ -9108,6 +9146,7 @@ msgstr "Modelle vir hierdie verskaffer. Skakel om te aktiveer of te deaktiveer."
|
||||
|
||||
#. js-lingui-id: hty0d5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Monday"
|
||||
msgstr "Maandag"
|
||||
|
||||
@@ -9298,6 +9337,7 @@ msgstr "mySkill"
|
||||
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
|
||||
#: src/modules/settings/developers/components/SettingsApiKeysTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
@@ -9539,7 +9579,7 @@ msgstr "Nuwe rekord"
|
||||
#. js-lingui-id: gWnSyg
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "New Skill"
|
||||
msgstr "Nuwe vaardigheid"
|
||||
|
||||
@@ -10263,6 +10303,7 @@ msgstr "objek"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Object"
|
||||
@@ -12124,6 +12165,7 @@ msgstr "Russies"
|
||||
|
||||
#. js-lingui-id: +5kO8P
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Saturday"
|
||||
msgstr "Saterdag"
|
||||
|
||||
@@ -12189,6 +12231,7 @@ msgstr "SDK"
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/side-panel/hooks/useOpenRecordsSearchPageInSidePanel.ts
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentWorkspaceMemberPickerDropdown.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
@@ -12248,7 +12291,7 @@ msgid "Search a role..."
|
||||
msgstr "Soek 'n rol..."
|
||||
|
||||
#. js-lingui-id: lJNEce
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Search a skill..."
|
||||
msgstr "Soek 'n vaardigheid..."
|
||||
|
||||
@@ -12273,6 +12316,11 @@ msgstr "Soek 'n tipe"
|
||||
msgid "Search a view..."
|
||||
msgstr "Soek 'n aansig..."
|
||||
|
||||
#. js-lingui-id: N7Z3jc
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Search across indexed fields..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +7s4fw
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentEntityPickerDropdown.tsx
|
||||
msgid "Search agents"
|
||||
@@ -13043,6 +13091,11 @@ msgstr "Wys groep {groupValue}"
|
||||
msgid "Show hidden groups"
|
||||
msgstr "Toon versteekte groepe"
|
||||
|
||||
#. js-lingui-id: eOY8jq
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
msgid "Show hidden objects"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qi+g0a
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Show only rows with errors"
|
||||
@@ -13122,12 +13175,12 @@ msgid "Skill"
|
||||
msgstr "Vaardigheid"
|
||||
|
||||
#. js-lingui-id: h4t38o
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill activated"
|
||||
msgstr "Vaardigheid geaktiveer"
|
||||
|
||||
#. js-lingui-id: /IoK74
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill deleted"
|
||||
msgstr "Vaardigheid verwyder"
|
||||
|
||||
@@ -13144,6 +13197,7 @@ msgstr "Vaardigheid nie gevind nie"
|
||||
|
||||
#. js-lingui-id: PCSkw2
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skills"
|
||||
msgstr "Vaardighede"
|
||||
|
||||
@@ -13289,10 +13343,10 @@ msgstr "Sorterings"
|
||||
msgid "Source"
|
||||
msgstr "Bron"
|
||||
|
||||
#. js-lingui-id: IEtmGM
|
||||
#. js-lingui-id: xqlr9R
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Spaces and comma - {spacesAndCommaExample}"
|
||||
msgstr "Spasies en komma - {spacesAndCommaExample}"
|
||||
msgid "Spaces and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 65A04M
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -13598,6 +13652,7 @@ msgstr "Som"
|
||||
|
||||
#. js-lingui-id: DBC3t5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Sunday"
|
||||
msgstr "Sondag"
|
||||
|
||||
@@ -13746,43 +13801,24 @@ msgstr "Stelselverhoudings"
|
||||
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
msgid "System settings"
|
||||
msgstr "Stelselinstellings"
|
||||
|
||||
#. js-lingui-id: E3AMmw
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
msgid "System settings - {systemDateFormatLabel}"
|
||||
msgstr "Stelselinstellings - {systemDateFormatLabel}"
|
||||
|
||||
#. js-lingui-id: uKM6SP
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "System Settings - {systemNumberFormatLabel}"
|
||||
msgstr "Stelselinstellings - {systemNumberFormatLabel}"
|
||||
|
||||
#. js-lingui-id: 0ZgB1e
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "System Settings - {systemTimeFormatLabel}"
|
||||
msgstr "Stelselinstellings - {systemTimeFormatLabel}"
|
||||
|
||||
#. js-lingui-id: e89dEj
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Monday"
|
||||
msgstr "Stelselinstellings - Maandag"
|
||||
|
||||
#. js-lingui-id: o+Kvng
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Saturday"
|
||||
msgstr "Stelselinstellings - Saterdag"
|
||||
|
||||
#. js-lingui-id: gluMQd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Sunday"
|
||||
msgstr "Stelselinstellings - Sondag"
|
||||
|
||||
#. js-lingui-id: HuA3RU
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Tab"
|
||||
@@ -14833,6 +14869,13 @@ msgstr "Ongepubliseer"
|
||||
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
|
||||
msgstr "Ontsluit ondernemingsfunksies soos SSO, sekuriteit op ryvlak en ouditlogboeke."
|
||||
|
||||
#. js-lingui-id: Te2H8x
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
#: src/modules/settings/developers/components/SettingsApiKeysFieldItemTableRow.tsx
|
||||
msgid "Unnamed API Key"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eQMhFX
|
||||
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
|
||||
msgid "unordered"
|
||||
@@ -15102,6 +15145,11 @@ msgstr "Gebruik magtiging apps en blaaieruitbreidings soos 1Password, Authy, Mic
|
||||
msgid "Use best models only"
|
||||
msgstr "Gebruik slegs die beste modelle"
|
||||
|
||||
#. js-lingui-id: cVOIgV
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Use filter to see existing tools or create your own"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: oTTQsc
|
||||
#: src/modules/settings/domains/utils/getSubdomainValidationSchema.ts
|
||||
msgid "Use letter, number and dash only. Start and finish with a letter or a number"
|
||||
@@ -15641,6 +15689,11 @@ msgstr "Week"
|
||||
msgid "weeks"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WKHqM+
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Weight"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nTuObL
|
||||
#: src/pages/auth/SignInUp.tsx
|
||||
msgid "Welcome to Twenty"
|
||||
|
||||
@@ -506,10 +506,10 @@ msgstr "1. نوع"
|
||||
msgid "10,000 workflow node executions"
|
||||
msgstr "١٠٬٠٠٠ تنفيذ لعقدة سير العمل"
|
||||
|
||||
#. js-lingui-id: bM5lnW
|
||||
#. js-lingui-id: rU05hS
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "12h - {hour12Label}"
|
||||
msgstr "12 ساعة - {hour12Label}"
|
||||
msgid "12h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 4EdXYs
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -542,10 +542,10 @@ msgstr "٢٠٬٠٠٠ تنفيذ لعقدة سير العمل"
|
||||
msgid "200 OK - {duration}ms"
|
||||
msgstr "200 OK - {duration} مللي ثانية"
|
||||
|
||||
#. js-lingui-id: mwTnop
|
||||
#. js-lingui-id: W1k7eB
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "24h - {hour24Label}"
|
||||
msgstr "24 ساعة - {hour24Label}"
|
||||
msgid "24h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QsMprd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -1456,6 +1456,11 @@ msgstr "جميع الأعضاء"
|
||||
msgid "All Metadata"
|
||||
msgstr "جميع البيانات الوصفية"
|
||||
|
||||
#. js-lingui-id: zIk4M6
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
msgid "All objects"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: aFE/OW
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsTableHeader.tsx
|
||||
@@ -1746,6 +1751,11 @@ msgstr "تم نسخ مفتاح API إلى الحافظة"
|
||||
msgid "API key is required"
|
||||
msgstr "مفتاح واجهة برمجة التطبيقات مطلوب"
|
||||
|
||||
#. js-lingui-id: sb6i1L
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "API key name cannot be empty"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Widx6n
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
msgid "API key roles"
|
||||
@@ -1811,10 +1821,10 @@ msgstr "واجهات برمجة التطبيقات"
|
||||
msgid "APIs & Webhooks"
|
||||
msgstr "واجهة برمجة التطبيقات والويب هوك"
|
||||
|
||||
#. js-lingui-id: BnUHmx
|
||||
#. js-lingui-id: 0UMxlw
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Apostrophe and dot - {apostropheAndDotExample}"
|
||||
msgstr "العلامة الاقتباس والنقطة - {apostropheAndDotExample}"
|
||||
msgid "Apostrophe and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
@@ -2362,6 +2372,11 @@ msgstr "نظرًا لأن سير العمل هذا لا يستخدم مشغّل
|
||||
msgid "Before"
|
||||
msgstr "قبل"
|
||||
|
||||
#. js-lingui-id: KYr9vA
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Best"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NgFKo1
|
||||
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getMonthsDescription.ts
|
||||
msgid "between {startMonth} and {endMonth}"
|
||||
@@ -3109,10 +3124,10 @@ msgstr "عنصر قائمة الأوامر"
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr "تم نسخ الأوامر إلى الحافظة"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#. js-lingui-id: QeCopv
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Commas and dot - {commasAndDotExample}"
|
||||
msgstr "الفواصل والنقطة - {commasAndDotExample}"
|
||||
msgid "Commas and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NBdIgR
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
@@ -3218,6 +3233,11 @@ msgstr "تهيئة نماذج الذكاء الاصطناعي الافتراضي
|
||||
msgid "Configure fallback login methods for users with SSO bypass permissions"
|
||||
msgstr "تكوين طرق تسجيل دخول احتياطية للمستخدمين الذين لديهم صلاحيات تجاوز SSO"
|
||||
|
||||
#. js-lingui-id: OLqG0t
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
|
||||
msgid "Configure how this object appears in search results"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ghdb7+
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
|
||||
msgid "Configure how we should display your events in your calendar"
|
||||
@@ -4214,6 +4234,7 @@ msgstr "إقامة البيانات"
|
||||
#. js-lingui-id: r+cVRP
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/field-permissions/components/SettingsRolePermissionsObjectLevelObjectFieldPermissionTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Data type"
|
||||
msgstr "نوع البيانات"
|
||||
|
||||
@@ -4345,7 +4366,7 @@ msgstr "إلغاء تنشيط سير العمل"
|
||||
#. js-lingui-id: yAT3be
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
|
||||
@@ -4363,6 +4384,11 @@ msgstr "معلومات التصحيح"
|
||||
msgid "Decide which Sub-address fields you want to display"
|
||||
msgstr "قرر أي حقول العناوين الفرعية تريد عرضها"
|
||||
|
||||
#. js-lingui-id: Bn9+El
|
||||
#: src/modules/ai/components/AIChatEditorSection.tsx
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ovBPCi
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
|
||||
@@ -4931,10 +4957,10 @@ msgstr "لا تقم بإنشاء جهات الاتصال من/إلى Gmail، أ
|
||||
msgid "Don't sync emails from team@ support@ noreply@..."
|
||||
msgstr "لا تقم بمزامنة الرسائل الالكترونية من team@ أو support@ أو noreply@ . . ."
|
||||
|
||||
#. js-lingui-id: bd+DPX
|
||||
#. js-lingui-id: Wm78zZ
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Dots and comma - {dotsAndCommaExample}"
|
||||
msgstr "النقاط والفاصلة - {dotsAndCommaExample}"
|
||||
msgid "Dots and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LE8J+K
|
||||
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
|
||||
@@ -6355,7 +6381,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
|
||||
msgstr "فشل تفعيل ترخيص Enterprise. يُرجى التحقق من المفتاح أو التواصل مع الدعم."
|
||||
|
||||
#. js-lingui-id: vJiM7T
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to activate skill"
|
||||
msgstr "فشل في تنشيط المهارة"
|
||||
|
||||
@@ -6380,7 +6406,7 @@ msgid "Failed to delete jobs. Please try again later."
|
||||
msgstr "فشل حذف الوظائف. يُرجى المحاولة مرة أخرى لاحقًا."
|
||||
|
||||
#. js-lingui-id: bmwWKk
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to delete skill"
|
||||
msgstr "فشل في حذف المهارة"
|
||||
|
||||
@@ -6753,9 +6779,6 @@ msgid "Files"
|
||||
msgstr "ملفات"
|
||||
|
||||
#. js-lingui-id: o7J4JM
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/find-records-action/components/WorkflowEditActionFindRecords.tsx
|
||||
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
|
||||
#: src/modules/views/components/ViewBarFilterButton.tsx
|
||||
@@ -6772,6 +6795,11 @@ msgstr "تصفية"
|
||||
msgid "Filter by event"
|
||||
msgstr "تصفية حسب الحدث"
|
||||
|
||||
#. js-lingui-id: yZOiaW
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdown.tsx
|
||||
msgid "Filter by object type"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gVEHcL
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Filter by record ID"
|
||||
@@ -7512,6 +7540,11 @@ msgstr "بيانات تعريف موفر الهوية XML"
|
||||
msgid "if"
|
||||
msgstr "إذا"
|
||||
|
||||
#. js-lingui-id: K6ChR5
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "If disabled, use advanced search filters to find these records"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ZfP/Ap
|
||||
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
|
||||
msgid "If this is unexpected, please verify your settings."
|
||||
@@ -7687,6 +7720,11 @@ msgstr "خيارات المهارة غير النشطة"
|
||||
msgid "Inbox"
|
||||
msgstr "صندوق الوارد"
|
||||
|
||||
#. js-lingui-id: Wyip/m
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Include in default search"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mtGDyy
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Incomplete"
|
||||
@@ -9108,6 +9146,7 @@ msgstr "النماذج لهذا المزود. بدّل للتفعيل أو ال
|
||||
|
||||
#. js-lingui-id: hty0d5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Monday"
|
||||
msgstr "الإثنين"
|
||||
|
||||
@@ -9298,6 +9337,7 @@ msgstr "mySkill"
|
||||
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
|
||||
#: src/modules/settings/developers/components/SettingsApiKeysTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
@@ -9539,7 +9579,7 @@ msgstr "سجل جديد"
|
||||
#. js-lingui-id: gWnSyg
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "New Skill"
|
||||
msgstr "مهارة جديدة"
|
||||
|
||||
@@ -10263,6 +10303,7 @@ msgstr "كائن"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Object"
|
||||
@@ -12124,6 +12165,7 @@ msgstr "الروسية"
|
||||
|
||||
#. js-lingui-id: +5kO8P
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Saturday"
|
||||
msgstr "السبت"
|
||||
|
||||
@@ -12189,6 +12231,7 @@ msgstr "SDK"
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/side-panel/hooks/useOpenRecordsSearchPageInSidePanel.ts
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentWorkspaceMemberPickerDropdown.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
@@ -12248,7 +12291,7 @@ msgid "Search a role..."
|
||||
msgstr "ابحث عن دور..."
|
||||
|
||||
#. js-lingui-id: lJNEce
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Search a skill..."
|
||||
msgstr "ابحث عن مهارة..."
|
||||
|
||||
@@ -12273,6 +12316,11 @@ msgstr "ابحث عن نوع"
|
||||
msgid "Search a view..."
|
||||
msgstr "ابحث عن عرض..."
|
||||
|
||||
#. js-lingui-id: N7Z3jc
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Search across indexed fields..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +7s4fw
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentEntityPickerDropdown.tsx
|
||||
msgid "Search agents"
|
||||
@@ -13043,6 +13091,11 @@ msgstr "إظهار المجموعة {groupValue}"
|
||||
msgid "Show hidden groups"
|
||||
msgstr "عرض المجموعات المخفية"
|
||||
|
||||
#. js-lingui-id: eOY8jq
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
msgid "Show hidden objects"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qi+g0a
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Show only rows with errors"
|
||||
@@ -13122,12 +13175,12 @@ msgid "Skill"
|
||||
msgstr "مهارة"
|
||||
|
||||
#. js-lingui-id: h4t38o
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill activated"
|
||||
msgstr "تم تنشيط المهارة"
|
||||
|
||||
#. js-lingui-id: /IoK74
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill deleted"
|
||||
msgstr "تم حذف المهارة"
|
||||
|
||||
@@ -13144,6 +13197,7 @@ msgstr "لم يتم العثور على المهارة"
|
||||
|
||||
#. js-lingui-id: PCSkw2
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skills"
|
||||
msgstr "المهارات"
|
||||
|
||||
@@ -13289,10 +13343,10 @@ msgstr "معايير الترتيب"
|
||||
msgid "Source"
|
||||
msgstr "المصدر"
|
||||
|
||||
#. js-lingui-id: IEtmGM
|
||||
#. js-lingui-id: xqlr9R
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Spaces and comma - {spacesAndCommaExample}"
|
||||
msgstr "المسافات والفاصلة - {spacesAndCommaExample}"
|
||||
msgid "Spaces and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 65A04M
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -13598,6 +13652,7 @@ msgstr "المجموع"
|
||||
|
||||
#. js-lingui-id: DBC3t5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Sunday"
|
||||
msgstr "الأحد"
|
||||
|
||||
@@ -13746,43 +13801,24 @@ msgstr "علاقات النظام"
|
||||
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
msgid "System settings"
|
||||
msgstr "إعدادات النظام"
|
||||
|
||||
#. js-lingui-id: E3AMmw
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
msgid "System settings - {systemDateFormatLabel}"
|
||||
msgstr "إعدادات النظام - <b>{systemDateFormatLabel}</b>"
|
||||
|
||||
#. js-lingui-id: uKM6SP
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "System Settings - {systemNumberFormatLabel}"
|
||||
msgstr "إعدادات النظام - <b>{systemNumberFormatLabel}</b>"
|
||||
|
||||
#. js-lingui-id: 0ZgB1e
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "System Settings - {systemTimeFormatLabel}"
|
||||
msgstr "إعدادات النظام - <b>{systemTimeFormatLabel}</b>"
|
||||
|
||||
#. js-lingui-id: e89dEj
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Monday"
|
||||
msgstr "إعدادات النظام - <b>الإثنين</b>"
|
||||
|
||||
#. js-lingui-id: o+Kvng
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Saturday"
|
||||
msgstr "إعدادات النظام - <b>السبت</b>"
|
||||
|
||||
#. js-lingui-id: gluMQd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Sunday"
|
||||
msgstr "إعدادات النظام - <b>الأحد</b>"
|
||||
|
||||
#. js-lingui-id: HuA3RU
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Tab"
|
||||
@@ -14833,6 +14869,13 @@ msgstr "غير مدرج"
|
||||
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
|
||||
msgstr "فعّل ميزات Enterprise مثل SSO وأمن على مستوى الصف وسجلات التدقيق."
|
||||
|
||||
#. js-lingui-id: Te2H8x
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
#: src/modules/settings/developers/components/SettingsApiKeysFieldItemTableRow.tsx
|
||||
msgid "Unnamed API Key"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eQMhFX
|
||||
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
|
||||
msgid "unordered"
|
||||
@@ -15102,6 +15145,11 @@ msgstr "استخدم تطبيقات المصادقة وملحقات المتصف
|
||||
msgid "Use best models only"
|
||||
msgstr "استخدام أفضل النماذج فقط"
|
||||
|
||||
#. js-lingui-id: cVOIgV
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Use filter to see existing tools or create your own"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: oTTQsc
|
||||
#: src/modules/settings/domains/utils/getSubdomainValidationSchema.ts
|
||||
msgid "Use letter, number and dash only. Start and finish with a letter or a number"
|
||||
@@ -15639,6 +15687,11 @@ msgstr "أسبوع"
|
||||
msgid "weeks"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WKHqM+
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Weight"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nTuObL
|
||||
#: src/pages/auth/SignInUp.tsx
|
||||
msgid "Welcome to Twenty"
|
||||
|
||||
@@ -506,10 +506,10 @@ msgstr "1. Tipus"
|
||||
msgid "10,000 workflow node executions"
|
||||
msgstr "10.000 execucions de nodes de flux de treball"
|
||||
|
||||
#. js-lingui-id: bM5lnW
|
||||
#. js-lingui-id: rU05hS
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "12h - {hour12Label}"
|
||||
msgstr "12h - {hour12Label}"
|
||||
msgid "12h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 4EdXYs
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -542,10 +542,10 @@ msgstr "20.000 execucions de nodes de flux de treball"
|
||||
msgid "200 OK - {duration}ms"
|
||||
msgstr "200 OK - {duration}ms"
|
||||
|
||||
#. js-lingui-id: mwTnop
|
||||
#. js-lingui-id: W1k7eB
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "24h - {hour24Label}"
|
||||
msgstr "24h - {hour24Label}"
|
||||
msgid "24h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QsMprd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -1456,6 +1456,11 @@ msgstr "Tots els membres"
|
||||
msgid "All Metadata"
|
||||
msgstr "Totes les metadades"
|
||||
|
||||
#. js-lingui-id: zIk4M6
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
msgid "All objects"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: aFE/OW
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsTableHeader.tsx
|
||||
@@ -1746,6 +1751,11 @@ msgstr "La clau API s'ha copiat al porta-retalls"
|
||||
msgid "API key is required"
|
||||
msgstr "La clau de l'API és necessària"
|
||||
|
||||
#. js-lingui-id: sb6i1L
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "API key name cannot be empty"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Widx6n
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
msgid "API key roles"
|
||||
@@ -1811,10 +1821,10 @@ msgstr "API"
|
||||
msgid "APIs & Webhooks"
|
||||
msgstr "API i Webhooks"
|
||||
|
||||
#. js-lingui-id: BnUHmx
|
||||
#. js-lingui-id: 0UMxlw
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Apostrophe and dot - {apostropheAndDotExample}"
|
||||
msgstr "Apòstrof i punt - {apostropheAndDotExample}"
|
||||
msgid "Apostrophe and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
@@ -2362,6 +2372,11 @@ msgstr "Com que aquest flux de treball no utilitza un activador manual, el formu
|
||||
msgid "Before"
|
||||
msgstr "Abans"
|
||||
|
||||
#. js-lingui-id: KYr9vA
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Best"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NgFKo1
|
||||
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getMonthsDescription.ts
|
||||
msgid "between {startMonth} and {endMonth}"
|
||||
@@ -3109,10 +3124,10 @@ msgstr "element del menú de comandaments"
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr "Ordres copiades al porta-retalls"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#. js-lingui-id: QeCopv
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Commas and dot - {commasAndDotExample}"
|
||||
msgstr "Comes i punt - {commasAndDotExample}"
|
||||
msgid "Commas and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NBdIgR
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
@@ -3218,6 +3233,11 @@ msgstr "Configura els models d'IA predeterminats i la seva disponibilitat"
|
||||
msgid "Configure fallback login methods for users with SSO bypass permissions"
|
||||
msgstr "Configura els mètodes de connexió d'emergència per a usuaris amb permisos per saltar SSO"
|
||||
|
||||
#. js-lingui-id: OLqG0t
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
|
||||
msgid "Configure how this object appears in search results"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ghdb7+
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
|
||||
msgid "Configure how we should display your events in your calendar"
|
||||
@@ -4214,6 +4234,7 @@ msgstr "Residència de dades"
|
||||
#. js-lingui-id: r+cVRP
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/field-permissions/components/SettingsRolePermissionsObjectLevelObjectFieldPermissionTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Data type"
|
||||
msgstr "Tipus de dades"
|
||||
|
||||
@@ -4345,7 +4366,7 @@ msgstr "Desactiva el Flux de treball"
|
||||
#. js-lingui-id: yAT3be
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
|
||||
@@ -4363,6 +4384,11 @@ msgstr "Informació de depuració"
|
||||
msgid "Decide which Sub-address fields you want to display"
|
||||
msgstr "Decideix quins camps de Sub-adreça vols mostrar"
|
||||
|
||||
#. js-lingui-id: Bn9+El
|
||||
#: src/modules/ai/components/AIChatEditorSection.tsx
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ovBPCi
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
|
||||
@@ -4931,10 +4957,10 @@ msgstr "No creïs contactes des/de Gmail, correus de Outlook"
|
||||
msgid "Don't sync emails from team@ support@ noreply@..."
|
||||
msgstr "No sincronitzis correus de team@ support@ noreply@..."
|
||||
|
||||
#. js-lingui-id: bd+DPX
|
||||
#. js-lingui-id: Wm78zZ
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Dots and comma - {dotsAndCommaExample}"
|
||||
msgstr "Punts i coma - {dotsAndCommaExample}"
|
||||
msgid "Dots and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LE8J+K
|
||||
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
|
||||
@@ -6355,7 +6381,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
|
||||
msgstr "No s'ha pogut activar la llicència Enterprise. Comproveu la vostra clau o contacteu amb el suport."
|
||||
|
||||
#. js-lingui-id: vJiM7T
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to activate skill"
|
||||
msgstr "No s'ha pogut activar l'habilitat"
|
||||
|
||||
@@ -6380,7 +6406,7 @@ msgid "Failed to delete jobs. Please try again later."
|
||||
msgstr "Error al suprimir feines. Torneu-ho a provar més tard."
|
||||
|
||||
#. js-lingui-id: bmwWKk
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to delete skill"
|
||||
msgstr "No s'ha pogut suprimir l'habilitat"
|
||||
|
||||
@@ -6753,9 +6779,6 @@ msgid "Files"
|
||||
msgstr "Arxius"
|
||||
|
||||
#. js-lingui-id: o7J4JM
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/find-records-action/components/WorkflowEditActionFindRecords.tsx
|
||||
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
|
||||
#: src/modules/views/components/ViewBarFilterButton.tsx
|
||||
@@ -6772,6 +6795,11 @@ msgstr "Filtrar"
|
||||
msgid "Filter by event"
|
||||
msgstr "Filtra per esdeveniment"
|
||||
|
||||
#. js-lingui-id: yZOiaW
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdown.tsx
|
||||
msgid "Filter by object type"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gVEHcL
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Filter by record ID"
|
||||
@@ -7512,6 +7540,11 @@ msgstr "Metadades XML del Proveïdor d'Identitat"
|
||||
msgid "if"
|
||||
msgstr "si"
|
||||
|
||||
#. js-lingui-id: K6ChR5
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "If disabled, use advanced search filters to find these records"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ZfP/Ap
|
||||
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
|
||||
msgid "If this is unexpected, please verify your settings."
|
||||
@@ -7687,6 +7720,11 @@ msgstr "Opcions de l'habilitat inactiva"
|
||||
msgid "Inbox"
|
||||
msgstr "Bústia d'entrada"
|
||||
|
||||
#. js-lingui-id: Wyip/m
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Include in default search"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mtGDyy
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Incomplete"
|
||||
@@ -9108,6 +9146,7 @@ msgstr "Models per a aquest proveïdor. Commuta per activar o desactivar."
|
||||
|
||||
#. js-lingui-id: hty0d5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Monday"
|
||||
msgstr "Dilluns"
|
||||
|
||||
@@ -9298,6 +9337,7 @@ msgstr "mySkill"
|
||||
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
|
||||
#: src/modules/settings/developers/components/SettingsApiKeysTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
@@ -9539,7 +9579,7 @@ msgstr "Nou registre"
|
||||
#. js-lingui-id: gWnSyg
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "New Skill"
|
||||
msgstr "Nova habilitat"
|
||||
|
||||
@@ -10263,6 +10303,7 @@ msgstr "objecte"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Object"
|
||||
@@ -12124,6 +12165,7 @@ msgstr "Rus"
|
||||
|
||||
#. js-lingui-id: +5kO8P
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Saturday"
|
||||
msgstr "Dissabte"
|
||||
|
||||
@@ -12189,6 +12231,7 @@ msgstr "SDK"
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/side-panel/hooks/useOpenRecordsSearchPageInSidePanel.ts
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentWorkspaceMemberPickerDropdown.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
@@ -12248,7 +12291,7 @@ msgid "Search a role..."
|
||||
msgstr "Cerca un rol..."
|
||||
|
||||
#. js-lingui-id: lJNEce
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Search a skill..."
|
||||
msgstr "Cerca una habilitat..."
|
||||
|
||||
@@ -12273,6 +12316,11 @@ msgstr "Cerca un tipus"
|
||||
msgid "Search a view..."
|
||||
msgstr "Cerca una vista..."
|
||||
|
||||
#. js-lingui-id: N7Z3jc
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Search across indexed fields..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +7s4fw
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentEntityPickerDropdown.tsx
|
||||
msgid "Search agents"
|
||||
@@ -13043,6 +13091,11 @@ msgstr "Mostra el grup {groupValue}"
|
||||
msgid "Show hidden groups"
|
||||
msgstr "Mostra grups ocults"
|
||||
|
||||
#. js-lingui-id: eOY8jq
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
msgid "Show hidden objects"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qi+g0a
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Show only rows with errors"
|
||||
@@ -13122,12 +13175,12 @@ msgid "Skill"
|
||||
msgstr "Habilitat"
|
||||
|
||||
#. js-lingui-id: h4t38o
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill activated"
|
||||
msgstr "Habilitat activada"
|
||||
|
||||
#. js-lingui-id: /IoK74
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill deleted"
|
||||
msgstr "Habilitat suprimida"
|
||||
|
||||
@@ -13144,6 +13197,7 @@ msgstr "Habilitat no trobada"
|
||||
|
||||
#. js-lingui-id: PCSkw2
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skills"
|
||||
msgstr "Habilitats"
|
||||
|
||||
@@ -13289,10 +13343,10 @@ msgstr "Criteris d'ordenació"
|
||||
msgid "Source"
|
||||
msgstr "Font"
|
||||
|
||||
#. js-lingui-id: IEtmGM
|
||||
#. js-lingui-id: xqlr9R
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Spaces and comma - {spacesAndCommaExample}"
|
||||
msgstr "Espais i coma - {spacesAndCommaExample}"
|
||||
msgid "Spaces and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 65A04M
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -13598,6 +13652,7 @@ msgstr "Suma"
|
||||
|
||||
#. js-lingui-id: DBC3t5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Sunday"
|
||||
msgstr "Diumenge"
|
||||
|
||||
@@ -13746,43 +13801,24 @@ msgstr "Relacions del sistema"
|
||||
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
msgid "System settings"
|
||||
msgstr "Configuració del sistema"
|
||||
|
||||
#. js-lingui-id: E3AMmw
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
msgid "System settings - {systemDateFormatLabel}"
|
||||
msgstr "Configuració del sistema - {systemDateFormatLabel}"
|
||||
|
||||
#. js-lingui-id: uKM6SP
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "System Settings - {systemNumberFormatLabel}"
|
||||
msgstr "Configuració del Sistema - {systemNumberFormatLabel}"
|
||||
|
||||
#. js-lingui-id: 0ZgB1e
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "System Settings - {systemTimeFormatLabel}"
|
||||
msgstr "Configuració del Sistema - {systemTimeFormatLabel}"
|
||||
|
||||
#. js-lingui-id: e89dEj
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Monday"
|
||||
msgstr "Configuració del sistema - Dilluns"
|
||||
|
||||
#. js-lingui-id: o+Kvng
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Saturday"
|
||||
msgstr "Configuració del sistema - Dissabte"
|
||||
|
||||
#. js-lingui-id: gluMQd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Sunday"
|
||||
msgstr "Configuració del sistema - Diumenge"
|
||||
|
||||
#. js-lingui-id: HuA3RU
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Tab"
|
||||
@@ -14833,6 +14869,13 @@ msgstr "No Llistat"
|
||||
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
|
||||
msgstr "Desbloquegeu funcionalitats Enterprise com SSO, la seguretat a nivell de fila i els registres d'auditoria."
|
||||
|
||||
#. js-lingui-id: Te2H8x
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
#: src/modules/settings/developers/components/SettingsApiKeysFieldItemTableRow.tsx
|
||||
msgid "Unnamed API Key"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eQMhFX
|
||||
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
|
||||
msgid "unordered"
|
||||
@@ -15102,6 +15145,11 @@ msgstr "Utilitza aplicacions d'autenticació i extensions de navegador com 1Pass
|
||||
msgid "Use best models only"
|
||||
msgstr "Utilitzar només els millors models"
|
||||
|
||||
#. js-lingui-id: cVOIgV
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Use filter to see existing tools or create your own"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: oTTQsc
|
||||
#: src/modules/settings/domains/utils/getSubdomainValidationSchema.ts
|
||||
msgid "Use letter, number and dash only. Start and finish with a letter or a number"
|
||||
@@ -15641,6 +15689,11 @@ msgstr "Setmana"
|
||||
msgid "weeks"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WKHqM+
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Weight"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nTuObL
|
||||
#: src/pages/auth/SignInUp.tsx
|
||||
msgid "Welcome to Twenty"
|
||||
|
||||
@@ -506,10 +506,10 @@ msgstr "1. Typ"
|
||||
msgid "10,000 workflow node executions"
|
||||
msgstr "10 000 spuštění uzlu pracovního postupu"
|
||||
|
||||
#. js-lingui-id: bM5lnW
|
||||
#. js-lingui-id: rU05hS
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "12h - {hour12Label}"
|
||||
msgstr "12h - {hour12Label}"
|
||||
msgid "12h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 4EdXYs
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -542,10 +542,10 @@ msgstr "20 000 spuštění uzlu pracovního postupu"
|
||||
msgid "200 OK - {duration}ms"
|
||||
msgstr "200 OK - {duration}ms"
|
||||
|
||||
#. js-lingui-id: mwTnop
|
||||
#. js-lingui-id: W1k7eB
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "24h - {hour24Label}"
|
||||
msgstr "24h - {hour24Label}"
|
||||
msgid "24h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QsMprd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -1456,6 +1456,11 @@ msgstr "Všichni členové"
|
||||
msgid "All Metadata"
|
||||
msgstr "Všechna metadata"
|
||||
|
||||
#. js-lingui-id: zIk4M6
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
msgid "All objects"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: aFE/OW
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsTableHeader.tsx
|
||||
@@ -1746,6 +1751,11 @@ msgstr "Klíč API zkopírován do schránky"
|
||||
msgid "API key is required"
|
||||
msgstr "Klíč API je vyžadován"
|
||||
|
||||
#. js-lingui-id: sb6i1L
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "API key name cannot be empty"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Widx6n
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
msgid "API key roles"
|
||||
@@ -1811,10 +1821,10 @@ msgstr "API"
|
||||
msgid "APIs & Webhooks"
|
||||
msgstr "API & Webhooks"
|
||||
|
||||
#. js-lingui-id: BnUHmx
|
||||
#. js-lingui-id: 0UMxlw
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Apostrophe and dot - {apostropheAndDotExample}"
|
||||
msgstr "Apostrof a tečka - {apostropheAndDotExample}"
|
||||
msgid "Apostrophe and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
@@ -2362,6 +2372,11 @@ msgstr "Protože tento pracovní postup není spouštěn ručně, formulář se
|
||||
msgid "Before"
|
||||
msgstr "Před"
|
||||
|
||||
#. js-lingui-id: KYr9vA
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Best"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NgFKo1
|
||||
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getMonthsDescription.ts
|
||||
msgid "between {startMonth} and {endMonth}"
|
||||
@@ -3109,10 +3124,10 @@ msgstr "položka menu příkazů"
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr "Příkazy zkopírovány do schránky"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#. js-lingui-id: QeCopv
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Commas and dot - {commasAndDotExample}"
|
||||
msgstr "Čárky a tečka - {commasAndDotExample}"
|
||||
msgid "Commas and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NBdIgR
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
@@ -3218,6 +3233,11 @@ msgstr "Nakonfigurujte výchozí modely AI a jejich dostupnost"
|
||||
msgid "Configure fallback login methods for users with SSO bypass permissions"
|
||||
msgstr "Nakonfigurujte alternativní metody přihlášení pro uživatele s oprávněními k obejití SSO"
|
||||
|
||||
#. js-lingui-id: OLqG0t
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
|
||||
msgid "Configure how this object appears in search results"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ghdb7+
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
|
||||
msgid "Configure how we should display your events in your calendar"
|
||||
@@ -4214,6 +4234,7 @@ msgstr "Umístění dat"
|
||||
#. js-lingui-id: r+cVRP
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/field-permissions/components/SettingsRolePermissionsObjectLevelObjectFieldPermissionTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Data type"
|
||||
msgstr "Datový typ"
|
||||
|
||||
@@ -4345,7 +4366,7 @@ msgstr "Deaktivovat Workflow"
|
||||
#. js-lingui-id: yAT3be
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
|
||||
@@ -4363,6 +4384,11 @@ msgstr "Ladicí informace"
|
||||
msgid "Decide which Sub-address fields you want to display"
|
||||
msgstr "Rozhodněte se, která pole podadresy chcete zobrazit"
|
||||
|
||||
#. js-lingui-id: Bn9+El
|
||||
#: src/modules/ai/components/AIChatEditorSection.tsx
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ovBPCi
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
|
||||
@@ -4931,10 +4957,10 @@ msgstr "Nevytvářejte kontakty z/na Gmail, Outlook e-maily"
|
||||
msgid "Don't sync emails from team@ support@ noreply@..."
|
||||
msgstr "Nesynchronizovat e-maily od team@ support@ noreply@..."
|
||||
|
||||
#. js-lingui-id: bd+DPX
|
||||
#. js-lingui-id: Wm78zZ
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Dots and comma - {dotsAndCommaExample}"
|
||||
msgstr "Tečky a čárky - {dotsAndCommaExample}"
|
||||
msgid "Dots and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LE8J+K
|
||||
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
|
||||
@@ -6355,7 +6381,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
|
||||
msgstr "Aktivace licence Enterprise se nezdařila. Zkontrolujte svůj klíč nebo kontaktujte podporu."
|
||||
|
||||
#. js-lingui-id: vJiM7T
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to activate skill"
|
||||
msgstr "Nepodařilo se aktivovat dovednost"
|
||||
|
||||
@@ -6380,7 +6406,7 @@ msgid "Failed to delete jobs. Please try again later."
|
||||
msgstr "Nelze smazat úlohy. Prosím, zkuste to znovu později."
|
||||
|
||||
#. js-lingui-id: bmwWKk
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to delete skill"
|
||||
msgstr "Nepodařilo se smazat dovednost"
|
||||
|
||||
@@ -6753,9 +6779,6 @@ msgid "Files"
|
||||
msgstr "Soubory"
|
||||
|
||||
#. js-lingui-id: o7J4JM
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/find-records-action/components/WorkflowEditActionFindRecords.tsx
|
||||
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
|
||||
#: src/modules/views/components/ViewBarFilterButton.tsx
|
||||
@@ -6772,6 +6795,11 @@ msgstr "Filtr"
|
||||
msgid "Filter by event"
|
||||
msgstr "Filtrovat podle události"
|
||||
|
||||
#. js-lingui-id: yZOiaW
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdown.tsx
|
||||
msgid "Filter by object type"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gVEHcL
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Filter by record ID"
|
||||
@@ -7512,6 +7540,11 @@ msgstr "Metadata XML poskytovatele identity"
|
||||
msgid "if"
|
||||
msgstr "pokud"
|
||||
|
||||
#. js-lingui-id: K6ChR5
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "If disabled, use advanced search filters to find these records"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ZfP/Ap
|
||||
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
|
||||
msgid "If this is unexpected, please verify your settings."
|
||||
@@ -7687,6 +7720,11 @@ msgstr "Možnosti neaktivní dovednosti"
|
||||
msgid "Inbox"
|
||||
msgstr "Schránka"
|
||||
|
||||
#. js-lingui-id: Wyip/m
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Include in default search"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mtGDyy
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Incomplete"
|
||||
@@ -9108,6 +9146,7 @@ msgstr "Modely tohoto poskytovatele. Pomocí přepínače je povolte nebo zakaž
|
||||
|
||||
#. js-lingui-id: hty0d5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Monday"
|
||||
msgstr "Pondělí"
|
||||
|
||||
@@ -9298,6 +9337,7 @@ msgstr "mySkill"
|
||||
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
|
||||
#: src/modules/settings/developers/components/SettingsApiKeysTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
@@ -9539,7 +9579,7 @@ msgstr "Nový záznam"
|
||||
#. js-lingui-id: gWnSyg
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "New Skill"
|
||||
msgstr "Nová dovednost"
|
||||
|
||||
@@ -10263,6 +10303,7 @@ msgstr "objekt"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Object"
|
||||
@@ -12124,6 +12165,7 @@ msgstr "Ruština"
|
||||
|
||||
#. js-lingui-id: +5kO8P
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Saturday"
|
||||
msgstr "Sobota"
|
||||
|
||||
@@ -12189,6 +12231,7 @@ msgstr "SDK"
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/side-panel/hooks/useOpenRecordsSearchPageInSidePanel.ts
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentWorkspaceMemberPickerDropdown.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
@@ -12248,7 +12291,7 @@ msgid "Search a role..."
|
||||
msgstr "Vyhledat roli..."
|
||||
|
||||
#. js-lingui-id: lJNEce
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Search a skill..."
|
||||
msgstr "Vyhledat dovednost..."
|
||||
|
||||
@@ -12273,6 +12316,11 @@ msgstr "Hledat typ"
|
||||
msgid "Search a view..."
|
||||
msgstr "Hledat zobrazení..."
|
||||
|
||||
#. js-lingui-id: N7Z3jc
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Search across indexed fields..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +7s4fw
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentEntityPickerDropdown.tsx
|
||||
msgid "Search agents"
|
||||
@@ -13043,6 +13091,11 @@ msgstr "Zobrazit skupinu {groupValue}"
|
||||
msgid "Show hidden groups"
|
||||
msgstr "Zobrazit skryté skupiny"
|
||||
|
||||
#. js-lingui-id: eOY8jq
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
msgid "Show hidden objects"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qi+g0a
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Show only rows with errors"
|
||||
@@ -13122,12 +13175,12 @@ msgid "Skill"
|
||||
msgstr "Dovednost"
|
||||
|
||||
#. js-lingui-id: h4t38o
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill activated"
|
||||
msgstr "Dovednost aktivována"
|
||||
|
||||
#. js-lingui-id: /IoK74
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill deleted"
|
||||
msgstr "Dovednost smazána"
|
||||
|
||||
@@ -13144,6 +13197,7 @@ msgstr "Dovednost nebyla nalezena"
|
||||
|
||||
#. js-lingui-id: PCSkw2
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skills"
|
||||
msgstr "Dovednosti"
|
||||
|
||||
@@ -13289,10 +13343,10 @@ msgstr "Řazení"
|
||||
msgid "Source"
|
||||
msgstr "Zdroj"
|
||||
|
||||
#. js-lingui-id: IEtmGM
|
||||
#. js-lingui-id: xqlr9R
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Spaces and comma - {spacesAndCommaExample}"
|
||||
msgstr "Mezery a čárka - {spacesAndCommaExample}"
|
||||
msgid "Spaces and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 65A04M
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -13598,6 +13652,7 @@ msgstr "Součet"
|
||||
|
||||
#. js-lingui-id: DBC3t5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Sunday"
|
||||
msgstr "Neděle"
|
||||
|
||||
@@ -13746,43 +13801,24 @@ msgstr "Systémové vztahy"
|
||||
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
msgid "System settings"
|
||||
msgstr "Systémová nastavení"
|
||||
|
||||
#. js-lingui-id: E3AMmw
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
msgid "System settings - {systemDateFormatLabel}"
|
||||
msgstr "Systémová nastavení - {systemDateFormatLabel}"
|
||||
|
||||
#. js-lingui-id: uKM6SP
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "System Settings - {systemNumberFormatLabel}"
|
||||
msgstr "Systémová nastavení - {systemNumberFormatLabel}"
|
||||
|
||||
#. js-lingui-id: 0ZgB1e
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "System Settings - {systemTimeFormatLabel}"
|
||||
msgstr "Systémová nastavení - {systemTimeFormatLabel}"
|
||||
|
||||
#. js-lingui-id: e89dEj
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Monday"
|
||||
msgstr "Systémová nastavení - Pondělí"
|
||||
|
||||
#. js-lingui-id: o+Kvng
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Saturday"
|
||||
msgstr "Systémová nastavení - Sobota"
|
||||
|
||||
#. js-lingui-id: gluMQd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Sunday"
|
||||
msgstr "Systémová nastavení - Neděle"
|
||||
|
||||
#. js-lingui-id: HuA3RU
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Tab"
|
||||
@@ -14833,6 +14869,13 @@ msgstr "Neveřejné"
|
||||
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
|
||||
msgstr "Odemkněte funkce Enterprise, jako je SSO, zabezpečení na úrovni řádků a záznamy auditu."
|
||||
|
||||
#. js-lingui-id: Te2H8x
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
#: src/modules/settings/developers/components/SettingsApiKeysFieldItemTableRow.tsx
|
||||
msgid "Unnamed API Key"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eQMhFX
|
||||
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
|
||||
msgid "unordered"
|
||||
@@ -15102,6 +15145,11 @@ msgstr "Používejte autentizační aplikace a rozšíření prohlížeče jako
|
||||
msgid "Use best models only"
|
||||
msgstr "Používat pouze nejlepší modely"
|
||||
|
||||
#. js-lingui-id: cVOIgV
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Use filter to see existing tools or create your own"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: oTTQsc
|
||||
#: src/modules/settings/domains/utils/getSubdomainValidationSchema.ts
|
||||
msgid "Use letter, number and dash only. Start and finish with a letter or a number"
|
||||
@@ -15641,6 +15689,11 @@ msgstr "Týden"
|
||||
msgid "weeks"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WKHqM+
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Weight"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nTuObL
|
||||
#: src/pages/auth/SignInUp.tsx
|
||||
msgid "Welcome to Twenty"
|
||||
|
||||
@@ -506,10 +506,10 @@ msgstr "1. Skriv"
|
||||
msgid "10,000 workflow node executions"
|
||||
msgstr "10.000 workflow node eksekveringer"
|
||||
|
||||
#. js-lingui-id: bM5lnW
|
||||
#. js-lingui-id: rU05hS
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "12h - {hour12Label}"
|
||||
msgstr "12 timer - {hour12Label}"
|
||||
msgid "12h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 4EdXYs
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -542,10 +542,10 @@ msgstr "20.000 workflow node eksekveringer"
|
||||
msgid "200 OK - {duration}ms"
|
||||
msgstr "200 OK - {duration}ms"
|
||||
|
||||
#. js-lingui-id: mwTnop
|
||||
#. js-lingui-id: W1k7eB
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "24h - {hour24Label}"
|
||||
msgstr "24 timer - {hour24Label}"
|
||||
msgid "24h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QsMprd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -1456,6 +1456,11 @@ msgstr "Alle medlemmer"
|
||||
msgid "All Metadata"
|
||||
msgstr "Alle metadata"
|
||||
|
||||
#. js-lingui-id: zIk4M6
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
msgid "All objects"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: aFE/OW
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsTableHeader.tsx
|
||||
@@ -1746,6 +1751,11 @@ msgstr "API-nøgle kopieret til udklipsholder"
|
||||
msgid "API key is required"
|
||||
msgstr "API-nøglen er påkrævet"
|
||||
|
||||
#. js-lingui-id: sb6i1L
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "API key name cannot be empty"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Widx6n
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
msgid "API key roles"
|
||||
@@ -1811,10 +1821,10 @@ msgstr "API'er"
|
||||
msgid "APIs & Webhooks"
|
||||
msgstr "API'er & Webhooks"
|
||||
|
||||
#. js-lingui-id: BnUHmx
|
||||
#. js-lingui-id: 0UMxlw
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Apostrophe and dot - {apostropheAndDotExample}"
|
||||
msgstr "Anførselstegn og punktum - {apostropheAndDotExample}"
|
||||
msgid "Apostrophe and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
@@ -2362,6 +2372,11 @@ msgstr "Da dette workflow ikke bruger en manuel udløser, åbnes formularen ikke
|
||||
msgid "Before"
|
||||
msgstr "Før"
|
||||
|
||||
#. js-lingui-id: KYr9vA
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Best"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NgFKo1
|
||||
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getMonthsDescription.ts
|
||||
msgid "between {startMonth} and {endMonth}"
|
||||
@@ -3109,10 +3124,10 @@ msgstr "kommando-menu menupunkt"
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr "Kommandoer kopieret til udklipsholder"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#. js-lingui-id: QeCopv
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Commas and dot - {commasAndDotExample}"
|
||||
msgstr "Kommaer og punktum - {commasAndDotExample}"
|
||||
msgid "Commas and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NBdIgR
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
@@ -3218,6 +3233,11 @@ msgstr "Konfigurer standard-AI-modeller og tilgængelighed"
|
||||
msgid "Configure fallback login methods for users with SSO bypass permissions"
|
||||
msgstr "Konfigurer alternativer loginmetoder til brugere med SSO-forbigående tilladelser"
|
||||
|
||||
#. js-lingui-id: OLqG0t
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
|
||||
msgid "Configure how this object appears in search results"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ghdb7+
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
|
||||
msgid "Configure how we should display your events in your calendar"
|
||||
@@ -4214,6 +4234,7 @@ msgstr "Datalokation"
|
||||
#. js-lingui-id: r+cVRP
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/field-permissions/components/SettingsRolePermissionsObjectLevelObjectFieldPermissionTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Data type"
|
||||
msgstr "Datatype"
|
||||
|
||||
@@ -4345,7 +4366,7 @@ msgstr "Deaktiver Workflow"
|
||||
#. js-lingui-id: yAT3be
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
|
||||
@@ -4363,6 +4384,11 @@ msgstr "Fejlsøgningsinfo"
|
||||
msgid "Decide which Sub-address fields you want to display"
|
||||
msgstr "Vælg hvilke underadressefelter du vil vise"
|
||||
|
||||
#. js-lingui-id: Bn9+El
|
||||
#: src/modules/ai/components/AIChatEditorSection.tsx
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ovBPCi
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
|
||||
@@ -4931,10 +4957,10 @@ msgstr "Opret ikke kontakter fra/til Gmail-, Outlook-emails"
|
||||
msgid "Don't sync emails from team@ support@ noreply@..."
|
||||
msgstr "Synkroniser ikke emails fra team@ support@ noreply@..."
|
||||
|
||||
#. js-lingui-id: bd+DPX
|
||||
#. js-lingui-id: Wm78zZ
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Dots and comma - {dotsAndCommaExample}"
|
||||
msgstr "Punktummer og komma - {dotsAndCommaExample}"
|
||||
msgid "Dots and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LE8J+K
|
||||
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
|
||||
@@ -6355,7 +6381,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
|
||||
msgstr "Kunne ikke aktivere Enterprise-licensen. Kontrollér din nøgle, eller kontakt support."
|
||||
|
||||
#. js-lingui-id: vJiM7T
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to activate skill"
|
||||
msgstr "Kunne ikke aktivere færdighed"
|
||||
|
||||
@@ -6380,7 +6406,7 @@ msgid "Failed to delete jobs. Please try again later."
|
||||
msgstr "Kunne ikke slette jobs. Prøv venligst igen senere."
|
||||
|
||||
#. js-lingui-id: bmwWKk
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to delete skill"
|
||||
msgstr "Kunne ikke slette færdighed"
|
||||
|
||||
@@ -6753,9 +6779,6 @@ msgid "Files"
|
||||
msgstr "Filer"
|
||||
|
||||
#. js-lingui-id: o7J4JM
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/find-records-action/components/WorkflowEditActionFindRecords.tsx
|
||||
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
|
||||
#: src/modules/views/components/ViewBarFilterButton.tsx
|
||||
@@ -6772,6 +6795,11 @@ msgstr "Filtrér"
|
||||
msgid "Filter by event"
|
||||
msgstr "Filtrer efter hændelse"
|
||||
|
||||
#. js-lingui-id: yZOiaW
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdown.tsx
|
||||
msgid "Filter by object type"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gVEHcL
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Filter by record ID"
|
||||
@@ -7512,6 +7540,11 @@ msgstr "Identitetsudbyder Metadata XML"
|
||||
msgid "if"
|
||||
msgstr "hvis"
|
||||
|
||||
#. js-lingui-id: K6ChR5
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "If disabled, use advanced search filters to find these records"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ZfP/Ap
|
||||
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
|
||||
msgid "If this is unexpected, please verify your settings."
|
||||
@@ -7687,6 +7720,11 @@ msgstr "Inaktive færdighedsindstillinger"
|
||||
msgid "Inbox"
|
||||
msgstr "Indbakke"
|
||||
|
||||
#. js-lingui-id: Wyip/m
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Include in default search"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mtGDyy
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Incomplete"
|
||||
@@ -9108,6 +9146,7 @@ msgstr "Modeller fra denne udbyder. Skift for at aktivere eller deaktivere."
|
||||
|
||||
#. js-lingui-id: hty0d5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Monday"
|
||||
msgstr "Mandag"
|
||||
|
||||
@@ -9298,6 +9337,7 @@ msgstr "mySkill"
|
||||
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
|
||||
#: src/modules/settings/developers/components/SettingsApiKeysTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
@@ -9539,7 +9579,7 @@ msgstr "Ny post"
|
||||
#. js-lingui-id: gWnSyg
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "New Skill"
|
||||
msgstr "Ny færdighed"
|
||||
|
||||
@@ -10263,6 +10303,7 @@ msgstr "objekt"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Object"
|
||||
@@ -12124,6 +12165,7 @@ msgstr "Russisk"
|
||||
|
||||
#. js-lingui-id: +5kO8P
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Saturday"
|
||||
msgstr "Lørdag"
|
||||
|
||||
@@ -12189,6 +12231,7 @@ msgstr "SDK"
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/side-panel/hooks/useOpenRecordsSearchPageInSidePanel.ts
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentWorkspaceMemberPickerDropdown.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
@@ -12248,7 +12291,7 @@ msgid "Search a role..."
|
||||
msgstr "Søg en rolle..."
|
||||
|
||||
#. js-lingui-id: lJNEce
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Search a skill..."
|
||||
msgstr "Søg efter en færdighed..."
|
||||
|
||||
@@ -12273,6 +12316,11 @@ msgstr "Søg efter en type"
|
||||
msgid "Search a view..."
|
||||
msgstr "Søg efter en visning..."
|
||||
|
||||
#. js-lingui-id: N7Z3jc
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Search across indexed fields..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +7s4fw
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentEntityPickerDropdown.tsx
|
||||
msgid "Search agents"
|
||||
@@ -13043,6 +13091,11 @@ msgstr "Vis gruppe {groupValue}"
|
||||
msgid "Show hidden groups"
|
||||
msgstr "Vis skjulte grupper"
|
||||
|
||||
#. js-lingui-id: eOY8jq
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
msgid "Show hidden objects"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qi+g0a
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Show only rows with errors"
|
||||
@@ -13122,12 +13175,12 @@ msgid "Skill"
|
||||
msgstr "Færdighed"
|
||||
|
||||
#. js-lingui-id: h4t38o
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill activated"
|
||||
msgstr "Færdighed aktiveret"
|
||||
|
||||
#. js-lingui-id: /IoK74
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill deleted"
|
||||
msgstr "Færdighed slettet"
|
||||
|
||||
@@ -13144,6 +13197,7 @@ msgstr "Færdighed ikke fundet"
|
||||
|
||||
#. js-lingui-id: PCSkw2
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skills"
|
||||
msgstr "Færdigheder"
|
||||
|
||||
@@ -13289,10 +13343,10 @@ msgstr "Sorteringer"
|
||||
msgid "Source"
|
||||
msgstr "Kilde"
|
||||
|
||||
#. js-lingui-id: IEtmGM
|
||||
#. js-lingui-id: xqlr9R
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Spaces and comma - {spacesAndCommaExample}"
|
||||
msgstr "Mellemrum og komma - {spacesAndCommaExample}"
|
||||
msgid "Spaces and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 65A04M
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -13598,6 +13652,7 @@ msgstr "Sum"
|
||||
|
||||
#. js-lingui-id: DBC3t5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Sunday"
|
||||
msgstr "Søndag"
|
||||
|
||||
@@ -13746,43 +13801,24 @@ msgstr "Systemrelationer"
|
||||
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
msgid "System settings"
|
||||
msgstr "Systemindstillinger"
|
||||
|
||||
#. js-lingui-id: E3AMmw
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
msgid "System settings - {systemDateFormatLabel}"
|
||||
msgstr "Systemindstillinger - {systemDateFormatLabel}"
|
||||
|
||||
#. js-lingui-id: uKM6SP
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "System Settings - {systemNumberFormatLabel}"
|
||||
msgstr "Systemindstillinger - {systemNumberFormatLabel}"
|
||||
|
||||
#. js-lingui-id: 0ZgB1e
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "System Settings - {systemTimeFormatLabel}"
|
||||
msgstr "Systemindstillinger - {systemTimeFormatLabel}"
|
||||
|
||||
#. js-lingui-id: e89dEj
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Monday"
|
||||
msgstr "Systemindstillinger - Mandag"
|
||||
|
||||
#. js-lingui-id: o+Kvng
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Saturday"
|
||||
msgstr "Systemindstillinger - Lørdag"
|
||||
|
||||
#. js-lingui-id: gluMQd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Sunday"
|
||||
msgstr "Systemindstillinger - Søndag"
|
||||
|
||||
#. js-lingui-id: HuA3RU
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Tab"
|
||||
@@ -14835,6 +14871,13 @@ msgstr "Ikke opført"
|
||||
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
|
||||
msgstr "Lås op for Enterprise-funktioner som SSO, sikkerhed på rækkeniveau og revisionslogge."
|
||||
|
||||
#. js-lingui-id: Te2H8x
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
#: src/modules/settings/developers/components/SettingsApiKeysFieldItemTableRow.tsx
|
||||
msgid "Unnamed API Key"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eQMhFX
|
||||
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
|
||||
msgid "unordered"
|
||||
@@ -15104,6 +15147,11 @@ msgstr "Brug autentifikationsapps og browserudvidelser som 1Password, Authy, Mic
|
||||
msgid "Use best models only"
|
||||
msgstr "Brug kun de bedste modeller"
|
||||
|
||||
#. js-lingui-id: cVOIgV
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Use filter to see existing tools or create your own"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: oTTQsc
|
||||
#: src/modules/settings/domains/utils/getSubdomainValidationSchema.ts
|
||||
msgid "Use letter, number and dash only. Start and finish with a letter or a number"
|
||||
@@ -15643,6 +15691,11 @@ msgstr "Uge"
|
||||
msgid "weeks"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WKHqM+
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Weight"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nTuObL
|
||||
#: src/pages/auth/SignInUp.tsx
|
||||
msgid "Welcome to Twenty"
|
||||
|
||||
@@ -506,10 +506,10 @@ msgstr "1. Typ"
|
||||
msgid "10,000 workflow node executions"
|
||||
msgstr "10.000 Workflow-Knotenausführungen"
|
||||
|
||||
#. js-lingui-id: bM5lnW
|
||||
#. js-lingui-id: rU05hS
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "12h - {hour12Label}"
|
||||
msgstr "12h - {hour12Label}"
|
||||
msgid "12h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 4EdXYs
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -542,10 +542,10 @@ msgstr "20.000 Workflow-Knotenausführungen"
|
||||
msgid "200 OK - {duration}ms"
|
||||
msgstr "200 OK - {duration}ms"
|
||||
|
||||
#. js-lingui-id: mwTnop
|
||||
#. js-lingui-id: W1k7eB
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "24h - {hour24Label}"
|
||||
msgstr "24h - {hour24Label}"
|
||||
msgid "24h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QsMprd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -1456,6 +1456,11 @@ msgstr "Alle Mitglieder"
|
||||
msgid "All Metadata"
|
||||
msgstr "Alle Metadaten"
|
||||
|
||||
#. js-lingui-id: zIk4M6
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
msgid "All objects"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: aFE/OW
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsTableHeader.tsx
|
||||
@@ -1746,6 +1751,11 @@ msgstr "API-Schlüssel in die Zwischenablage kopiert"
|
||||
msgid "API key is required"
|
||||
msgstr "API-Schlüssel ist erforderlich"
|
||||
|
||||
#. js-lingui-id: sb6i1L
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "API key name cannot be empty"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Widx6n
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
msgid "API key roles"
|
||||
@@ -1811,10 +1821,10 @@ msgstr "Schnittstellen"
|
||||
msgid "APIs & Webhooks"
|
||||
msgstr "APIs & Webhooks"
|
||||
|
||||
#. js-lingui-id: BnUHmx
|
||||
#. js-lingui-id: 0UMxlw
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Apostrophe and dot - {apostropheAndDotExample}"
|
||||
msgstr "Apostroph und Punkt - {apostropheAndDotExample}"
|
||||
msgid "Apostrophe and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
@@ -2362,6 +2372,11 @@ msgstr "Da dieser Workflow keinen manuellen Auslöser verwendet, wird das Formul
|
||||
msgid "Before"
|
||||
msgstr "Vor"
|
||||
|
||||
#. js-lingui-id: KYr9vA
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Best"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NgFKo1
|
||||
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getMonthsDescription.ts
|
||||
msgid "between {startMonth} and {endMonth}"
|
||||
@@ -3109,10 +3124,10 @@ msgstr "Befehlsmenü-Eintrag"
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr "Befehle in die Zwischenablage kopiert"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#. js-lingui-id: QeCopv
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Commas and dot - {commasAndDotExample}"
|
||||
msgstr "Kommas und Punkt - {commasAndDotExample}"
|
||||
msgid "Commas and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NBdIgR
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
@@ -3218,6 +3233,11 @@ msgstr "Standard-KI-Modelle und Verfügbarkeit konfigurieren"
|
||||
msgid "Configure fallback login methods for users with SSO bypass permissions"
|
||||
msgstr "Fallback-Login-Methoden für Benutzer mit SSO-Umgehungsberechtigungen konfigurieren"
|
||||
|
||||
#. js-lingui-id: OLqG0t
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
|
||||
msgid "Configure how this object appears in search results"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ghdb7+
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
|
||||
msgid "Configure how we should display your events in your calendar"
|
||||
@@ -4214,6 +4234,7 @@ msgstr "Datenresidenz"
|
||||
#. js-lingui-id: r+cVRP
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/field-permissions/components/SettingsRolePermissionsObjectLevelObjectFieldPermissionTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Data type"
|
||||
msgstr "Datentyp"
|
||||
|
||||
@@ -4345,7 +4366,7 @@ msgstr "Workflow deaktivieren"
|
||||
#. js-lingui-id: yAT3be
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
|
||||
@@ -4363,6 +4384,11 @@ msgstr "Debug-Informationen"
|
||||
msgid "Decide which Sub-address fields you want to display"
|
||||
msgstr "Entscheiden Sie, welche Unteradressfelder Sie anzeigen möchten"
|
||||
|
||||
#. js-lingui-id: Bn9+El
|
||||
#: src/modules/ai/components/AIChatEditorSection.tsx
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ovBPCi
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
|
||||
@@ -4931,10 +4957,10 @@ msgstr "Keine Kontakte aus/von Gmail, Outlook E-Mails erstellen"
|
||||
msgid "Don't sync emails from team@ support@ noreply@..."
|
||||
msgstr "Keine E-Mails von team@ support@ noreply@... synchronisieren"
|
||||
|
||||
#. js-lingui-id: bd+DPX
|
||||
#. js-lingui-id: Wm78zZ
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Dots and comma - {dotsAndCommaExample}"
|
||||
msgstr "Punkte und Komma - {dotsAndCommaExample}"
|
||||
msgid "Dots and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LE8J+K
|
||||
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
|
||||
@@ -6355,7 +6381,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
|
||||
msgstr "Enterprise-Lizenz konnte nicht aktiviert werden. Bitte überprüfen Sie Ihren Schlüssel oder wenden Sie sich an den Support."
|
||||
|
||||
#. js-lingui-id: vJiM7T
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to activate skill"
|
||||
msgstr "Skill konnte nicht aktiviert werden"
|
||||
|
||||
@@ -6380,7 +6406,7 @@ msgid "Failed to delete jobs. Please try again later."
|
||||
msgstr "Aufgaben konnten nicht gelöscht werden. Bitte versuchen Sie es später noch einmal."
|
||||
|
||||
#. js-lingui-id: bmwWKk
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to delete skill"
|
||||
msgstr "Skill konnte nicht gelöscht werden"
|
||||
|
||||
@@ -6753,9 +6779,6 @@ msgid "Files"
|
||||
msgstr "Dateien"
|
||||
|
||||
#. js-lingui-id: o7J4JM
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/find-records-action/components/WorkflowEditActionFindRecords.tsx
|
||||
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
|
||||
#: src/modules/views/components/ViewBarFilterButton.tsx
|
||||
@@ -6772,6 +6795,11 @@ msgstr "Filter"
|
||||
msgid "Filter by event"
|
||||
msgstr "Nach Ereignis filtern"
|
||||
|
||||
#. js-lingui-id: yZOiaW
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdown.tsx
|
||||
msgid "Filter by object type"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gVEHcL
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Filter by record ID"
|
||||
@@ -7512,6 +7540,11 @@ msgstr "Identitätsanbieter-Metadaten XML"
|
||||
msgid "if"
|
||||
msgstr "wenn"
|
||||
|
||||
#. js-lingui-id: K6ChR5
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "If disabled, use advanced search filters to find these records"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ZfP/Ap
|
||||
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
|
||||
msgid "If this is unexpected, please verify your settings."
|
||||
@@ -7687,6 +7720,11 @@ msgstr "Inaktive Skill-Optionen"
|
||||
msgid "Inbox"
|
||||
msgstr "Posteingang"
|
||||
|
||||
#. js-lingui-id: Wyip/m
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Include in default search"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mtGDyy
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Incomplete"
|
||||
@@ -9108,6 +9146,7 @@ msgstr "Modelle für diesen Anbieter. Umschalten, um zu aktivieren oder zu deakt
|
||||
|
||||
#. js-lingui-id: hty0d5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Monday"
|
||||
msgstr "Montag"
|
||||
|
||||
@@ -9298,6 +9337,7 @@ msgstr "mySkill"
|
||||
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
|
||||
#: src/modules/settings/developers/components/SettingsApiKeysTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
@@ -9539,7 +9579,7 @@ msgstr "Neuer Datensatz"
|
||||
#. js-lingui-id: gWnSyg
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "New Skill"
|
||||
msgstr "Neuer Skill"
|
||||
|
||||
@@ -10263,6 +10303,7 @@ msgstr "objekt"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Object"
|
||||
@@ -12124,6 +12165,7 @@ msgstr "Russisch"
|
||||
|
||||
#. js-lingui-id: +5kO8P
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Saturday"
|
||||
msgstr "Samstag"
|
||||
|
||||
@@ -12189,6 +12231,7 @@ msgstr "SDK"
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/side-panel/hooks/useOpenRecordsSearchPageInSidePanel.ts
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentWorkspaceMemberPickerDropdown.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
@@ -12248,7 +12291,7 @@ msgid "Search a role..."
|
||||
msgstr "Nach einer Rolle suchen..."
|
||||
|
||||
#. js-lingui-id: lJNEce
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Search a skill..."
|
||||
msgstr "Nach einem Skill suchen..."
|
||||
|
||||
@@ -12273,6 +12316,11 @@ msgstr "Einen Typ suchen"
|
||||
msgid "Search a view..."
|
||||
msgstr "Ansicht suchen..."
|
||||
|
||||
#. js-lingui-id: N7Z3jc
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Search across indexed fields..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +7s4fw
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentEntityPickerDropdown.tsx
|
||||
msgid "Search agents"
|
||||
@@ -13043,6 +13091,11 @@ msgstr "Gruppe {groupValue} anzeigen"
|
||||
msgid "Show hidden groups"
|
||||
msgstr "Verborgene Gruppen anzeigen"
|
||||
|
||||
#. js-lingui-id: eOY8jq
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
msgid "Show hidden objects"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qi+g0a
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Show only rows with errors"
|
||||
@@ -13122,12 +13175,12 @@ msgid "Skill"
|
||||
msgstr "Skill"
|
||||
|
||||
#. js-lingui-id: h4t38o
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill activated"
|
||||
msgstr "Skill aktiviert"
|
||||
|
||||
#. js-lingui-id: /IoK74
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill deleted"
|
||||
msgstr "Skill gelöscht"
|
||||
|
||||
@@ -13144,6 +13197,7 @@ msgstr "Skill nicht gefunden"
|
||||
|
||||
#. js-lingui-id: PCSkw2
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skills"
|
||||
msgstr "Skills"
|
||||
|
||||
@@ -13289,10 +13343,10 @@ msgstr "Sortierungen"
|
||||
msgid "Source"
|
||||
msgstr "Quelle"
|
||||
|
||||
#. js-lingui-id: IEtmGM
|
||||
#. js-lingui-id: xqlr9R
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Spaces and comma - {spacesAndCommaExample}"
|
||||
msgstr "Leerzeichen und Komma - {spacesAndCommaExample}"
|
||||
msgid "Spaces and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 65A04M
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -13598,6 +13652,7 @@ msgstr "Summe"
|
||||
|
||||
#. js-lingui-id: DBC3t5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Sunday"
|
||||
msgstr "Sonntag"
|
||||
|
||||
@@ -13746,43 +13801,24 @@ msgstr "Systembeziehungen"
|
||||
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
msgid "System settings"
|
||||
msgstr "Systemeinstellungen"
|
||||
|
||||
#. js-lingui-id: E3AMmw
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
msgid "System settings - {systemDateFormatLabel}"
|
||||
msgstr "Systemeinstellungen - {systemDateFormatLabel}"
|
||||
|
||||
#. js-lingui-id: uKM6SP
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "System Settings - {systemNumberFormatLabel}"
|
||||
msgstr "Systemeinstellungen - {systemNumberFormatLabel}"
|
||||
|
||||
#. js-lingui-id: 0ZgB1e
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "System Settings - {systemTimeFormatLabel}"
|
||||
msgstr "Systemeinstellungen - {systemTimeFormatLabel}"
|
||||
|
||||
#. js-lingui-id: e89dEj
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Monday"
|
||||
msgstr "Systemeinstellungen - Montag"
|
||||
|
||||
#. js-lingui-id: o+Kvng
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Saturday"
|
||||
msgstr "Systemeinstellungen - Samstag"
|
||||
|
||||
#. js-lingui-id: gluMQd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Sunday"
|
||||
msgstr "Systemeinstellungen - Sonntag"
|
||||
|
||||
#. js-lingui-id: HuA3RU
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Tab"
|
||||
@@ -14833,6 +14869,13 @@ msgstr "Nicht gelistet"
|
||||
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
|
||||
msgstr "Schalten Sie Enterprise-Funktionen wie SSO, zeilenbasierte Sicherheit und Audit-Logs frei."
|
||||
|
||||
#. js-lingui-id: Te2H8x
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
#: src/modules/settings/developers/components/SettingsApiKeysFieldItemTableRow.tsx
|
||||
msgid "Unnamed API Key"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eQMhFX
|
||||
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
|
||||
msgid "unordered"
|
||||
@@ -15102,6 +15145,11 @@ msgstr "Verwenden Sie Authenticator-Apps und Browser-Erweiterungen wie 1Password
|
||||
msgid "Use best models only"
|
||||
msgstr "Nur die besten Modelle verwenden"
|
||||
|
||||
#. js-lingui-id: cVOIgV
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Use filter to see existing tools or create your own"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: oTTQsc
|
||||
#: src/modules/settings/domains/utils/getSubdomainValidationSchema.ts
|
||||
msgid "Use letter, number and dash only. Start and finish with a letter or a number"
|
||||
@@ -15641,6 +15689,11 @@ msgstr "Woche"
|
||||
msgid "weeks"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WKHqM+
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Weight"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nTuObL
|
||||
#: src/pages/auth/SignInUp.tsx
|
||||
msgid "Welcome to Twenty"
|
||||
|
||||
@@ -506,10 +506,10 @@ msgstr "1. Τύπος"
|
||||
msgid "10,000 workflow node executions"
|
||||
msgstr "10.000 εκτελέσεις κόμβου ροής εργασιών"
|
||||
|
||||
#. js-lingui-id: bM5lnW
|
||||
#. js-lingui-id: rU05hS
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "12h - {hour12Label}"
|
||||
msgstr "12ω - {hour12Label}"
|
||||
msgid "12h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 4EdXYs
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -542,10 +542,10 @@ msgstr "20.000 εκτελέσεις κόμβου ροής εργασιών"
|
||||
msgid "200 OK - {duration}ms"
|
||||
msgstr "200 OK - {duration}ms"
|
||||
|
||||
#. js-lingui-id: mwTnop
|
||||
#. js-lingui-id: W1k7eB
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "24h - {hour24Label}"
|
||||
msgstr "24ω - {hour24Label}"
|
||||
msgid "24h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QsMprd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -1456,6 +1456,11 @@ msgstr "Όλα τα μέλη"
|
||||
msgid "All Metadata"
|
||||
msgstr "Όλα τα Μεταδεδομένα"
|
||||
|
||||
#. js-lingui-id: zIk4M6
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
msgid "All objects"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: aFE/OW
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsTableHeader.tsx
|
||||
@@ -1746,6 +1751,11 @@ msgstr "Το κλειδί API αντιγράφηκε στο πρόχειρο"
|
||||
msgid "API key is required"
|
||||
msgstr "Απαιτείται κλειδί API"
|
||||
|
||||
#. js-lingui-id: sb6i1L
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "API key name cannot be empty"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Widx6n
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
msgid "API key roles"
|
||||
@@ -1811,10 +1821,10 @@ msgstr "API"
|
||||
msgid "APIs & Webhooks"
|
||||
msgstr "API & Webhooks"
|
||||
|
||||
#. js-lingui-id: BnUHmx
|
||||
#. js-lingui-id: 0UMxlw
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Apostrophe and dot - {apostropheAndDotExample}"
|
||||
msgstr "«Απόστροφος και τελεία - {apostropheAndDotExample}»"
|
||||
msgid "Apostrophe and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
@@ -2362,6 +2372,11 @@ msgstr "Επειδή αυτή η ροή εργασίας δεν χρησιμοπ
|
||||
msgid "Before"
|
||||
msgstr "Πριν"
|
||||
|
||||
#. js-lingui-id: KYr9vA
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Best"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NgFKo1
|
||||
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getMonthsDescription.ts
|
||||
msgid "between {startMonth} and {endMonth}"
|
||||
@@ -3109,10 +3124,10 @@ msgstr "στοιχείο μενού εντολών"
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr "Οι εντολές αντιγράφηκαν στο πρόχειρο"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#. js-lingui-id: QeCopv
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Commas and dot - {commasAndDotExample}"
|
||||
msgstr "Κόμματα και τελεία - {commasAndDotExample}"
|
||||
msgid "Commas and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NBdIgR
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
@@ -3218,6 +3233,11 @@ msgstr "Διαμόρφωση προεπιλεγμένων μοντέλων AI κ
|
||||
msgid "Configure fallback login methods for users with SSO bypass permissions"
|
||||
msgstr "Διαμόρφωση εναλλακτικών μεθόδων σύνδεσης για χρήστες με δικαιώματα παράκαμψης SSO"
|
||||
|
||||
#. js-lingui-id: OLqG0t
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
|
||||
msgid "Configure how this object appears in search results"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ghdb7+
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
|
||||
msgid "Configure how we should display your events in your calendar"
|
||||
@@ -4214,6 +4234,7 @@ msgstr "Τοποθεσία δεδομένων"
|
||||
#. js-lingui-id: r+cVRP
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/field-permissions/components/SettingsRolePermissionsObjectLevelObjectFieldPermissionTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Data type"
|
||||
msgstr "Τύπος δεδομένων"
|
||||
|
||||
@@ -4345,7 +4366,7 @@ msgstr "Απενεργοποίηση Workflow"
|
||||
#. js-lingui-id: yAT3be
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
|
||||
@@ -4363,6 +4384,11 @@ msgstr "Πληροφορίες αποσφαλμάτωσης"
|
||||
msgid "Decide which Sub-address fields you want to display"
|
||||
msgstr "Αποφασίστε ποια πεδία Υπο-διευθύνσεων θέλετε να εμφανίζονται"
|
||||
|
||||
#. js-lingui-id: Bn9+El
|
||||
#: src/modules/ai/components/AIChatEditorSection.tsx
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ovBPCi
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
|
||||
@@ -4931,10 +4957,10 @@ msgstr "Μην δημιουργείτε επαφές από/προς Gmail, Outl
|
||||
msgid "Don't sync emails from team@ support@ noreply@..."
|
||||
msgstr "Μην συγχρονίζετε emails από το team@ support@ noreply@..."
|
||||
|
||||
#. js-lingui-id: bd+DPX
|
||||
#. js-lingui-id: Wm78zZ
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Dots and comma - {dotsAndCommaExample}"
|
||||
msgstr "Τελείες και κόμμα - {dotsAndCommaExample}"
|
||||
msgid "Dots and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LE8J+K
|
||||
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
|
||||
@@ -6355,7 +6381,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
|
||||
msgstr "Αποτυχία ενεργοποίησης της άδειας Enterprise. Ελέγξτε το κλειδί σας ή επικοινωνήστε με την υποστήριξη."
|
||||
|
||||
#. js-lingui-id: vJiM7T
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to activate skill"
|
||||
msgstr "Αποτυχία ενεργοποίησης δεξιότητας"
|
||||
|
||||
@@ -6380,7 +6406,7 @@ msgid "Failed to delete jobs. Please try again later."
|
||||
msgstr "Αποτυχία διαγραφής εργασιών. Παρακαλώ δοκιμάστε ξανά αργότερα."
|
||||
|
||||
#. js-lingui-id: bmwWKk
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to delete skill"
|
||||
msgstr "Αποτυχία διαγραφής δεξιότητας"
|
||||
|
||||
@@ -6753,9 +6779,6 @@ msgid "Files"
|
||||
msgstr "Αρχεία"
|
||||
|
||||
#. js-lingui-id: o7J4JM
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/find-records-action/components/WorkflowEditActionFindRecords.tsx
|
||||
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
|
||||
#: src/modules/views/components/ViewBarFilterButton.tsx
|
||||
@@ -6772,6 +6795,11 @@ msgstr "Φίλτρο"
|
||||
msgid "Filter by event"
|
||||
msgstr "Φιλτράρισμα κατά συμβάν"
|
||||
|
||||
#. js-lingui-id: yZOiaW
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdown.tsx
|
||||
msgid "Filter by object type"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gVEHcL
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Filter by record ID"
|
||||
@@ -7512,6 +7540,11 @@ msgstr "Μεταδεδομένα XML Παρόχου Ταυτότητας"
|
||||
msgid "if"
|
||||
msgstr "εάν"
|
||||
|
||||
#. js-lingui-id: K6ChR5
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "If disabled, use advanced search filters to find these records"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ZfP/Ap
|
||||
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
|
||||
msgid "If this is unexpected, please verify your settings."
|
||||
@@ -7687,6 +7720,11 @@ msgstr "Ανενεργές επιλογές δεξιότητας"
|
||||
msgid "Inbox"
|
||||
msgstr "Εισερχόμενα"
|
||||
|
||||
#. js-lingui-id: Wyip/m
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Include in default search"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mtGDyy
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Incomplete"
|
||||
@@ -9108,6 +9146,7 @@ msgstr "Μοντέλα για αυτόν τον πάροχο. Ενεργοποι
|
||||
|
||||
#. js-lingui-id: hty0d5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Monday"
|
||||
msgstr "Δευτέρα"
|
||||
|
||||
@@ -9298,6 +9337,7 @@ msgstr "mySkill"
|
||||
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
|
||||
#: src/modules/settings/developers/components/SettingsApiKeysTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
@@ -9539,7 +9579,7 @@ msgstr "Νέα εγγραφή"
|
||||
#. js-lingui-id: gWnSyg
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "New Skill"
|
||||
msgstr "Νέα δεξιότητα"
|
||||
|
||||
@@ -10263,6 +10303,7 @@ msgstr "αντικείμενο"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Object"
|
||||
@@ -12124,6 +12165,7 @@ msgstr "Ρωσικά"
|
||||
|
||||
#. js-lingui-id: +5kO8P
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Saturday"
|
||||
msgstr "Σάββατο"
|
||||
|
||||
@@ -12189,6 +12231,7 @@ msgstr "SDK"
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/side-panel/hooks/useOpenRecordsSearchPageInSidePanel.ts
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentWorkspaceMemberPickerDropdown.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
@@ -12248,7 +12291,7 @@ msgid "Search a role..."
|
||||
msgstr "Αναζήτηση ρόλου..."
|
||||
|
||||
#. js-lingui-id: lJNEce
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Search a skill..."
|
||||
msgstr "Αναζήτηση δεξιότητας..."
|
||||
|
||||
@@ -12273,6 +12316,11 @@ msgstr "Αναζήτηση τύπου"
|
||||
msgid "Search a view..."
|
||||
msgstr "Αναζήτηση προβολής..."
|
||||
|
||||
#. js-lingui-id: N7Z3jc
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Search across indexed fields..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +7s4fw
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentEntityPickerDropdown.tsx
|
||||
msgid "Search agents"
|
||||
@@ -13045,6 +13093,11 @@ msgstr "Εμφάνιση ομάδας {groupValue}"
|
||||
msgid "Show hidden groups"
|
||||
msgstr "Προβολή κρυφών ομάδων"
|
||||
|
||||
#. js-lingui-id: eOY8jq
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
msgid "Show hidden objects"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qi+g0a
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Show only rows with errors"
|
||||
@@ -13124,12 +13177,12 @@ msgid "Skill"
|
||||
msgstr "Δεξιότητα"
|
||||
|
||||
#. js-lingui-id: h4t38o
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill activated"
|
||||
msgstr "Η δεξιότητα ενεργοποιήθηκε"
|
||||
|
||||
#. js-lingui-id: /IoK74
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill deleted"
|
||||
msgstr "Η δεξιότητα διαγράφηκε"
|
||||
|
||||
@@ -13146,6 +13199,7 @@ msgstr "Δεν βρέθηκε δεξιότητα"
|
||||
|
||||
#. js-lingui-id: PCSkw2
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skills"
|
||||
msgstr "Δεξιότητες"
|
||||
|
||||
@@ -13291,10 +13345,10 @@ msgstr "Ταξινομήσεις"
|
||||
msgid "Source"
|
||||
msgstr "Πηγή"
|
||||
|
||||
#. js-lingui-id: IEtmGM
|
||||
#. js-lingui-id: xqlr9R
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Spaces and comma - {spacesAndCommaExample}"
|
||||
msgstr "Κενά και κόμμα - {spacesAndCommaExample}"
|
||||
msgid "Spaces and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 65A04M
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -13600,6 +13654,7 @@ msgstr "Σύνολο"
|
||||
|
||||
#. js-lingui-id: DBC3t5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Sunday"
|
||||
msgstr "Κυριακή"
|
||||
|
||||
@@ -13748,43 +13803,24 @@ msgstr "Σχέσεις Συστήματος"
|
||||
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
msgid "System settings"
|
||||
msgstr "Ρυθμίσεις Συστήματος"
|
||||
|
||||
#. js-lingui-id: E3AMmw
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
msgid "System settings - {systemDateFormatLabel}"
|
||||
msgstr "Ρυθμίσεις συστήματος - {systemDateFormatLabel}"
|
||||
|
||||
#. js-lingui-id: uKM6SP
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "System Settings - {systemNumberFormatLabel}"
|
||||
msgstr "Ρυθμίσεις Συστήματος - {systemNumberFormatLabel}"
|
||||
|
||||
#. js-lingui-id: 0ZgB1e
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "System Settings - {systemTimeFormatLabel}"
|
||||
msgstr "Ρυθμίσεις Συστήματος - {systemTimeFormatLabel}"
|
||||
|
||||
#. js-lingui-id: e89dEj
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Monday"
|
||||
msgstr "Ρυθμίσεις συστήματος - Δευτέρα"
|
||||
|
||||
#. js-lingui-id: o+Kvng
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Saturday"
|
||||
msgstr "Ρυθμίσεις συστήματος - Σάββατο"
|
||||
|
||||
#. js-lingui-id: gluMQd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Sunday"
|
||||
msgstr "Ρυθμίσεις συστήματος - Κυριακή"
|
||||
|
||||
#. js-lingui-id: HuA3RU
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Tab"
|
||||
@@ -14837,6 +14873,13 @@ msgstr "Μη καταχωρισμένο"
|
||||
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
|
||||
msgstr "Ξεκλειδώστε δυνατότητες Enterprise όπως SSO, ασφάλεια σε επίπεδο γραμμής και αρχεία ελέγχου."
|
||||
|
||||
#. js-lingui-id: Te2H8x
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
#: src/modules/settings/developers/components/SettingsApiKeysFieldItemTableRow.tsx
|
||||
msgid "Unnamed API Key"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eQMhFX
|
||||
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
|
||||
msgid "unordered"
|
||||
@@ -15106,6 +15149,11 @@ msgstr "Χρησιμοποιήστε εφαρμογές ταυτοποίησης
|
||||
msgid "Use best models only"
|
||||
msgstr "Χρήση μόνο των καλύτερων μοντέλων"
|
||||
|
||||
#. js-lingui-id: cVOIgV
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Use filter to see existing tools or create your own"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: oTTQsc
|
||||
#: src/modules/settings/domains/utils/getSubdomainValidationSchema.ts
|
||||
msgid "Use letter, number and dash only. Start and finish with a letter or a number"
|
||||
@@ -15645,6 +15693,11 @@ msgstr "Εβδομάδα"
|
||||
msgid "weeks"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WKHqM+
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Weight"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nTuObL
|
||||
#: src/pages/auth/SignInUp.tsx
|
||||
msgid "Welcome to Twenty"
|
||||
|
||||
@@ -501,10 +501,10 @@ msgstr "1. Type"
|
||||
msgid "10,000 workflow node executions"
|
||||
msgstr "10,000 workflow node executions"
|
||||
|
||||
#. js-lingui-id: bM5lnW
|
||||
#. js-lingui-id: rU05hS
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "12h - {hour12Label}"
|
||||
msgstr "12h - {hour12Label}"
|
||||
msgid "12h"
|
||||
msgstr "12h"
|
||||
|
||||
#. js-lingui-id: 4EdXYs
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -537,10 +537,10 @@ msgstr "20,000 workflow node executions"
|
||||
msgid "200 OK - {duration}ms"
|
||||
msgstr "200 OK - {duration}ms"
|
||||
|
||||
#. js-lingui-id: mwTnop
|
||||
#. js-lingui-id: W1k7eB
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "24h - {hour24Label}"
|
||||
msgstr "24h - {hour24Label}"
|
||||
msgid "24h"
|
||||
msgstr "24h"
|
||||
|
||||
#. js-lingui-id: QsMprd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -1451,6 +1451,11 @@ msgstr "All Members"
|
||||
msgid "All Metadata"
|
||||
msgstr "All Metadata"
|
||||
|
||||
#. js-lingui-id: zIk4M6
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
msgid "All objects"
|
||||
msgstr "All objects"
|
||||
|
||||
#. js-lingui-id: aFE/OW
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsTableHeader.tsx
|
||||
@@ -1741,6 +1746,11 @@ msgstr "API Key copied to clipboard"
|
||||
msgid "API key is required"
|
||||
msgstr "API key is required"
|
||||
|
||||
#. js-lingui-id: sb6i1L
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "API key name cannot be empty"
|
||||
msgstr "API key name cannot be empty"
|
||||
|
||||
#. js-lingui-id: Widx6n
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
msgid "API key roles"
|
||||
@@ -1806,10 +1816,10 @@ msgstr "APIs"
|
||||
msgid "APIs & Webhooks"
|
||||
msgstr "APIs & Webhooks"
|
||||
|
||||
#. js-lingui-id: BnUHmx
|
||||
#. js-lingui-id: 0UMxlw
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Apostrophe and dot - {apostropheAndDotExample}"
|
||||
msgstr "Apostrophe and dot - {apostropheAndDotExample}"
|
||||
msgid "Apostrophe and dot"
|
||||
msgstr "Apostrophe and dot"
|
||||
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
@@ -2357,6 +2367,11 @@ msgstr "Because this workflow is not using a manual trigger, the form will not o
|
||||
msgid "Before"
|
||||
msgstr "Before"
|
||||
|
||||
#. js-lingui-id: KYr9vA
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Best"
|
||||
msgstr "Best"
|
||||
|
||||
#. js-lingui-id: NgFKo1
|
||||
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getMonthsDescription.ts
|
||||
msgid "between {startMonth} and {endMonth}"
|
||||
@@ -3104,10 +3119,10 @@ msgstr "command menu item"
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr "Commands copied to clipboard"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#. js-lingui-id: QeCopv
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Commas and dot - {commasAndDotExample}"
|
||||
msgstr "Commas and dot - {commasAndDotExample}"
|
||||
msgid "Commas and dot"
|
||||
msgstr "Commas and dot"
|
||||
|
||||
#. js-lingui-id: NBdIgR
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
@@ -3213,6 +3228,11 @@ msgstr "Configure default AI models and availability"
|
||||
msgid "Configure fallback login methods for users with SSO bypass permissions"
|
||||
msgstr "Configure fallback login methods for users with SSO bypass permissions"
|
||||
|
||||
#. js-lingui-id: OLqG0t
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
|
||||
msgid "Configure how this object appears in search results"
|
||||
msgstr "Configure how this object appears in search results"
|
||||
|
||||
#. js-lingui-id: ghdb7+
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
|
||||
msgid "Configure how we should display your events in your calendar"
|
||||
@@ -4209,6 +4229,7 @@ msgstr "Data Residency"
|
||||
#. js-lingui-id: r+cVRP
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/field-permissions/components/SettingsRolePermissionsObjectLevelObjectFieldPermissionTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Data type"
|
||||
msgstr "Data type"
|
||||
|
||||
@@ -4340,7 +4361,7 @@ msgstr "Deactivate Workflow"
|
||||
#. js-lingui-id: yAT3be
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
|
||||
@@ -4358,6 +4379,11 @@ msgstr "Debug Info"
|
||||
msgid "Decide which Sub-address fields you want to display"
|
||||
msgstr "Decide which Sub-address fields you want to display"
|
||||
|
||||
#. js-lingui-id: Bn9+El
|
||||
#: src/modules/ai/components/AIChatEditorSection.tsx
|
||||
msgid "default"
|
||||
msgstr "default"
|
||||
|
||||
#. js-lingui-id: ovBPCi
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
|
||||
@@ -4926,10 +4952,10 @@ msgstr "Don't create contacts from/to Gmail, Outlook emails"
|
||||
msgid "Don't sync emails from team@ support@ noreply@..."
|
||||
msgstr "Don't sync emails from team@ support@ noreply@..."
|
||||
|
||||
#. js-lingui-id: bd+DPX
|
||||
#. js-lingui-id: Wm78zZ
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Dots and comma - {dotsAndCommaExample}"
|
||||
msgstr "Dots and comma - {dotsAndCommaExample}"
|
||||
msgid "Dots and comma"
|
||||
msgstr "Dots and comma"
|
||||
|
||||
#. js-lingui-id: LE8J+K
|
||||
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
|
||||
@@ -6350,7 +6376,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
|
||||
msgstr "Failed to activate enterprise license. Please check your key or contact support."
|
||||
|
||||
#. js-lingui-id: vJiM7T
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to activate skill"
|
||||
msgstr "Failed to activate skill"
|
||||
|
||||
@@ -6375,7 +6401,7 @@ msgid "Failed to delete jobs. Please try again later."
|
||||
msgstr "Failed to delete jobs. Please try again later."
|
||||
|
||||
#. js-lingui-id: bmwWKk
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to delete skill"
|
||||
msgstr "Failed to delete skill"
|
||||
|
||||
@@ -6748,9 +6774,6 @@ msgid "Files"
|
||||
msgstr "Files"
|
||||
|
||||
#. js-lingui-id: o7J4JM
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/find-records-action/components/WorkflowEditActionFindRecords.tsx
|
||||
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
|
||||
#: src/modules/views/components/ViewBarFilterButton.tsx
|
||||
@@ -6767,6 +6790,11 @@ msgstr "Filter"
|
||||
msgid "Filter by event"
|
||||
msgstr "Filter by event"
|
||||
|
||||
#. js-lingui-id: yZOiaW
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdown.tsx
|
||||
msgid "Filter by object type"
|
||||
msgstr "Filter by object type"
|
||||
|
||||
#. js-lingui-id: gVEHcL
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Filter by record ID"
|
||||
@@ -7507,6 +7535,11 @@ msgstr "Identity Provider Metadata XML"
|
||||
msgid "if"
|
||||
msgstr "if"
|
||||
|
||||
#. js-lingui-id: K6ChR5
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "If disabled, use advanced search filters to find these records"
|
||||
msgstr "If disabled, use advanced search filters to find these records"
|
||||
|
||||
#. js-lingui-id: ZfP/Ap
|
||||
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
|
||||
msgid "If this is unexpected, please verify your settings."
|
||||
@@ -7682,6 +7715,11 @@ msgstr "Inactive Skill Options"
|
||||
msgid "Inbox"
|
||||
msgstr "Inbox"
|
||||
|
||||
#. js-lingui-id: Wyip/m
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Include in default search"
|
||||
msgstr "Include in default search"
|
||||
|
||||
#. js-lingui-id: mtGDyy
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Incomplete"
|
||||
@@ -9103,6 +9141,7 @@ msgstr "Models for this provider. Toggle to enable or disable."
|
||||
|
||||
#. js-lingui-id: hty0d5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Monday"
|
||||
msgstr "Monday"
|
||||
|
||||
@@ -9293,6 +9332,7 @@ msgstr "mySkill"
|
||||
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
|
||||
#: src/modules/settings/developers/components/SettingsApiKeysTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
@@ -9534,7 +9574,7 @@ msgstr "New record"
|
||||
#. js-lingui-id: gWnSyg
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "New Skill"
|
||||
msgstr "New Skill"
|
||||
|
||||
@@ -10258,6 +10298,7 @@ msgstr "object"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Object"
|
||||
@@ -12119,6 +12160,7 @@ msgstr "Russian"
|
||||
|
||||
#. js-lingui-id: +5kO8P
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Saturday"
|
||||
msgstr "Saturday"
|
||||
|
||||
@@ -12184,6 +12226,7 @@ msgstr "SDK"
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/side-panel/hooks/useOpenRecordsSearchPageInSidePanel.ts
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentWorkspaceMemberPickerDropdown.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
@@ -12243,7 +12286,7 @@ msgid "Search a role..."
|
||||
msgstr "Search a role..."
|
||||
|
||||
#. js-lingui-id: lJNEce
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Search a skill..."
|
||||
msgstr "Search a skill..."
|
||||
|
||||
@@ -12268,6 +12311,11 @@ msgstr "Search a type"
|
||||
msgid "Search a view..."
|
||||
msgstr "Search a view..."
|
||||
|
||||
#. js-lingui-id: N7Z3jc
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Search across indexed fields..."
|
||||
msgstr "Search across indexed fields..."
|
||||
|
||||
#. js-lingui-id: +7s4fw
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentEntityPickerDropdown.tsx
|
||||
msgid "Search agents"
|
||||
@@ -13038,6 +13086,11 @@ msgstr "Show group {groupValue}"
|
||||
msgid "Show hidden groups"
|
||||
msgstr "Show hidden groups"
|
||||
|
||||
#. js-lingui-id: eOY8jq
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
msgid "Show hidden objects"
|
||||
msgstr "Show hidden objects"
|
||||
|
||||
#. js-lingui-id: qi+g0a
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Show only rows with errors"
|
||||
@@ -13117,12 +13170,12 @@ msgid "Skill"
|
||||
msgstr "Skill"
|
||||
|
||||
#. js-lingui-id: h4t38o
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill activated"
|
||||
msgstr "Skill activated"
|
||||
|
||||
#. js-lingui-id: /IoK74
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill deleted"
|
||||
msgstr "Skill deleted"
|
||||
|
||||
@@ -13139,6 +13192,7 @@ msgstr "Skill not found"
|
||||
|
||||
#. js-lingui-id: PCSkw2
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skills"
|
||||
msgstr "Skills"
|
||||
|
||||
@@ -13284,10 +13338,10 @@ msgstr "Sorts"
|
||||
msgid "Source"
|
||||
msgstr "Source"
|
||||
|
||||
#. js-lingui-id: IEtmGM
|
||||
#. js-lingui-id: xqlr9R
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Spaces and comma - {spacesAndCommaExample}"
|
||||
msgstr "Spaces and comma - {spacesAndCommaExample}"
|
||||
msgid "Spaces and comma"
|
||||
msgstr "Spaces and comma"
|
||||
|
||||
#. js-lingui-id: 65A04M
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -13593,6 +13647,7 @@ msgstr "Sum"
|
||||
|
||||
#. js-lingui-id: DBC3t5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Sunday"
|
||||
msgstr "Sunday"
|
||||
|
||||
@@ -13741,43 +13796,24 @@ msgstr "System relations"
|
||||
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
msgid "System settings"
|
||||
msgstr "System settings"
|
||||
|
||||
#. js-lingui-id: E3AMmw
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
msgid "System settings - {systemDateFormatLabel}"
|
||||
msgstr "System settings - {systemDateFormatLabel}"
|
||||
|
||||
#. js-lingui-id: uKM6SP
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "System Settings - {systemNumberFormatLabel}"
|
||||
msgstr "System Settings - {systemNumberFormatLabel}"
|
||||
|
||||
#. js-lingui-id: 0ZgB1e
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "System Settings - {systemTimeFormatLabel}"
|
||||
msgstr "System Settings - {systemTimeFormatLabel}"
|
||||
|
||||
#. js-lingui-id: e89dEj
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Monday"
|
||||
msgstr "System settings - Monday"
|
||||
|
||||
#. js-lingui-id: o+Kvng
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Saturday"
|
||||
msgstr "System settings - Saturday"
|
||||
|
||||
#. js-lingui-id: gluMQd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Sunday"
|
||||
msgstr "System settings - Sunday"
|
||||
|
||||
#. js-lingui-id: HuA3RU
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Tab"
|
||||
@@ -14830,6 +14866,13 @@ msgstr "Unlisted"
|
||||
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: Te2H8x
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
#: src/modules/settings/developers/components/SettingsApiKeysFieldItemTableRow.tsx
|
||||
msgid "Unnamed API Key"
|
||||
msgstr "Unnamed API Key"
|
||||
|
||||
#. js-lingui-id: eQMhFX
|
||||
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
|
||||
msgid "unordered"
|
||||
@@ -15099,6 +15142,11 @@ msgstr "Use authenticator apps and browser extensions like 1Password, Authy, Mic
|
||||
msgid "Use best models only"
|
||||
msgstr "Use best models only"
|
||||
|
||||
#. js-lingui-id: cVOIgV
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Use filter to see existing tools or create your own"
|
||||
msgstr "Use filter to see existing tools or create your own"
|
||||
|
||||
#. js-lingui-id: oTTQsc
|
||||
#: src/modules/settings/domains/utils/getSubdomainValidationSchema.ts
|
||||
msgid "Use letter, number and dash only. Start and finish with a letter or a number"
|
||||
@@ -15638,6 +15686,11 @@ msgstr "Week"
|
||||
msgid "weeks"
|
||||
msgstr "weeks"
|
||||
|
||||
#. js-lingui-id: WKHqM+
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Weight"
|
||||
msgstr "Weight"
|
||||
|
||||
#. js-lingui-id: nTuObL
|
||||
#: src/pages/auth/SignInUp.tsx
|
||||
msgid "Welcome to Twenty"
|
||||
|
||||
@@ -506,10 +506,10 @@ msgstr "1. Tipo"
|
||||
msgid "10,000 workflow node executions"
|
||||
msgstr "10.000 ejecuciones de nodos de workflow"
|
||||
|
||||
#. js-lingui-id: bM5lnW
|
||||
#. js-lingui-id: rU05hS
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "12h - {hour12Label}"
|
||||
msgstr "12h - {hour12Label}"
|
||||
msgid "12h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 4EdXYs
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -542,10 +542,10 @@ msgstr "20.000 ejecuciones de nodos de workflow"
|
||||
msgid "200 OK - {duration}ms"
|
||||
msgstr "200 OK - {duration}ms"
|
||||
|
||||
#. js-lingui-id: mwTnop
|
||||
#. js-lingui-id: W1k7eB
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "24h - {hour24Label}"
|
||||
msgstr "24h - {hour24Label}"
|
||||
msgid "24h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QsMprd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -1456,6 +1456,11 @@ msgstr "Todos los miembros"
|
||||
msgid "All Metadata"
|
||||
msgstr "Todos los metadatos"
|
||||
|
||||
#. js-lingui-id: zIk4M6
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
msgid "All objects"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: aFE/OW
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsTableHeader.tsx
|
||||
@@ -1746,6 +1751,11 @@ msgstr "Clave API copiada al portapapeles"
|
||||
msgid "API key is required"
|
||||
msgstr "La clave de API es obligatoria"
|
||||
|
||||
#. js-lingui-id: sb6i1L
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "API key name cannot be empty"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Widx6n
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
msgid "API key roles"
|
||||
@@ -1811,10 +1821,10 @@ msgstr "API"
|
||||
msgid "APIs & Webhooks"
|
||||
msgstr "API y Webhooks"
|
||||
|
||||
#. js-lingui-id: BnUHmx
|
||||
#. js-lingui-id: 0UMxlw
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Apostrophe and dot - {apostropheAndDotExample}"
|
||||
msgstr "Apóstrofe y punto - {apostropheAndDotExample}"
|
||||
msgid "Apostrophe and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
@@ -2362,6 +2372,11 @@ msgstr "Dado que este flujo de trabajo no utiliza un desencadenador manual, el f
|
||||
msgid "Before"
|
||||
msgstr "Antes"
|
||||
|
||||
#. js-lingui-id: KYr9vA
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Best"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NgFKo1
|
||||
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getMonthsDescription.ts
|
||||
msgid "between {startMonth} and {endMonth}"
|
||||
@@ -3109,10 +3124,10 @@ msgstr "elemento del menú de comandos"
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr "Comandos copiados al portapapeles"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#. js-lingui-id: QeCopv
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Commas and dot - {commasAndDotExample}"
|
||||
msgstr "Comas y punto - {commasAndDotExample}"
|
||||
msgid "Commas and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NBdIgR
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
@@ -3218,6 +3233,11 @@ msgstr "Configura los modelos de IA predeterminados y su disponibilidad"
|
||||
msgid "Configure fallback login methods for users with SSO bypass permissions"
|
||||
msgstr "Configurar métodos de inicio de sesión de respaldo para usuarios con permisos para omitir SSO"
|
||||
|
||||
#. js-lingui-id: OLqG0t
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
|
||||
msgid "Configure how this object appears in search results"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ghdb7+
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
|
||||
msgid "Configure how we should display your events in your calendar"
|
||||
@@ -4214,6 +4234,7 @@ msgstr "Residencia de datos"
|
||||
#. js-lingui-id: r+cVRP
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/field-permissions/components/SettingsRolePermissionsObjectLevelObjectFieldPermissionTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Data type"
|
||||
msgstr "Tipo de datos"
|
||||
|
||||
@@ -4345,7 +4366,7 @@ msgstr "Desactivar workflow"
|
||||
#. js-lingui-id: yAT3be
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
|
||||
@@ -4363,6 +4384,11 @@ msgstr "Información de depuración"
|
||||
msgid "Decide which Sub-address fields you want to display"
|
||||
msgstr "Decide qué campos de subdirección deseas mostrar"
|
||||
|
||||
#. js-lingui-id: Bn9+El
|
||||
#: src/modules/ai/components/AIChatEditorSection.tsx
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ovBPCi
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
|
||||
@@ -4931,10 +4957,10 @@ msgstr "No crear contactos de/a correos de Gmail, Outlook"
|
||||
msgid "Don't sync emails from team@ support@ noreply@..."
|
||||
msgstr "No sincronizar correos de team@ support@ noreply@..."
|
||||
|
||||
#. js-lingui-id: bd+DPX
|
||||
#. js-lingui-id: Wm78zZ
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Dots and comma - {dotsAndCommaExample}"
|
||||
msgstr "Puntos y coma - {dotsAndCommaExample}"
|
||||
msgid "Dots and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LE8J+K
|
||||
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
|
||||
@@ -6355,7 +6381,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
|
||||
msgstr "No se pudo activar la licencia Enterprise. Comprueba tu clave o ponte en contacto con soporte."
|
||||
|
||||
#. js-lingui-id: vJiM7T
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to activate skill"
|
||||
msgstr "No se pudo activar la habilidad"
|
||||
|
||||
@@ -6380,7 +6406,7 @@ msgid "Failed to delete jobs. Please try again later."
|
||||
msgstr "Error al eliminar trabajos. Por favor, inténtelo de nuevo más tarde."
|
||||
|
||||
#. js-lingui-id: bmwWKk
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to delete skill"
|
||||
msgstr "No se pudo eliminar la habilidad"
|
||||
|
||||
@@ -6753,9 +6779,6 @@ msgid "Files"
|
||||
msgstr "Archivos"
|
||||
|
||||
#. js-lingui-id: o7J4JM
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/find-records-action/components/WorkflowEditActionFindRecords.tsx
|
||||
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
|
||||
#: src/modules/views/components/ViewBarFilterButton.tsx
|
||||
@@ -6772,6 +6795,11 @@ msgstr "Filtro"
|
||||
msgid "Filter by event"
|
||||
msgstr "Filtrar por evento"
|
||||
|
||||
#. js-lingui-id: yZOiaW
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdown.tsx
|
||||
msgid "Filter by object type"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gVEHcL
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Filter by record ID"
|
||||
@@ -7512,6 +7540,11 @@ msgstr "XML de Metadatos del Proveedor de Identidad"
|
||||
msgid "if"
|
||||
msgstr "si"
|
||||
|
||||
#. js-lingui-id: K6ChR5
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "If disabled, use advanced search filters to find these records"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ZfP/Ap
|
||||
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
|
||||
msgid "If this is unexpected, please verify your settings."
|
||||
@@ -7687,6 +7720,11 @@ msgstr "Opciones de habilidad inactiva"
|
||||
msgid "Inbox"
|
||||
msgstr "Bandeja de entrada"
|
||||
|
||||
#. js-lingui-id: Wyip/m
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Include in default search"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mtGDyy
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Incomplete"
|
||||
@@ -9108,6 +9146,7 @@ msgstr "Modelos para este proveedor. Usa el interruptor para habilitarlos o desh
|
||||
|
||||
#. js-lingui-id: hty0d5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Monday"
|
||||
msgstr "Lunes"
|
||||
|
||||
@@ -9298,6 +9337,7 @@ msgstr "mySkill"
|
||||
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
|
||||
#: src/modules/settings/developers/components/SettingsApiKeysTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
@@ -9539,7 +9579,7 @@ msgstr "Nuevo registro"
|
||||
#. js-lingui-id: gWnSyg
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "New Skill"
|
||||
msgstr "Nueva habilidad"
|
||||
|
||||
@@ -10263,6 +10303,7 @@ msgstr "objeto"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Object"
|
||||
@@ -12124,6 +12165,7 @@ msgstr "Ruso"
|
||||
|
||||
#. js-lingui-id: +5kO8P
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Saturday"
|
||||
msgstr "Sábado"
|
||||
|
||||
@@ -12189,6 +12231,7 @@ msgstr "SDK"
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/side-panel/hooks/useOpenRecordsSearchPageInSidePanel.ts
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentWorkspaceMemberPickerDropdown.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
@@ -12248,7 +12291,7 @@ msgid "Search a role..."
|
||||
msgstr "Buscar un rol..."
|
||||
|
||||
#. js-lingui-id: lJNEce
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Search a skill..."
|
||||
msgstr "Buscar una habilidad..."
|
||||
|
||||
@@ -12273,6 +12316,11 @@ msgstr "Buscar un tipo"
|
||||
msgid "Search a view..."
|
||||
msgstr "Buscar una vista..."
|
||||
|
||||
#. js-lingui-id: N7Z3jc
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Search across indexed fields..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +7s4fw
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentEntityPickerDropdown.tsx
|
||||
msgid "Search agents"
|
||||
@@ -13043,6 +13091,11 @@ msgstr "Mostrar grupo {groupValue}"
|
||||
msgid "Show hidden groups"
|
||||
msgstr "Mostrar grupos ocultos"
|
||||
|
||||
#. js-lingui-id: eOY8jq
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
msgid "Show hidden objects"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qi+g0a
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Show only rows with errors"
|
||||
@@ -13122,12 +13175,12 @@ msgid "Skill"
|
||||
msgstr "Habilidad"
|
||||
|
||||
#. js-lingui-id: h4t38o
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill activated"
|
||||
msgstr "Habilidad activada"
|
||||
|
||||
#. js-lingui-id: /IoK74
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill deleted"
|
||||
msgstr "Habilidad eliminada"
|
||||
|
||||
@@ -13144,6 +13197,7 @@ msgstr "No se encontró la habilidad"
|
||||
|
||||
#. js-lingui-id: PCSkw2
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skills"
|
||||
msgstr "Habilidades"
|
||||
|
||||
@@ -13289,10 +13343,10 @@ msgstr "Criterios de ordenación"
|
||||
msgid "Source"
|
||||
msgstr "Fuente"
|
||||
|
||||
#. js-lingui-id: IEtmGM
|
||||
#. js-lingui-id: xqlr9R
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Spaces and comma - {spacesAndCommaExample}"
|
||||
msgstr "Espacios y coma - {spacesAndCommaExample}"
|
||||
msgid "Spaces and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 65A04M
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -13598,6 +13652,7 @@ msgstr "Suma"
|
||||
|
||||
#. js-lingui-id: DBC3t5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Sunday"
|
||||
msgstr "Domingo"
|
||||
|
||||
@@ -13746,43 +13801,24 @@ msgstr "Relaciones del sistema"
|
||||
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
msgid "System settings"
|
||||
msgstr "Configuración del sistema"
|
||||
|
||||
#. js-lingui-id: E3AMmw
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
msgid "System settings - {systemDateFormatLabel}"
|
||||
msgstr "Configuración del sistema - {systemDateFormatLabel}"
|
||||
|
||||
#. js-lingui-id: uKM6SP
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "System Settings - {systemNumberFormatLabel}"
|
||||
msgstr "Configuración del sistema - {systemNumberFormatLabel}"
|
||||
|
||||
#. js-lingui-id: 0ZgB1e
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "System Settings - {systemTimeFormatLabel}"
|
||||
msgstr "Configuración del sistema - {systemTimeFormatLabel}"
|
||||
|
||||
#. js-lingui-id: e89dEj
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Monday"
|
||||
msgstr "Configuración del sistema - Lunes"
|
||||
|
||||
#. js-lingui-id: o+Kvng
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Saturday"
|
||||
msgstr "Configuración del sistema - Sábado"
|
||||
|
||||
#. js-lingui-id: gluMQd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Sunday"
|
||||
msgstr "Configuración del sistema - Domingo"
|
||||
|
||||
#. js-lingui-id: HuA3RU
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Tab"
|
||||
@@ -14835,6 +14871,13 @@ msgstr "No listadas"
|
||||
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
|
||||
msgstr "Desbloquea funciones Enterprise como SSO, seguridad a nivel de fila y registros de auditoría."
|
||||
|
||||
#. js-lingui-id: Te2H8x
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
#: src/modules/settings/developers/components/SettingsApiKeysFieldItemTableRow.tsx
|
||||
msgid "Unnamed API Key"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eQMhFX
|
||||
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
|
||||
msgid "unordered"
|
||||
@@ -15104,6 +15147,11 @@ msgstr "Usa aplicaciones de autenticación y extensiones de navegador como 1Pass
|
||||
msgid "Use best models only"
|
||||
msgstr "Usar solo los mejores modelos"
|
||||
|
||||
#. js-lingui-id: cVOIgV
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Use filter to see existing tools or create your own"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: oTTQsc
|
||||
#: src/modules/settings/domains/utils/getSubdomainValidationSchema.ts
|
||||
msgid "Use letter, number and dash only. Start and finish with a letter or a number"
|
||||
@@ -15643,6 +15691,11 @@ msgstr "Semana"
|
||||
msgid "weeks"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WKHqM+
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Weight"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nTuObL
|
||||
#: src/pages/auth/SignInUp.tsx
|
||||
msgid "Welcome to Twenty"
|
||||
|
||||
@@ -506,10 +506,10 @@ msgstr "1. Kirjoita"
|
||||
msgid "10,000 workflow node executions"
|
||||
msgstr "10 000 työnkulun solmun suoritusta"
|
||||
|
||||
#. js-lingui-id: bM5lnW
|
||||
#. js-lingui-id: rU05hS
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "12h - {hour12Label}"
|
||||
msgstr "12h - {hour12Label}"
|
||||
msgid "12h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 4EdXYs
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -542,10 +542,10 @@ msgstr "20 000 työnkulun solmun suoritusta"
|
||||
msgid "200 OK - {duration}ms"
|
||||
msgstr "200 OK – {duration} ms"
|
||||
|
||||
#. js-lingui-id: mwTnop
|
||||
#. js-lingui-id: W1k7eB
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "24h - {hour24Label}"
|
||||
msgstr "24h - {hour24Label}"
|
||||
msgid "24h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QsMprd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -1456,6 +1456,11 @@ msgstr "Kaikki jäsenet"
|
||||
msgid "All Metadata"
|
||||
msgstr "Kaikki metatiedot"
|
||||
|
||||
#. js-lingui-id: zIk4M6
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
msgid "All objects"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: aFE/OW
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsTableHeader.tsx
|
||||
@@ -1746,6 +1751,11 @@ msgstr "API-avain kopioitu leikepöydälle"
|
||||
msgid "API key is required"
|
||||
msgstr "API-avain vaaditaan"
|
||||
|
||||
#. js-lingui-id: sb6i1L
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "API key name cannot be empty"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Widx6n
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
msgid "API key roles"
|
||||
@@ -1811,10 +1821,10 @@ msgstr "Rajapinnat"
|
||||
msgid "APIs & Webhooks"
|
||||
msgstr "API:t & Webhookit"
|
||||
|
||||
#. js-lingui-id: BnUHmx
|
||||
#. js-lingui-id: 0UMxlw
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Apostrophe and dot - {apostropheAndDotExample}"
|
||||
msgstr "Apostrofi ja piste - {apostropheAndDotExample}"
|
||||
msgid "Apostrophe and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
@@ -2362,6 +2372,11 @@ msgstr "Koska tämä työnkulku ei käytä manuaalista käynnistystä, lomake ei
|
||||
msgid "Before"
|
||||
msgstr "Ennen"
|
||||
|
||||
#. js-lingui-id: KYr9vA
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Best"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NgFKo1
|
||||
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getMonthsDescription.ts
|
||||
msgid "between {startMonth} and {endMonth}"
|
||||
@@ -3109,10 +3124,10 @@ msgstr "komentovalikon valikkokohta"
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr "Komennot kopioitu leikepöydälle"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#. js-lingui-id: QeCopv
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Commas and dot - {commasAndDotExample}"
|
||||
msgstr "Pilkkuja ja piste - {commasAndDotExample}"
|
||||
msgid "Commas and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NBdIgR
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
@@ -3218,6 +3233,11 @@ msgstr "Määritä oletus-AI-mallit ja niiden saatavuus"
|
||||
msgid "Configure fallback login methods for users with SSO bypass permissions"
|
||||
msgstr "Määritä varasijaiset kirjautumismenetelmät käyttäjille, joilla on SSO-ohituksen käyttöoikeudet"
|
||||
|
||||
#. js-lingui-id: OLqG0t
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
|
||||
msgid "Configure how this object appears in search results"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ghdb7+
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
|
||||
msgid "Configure how we should display your events in your calendar"
|
||||
@@ -4214,6 +4234,7 @@ msgstr "Tietojen sijainti"
|
||||
#. js-lingui-id: r+cVRP
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/field-permissions/components/SettingsRolePermissionsObjectLevelObjectFieldPermissionTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Data type"
|
||||
msgstr "Tietotyyppi"
|
||||
|
||||
@@ -4345,7 +4366,7 @@ msgstr "Poista työnkulku käytöstä"
|
||||
#. js-lingui-id: yAT3be
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
|
||||
@@ -4363,6 +4384,11 @@ msgstr "Vianetsintätiedot"
|
||||
msgid "Decide which Sub-address fields you want to display"
|
||||
msgstr "Päätä, mitkä alikentät haluat näyttää"
|
||||
|
||||
#. js-lingui-id: Bn9+El
|
||||
#: src/modules/ai/components/AIChatEditorSection.tsx
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ovBPCi
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
|
||||
@@ -4931,10 +4957,10 @@ msgstr "Älä luo yhteystietoja Gmailista tai Outlook-sähköposteista"
|
||||
msgid "Don't sync emails from team@ support@ noreply@..."
|
||||
msgstr "Älä synkronoi sähköposteja osoitteista team@ support@ noreply@..."
|
||||
|
||||
#. js-lingui-id: bd+DPX
|
||||
#. js-lingui-id: Wm78zZ
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Dots and comma - {dotsAndCommaExample}"
|
||||
msgstr "Pisteitä ja pilkku - {dotsAndCommaExample}"
|
||||
msgid "Dots and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LE8J+K
|
||||
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
|
||||
@@ -6355,7 +6381,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
|
||||
msgstr "Enterprise-lisenssin aktivointi epäonnistui. Tarkista avaimesi tai ota yhteyttä tukeen."
|
||||
|
||||
#. js-lingui-id: vJiM7T
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to activate skill"
|
||||
msgstr "Taidon aktivointi epäonnistui"
|
||||
|
||||
@@ -6380,7 +6406,7 @@ msgid "Failed to delete jobs. Please try again later."
|
||||
msgstr "Epäonnistui töiden poistamisessa. Yritä myöhemmin uudelleen."
|
||||
|
||||
#. js-lingui-id: bmwWKk
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to delete skill"
|
||||
msgstr "Taidon poistaminen epäonnistui"
|
||||
|
||||
@@ -6753,9 +6779,6 @@ msgid "Files"
|
||||
msgstr "Tiedostot"
|
||||
|
||||
#. js-lingui-id: o7J4JM
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/find-records-action/components/WorkflowEditActionFindRecords.tsx
|
||||
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
|
||||
#: src/modules/views/components/ViewBarFilterButton.tsx
|
||||
@@ -6772,6 +6795,11 @@ msgstr "Suodata"
|
||||
msgid "Filter by event"
|
||||
msgstr "Suodata tapahtuman mukaan"
|
||||
|
||||
#. js-lingui-id: yZOiaW
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdown.tsx
|
||||
msgid "Filter by object type"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gVEHcL
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Filter by record ID"
|
||||
@@ -7512,6 +7540,11 @@ msgstr "Identiteetintarjoajan Metadata XML"
|
||||
msgid "if"
|
||||
msgstr "jos"
|
||||
|
||||
#. js-lingui-id: K6ChR5
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "If disabled, use advanced search filters to find these records"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ZfP/Ap
|
||||
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
|
||||
msgid "If this is unexpected, please verify your settings."
|
||||
@@ -7687,6 +7720,11 @@ msgstr "Passiivisen taidon valinnat"
|
||||
msgid "Inbox"
|
||||
msgstr "Saapuneet"
|
||||
|
||||
#. js-lingui-id: Wyip/m
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Include in default search"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mtGDyy
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Incomplete"
|
||||
@@ -9108,6 +9146,7 @@ msgstr "Tämän tarjoajan mallit. Ota käyttöön tai poista käytöstä kytkime
|
||||
|
||||
#. js-lingui-id: hty0d5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Monday"
|
||||
msgstr "Maanantai"
|
||||
|
||||
@@ -9298,6 +9337,7 @@ msgstr "mySkill"
|
||||
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
|
||||
#: src/modules/settings/developers/components/SettingsApiKeysTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
@@ -9539,7 +9579,7 @@ msgstr "Uusi tietue"
|
||||
#. js-lingui-id: gWnSyg
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "New Skill"
|
||||
msgstr "Uusi taito"
|
||||
|
||||
@@ -10263,6 +10303,7 @@ msgstr "objekti"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Object"
|
||||
@@ -12124,6 +12165,7 @@ msgstr "Venäjä"
|
||||
|
||||
#. js-lingui-id: +5kO8P
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Saturday"
|
||||
msgstr "Lauantai"
|
||||
|
||||
@@ -12189,6 +12231,7 @@ msgstr "SDK"
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/side-panel/hooks/useOpenRecordsSearchPageInSidePanel.ts
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentWorkspaceMemberPickerDropdown.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
@@ -12248,7 +12291,7 @@ msgid "Search a role..."
|
||||
msgstr "Etsi roolia..."
|
||||
|
||||
#. js-lingui-id: lJNEce
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Search a skill..."
|
||||
msgstr "Etsi taitoa..."
|
||||
|
||||
@@ -12273,6 +12316,11 @@ msgstr "Etsi tyyppiä"
|
||||
msgid "Search a view..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: N7Z3jc
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Search across indexed fields..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +7s4fw
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentEntityPickerDropdown.tsx
|
||||
msgid "Search agents"
|
||||
@@ -13043,6 +13091,11 @@ msgstr "Näytä ryhmä {groupValue}"
|
||||
msgid "Show hidden groups"
|
||||
msgstr "Näytä piilotetut ryhmät"
|
||||
|
||||
#. js-lingui-id: eOY8jq
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
msgid "Show hidden objects"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qi+g0a
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Show only rows with errors"
|
||||
@@ -13122,12 +13175,12 @@ msgid "Skill"
|
||||
msgstr "Taito"
|
||||
|
||||
#. js-lingui-id: h4t38o
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill activated"
|
||||
msgstr "Taito aktivoitu"
|
||||
|
||||
#. js-lingui-id: /IoK74
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill deleted"
|
||||
msgstr "Taito poistettu"
|
||||
|
||||
@@ -13144,6 +13197,7 @@ msgstr "Taitoa ei löytynyt"
|
||||
|
||||
#. js-lingui-id: PCSkw2
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skills"
|
||||
msgstr "Taidot"
|
||||
|
||||
@@ -13289,10 +13343,10 @@ msgstr "Lajittelut"
|
||||
msgid "Source"
|
||||
msgstr "Lähde"
|
||||
|
||||
#. js-lingui-id: IEtmGM
|
||||
#. js-lingui-id: xqlr9R
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Spaces and comma - {spacesAndCommaExample}"
|
||||
msgstr "Välilyöntejä ja pilkku - {spacesAndCommaExample}"
|
||||
msgid "Spaces and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 65A04M
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -13598,6 +13652,7 @@ msgstr "Summa"
|
||||
|
||||
#. js-lingui-id: DBC3t5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Sunday"
|
||||
msgstr "Sunnuntai"
|
||||
|
||||
@@ -13746,43 +13801,24 @@ msgstr "Järjestelmän suhteet"
|
||||
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
msgid "System settings"
|
||||
msgstr "Järjestelmäasetukset"
|
||||
|
||||
#. js-lingui-id: E3AMmw
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
msgid "System settings - {systemDateFormatLabel}"
|
||||
msgstr "Järjestelmän asetukset - {systemDateFormatLabel}"
|
||||
|
||||
#. js-lingui-id: uKM6SP
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "System Settings - {systemNumberFormatLabel}"
|
||||
msgstr "Järjestelmän asetukset - {systemNumberFormatLabel}"
|
||||
|
||||
#. js-lingui-id: 0ZgB1e
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "System Settings - {systemTimeFormatLabel}"
|
||||
msgstr "Järjestelmän asetukset - {systemTimeFormatLabel}"
|
||||
|
||||
#. js-lingui-id: e89dEj
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Monday"
|
||||
msgstr "Järjestelmän asetukset - Maanantai"
|
||||
|
||||
#. js-lingui-id: o+Kvng
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Saturday"
|
||||
msgstr "Järjestelmän asetukset - Lauantai"
|
||||
|
||||
#. js-lingui-id: gluMQd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Sunday"
|
||||
msgstr "Järjestelmän asetukset - Sunnuntai"
|
||||
|
||||
#. js-lingui-id: HuA3RU
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Tab"
|
||||
@@ -14833,6 +14869,13 @@ msgstr "Listaamattomat"
|
||||
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
|
||||
msgstr "Avaa Enterprise-ominaisuudet, kuten SSO, rivitason suojaus ja tarkastuslokit."
|
||||
|
||||
#. js-lingui-id: Te2H8x
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
#: src/modules/settings/developers/components/SettingsApiKeysFieldItemTableRow.tsx
|
||||
msgid "Unnamed API Key"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eQMhFX
|
||||
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
|
||||
msgid "unordered"
|
||||
@@ -15102,6 +15145,11 @@ msgstr "Käytä todennussovelluksia ja selainlaajennuksia, kuten 1Password, Auth
|
||||
msgid "Use best models only"
|
||||
msgstr "Käytä vain parhaita malleja"
|
||||
|
||||
#. js-lingui-id: cVOIgV
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Use filter to see existing tools or create your own"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: oTTQsc
|
||||
#: src/modules/settings/domains/utils/getSubdomainValidationSchema.ts
|
||||
msgid "Use letter, number and dash only. Start and finish with a letter or a number"
|
||||
@@ -15641,6 +15689,11 @@ msgstr "Viikko"
|
||||
msgid "weeks"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WKHqM+
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Weight"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nTuObL
|
||||
#: src/pages/auth/SignInUp.tsx
|
||||
msgid "Welcome to Twenty"
|
||||
|
||||
@@ -506,10 +506,10 @@ msgstr "1. Type"
|
||||
msgid "10,000 workflow node executions"
|
||||
msgstr "10 000 exécutions de nœuds de workflow"
|
||||
|
||||
#. js-lingui-id: bM5lnW
|
||||
#. js-lingui-id: rU05hS
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "12h - {hour12Label}"
|
||||
msgstr "12h - {hour12Label}"
|
||||
msgid "12h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 4EdXYs
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -542,10 +542,10 @@ msgstr "20 000 exécutions de nœuds de workflow"
|
||||
msgid "200 OK - {duration}ms"
|
||||
msgstr "200 OK - {duration}ms"
|
||||
|
||||
#. js-lingui-id: mwTnop
|
||||
#. js-lingui-id: W1k7eB
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "24h - {hour24Label}"
|
||||
msgstr "24h - {hour24Label}"
|
||||
msgid "24h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QsMprd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -1456,6 +1456,11 @@ msgstr "Tous les membres"
|
||||
msgid "All Metadata"
|
||||
msgstr "Toutes les métadonnées"
|
||||
|
||||
#. js-lingui-id: zIk4M6
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
msgid "All objects"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: aFE/OW
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsTableHeader.tsx
|
||||
@@ -1746,6 +1751,11 @@ msgstr "Clé API copiée dans le presse-papiers"
|
||||
msgid "API key is required"
|
||||
msgstr "La clé API est requise"
|
||||
|
||||
#. js-lingui-id: sb6i1L
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "API key name cannot be empty"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Widx6n
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
msgid "API key roles"
|
||||
@@ -1811,10 +1821,10 @@ msgstr "API"
|
||||
msgid "APIs & Webhooks"
|
||||
msgstr "API & Webhooks"
|
||||
|
||||
#. js-lingui-id: BnUHmx
|
||||
#. js-lingui-id: 0UMxlw
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Apostrophe and dot - {apostropheAndDotExample}"
|
||||
msgstr "Apostrophe et point - {apostropheAndDotExample}"
|
||||
msgid "Apostrophe and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
@@ -2362,6 +2372,11 @@ msgstr "Comme ce workflow n'utilise pas de déclencheur manuel, le formulaire ne
|
||||
msgid "Before"
|
||||
msgstr "Avant"
|
||||
|
||||
#. js-lingui-id: KYr9vA
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Best"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NgFKo1
|
||||
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getMonthsDescription.ts
|
||||
msgid "between {startMonth} and {endMonth}"
|
||||
@@ -3109,10 +3124,10 @@ msgstr "élément du menu de commande"
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr "Commandes copiées dans le presse-papiers"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#. js-lingui-id: QeCopv
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Commas and dot - {commasAndDotExample}"
|
||||
msgstr "Virgules et point - {commasAndDotExample}"
|
||||
msgid "Commas and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NBdIgR
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
@@ -3218,6 +3233,11 @@ msgstr "Configurer les modèles d'IA par défaut et leur disponibilité"
|
||||
msgid "Configure fallback login methods for users with SSO bypass permissions"
|
||||
msgstr "Configurer les méthodes de connexion de secours pour les utilisateurs avec des permissions de contournement du SSO"
|
||||
|
||||
#. js-lingui-id: OLqG0t
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
|
||||
msgid "Configure how this object appears in search results"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ghdb7+
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
|
||||
msgid "Configure how we should display your events in your calendar"
|
||||
@@ -4214,6 +4234,7 @@ msgstr "Résidence des données"
|
||||
#. js-lingui-id: r+cVRP
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/field-permissions/components/SettingsRolePermissionsObjectLevelObjectFieldPermissionTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Data type"
|
||||
msgstr "Type de données"
|
||||
|
||||
@@ -4345,7 +4366,7 @@ msgstr "Désactiver le workflow"
|
||||
#. js-lingui-id: yAT3be
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
|
||||
@@ -4363,6 +4384,11 @@ msgstr "Informations de débogage"
|
||||
msgid "Decide which Sub-address fields you want to display"
|
||||
msgstr "Décidez quels champs de sous-adresse vous souhaitez afficher"
|
||||
|
||||
#. js-lingui-id: Bn9+El
|
||||
#: src/modules/ai/components/AIChatEditorSection.tsx
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ovBPCi
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
|
||||
@@ -4931,10 +4957,10 @@ msgstr "Ne créez pas de contacts à partir de/pour les emails Gmail, Outlook"
|
||||
msgid "Don't sync emails from team@ support@ noreply@..."
|
||||
msgstr "Ne synchronisez pas les emails de team@ support@ noreply@..."
|
||||
|
||||
#. js-lingui-id: bd+DPX
|
||||
#. js-lingui-id: Wm78zZ
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Dots and comma - {dotsAndCommaExample}"
|
||||
msgstr "Points et virgule - {dotsAndCommaExample}"
|
||||
msgid "Dots and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LE8J+K
|
||||
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
|
||||
@@ -6355,7 +6381,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
|
||||
msgstr "Échec de l'activation de la licence Enterprise. Vérifiez votre clé ou contactez l'assistance."
|
||||
|
||||
#. js-lingui-id: vJiM7T
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to activate skill"
|
||||
msgstr "Échec de l'activation de la compétence"
|
||||
|
||||
@@ -6380,7 +6406,7 @@ msgid "Failed to delete jobs. Please try again later."
|
||||
msgstr "Échec de la suppression des tâches. Veuillez réessayer plus tard."
|
||||
|
||||
#. js-lingui-id: bmwWKk
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to delete skill"
|
||||
msgstr "Échec de la suppression de la compétence"
|
||||
|
||||
@@ -6753,9 +6779,6 @@ msgid "Files"
|
||||
msgstr "Fichiers"
|
||||
|
||||
#. js-lingui-id: o7J4JM
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/find-records-action/components/WorkflowEditActionFindRecords.tsx
|
||||
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
|
||||
#: src/modules/views/components/ViewBarFilterButton.tsx
|
||||
@@ -6772,6 +6795,11 @@ msgstr "Filtre"
|
||||
msgid "Filter by event"
|
||||
msgstr "Filtrer par événement"
|
||||
|
||||
#. js-lingui-id: yZOiaW
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdown.tsx
|
||||
msgid "Filter by object type"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gVEHcL
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Filter by record ID"
|
||||
@@ -7512,6 +7540,11 @@ msgstr "Fichier XML des métadonnées du fournisseur d'identité"
|
||||
msgid "if"
|
||||
msgstr "si"
|
||||
|
||||
#. js-lingui-id: K6ChR5
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "If disabled, use advanced search filters to find these records"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ZfP/Ap
|
||||
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
|
||||
msgid "If this is unexpected, please verify your settings."
|
||||
@@ -7687,6 +7720,11 @@ msgstr "Options de compétence inactive"
|
||||
msgid "Inbox"
|
||||
msgstr "Boîte de réception"
|
||||
|
||||
#. js-lingui-id: Wyip/m
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Include in default search"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mtGDyy
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Incomplete"
|
||||
@@ -9108,6 +9146,7 @@ msgstr "Modèles pour ce fournisseur. Basculez pour activer ou désactiver."
|
||||
|
||||
#. js-lingui-id: hty0d5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Monday"
|
||||
msgstr "Lundi"
|
||||
|
||||
@@ -9298,6 +9337,7 @@ msgstr "mySkill"
|
||||
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
|
||||
#: src/modules/settings/developers/components/SettingsApiKeysTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
@@ -9539,7 +9579,7 @@ msgstr "Nouvel enregistrement"
|
||||
#. js-lingui-id: gWnSyg
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "New Skill"
|
||||
msgstr "Nouvelle compétence"
|
||||
|
||||
@@ -10263,6 +10303,7 @@ msgstr "objet"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Object"
|
||||
@@ -12124,6 +12165,7 @@ msgstr "Russe"
|
||||
|
||||
#. js-lingui-id: +5kO8P
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Saturday"
|
||||
msgstr "Samedi"
|
||||
|
||||
@@ -12189,6 +12231,7 @@ msgstr "SDK"
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/side-panel/hooks/useOpenRecordsSearchPageInSidePanel.ts
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentWorkspaceMemberPickerDropdown.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
@@ -12248,7 +12291,7 @@ msgid "Search a role..."
|
||||
msgstr "Rechercher un rôle..."
|
||||
|
||||
#. js-lingui-id: lJNEce
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Search a skill..."
|
||||
msgstr "Rechercher une compétence..."
|
||||
|
||||
@@ -12273,6 +12316,11 @@ msgstr "Rechercher un type"
|
||||
msgid "Search a view..."
|
||||
msgstr "Rechercher une vue..."
|
||||
|
||||
#. js-lingui-id: N7Z3jc
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Search across indexed fields..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +7s4fw
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentEntityPickerDropdown.tsx
|
||||
msgid "Search agents"
|
||||
@@ -13043,6 +13091,11 @@ msgstr "Afficher le groupe {groupValue}"
|
||||
msgid "Show hidden groups"
|
||||
msgstr "Afficher les groupes cachés"
|
||||
|
||||
#. js-lingui-id: eOY8jq
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
msgid "Show hidden objects"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qi+g0a
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Show only rows with errors"
|
||||
@@ -13122,12 +13175,12 @@ msgid "Skill"
|
||||
msgstr "Compétence"
|
||||
|
||||
#. js-lingui-id: h4t38o
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill activated"
|
||||
msgstr "Compétence activée"
|
||||
|
||||
#. js-lingui-id: /IoK74
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill deleted"
|
||||
msgstr "Compétence supprimée"
|
||||
|
||||
@@ -13144,6 +13197,7 @@ msgstr "Compétence introuvable"
|
||||
|
||||
#. js-lingui-id: PCSkw2
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skills"
|
||||
msgstr "Compétences"
|
||||
|
||||
@@ -13289,10 +13343,10 @@ msgstr "Tris"
|
||||
msgid "Source"
|
||||
msgstr "Source"
|
||||
|
||||
#. js-lingui-id: IEtmGM
|
||||
#. js-lingui-id: xqlr9R
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Spaces and comma - {spacesAndCommaExample}"
|
||||
msgstr "Espaces et virgule - {spacesAndCommaExample}"
|
||||
msgid "Spaces and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 65A04M
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -13598,6 +13652,7 @@ msgstr "Somme"
|
||||
|
||||
#. js-lingui-id: DBC3t5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Sunday"
|
||||
msgstr "Dimanche"
|
||||
|
||||
@@ -13746,43 +13801,24 @@ msgstr "Relations système"
|
||||
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
msgid "System settings"
|
||||
msgstr "Paramètres du système"
|
||||
|
||||
#. js-lingui-id: E3AMmw
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
msgid "System settings - {systemDateFormatLabel}"
|
||||
msgstr "Paramètres système - {systemDateFormatLabel}"
|
||||
|
||||
#. js-lingui-id: uKM6SP
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "System Settings - {systemNumberFormatLabel}"
|
||||
msgstr "Paramètres système - {systemNumberFormatLabel}"
|
||||
|
||||
#. js-lingui-id: 0ZgB1e
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "System Settings - {systemTimeFormatLabel}"
|
||||
msgstr "Paramètres système - {systemTimeFormatLabel}"
|
||||
|
||||
#. js-lingui-id: e89dEj
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Monday"
|
||||
msgstr "Paramètres système - Lundi"
|
||||
|
||||
#. js-lingui-id: o+Kvng
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Saturday"
|
||||
msgstr "Paramètres système - Samedi"
|
||||
|
||||
#. js-lingui-id: gluMQd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Sunday"
|
||||
msgstr "Paramètres système - Dimanche"
|
||||
|
||||
#. js-lingui-id: HuA3RU
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Tab"
|
||||
@@ -14835,6 +14871,13 @@ msgstr "Non répertorié"
|
||||
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
|
||||
msgstr "Débloquez des fonctionnalités Enterprise comme le SSO, la sécurité au niveau des lignes et les journaux d'audit."
|
||||
|
||||
#. js-lingui-id: Te2H8x
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
#: src/modules/settings/developers/components/SettingsApiKeysFieldItemTableRow.tsx
|
||||
msgid "Unnamed API Key"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eQMhFX
|
||||
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
|
||||
msgid "unordered"
|
||||
@@ -15104,6 +15147,11 @@ msgstr "Utilisez des applications d'authentification et des extensions de naviga
|
||||
msgid "Use best models only"
|
||||
msgstr "Utiliser uniquement les meilleurs modèles"
|
||||
|
||||
#. js-lingui-id: cVOIgV
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Use filter to see existing tools or create your own"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: oTTQsc
|
||||
#: src/modules/settings/domains/utils/getSubdomainValidationSchema.ts
|
||||
msgid "Use letter, number and dash only. Start and finish with a letter or a number"
|
||||
@@ -15643,6 +15691,11 @@ msgstr "Semaine"
|
||||
msgid "weeks"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WKHqM+
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Weight"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nTuObL
|
||||
#: src/pages/auth/SignInUp.tsx
|
||||
msgid "Welcome to Twenty"
|
||||
|
||||
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
@@ -506,10 +506,10 @@ msgstr "1. סוג"
|
||||
msgid "10,000 workflow node executions"
|
||||
msgstr "10,000 הפעלות של צמתים בתהליכי עבודה"
|
||||
|
||||
#. js-lingui-id: bM5lnW
|
||||
#. js-lingui-id: rU05hS
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "12h - {hour12Label}"
|
||||
msgstr "12ש - {hour12Label}"
|
||||
msgid "12h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 4EdXYs
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -542,10 +542,10 @@ msgstr "20,000 הפעלות של צמתים בתהליכי עבודה"
|
||||
msgid "200 OK - {duration}ms"
|
||||
msgstr "200 OK - {duration}ms"
|
||||
|
||||
#. js-lingui-id: mwTnop
|
||||
#. js-lingui-id: W1k7eB
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "24h - {hour24Label}"
|
||||
msgstr "24ש - {hour24Label}"
|
||||
msgid "24h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QsMprd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -1456,6 +1456,11 @@ msgstr "כל החברים"
|
||||
msgid "All Metadata"
|
||||
msgstr "כל המטה-נתונים"
|
||||
|
||||
#. js-lingui-id: zIk4M6
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
msgid "All objects"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: aFE/OW
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsTableHeader.tsx
|
||||
@@ -1746,6 +1751,11 @@ msgstr "מפתח API הועתק ללוח הגזירים"
|
||||
msgid "API key is required"
|
||||
msgstr "נדרש מפתח API"
|
||||
|
||||
#. js-lingui-id: sb6i1L
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "API key name cannot be empty"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Widx6n
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
msgid "API key roles"
|
||||
@@ -1811,10 +1821,10 @@ msgstr "APIים"
|
||||
msgid "APIs & Webhooks"
|
||||
msgstr "API ו-Webhooks"
|
||||
|
||||
#. js-lingui-id: BnUHmx
|
||||
#. js-lingui-id: 0UMxlw
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Apostrophe and dot - {apostropheAndDotExample}"
|
||||
msgstr "גרש ונקודה - {apostropheAndDotExample}"
|
||||
msgid "Apostrophe and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
@@ -2362,6 +2372,11 @@ msgstr "מכיוון שתהליך עבודה זה אינו משתמש בהפעל
|
||||
msgid "Before"
|
||||
msgstr "לפני"
|
||||
|
||||
#. js-lingui-id: KYr9vA
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Best"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NgFKo1
|
||||
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getMonthsDescription.ts
|
||||
msgid "between {startMonth} and {endMonth}"
|
||||
@@ -3109,10 +3124,10 @@ msgstr "פריט תפריט פקודות"
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr "הפקודות הועתקו ללוח הגזירים"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#. js-lingui-id: QeCopv
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Commas and dot - {commasAndDotExample}"
|
||||
msgstr "פסיקים ונקודה - {commasAndDotExample}"
|
||||
msgid "Commas and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NBdIgR
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
@@ -3218,6 +3233,11 @@ msgstr "הגדר את מודלי ה-AI כברירת מחדל ואת זמינות
|
||||
msgid "Configure fallback login methods for users with SSO bypass permissions"
|
||||
msgstr "הגדר שיטות כניסה חלופיות למשתמשים עם הרשאות עקיפת SSO"
|
||||
|
||||
#. js-lingui-id: OLqG0t
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
|
||||
msgid "Configure how this object appears in search results"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ghdb7+
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
|
||||
msgid "Configure how we should display your events in your calendar"
|
||||
@@ -4214,6 +4234,7 @@ msgstr "ריבונות נתונים"
|
||||
#. js-lingui-id: r+cVRP
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/field-permissions/components/SettingsRolePermissionsObjectLevelObjectFieldPermissionTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Data type"
|
||||
msgstr "סוג נתונים"
|
||||
|
||||
@@ -4345,7 +4366,7 @@ msgstr "השבת זרימת עבודה"
|
||||
#. js-lingui-id: yAT3be
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
|
||||
@@ -4363,6 +4384,11 @@ msgstr "מידע דיבוג"
|
||||
msgid "Decide which Sub-address fields you want to display"
|
||||
msgstr "החליטו אילו שדות כתובת משנה אתם רוצים להציג"
|
||||
|
||||
#. js-lingui-id: Bn9+El
|
||||
#: src/modules/ai/components/AIChatEditorSection.tsx
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ovBPCi
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
|
||||
@@ -4931,10 +4957,10 @@ msgstr "אל תיצור אנשי קשר מ-Gmail, Outlook"
|
||||
msgid "Don't sync emails from team@ support@ noreply@..."
|
||||
msgstr "אל תסנכרן הודעות מ-team@ support@ noreply@..."
|
||||
|
||||
#. js-lingui-id: bd+DPX
|
||||
#. js-lingui-id: Wm78zZ
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Dots and comma - {dotsAndCommaExample}"
|
||||
msgstr "נקודות ופסיק - {dotsAndCommaExample}"
|
||||
msgid "Dots and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LE8J+K
|
||||
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
|
||||
@@ -6355,7 +6381,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
|
||||
msgstr "הפעלת רישיון ה-Enterprise נכשלה. אנא בדוק את המפתח שלך או פנה לתמיכה."
|
||||
|
||||
#. js-lingui-id: vJiM7T
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to activate skill"
|
||||
msgstr "הפעלת המיומנות נכשלה"
|
||||
|
||||
@@ -6380,7 +6406,7 @@ msgid "Failed to delete jobs. Please try again later."
|
||||
msgstr "נכשל במחיקה של עבודות. נא לנסות שוב מאוחר יותר."
|
||||
|
||||
#. js-lingui-id: bmwWKk
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to delete skill"
|
||||
msgstr "מחיקת המיומנות נכשלה"
|
||||
|
||||
@@ -6753,9 +6779,6 @@ msgid "Files"
|
||||
msgstr "קבצים"
|
||||
|
||||
#. js-lingui-id: o7J4JM
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/find-records-action/components/WorkflowEditActionFindRecords.tsx
|
||||
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
|
||||
#: src/modules/views/components/ViewBarFilterButton.tsx
|
||||
@@ -6772,6 +6795,11 @@ msgstr "סינון"
|
||||
msgid "Filter by event"
|
||||
msgstr "סנן לפי אירוע"
|
||||
|
||||
#. js-lingui-id: yZOiaW
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdown.tsx
|
||||
msgid "Filter by object type"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gVEHcL
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Filter by record ID"
|
||||
@@ -7512,6 +7540,11 @@ msgstr "XML של נתוני ספק זיהוי"
|
||||
msgid "if"
|
||||
msgstr "אם"
|
||||
|
||||
#. js-lingui-id: K6ChR5
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "If disabled, use advanced search filters to find these records"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ZfP/Ap
|
||||
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
|
||||
msgid "If this is unexpected, please verify your settings."
|
||||
@@ -7687,6 +7720,11 @@ msgstr "אפשרויות מיומנות לא פעילה"
|
||||
msgid "Inbox"
|
||||
msgstr "תיבת דואר"
|
||||
|
||||
#. js-lingui-id: Wyip/m
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Include in default search"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mtGDyy
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Incomplete"
|
||||
@@ -9108,6 +9146,7 @@ msgstr "מודלים עבור ספק זה. החליפו כדי להפעיל או
|
||||
|
||||
#. js-lingui-id: hty0d5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Monday"
|
||||
msgstr "יום שני"
|
||||
|
||||
@@ -9298,6 +9337,7 @@ msgstr "mySkill"
|
||||
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
|
||||
#: src/modules/settings/developers/components/SettingsApiKeysTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
@@ -9539,7 +9579,7 @@ msgstr "רשומה חדשה"
|
||||
#. js-lingui-id: gWnSyg
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "New Skill"
|
||||
msgstr "מיומנות חדשה"
|
||||
|
||||
@@ -10263,6 +10303,7 @@ msgstr "אובייקט"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Object"
|
||||
@@ -12124,6 +12165,7 @@ msgstr "רוסית"
|
||||
|
||||
#. js-lingui-id: +5kO8P
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Saturday"
|
||||
msgstr "יום שבת"
|
||||
|
||||
@@ -12189,6 +12231,7 @@ msgstr "SDK"
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/side-panel/hooks/useOpenRecordsSearchPageInSidePanel.ts
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentWorkspaceMemberPickerDropdown.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
@@ -12248,7 +12291,7 @@ msgid "Search a role..."
|
||||
msgstr "חפש תפקיד..."
|
||||
|
||||
#. js-lingui-id: lJNEce
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Search a skill..."
|
||||
msgstr "חפש מיומנות..."
|
||||
|
||||
@@ -12273,6 +12316,11 @@ msgstr "חפש סוג"
|
||||
msgid "Search a view..."
|
||||
msgstr "חפש תצוגה..."
|
||||
|
||||
#. js-lingui-id: N7Z3jc
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Search across indexed fields..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +7s4fw
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentEntityPickerDropdown.tsx
|
||||
msgid "Search agents"
|
||||
@@ -13043,6 +13091,11 @@ msgstr "הצג קבוצה {groupValue}"
|
||||
msgid "Show hidden groups"
|
||||
msgstr "הצג קבוצות מוסתרות"
|
||||
|
||||
#. js-lingui-id: eOY8jq
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
msgid "Show hidden objects"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qi+g0a
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Show only rows with errors"
|
||||
@@ -13122,12 +13175,12 @@ msgid "Skill"
|
||||
msgstr "מיומנות"
|
||||
|
||||
#. js-lingui-id: h4t38o
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill activated"
|
||||
msgstr "מיומנות הופעלה"
|
||||
|
||||
#. js-lingui-id: /IoK74
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill deleted"
|
||||
msgstr "מיומנות נמחקה"
|
||||
|
||||
@@ -13144,6 +13197,7 @@ msgstr "מיומנות לא נמצאה"
|
||||
|
||||
#. js-lingui-id: PCSkw2
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skills"
|
||||
msgstr "מיומנויות"
|
||||
|
||||
@@ -13289,10 +13343,10 @@ msgstr "מיונים"
|
||||
msgid "Source"
|
||||
msgstr "מקור"
|
||||
|
||||
#. js-lingui-id: IEtmGM
|
||||
#. js-lingui-id: xqlr9R
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Spaces and comma - {spacesAndCommaExample}"
|
||||
msgstr "רווחים ופסיק - {spacesAndCommaExample}"
|
||||
msgid "Spaces and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 65A04M
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -13598,6 +13652,7 @@ msgstr "\\"
|
||||
|
||||
#. js-lingui-id: DBC3t5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Sunday"
|
||||
msgstr "יום ראשון"
|
||||
|
||||
@@ -13746,43 +13801,24 @@ msgstr "קשרי מערכת"
|
||||
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
msgid "System settings"
|
||||
msgstr "הגדרות מערכת"
|
||||
|
||||
#. js-lingui-id: E3AMmw
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
msgid "System settings - {systemDateFormatLabel}"
|
||||
msgstr "הגדרות מערכת - {systemDateFormatLabel}"
|
||||
|
||||
#. js-lingui-id: uKM6SP
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "System Settings - {systemNumberFormatLabel}"
|
||||
msgstr "הגדרות מערכת - {systemNumberFormatLabel}"
|
||||
|
||||
#. js-lingui-id: 0ZgB1e
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "System Settings - {systemTimeFormatLabel}"
|
||||
msgstr "הגדרות מערכת - {systemTimeFormatLabel}"
|
||||
|
||||
#. js-lingui-id: e89dEj
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Monday"
|
||||
msgstr "הגדרות מערכת - יום שני"
|
||||
|
||||
#. js-lingui-id: o+Kvng
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Saturday"
|
||||
msgstr "הגדרות מערכת - יום שבת"
|
||||
|
||||
#. js-lingui-id: gluMQd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Sunday"
|
||||
msgstr "הגדרות מערכת - יום ראשון"
|
||||
|
||||
#. js-lingui-id: HuA3RU
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Tab"
|
||||
@@ -14833,6 +14869,13 @@ msgstr "לא מופיע ברשימה"
|
||||
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
|
||||
msgstr "פתח תכונות Enterprise כגון SSO, אבטחה ברמת שורה ויומני ביקורת."
|
||||
|
||||
#. js-lingui-id: Te2H8x
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
#: src/modules/settings/developers/components/SettingsApiKeysFieldItemTableRow.tsx
|
||||
msgid "Unnamed API Key"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eQMhFX
|
||||
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
|
||||
msgid "unordered"
|
||||
@@ -15102,6 +15145,11 @@ msgstr "השתמש באפליקציות מאמת ובהרחבות דפדפן כ
|
||||
msgid "Use best models only"
|
||||
msgstr "השתמש רק במודלים הטובים ביותר"
|
||||
|
||||
#. js-lingui-id: cVOIgV
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Use filter to see existing tools or create your own"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: oTTQsc
|
||||
#: src/modules/settings/domains/utils/getSubdomainValidationSchema.ts
|
||||
msgid "Use letter, number and dash only. Start and finish with a letter or a number"
|
||||
@@ -15641,6 +15689,11 @@ msgstr "שבוע"
|
||||
msgid "weeks"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WKHqM+
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Weight"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nTuObL
|
||||
#: src/pages/auth/SignInUp.tsx
|
||||
msgid "Welcome to Twenty"
|
||||
|
||||
@@ -506,10 +506,10 @@ msgstr "1. Típus"
|
||||
msgid "10,000 workflow node executions"
|
||||
msgstr "10 000 munkafolyamat csomópont végrehajtás"
|
||||
|
||||
#. js-lingui-id: bM5lnW
|
||||
#. js-lingui-id: rU05hS
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "12h - {hour12Label}"
|
||||
msgstr "12 óra - {hour12Label}"
|
||||
msgid "12h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 4EdXYs
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -542,10 +542,10 @@ msgstr "20 000 munkafolyamat csomópont végrehajtás"
|
||||
msgid "200 OK - {duration}ms"
|
||||
msgstr "200 OK - {duration} ms"
|
||||
|
||||
#. js-lingui-id: mwTnop
|
||||
#. js-lingui-id: W1k7eB
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "24h - {hour24Label}"
|
||||
msgstr "24 óra - {hour24Label}"
|
||||
msgid "24h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QsMprd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -1456,6 +1456,11 @@ msgstr "Összes tag"
|
||||
msgid "All Metadata"
|
||||
msgstr "Összes metaadat"
|
||||
|
||||
#. js-lingui-id: zIk4M6
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
msgid "All objects"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: aFE/OW
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsTableHeader.tsx
|
||||
@@ -1746,6 +1751,11 @@ msgstr "API kulcs vágólapra másolva"
|
||||
msgid "API key is required"
|
||||
msgstr "API-kulcs megadása kötelező"
|
||||
|
||||
#. js-lingui-id: sb6i1L
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "API key name cannot be empty"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Widx6n
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
msgid "API key roles"
|
||||
@@ -1811,10 +1821,10 @@ msgstr "API-k"
|
||||
msgid "APIs & Webhooks"
|
||||
msgstr "API-k és Webhookok"
|
||||
|
||||
#. js-lingui-id: BnUHmx
|
||||
#. js-lingui-id: 0UMxlw
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Apostrophe and dot - {apostropheAndDotExample}"
|
||||
msgstr "Apostrof és pont - {apostropheAndDotExample}"
|
||||
msgid "Apostrophe and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
@@ -2362,6 +2372,11 @@ msgstr "Mivel ez a munkafolyamat nem használ kézi indítást, az űrlap nem fo
|
||||
msgid "Before"
|
||||
msgstr "Előtt"
|
||||
|
||||
#. js-lingui-id: KYr9vA
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Best"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NgFKo1
|
||||
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getMonthsDescription.ts
|
||||
msgid "between {startMonth} and {endMonth}"
|
||||
@@ -3109,10 +3124,10 @@ msgstr "parancsmenü menüpont"
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr "A parancsok vágólapra másolva"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#. js-lingui-id: QeCopv
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Commas and dot - {commasAndDotExample}"
|
||||
msgstr "Vesszők és pont - {commasAndDotExample}"
|
||||
msgid "Commas and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NBdIgR
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
@@ -3218,6 +3233,11 @@ msgstr "Alapértelmezett AI modellek és elérhetőségük beállítása"
|
||||
msgid "Configure fallback login methods for users with SSO bypass permissions"
|
||||
msgstr "Helyettesítő bejelentkezési módszerek konfigurálása az SSO kikerülési jogosultságokkal rendelkező felhasználók számára"
|
||||
|
||||
#. js-lingui-id: OLqG0t
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
|
||||
msgid "Configure how this object appears in search results"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ghdb7+
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
|
||||
msgid "Configure how we should display your events in your calendar"
|
||||
@@ -4214,6 +4234,7 @@ msgstr "Adatrezidencia"
|
||||
#. js-lingui-id: r+cVRP
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/field-permissions/components/SettingsRolePermissionsObjectLevelObjectFieldPermissionTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Data type"
|
||||
msgstr "Adattípus"
|
||||
|
||||
@@ -4345,7 +4366,7 @@ msgstr "Munkafolyamat deaktiválása"
|
||||
#. js-lingui-id: yAT3be
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
|
||||
@@ -4363,6 +4384,11 @@ msgstr "Hibakeresési információ"
|
||||
msgid "Decide which Sub-address fields you want to display"
|
||||
msgstr "Döntse el, melyik Al-cím mezőket szeretné megjeleníteni"
|
||||
|
||||
#. js-lingui-id: Bn9+El
|
||||
#: src/modules/ai/components/AIChatEditorSection.tsx
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ovBPCi
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
|
||||
@@ -4931,10 +4957,10 @@ msgstr "Ne hozzon létre kapcsolatokat Gmail-, Outlook-emailekből/ba"
|
||||
msgid "Don't sync emails from team@ support@ noreply@..."
|
||||
msgstr "Ne szinkronizáljon emaileket a(z) team@ support@ noreply@... címekről"
|
||||
|
||||
#. js-lingui-id: bd+DPX
|
||||
#. js-lingui-id: Wm78zZ
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Dots and comma - {dotsAndCommaExample}"
|
||||
msgstr "Pontok és vessző - {dotsAndCommaExample}"
|
||||
msgid "Dots and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LE8J+K
|
||||
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
|
||||
@@ -6355,7 +6381,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
|
||||
msgstr "Nem sikerült aktiválni az Enterprise licencet. Ellenőrizze a kulcsot, vagy lépjen kapcsolatba a támogatással."
|
||||
|
||||
#. js-lingui-id: vJiM7T
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to activate skill"
|
||||
msgstr "Nem sikerült aktiválni a készséget"
|
||||
|
||||
@@ -6380,7 +6406,7 @@ msgid "Failed to delete jobs. Please try again later."
|
||||
msgstr "Nem sikerült törölni az állásokat. Kérjük, próbálja meg újra később."
|
||||
|
||||
#. js-lingui-id: bmwWKk
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to delete skill"
|
||||
msgstr "Nem sikerült törölni a készséget"
|
||||
|
||||
@@ -6753,9 +6779,6 @@ msgid "Files"
|
||||
msgstr "Fájlok"
|
||||
|
||||
#. js-lingui-id: o7J4JM
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/find-records-action/components/WorkflowEditActionFindRecords.tsx
|
||||
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
|
||||
#: src/modules/views/components/ViewBarFilterButton.tsx
|
||||
@@ -6772,6 +6795,11 @@ msgstr "Szűrő"
|
||||
msgid "Filter by event"
|
||||
msgstr "Szűrés esemény szerint"
|
||||
|
||||
#. js-lingui-id: yZOiaW
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdown.tsx
|
||||
msgid "Filter by object type"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gVEHcL
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Filter by record ID"
|
||||
@@ -7512,6 +7540,11 @@ msgstr "Identitásszolgáltató metadat XML"
|
||||
msgid "if"
|
||||
msgstr "ha"
|
||||
|
||||
#. js-lingui-id: K6ChR5
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "If disabled, use advanced search filters to find these records"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ZfP/Ap
|
||||
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
|
||||
msgid "If this is unexpected, please verify your settings."
|
||||
@@ -7687,6 +7720,11 @@ msgstr "Inaktív készség beállításai"
|
||||
msgid "Inbox"
|
||||
msgstr "Postafiók"
|
||||
|
||||
#. js-lingui-id: Wyip/m
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Include in default search"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mtGDyy
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Incomplete"
|
||||
@@ -9108,6 +9146,7 @@ msgstr "Modellek ehhez a szolgáltatóhoz. Kapcsolóval engedélyezheti vagy let
|
||||
|
||||
#. js-lingui-id: hty0d5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Monday"
|
||||
msgstr "Hétfő"
|
||||
|
||||
@@ -9298,6 +9337,7 @@ msgstr "mySkill"
|
||||
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
|
||||
#: src/modules/settings/developers/components/SettingsApiKeysTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
@@ -9539,7 +9579,7 @@ msgstr "Új rekord"
|
||||
#. js-lingui-id: gWnSyg
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "New Skill"
|
||||
msgstr "Új készség"
|
||||
|
||||
@@ -10263,6 +10303,7 @@ msgstr "objektum"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Object"
|
||||
@@ -12124,6 +12165,7 @@ msgstr "Orosz"
|
||||
|
||||
#. js-lingui-id: +5kO8P
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Saturday"
|
||||
msgstr "Szombat"
|
||||
|
||||
@@ -12189,6 +12231,7 @@ msgstr "SDK"
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/side-panel/hooks/useOpenRecordsSearchPageInSidePanel.ts
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentWorkspaceMemberPickerDropdown.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
@@ -12248,7 +12291,7 @@ msgid "Search a role..."
|
||||
msgstr "Szerepkör keresése..."
|
||||
|
||||
#. js-lingui-id: lJNEce
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Search a skill..."
|
||||
msgstr "Készség keresése..."
|
||||
|
||||
@@ -12273,6 +12316,11 @@ msgstr "Típus keresése"
|
||||
msgid "Search a view..."
|
||||
msgstr "Nézet keresése..."
|
||||
|
||||
#. js-lingui-id: N7Z3jc
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Search across indexed fields..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +7s4fw
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentEntityPickerDropdown.tsx
|
||||
msgid "Search agents"
|
||||
@@ -13043,6 +13091,11 @@ msgstr "Csoport megjelenítése: {groupValue}"
|
||||
msgid "Show hidden groups"
|
||||
msgstr "Rejtett csoportok megjelenítése"
|
||||
|
||||
#. js-lingui-id: eOY8jq
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
msgid "Show hidden objects"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qi+g0a
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Show only rows with errors"
|
||||
@@ -13122,12 +13175,12 @@ msgid "Skill"
|
||||
msgstr "Készség"
|
||||
|
||||
#. js-lingui-id: h4t38o
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill activated"
|
||||
msgstr "Készség aktiválva"
|
||||
|
||||
#. js-lingui-id: /IoK74
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill deleted"
|
||||
msgstr "Készség törölve"
|
||||
|
||||
@@ -13144,6 +13197,7 @@ msgstr "A készség nem található"
|
||||
|
||||
#. js-lingui-id: PCSkw2
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skills"
|
||||
msgstr "Készségek"
|
||||
|
||||
@@ -13289,10 +13343,10 @@ msgstr "Rendezések"
|
||||
msgid "Source"
|
||||
msgstr "Forrás"
|
||||
|
||||
#. js-lingui-id: IEtmGM
|
||||
#. js-lingui-id: xqlr9R
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Spaces and comma - {spacesAndCommaExample}"
|
||||
msgstr "Szóközök és vessző - {spacesAndCommaExample}"
|
||||
msgid "Spaces and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 65A04M
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -13598,6 +13652,7 @@ msgstr "Összeg"
|
||||
|
||||
#. js-lingui-id: DBC3t5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Sunday"
|
||||
msgstr "Vasárnap"
|
||||
|
||||
@@ -13746,43 +13801,24 @@ msgstr "Rendszerkapcsolatok"
|
||||
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
msgid "System settings"
|
||||
msgstr "Rendszerbeállítások"
|
||||
|
||||
#. js-lingui-id: E3AMmw
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
msgid "System settings - {systemDateFormatLabel}"
|
||||
msgstr "Rendszer beállítások - {systemDateFormatLabel}"
|
||||
|
||||
#. js-lingui-id: uKM6SP
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "System Settings - {systemNumberFormatLabel}"
|
||||
msgstr "Rendszer beállítások - {systemNumberFormatLabel}"
|
||||
|
||||
#. js-lingui-id: 0ZgB1e
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "System Settings - {systemTimeFormatLabel}"
|
||||
msgstr "Rendszer Beállítások - {systemTimeFormatLabel}"
|
||||
|
||||
#. js-lingui-id: e89dEj
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Monday"
|
||||
msgstr "Rendszer beállítások - Hétfő"
|
||||
|
||||
#. js-lingui-id: o+Kvng
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Saturday"
|
||||
msgstr "Rendszer beállítások - Szombat"
|
||||
|
||||
#. js-lingui-id: gluMQd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Sunday"
|
||||
msgstr "Rendszer beállítások - Vasárnap"
|
||||
|
||||
#. js-lingui-id: HuA3RU
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Tab"
|
||||
@@ -14833,6 +14869,13 @@ msgstr "Nem listázott"
|
||||
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
|
||||
msgstr "Oldja fel az olyan Enterprise funkciókat, mint az SSO, a rekordszintű biztonság és az auditnaplók."
|
||||
|
||||
#. js-lingui-id: Te2H8x
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
#: src/modules/settings/developers/components/SettingsApiKeysFieldItemTableRow.tsx
|
||||
msgid "Unnamed API Key"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eQMhFX
|
||||
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
|
||||
msgid "unordered"
|
||||
@@ -15102,6 +15145,11 @@ msgstr "Használjon hitelesítő alkalmazásokat és böngésző-kiegészítőke
|
||||
msgid "Use best models only"
|
||||
msgstr "Csak a legjobb modellek használata"
|
||||
|
||||
#. js-lingui-id: cVOIgV
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Use filter to see existing tools or create your own"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: oTTQsc
|
||||
#: src/modules/settings/domains/utils/getSubdomainValidationSchema.ts
|
||||
msgid "Use letter, number and dash only. Start and finish with a letter or a number"
|
||||
@@ -15641,6 +15689,11 @@ msgstr "Hét"
|
||||
msgid "weeks"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WKHqM+
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Weight"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nTuObL
|
||||
#: src/pages/auth/SignInUp.tsx
|
||||
msgid "Welcome to Twenty"
|
||||
|
||||
@@ -506,10 +506,10 @@ msgstr "1. Tipo"
|
||||
msgid "10,000 workflow node executions"
|
||||
msgstr "10.000 esecuzioni di nodi del workflow"
|
||||
|
||||
#. js-lingui-id: bM5lnW
|
||||
#. js-lingui-id: rU05hS
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "12h - {hour12Label}"
|
||||
msgstr "12h - {hour12Label}"
|
||||
msgid "12h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 4EdXYs
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -542,10 +542,10 @@ msgstr "20.000 esecuzioni di nodi del workflow"
|
||||
msgid "200 OK - {duration}ms"
|
||||
msgstr "200 OK - {duration}ms"
|
||||
|
||||
#. js-lingui-id: mwTnop
|
||||
#. js-lingui-id: W1k7eB
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "24h - {hour24Label}"
|
||||
msgstr "24h - {hour24Label}"
|
||||
msgid "24h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QsMprd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -1456,6 +1456,11 @@ msgstr "Tutti i membri"
|
||||
msgid "All Metadata"
|
||||
msgstr "Tutti i metadati"
|
||||
|
||||
#. js-lingui-id: zIk4M6
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
msgid "All objects"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: aFE/OW
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsTableHeader.tsx
|
||||
@@ -1746,6 +1751,11 @@ msgstr "Chiave API copiata negli appunti"
|
||||
msgid "API key is required"
|
||||
msgstr "La chiave API è obbligatoria"
|
||||
|
||||
#. js-lingui-id: sb6i1L
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "API key name cannot be empty"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Widx6n
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
msgid "API key roles"
|
||||
@@ -1811,10 +1821,10 @@ msgstr "API"
|
||||
msgid "APIs & Webhooks"
|
||||
msgstr "API e Webhook"
|
||||
|
||||
#. js-lingui-id: BnUHmx
|
||||
#. js-lingui-id: 0UMxlw
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Apostrophe and dot - {apostropheAndDotExample}"
|
||||
msgstr "Apostrofo e punto - {apostropheAndDotExample}"
|
||||
msgid "Apostrophe and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
@@ -2362,6 +2372,11 @@ msgstr "Poiché questo workflow non utilizza un'attivazione manuale, il modulo n
|
||||
msgid "Before"
|
||||
msgstr "Prima"
|
||||
|
||||
#. js-lingui-id: KYr9vA
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Best"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NgFKo1
|
||||
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getMonthsDescription.ts
|
||||
msgid "between {startMonth} and {endMonth}"
|
||||
@@ -3109,10 +3124,10 @@ msgstr "voce del menu comandi"
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr "Comandi copiati negli appunti"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#. js-lingui-id: QeCopv
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Commas and dot - {commasAndDotExample}"
|
||||
msgstr "Virgole e punto - {commasAndDotExample}"
|
||||
msgid "Commas and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NBdIgR
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
@@ -3218,6 +3233,11 @@ msgstr "Configura i modelli IA predefiniti e la disponibilità"
|
||||
msgid "Configure fallback login methods for users with SSO bypass permissions"
|
||||
msgstr "Configura metodi di accesso alternativi per utenti con permessi di bypass SSO"
|
||||
|
||||
#. js-lingui-id: OLqG0t
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
|
||||
msgid "Configure how this object appears in search results"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ghdb7+
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
|
||||
msgid "Configure how we should display your events in your calendar"
|
||||
@@ -4214,6 +4234,7 @@ msgstr "Residenza dei dati"
|
||||
#. js-lingui-id: r+cVRP
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/field-permissions/components/SettingsRolePermissionsObjectLevelObjectFieldPermissionTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Data type"
|
||||
msgstr "Tipo di dati"
|
||||
|
||||
@@ -4345,7 +4366,7 @@ msgstr "Disattiva workflow"
|
||||
#. js-lingui-id: yAT3be
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
|
||||
@@ -4363,6 +4384,11 @@ msgstr "Informazioni di debug"
|
||||
msgid "Decide which Sub-address fields you want to display"
|
||||
msgstr "Decidere quali campi del sottoindirizzo visualizzare"
|
||||
|
||||
#. js-lingui-id: Bn9+El
|
||||
#: src/modules/ai/components/AIChatEditorSection.tsx
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ovBPCi
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
|
||||
@@ -4931,10 +4957,10 @@ msgstr "Non creare contatti da/per email di Gmail, Outlook"
|
||||
msgid "Don't sync emails from team@ support@ noreply@..."
|
||||
msgstr "Non sincronizzare email da team@ supporto@ noreply@..."
|
||||
|
||||
#. js-lingui-id: bd+DPX
|
||||
#. js-lingui-id: Wm78zZ
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Dots and comma - {dotsAndCommaExample}"
|
||||
msgstr "Punti e virgola - {dotsAndCommaExample}"
|
||||
msgid "Dots and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LE8J+K
|
||||
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
|
||||
@@ -6355,7 +6381,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
|
||||
msgstr "Impossibile attivare la licenza Enterprise. Verifica la tua chiave oppure contatta l'assistenza."
|
||||
|
||||
#. js-lingui-id: vJiM7T
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to activate skill"
|
||||
msgstr "Impossibile attivare l'abilità"
|
||||
|
||||
@@ -6380,7 +6406,7 @@ msgid "Failed to delete jobs. Please try again later."
|
||||
msgstr "Impossibile eliminare i lavori. Per favore riprova più tardi."
|
||||
|
||||
#. js-lingui-id: bmwWKk
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to delete skill"
|
||||
msgstr "Impossibile eliminare l'abilità"
|
||||
|
||||
@@ -6753,9 +6779,6 @@ msgid "Files"
|
||||
msgstr "File"
|
||||
|
||||
#. js-lingui-id: o7J4JM
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/find-records-action/components/WorkflowEditActionFindRecords.tsx
|
||||
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
|
||||
#: src/modules/views/components/ViewBarFilterButton.tsx
|
||||
@@ -6772,6 +6795,11 @@ msgstr "Filtro"
|
||||
msgid "Filter by event"
|
||||
msgstr "Filtra per evento"
|
||||
|
||||
#. js-lingui-id: yZOiaW
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdown.tsx
|
||||
msgid "Filter by object type"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gVEHcL
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Filter by record ID"
|
||||
@@ -7512,6 +7540,11 @@ msgstr "Provider di identità Metadata XML"
|
||||
msgid "if"
|
||||
msgstr "se"
|
||||
|
||||
#. js-lingui-id: K6ChR5
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "If disabled, use advanced search filters to find these records"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ZfP/Ap
|
||||
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
|
||||
msgid "If this is unexpected, please verify your settings."
|
||||
@@ -7687,6 +7720,11 @@ msgstr "Opzioni dell'abilità inattiva"
|
||||
msgid "Inbox"
|
||||
msgstr "Posta in arrivo"
|
||||
|
||||
#. js-lingui-id: Wyip/m
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Include in default search"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mtGDyy
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Incomplete"
|
||||
@@ -9108,6 +9146,7 @@ msgstr "Modelli per questo provider. Attiva/disattiva per abilitare o disabilita
|
||||
|
||||
#. js-lingui-id: hty0d5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Monday"
|
||||
msgstr "Lunedì"
|
||||
|
||||
@@ -9298,6 +9337,7 @@ msgstr "mySkill"
|
||||
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
|
||||
#: src/modules/settings/developers/components/SettingsApiKeysTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
@@ -9539,7 +9579,7 @@ msgstr "Nuovo record"
|
||||
#. js-lingui-id: gWnSyg
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "New Skill"
|
||||
msgstr "Nuova abilità"
|
||||
|
||||
@@ -10263,6 +10303,7 @@ msgstr "oggetto"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Object"
|
||||
@@ -12124,6 +12165,7 @@ msgstr "Russo"
|
||||
|
||||
#. js-lingui-id: +5kO8P
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Saturday"
|
||||
msgstr "Sabato"
|
||||
|
||||
@@ -12189,6 +12231,7 @@ msgstr "SDK"
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/side-panel/hooks/useOpenRecordsSearchPageInSidePanel.ts
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentWorkspaceMemberPickerDropdown.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
@@ -12248,7 +12291,7 @@ msgid "Search a role..."
|
||||
msgstr "Cerca un ruolo..."
|
||||
|
||||
#. js-lingui-id: lJNEce
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Search a skill..."
|
||||
msgstr "Cerca un'abilità..."
|
||||
|
||||
@@ -12273,6 +12316,11 @@ msgstr "Cerca un tipo"
|
||||
msgid "Search a view..."
|
||||
msgstr "Cerca una vista..."
|
||||
|
||||
#. js-lingui-id: N7Z3jc
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Search across indexed fields..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +7s4fw
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentEntityPickerDropdown.tsx
|
||||
msgid "Search agents"
|
||||
@@ -13043,6 +13091,11 @@ msgstr "Mostra gruppo {groupValue}"
|
||||
msgid "Show hidden groups"
|
||||
msgstr "Mostra gruppi nascosti"
|
||||
|
||||
#. js-lingui-id: eOY8jq
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
msgid "Show hidden objects"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qi+g0a
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Show only rows with errors"
|
||||
@@ -13122,12 +13175,12 @@ msgid "Skill"
|
||||
msgstr "Abilità"
|
||||
|
||||
#. js-lingui-id: h4t38o
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill activated"
|
||||
msgstr "Abilità attivata"
|
||||
|
||||
#. js-lingui-id: /IoK74
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill deleted"
|
||||
msgstr "Abilità eliminata"
|
||||
|
||||
@@ -13144,6 +13197,7 @@ msgstr "Abilità non trovata"
|
||||
|
||||
#. js-lingui-id: PCSkw2
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skills"
|
||||
msgstr "Abilità"
|
||||
|
||||
@@ -13289,10 +13343,10 @@ msgstr "Ordinamenti"
|
||||
msgid "Source"
|
||||
msgstr "Fonte"
|
||||
|
||||
#. js-lingui-id: IEtmGM
|
||||
#. js-lingui-id: xqlr9R
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Spaces and comma - {spacesAndCommaExample}"
|
||||
msgstr "Spazi e virgola - {spacesAndCommaExample}"
|
||||
msgid "Spaces and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 65A04M
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -13598,6 +13652,7 @@ msgstr "Somma"
|
||||
|
||||
#. js-lingui-id: DBC3t5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Sunday"
|
||||
msgstr "Domenica"
|
||||
|
||||
@@ -13746,43 +13801,24 @@ msgstr "Relazioni di sistema"
|
||||
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
msgid "System settings"
|
||||
msgstr "Impostazioni di sistema"
|
||||
|
||||
#. js-lingui-id: E3AMmw
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
msgid "System settings - {systemDateFormatLabel}"
|
||||
msgstr "Impostazioni di sistema - {systemDateFormatLabel}"
|
||||
|
||||
#. js-lingui-id: uKM6SP
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "System Settings - {systemNumberFormatLabel}"
|
||||
msgstr "Impostazioni di sistema - {systemNumberFormatLabel}"
|
||||
|
||||
#. js-lingui-id: 0ZgB1e
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "System Settings - {systemTimeFormatLabel}"
|
||||
msgstr "Impostazioni di sistema - {systemTimeFormatLabel}"
|
||||
|
||||
#. js-lingui-id: e89dEj
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Monday"
|
||||
msgstr "Impostazioni di sistema - Lunedì"
|
||||
|
||||
#. js-lingui-id: o+Kvng
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Saturday"
|
||||
msgstr "Impostazioni di sistema - Sabato"
|
||||
|
||||
#. js-lingui-id: gluMQd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Sunday"
|
||||
msgstr "Impostazioni di sistema - Domenica"
|
||||
|
||||
#. js-lingui-id: HuA3RU
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Tab"
|
||||
@@ -14835,6 +14871,13 @@ msgstr "Non in elenco"
|
||||
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
|
||||
msgstr "Sblocca funzionalità Enterprise come SSO, sicurezza a livello di riga e registri di controllo."
|
||||
|
||||
#. js-lingui-id: Te2H8x
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
#: src/modules/settings/developers/components/SettingsApiKeysFieldItemTableRow.tsx
|
||||
msgid "Unnamed API Key"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eQMhFX
|
||||
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
|
||||
msgid "unordered"
|
||||
@@ -15104,6 +15147,11 @@ msgstr "Usa app auth e estensioni del browser come 1Password, Authy, Microsoft A
|
||||
msgid "Use best models only"
|
||||
msgstr "Usa solo i modelli migliori"
|
||||
|
||||
#. js-lingui-id: cVOIgV
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Use filter to see existing tools or create your own"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: oTTQsc
|
||||
#: src/modules/settings/domains/utils/getSubdomainValidationSchema.ts
|
||||
msgid "Use letter, number and dash only. Start and finish with a letter or a number"
|
||||
@@ -15643,6 +15691,11 @@ msgstr "Settimana"
|
||||
msgid "weeks"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WKHqM+
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Weight"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nTuObL
|
||||
#: src/pages/auth/SignInUp.tsx
|
||||
msgid "Welcome to Twenty"
|
||||
|
||||
@@ -506,10 +506,10 @@ msgstr "1. 種類"
|
||||
msgid "10,000 workflow node executions"
|
||||
msgstr "10,000 ワークフローノード実行"
|
||||
|
||||
#. js-lingui-id: bM5lnW
|
||||
#. js-lingui-id: rU05hS
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "12h - {hour12Label}"
|
||||
msgstr "12時間 - {hour12Label}"
|
||||
msgid "12h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 4EdXYs
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -542,10 +542,10 @@ msgstr "20,000 ワークフローノード実行"
|
||||
msgid "200 OK - {duration}ms"
|
||||
msgstr "200 OK - {duration}ms"
|
||||
|
||||
#. js-lingui-id: mwTnop
|
||||
#. js-lingui-id: W1k7eB
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "24h - {hour24Label}"
|
||||
msgstr "24時間 - {hour24Label}"
|
||||
msgid "24h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QsMprd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -1456,6 +1456,11 @@ msgstr "すべてのメンバー"
|
||||
msgid "All Metadata"
|
||||
msgstr "すべてのメタデータ"
|
||||
|
||||
#. js-lingui-id: zIk4M6
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
msgid "All objects"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: aFE/OW
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsTableHeader.tsx
|
||||
@@ -1746,6 +1751,11 @@ msgstr "APIキーがクリップボードにコピーされました"
|
||||
msgid "API key is required"
|
||||
msgstr "API キーは必須です"
|
||||
|
||||
#. js-lingui-id: sb6i1L
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "API key name cannot be empty"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Widx6n
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
msgid "API key roles"
|
||||
@@ -1811,10 +1821,10 @@ msgstr "API"
|
||||
msgid "APIs & Webhooks"
|
||||
msgstr "API & Webhooks"
|
||||
|
||||
#. js-lingui-id: BnUHmx
|
||||
#. js-lingui-id: 0UMxlw
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Apostrophe and dot - {apostropheAndDotExample}"
|
||||
msgstr "アポストロフィーとドット - {apostropheAndDotExample}"
|
||||
msgid "Apostrophe and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
@@ -2362,6 +2372,11 @@ msgstr "このワークフローは手動トリガーを使用していないた
|
||||
msgid "Before"
|
||||
msgstr "以前"
|
||||
|
||||
#. js-lingui-id: KYr9vA
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Best"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NgFKo1
|
||||
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getMonthsDescription.ts
|
||||
msgid "between {startMonth} and {endMonth}"
|
||||
@@ -3109,10 +3124,10 @@ msgstr "コマンドメニュー項目"
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr "コマンドがクリップボードにコピーされました"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#. js-lingui-id: QeCopv
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Commas and dot - {commasAndDotExample}"
|
||||
msgstr "コンマとドット - {commasAndDotExample}"
|
||||
msgid "Commas and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NBdIgR
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
@@ -3218,6 +3233,11 @@ msgstr "デフォルトの AI モデルと可用性を設定"
|
||||
msgid "Configure fallback login methods for users with SSO bypass permissions"
|
||||
msgstr "SSO バイパスの権限を持つユーザー用のフォールバックログイン方法を設定する"
|
||||
|
||||
#. js-lingui-id: OLqG0t
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
|
||||
msgid "Configure how this object appears in search results"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ghdb7+
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
|
||||
msgid "Configure how we should display your events in your calendar"
|
||||
@@ -4214,6 +4234,7 @@ msgstr "データレジデンシー"
|
||||
#. js-lingui-id: r+cVRP
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/field-permissions/components/SettingsRolePermissionsObjectLevelObjectFieldPermissionTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Data type"
|
||||
msgstr "データ型"
|
||||
|
||||
@@ -4345,7 +4366,7 @@ msgstr "ワークフローを無効化"
|
||||
#. js-lingui-id: yAT3be
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
|
||||
@@ -4363,6 +4384,11 @@ msgstr "デバッグ情報"
|
||||
msgid "Decide which Sub-address fields you want to display"
|
||||
msgstr "表示したいサブアドレスフィールドを選択してください"
|
||||
|
||||
#. js-lingui-id: Bn9+El
|
||||
#: src/modules/ai/components/AIChatEditorSection.tsx
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ovBPCi
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
|
||||
@@ -4931,10 +4957,10 @@ msgstr "Gmail、Outlookメールから/への連絡先を作成しない"
|
||||
msgid "Don't sync emails from team@ support@ noreply@..."
|
||||
msgstr "team@、support@、noreply@からメールを同期しない"
|
||||
|
||||
#. js-lingui-id: bd+DPX
|
||||
#. js-lingui-id: Wm78zZ
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Dots and comma - {dotsAndCommaExample}"
|
||||
msgstr "ドットとコンマ - {dotsAndCommaExample}"
|
||||
msgid "Dots and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LE8J+K
|
||||
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
|
||||
@@ -6355,7 +6381,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
|
||||
msgstr "Enterprise ライセンスの有効化に失敗しました。キーを確認するか、サポートに連絡してください。"
|
||||
|
||||
#. js-lingui-id: vJiM7T
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to activate skill"
|
||||
msgstr "スキルの有効化に失敗しました"
|
||||
|
||||
@@ -6380,7 +6406,7 @@ msgid "Failed to delete jobs. Please try again later."
|
||||
msgstr "ジョブの削除に失敗しました。後でもう一度お試しください。"
|
||||
|
||||
#. js-lingui-id: bmwWKk
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to delete skill"
|
||||
msgstr "スキルの削除に失敗しました"
|
||||
|
||||
@@ -6753,9 +6779,6 @@ msgid "Files"
|
||||
msgstr "ファイル"
|
||||
|
||||
#. js-lingui-id: o7J4JM
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/find-records-action/components/WorkflowEditActionFindRecords.tsx
|
||||
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
|
||||
#: src/modules/views/components/ViewBarFilterButton.tsx
|
||||
@@ -6772,6 +6795,11 @@ msgstr "フィルター"
|
||||
msgid "Filter by event"
|
||||
msgstr "イベントで絞り込む"
|
||||
|
||||
#. js-lingui-id: yZOiaW
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdown.tsx
|
||||
msgid "Filter by object type"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gVEHcL
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Filter by record ID"
|
||||
@@ -7512,6 +7540,11 @@ msgstr "アイデンティティプロバイダーメタデータXML"
|
||||
msgid "if"
|
||||
msgstr "条件"
|
||||
|
||||
#. js-lingui-id: K6ChR5
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "If disabled, use advanced search filters to find these records"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ZfP/Ap
|
||||
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
|
||||
msgid "If this is unexpected, please verify your settings."
|
||||
@@ -7687,6 +7720,11 @@ msgstr "非アクティブなスキルのオプション"
|
||||
msgid "Inbox"
|
||||
msgstr "受信トレイ"
|
||||
|
||||
#. js-lingui-id: Wyip/m
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Include in default search"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mtGDyy
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Incomplete"
|
||||
@@ -9108,6 +9146,7 @@ msgstr "このプロバイダーのモデル。有効化/無効化をトグル
|
||||
|
||||
#. js-lingui-id: hty0d5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Monday"
|
||||
msgstr "月曜日"
|
||||
|
||||
@@ -9298,6 +9337,7 @@ msgstr "mySkill"
|
||||
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
|
||||
#: src/modules/settings/developers/components/SettingsApiKeysTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
@@ -9539,7 +9579,7 @@ msgstr "新しいレコード"
|
||||
#. js-lingui-id: gWnSyg
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "New Skill"
|
||||
msgstr "新規スキル"
|
||||
|
||||
@@ -10263,6 +10303,7 @@ msgstr "オブジェクト"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Object"
|
||||
@@ -12124,6 +12165,7 @@ msgstr "ロシア語"
|
||||
|
||||
#. js-lingui-id: +5kO8P
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Saturday"
|
||||
msgstr "土曜日"
|
||||
|
||||
@@ -12189,6 +12231,7 @@ msgstr "SDK"
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/side-panel/hooks/useOpenRecordsSearchPageInSidePanel.ts
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentWorkspaceMemberPickerDropdown.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
@@ -12248,7 +12291,7 @@ msgid "Search a role..."
|
||||
msgstr "役割を検索..."
|
||||
|
||||
#. js-lingui-id: lJNEce
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Search a skill..."
|
||||
msgstr "スキルを検索..."
|
||||
|
||||
@@ -12273,6 +12316,11 @@ msgstr "タイプを検索"
|
||||
msgid "Search a view..."
|
||||
msgstr "ビューを検索..."
|
||||
|
||||
#. js-lingui-id: N7Z3jc
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Search across indexed fields..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +7s4fw
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentEntityPickerDropdown.tsx
|
||||
msgid "Search agents"
|
||||
@@ -13043,6 +13091,11 @@ msgstr "グループ {groupValue} を表示"
|
||||
msgid "Show hidden groups"
|
||||
msgstr "隠されたグループを表示"
|
||||
|
||||
#. js-lingui-id: eOY8jq
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
msgid "Show hidden objects"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qi+g0a
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Show only rows with errors"
|
||||
@@ -13122,12 +13175,12 @@ msgid "Skill"
|
||||
msgstr "スキル"
|
||||
|
||||
#. js-lingui-id: h4t38o
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill activated"
|
||||
msgstr "スキルを有効化しました"
|
||||
|
||||
#. js-lingui-id: /IoK74
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill deleted"
|
||||
msgstr "スキルを削除しました"
|
||||
|
||||
@@ -13144,6 +13197,7 @@ msgstr "スキルが見つかりません"
|
||||
|
||||
#. js-lingui-id: PCSkw2
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skills"
|
||||
msgstr "スキル"
|
||||
|
||||
@@ -13289,10 +13343,10 @@ msgstr "ソート},{"
|
||||
msgid "Source"
|
||||
msgstr "ソース"
|
||||
|
||||
#. js-lingui-id: IEtmGM
|
||||
#. js-lingui-id: xqlr9R
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Spaces and comma - {spacesAndCommaExample}"
|
||||
msgstr "スペースとコンマ - {spacesAndCommaExample}"
|
||||
msgid "Spaces and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 65A04M
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -13598,6 +13652,7 @@ msgstr "合計"
|
||||
|
||||
#. js-lingui-id: DBC3t5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Sunday"
|
||||
msgstr "日曜日"
|
||||
|
||||
@@ -13746,43 +13801,24 @@ msgstr ""
|
||||
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
msgid "System settings"
|
||||
msgstr "システム設定"
|
||||
|
||||
#. js-lingui-id: E3AMmw
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
msgid "System settings - {systemDateFormatLabel}"
|
||||
msgstr "システム設定 - {systemDateFormatLabel}"
|
||||
|
||||
#. js-lingui-id: uKM6SP
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "System Settings - {systemNumberFormatLabel}"
|
||||
msgstr "システム設定 - {systemNumberFormatLabel}"
|
||||
|
||||
#. js-lingui-id: 0ZgB1e
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "System Settings - {systemTimeFormatLabel}"
|
||||
msgstr "システム設定 - {systemTimeFormatLabel}"
|
||||
|
||||
#. js-lingui-id: e89dEj
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Monday"
|
||||
msgstr "システム設定 - 月曜日"
|
||||
|
||||
#. js-lingui-id: o+Kvng
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Saturday"
|
||||
msgstr "システム設定 - 土曜日"
|
||||
|
||||
#. js-lingui-id: gluMQd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Sunday"
|
||||
msgstr "システム設定 - 日曜日"
|
||||
|
||||
#. js-lingui-id: HuA3RU
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Tab"
|
||||
@@ -14833,6 +14869,13 @@ msgstr "非公開"
|
||||
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
|
||||
msgstr "SSO、行レベルセキュリティ、監査ログなどの Enterprise 機能を利用可能にします。"
|
||||
|
||||
#. js-lingui-id: Te2H8x
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
#: src/modules/settings/developers/components/SettingsApiKeysFieldItemTableRow.tsx
|
||||
msgid "Unnamed API Key"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eQMhFX
|
||||
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
|
||||
msgid "unordered"
|
||||
@@ -15102,6 +15145,11 @@ msgstr "1Password、Authy、Microsoft Authenticatorなどの認証アプリや
|
||||
msgid "Use best models only"
|
||||
msgstr "最良のモデルのみを使用する"
|
||||
|
||||
#. js-lingui-id: cVOIgV
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Use filter to see existing tools or create your own"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: oTTQsc
|
||||
#: src/modules/settings/domains/utils/getSubdomainValidationSchema.ts
|
||||
msgid "Use letter, number and dash only. Start and finish with a letter or a number"
|
||||
@@ -15641,6 +15689,11 @@ msgstr "週"
|
||||
msgid "weeks"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WKHqM+
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Weight"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nTuObL
|
||||
#: src/pages/auth/SignInUp.tsx
|
||||
msgid "Welcome to Twenty"
|
||||
|
||||
@@ -506,10 +506,10 @@ msgstr "1. 유형"
|
||||
msgid "10,000 workflow node executions"
|
||||
msgstr "워크플로 노드 실행 10,000회"
|
||||
|
||||
#. js-lingui-id: bM5lnW
|
||||
#. js-lingui-id: rU05hS
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "12h - {hour12Label}"
|
||||
msgstr "12시간 - {hour12Label}"
|
||||
msgid "12h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 4EdXYs
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -542,10 +542,10 @@ msgstr "워크플로 노드 실행 20,000회"
|
||||
msgid "200 OK - {duration}ms"
|
||||
msgstr "200 OK - {duration}ms"
|
||||
|
||||
#. js-lingui-id: mwTnop
|
||||
#. js-lingui-id: W1k7eB
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "24h - {hour24Label}"
|
||||
msgstr "24시간 - {hour24Label}"
|
||||
msgid "24h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QsMprd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -1456,6 +1456,11 @@ msgstr "모든 구성원"
|
||||
msgid "All Metadata"
|
||||
msgstr "모든 메타데이터"
|
||||
|
||||
#. js-lingui-id: zIk4M6
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
msgid "All objects"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: aFE/OW
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsTableHeader.tsx
|
||||
@@ -1746,6 +1751,11 @@ msgstr "API 키가 클립보드에 복사되었습니다"
|
||||
msgid "API key is required"
|
||||
msgstr "API 키가 필요합니다"
|
||||
|
||||
#. js-lingui-id: sb6i1L
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "API key name cannot be empty"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Widx6n
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
msgid "API key roles"
|
||||
@@ -1811,10 +1821,10 @@ msgstr "API"
|
||||
msgid "APIs & Webhooks"
|
||||
msgstr "API 및 웹훅"
|
||||
|
||||
#. js-lingui-id: BnUHmx
|
||||
#. js-lingui-id: 0UMxlw
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Apostrophe and dot - {apostropheAndDotExample}"
|
||||
msgstr "아포스트로피와 점 - {apostropheAndDotExample}"
|
||||
msgid "Apostrophe and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
@@ -2362,6 +2372,11 @@ msgstr "이 워크플로는 수동 트리거를 사용하지 않으므로 양식
|
||||
msgid "Before"
|
||||
msgstr "이전"
|
||||
|
||||
#. js-lingui-id: KYr9vA
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Best"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NgFKo1
|
||||
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getMonthsDescription.ts
|
||||
msgid "between {startMonth} and {endMonth}"
|
||||
@@ -3109,10 +3124,10 @@ msgstr "명령 메뉴 항목"
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr "명령어가 클립보드에 복사되었습니다"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#. js-lingui-id: QeCopv
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Commas and dot - {commasAndDotExample}"
|
||||
msgstr "쉼표와 점 - {commasAndDotExample}"
|
||||
msgid "Commas and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NBdIgR
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
@@ -3218,6 +3233,11 @@ msgstr "기본 AI 모델과 사용 가능 여부를 설정합니다"
|
||||
msgid "Configure fallback login methods for users with SSO bypass permissions"
|
||||
msgstr "SSO 우회 권한이 있는 사용자를 위한 대체 로그인 방법 구성"
|
||||
|
||||
#. js-lingui-id: OLqG0t
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
|
||||
msgid "Configure how this object appears in search results"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ghdb7+
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
|
||||
msgid "Configure how we should display your events in your calendar"
|
||||
@@ -4214,6 +4234,7 @@ msgstr "데이터 레지던시"
|
||||
#. js-lingui-id: r+cVRP
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/field-permissions/components/SettingsRolePermissionsObjectLevelObjectFieldPermissionTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Data type"
|
||||
msgstr "데이터 유형"
|
||||
|
||||
@@ -4345,7 +4366,7 @@ msgstr "워크플로 비활성화"
|
||||
#. js-lingui-id: yAT3be
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
|
||||
@@ -4363,6 +4384,11 @@ msgstr "디버그 정보"
|
||||
msgid "Decide which Sub-address fields you want to display"
|
||||
msgstr "표시할 하위 주소 필드를 선택하세요"
|
||||
|
||||
#. js-lingui-id: Bn9+El
|
||||
#: src/modules/ai/components/AIChatEditorSection.tsx
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ovBPCi
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
|
||||
@@ -4931,10 +4957,10 @@ msgstr "Gmail, Outlook 이메일에서 연락처를 생성하지 마십시오."
|
||||
msgid "Don't sync emails from team@ support@ noreply@..."
|
||||
msgstr "team@, support@, noreply@ 이메일을 동기화하지 마십시오."
|
||||
|
||||
#. js-lingui-id: bd+DPX
|
||||
#. js-lingui-id: Wm78zZ
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Dots and comma - {dotsAndCommaExample}"
|
||||
msgstr "점과 쉼표 - {dotsAndCommaExample}"
|
||||
msgid "Dots and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LE8J+K
|
||||
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
|
||||
@@ -6355,7 +6381,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
|
||||
msgstr "엔터프라이즈 라이선스를 활성화하지 못했습니다. 키를 확인하거나 지원팀에 문의하세요."
|
||||
|
||||
#. js-lingui-id: vJiM7T
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to activate skill"
|
||||
msgstr "스킬 활성화에 실패했습니다"
|
||||
|
||||
@@ -6380,7 +6406,7 @@ msgid "Failed to delete jobs. Please try again later."
|
||||
msgstr "작업 삭제에 실패했습니다. 나중에 다시 시도하세요."
|
||||
|
||||
#. js-lingui-id: bmwWKk
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to delete skill"
|
||||
msgstr "스킬 삭제에 실패했습니다"
|
||||
|
||||
@@ -6753,9 +6779,6 @@ msgid "Files"
|
||||
msgstr "파일"
|
||||
|
||||
#. js-lingui-id: o7J4JM
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/find-records-action/components/WorkflowEditActionFindRecords.tsx
|
||||
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
|
||||
#: src/modules/views/components/ViewBarFilterButton.tsx
|
||||
@@ -6772,6 +6795,11 @@ msgstr "필터"
|
||||
msgid "Filter by event"
|
||||
msgstr "이벤트로 필터링"
|
||||
|
||||
#. js-lingui-id: yZOiaW
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdown.tsx
|
||||
msgid "Filter by object type"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gVEHcL
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Filter by record ID"
|
||||
@@ -7512,6 +7540,11 @@ msgstr "ID 공급자 메타데이터 XML"
|
||||
msgid "if"
|
||||
msgstr "만약"
|
||||
|
||||
#. js-lingui-id: K6ChR5
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "If disabled, use advanced search filters to find these records"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ZfP/Ap
|
||||
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
|
||||
msgid "If this is unexpected, please verify your settings."
|
||||
@@ -7687,6 +7720,11 @@ msgstr "비활성 스킬 옵션"
|
||||
msgid "Inbox"
|
||||
msgstr "받은 편지함"
|
||||
|
||||
#. js-lingui-id: Wyip/m
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Include in default search"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mtGDyy
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Incomplete"
|
||||
@@ -9108,6 +9146,7 @@ msgstr "이 공급자의 모델입니다. 토글하여 활성화하거나 비활
|
||||
|
||||
#. js-lingui-id: hty0d5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Monday"
|
||||
msgstr "월요일"
|
||||
|
||||
@@ -9298,6 +9337,7 @@ msgstr "mySkill"
|
||||
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
|
||||
#: src/modules/settings/developers/components/SettingsApiKeysTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
@@ -9539,7 +9579,7 @@ msgstr "새 레코드"
|
||||
#. js-lingui-id: gWnSyg
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "New Skill"
|
||||
msgstr "새 스킬"
|
||||
|
||||
@@ -10263,6 +10303,7 @@ msgstr "개체"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Object"
|
||||
@@ -12124,6 +12165,7 @@ msgstr "러시아어"
|
||||
|
||||
#. js-lingui-id: +5kO8P
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Saturday"
|
||||
msgstr "토요일"
|
||||
|
||||
@@ -12189,6 +12231,7 @@ msgstr "SDK"
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/side-panel/hooks/useOpenRecordsSearchPageInSidePanel.ts
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentWorkspaceMemberPickerDropdown.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
@@ -12248,7 +12291,7 @@ msgid "Search a role..."
|
||||
msgstr "역할 검색..."
|
||||
|
||||
#. js-lingui-id: lJNEce
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Search a skill..."
|
||||
msgstr "스킬 검색..."
|
||||
|
||||
@@ -12273,6 +12316,11 @@ msgstr "유형 검색"
|
||||
msgid "Search a view..."
|
||||
msgstr "보기 검색..."
|
||||
|
||||
#. js-lingui-id: N7Z3jc
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Search across indexed fields..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +7s4fw
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentEntityPickerDropdown.tsx
|
||||
msgid "Search agents"
|
||||
@@ -13043,6 +13091,11 @@ msgstr "그룹 {groupValue} 표시"
|
||||
msgid "Show hidden groups"
|
||||
msgstr "숨겨진 그룹 표시"
|
||||
|
||||
#. js-lingui-id: eOY8jq
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
msgid "Show hidden objects"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qi+g0a
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Show only rows with errors"
|
||||
@@ -13122,12 +13175,12 @@ msgid "Skill"
|
||||
msgstr "스킬"
|
||||
|
||||
#. js-lingui-id: h4t38o
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill activated"
|
||||
msgstr "스킬 활성화됨"
|
||||
|
||||
#. js-lingui-id: /IoK74
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill deleted"
|
||||
msgstr "스킬 삭제됨"
|
||||
|
||||
@@ -13144,6 +13197,7 @@ msgstr "스킬을 찾을 수 없음"
|
||||
|
||||
#. js-lingui-id: PCSkw2
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skills"
|
||||
msgstr "스킬"
|
||||
|
||||
@@ -13289,10 +13343,10 @@ msgstr "정렬"
|
||||
msgid "Source"
|
||||
msgstr "소스"
|
||||
|
||||
#. js-lingui-id: IEtmGM
|
||||
#. js-lingui-id: xqlr9R
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Spaces and comma - {spacesAndCommaExample}"
|
||||
msgstr "공백과 쉼표 - {spacesAndCommaExample}"
|
||||
msgid "Spaces and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 65A04M
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -13598,6 +13652,7 @@ msgstr "합계"
|
||||
|
||||
#. js-lingui-id: DBC3t5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Sunday"
|
||||
msgstr "일요일"
|
||||
|
||||
@@ -13746,43 +13801,24 @@ msgstr "시스템 관계"
|
||||
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
msgid "System settings"
|
||||
msgstr "시스템 설정"
|
||||
|
||||
#. js-lingui-id: E3AMmw
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
msgid "System settings - {systemDateFormatLabel}"
|
||||
msgstr "시스템 설정 - {systemDateFormatLabel}"
|
||||
|
||||
#. js-lingui-id: uKM6SP
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "System Settings - {systemNumberFormatLabel}"
|
||||
msgstr "시스템 설정 - {systemNumberFormatLabel}"
|
||||
|
||||
#. js-lingui-id: 0ZgB1e
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "System Settings - {systemTimeFormatLabel}"
|
||||
msgstr "시스템 설정 - {systemTimeFormatLabel}"
|
||||
|
||||
#. js-lingui-id: e89dEj
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Monday"
|
||||
msgstr "시스템 설정 - 월요일"
|
||||
|
||||
#. js-lingui-id: o+Kvng
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Saturday"
|
||||
msgstr "시스템 설정 - 토요일"
|
||||
|
||||
#. js-lingui-id: gluMQd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Sunday"
|
||||
msgstr "시스템 설정 - 일요일"
|
||||
|
||||
#. js-lingui-id: HuA3RU
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Tab"
|
||||
@@ -14833,6 +14869,13 @@ msgstr "비공개"
|
||||
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
|
||||
msgstr "SSO, 행 수준 보안, 감사 로그 등의 엔터프라이즈 기능을 이용해 보세요."
|
||||
|
||||
#. js-lingui-id: Te2H8x
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
#: src/modules/settings/developers/components/SettingsApiKeysFieldItemTableRow.tsx
|
||||
msgid "Unnamed API Key"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eQMhFX
|
||||
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
|
||||
msgid "unordered"
|
||||
@@ -15102,6 +15145,11 @@ msgstr "1Password, Authy, Microsoft Authenticator와 같은 인증 앱 및 브
|
||||
msgid "Use best models only"
|
||||
msgstr "최고의 모델만 사용"
|
||||
|
||||
#. js-lingui-id: cVOIgV
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Use filter to see existing tools or create your own"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: oTTQsc
|
||||
#: src/modules/settings/domains/utils/getSubdomainValidationSchema.ts
|
||||
msgid "Use letter, number and dash only. Start and finish with a letter or a number"
|
||||
@@ -15641,6 +15689,11 @@ msgstr "주"
|
||||
msgid "weeks"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WKHqM+
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Weight"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nTuObL
|
||||
#: src/pages/auth/SignInUp.tsx
|
||||
msgid "Welcome to Twenty"
|
||||
|
||||
@@ -506,10 +506,10 @@ msgstr "1. Type"
|
||||
msgid "10,000 workflow node executions"
|
||||
msgstr "{num, plural, one {10 werkknooppuntuitvoering} other {# werkknooppuntuitvoeringen}}"
|
||||
|
||||
#. js-lingui-id: bM5lnW
|
||||
#. js-lingui-id: rU05hS
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "12h - {hour12Label}"
|
||||
msgstr "12u - {hour12Label}"
|
||||
msgid "12h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 4EdXYs
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -542,10 +542,10 @@ msgstr "{num, plural, one {20 werkknooppuntuitvoering} other {# werkknooppuntuit
|
||||
msgid "200 OK - {duration}ms"
|
||||
msgstr "200 OK - {duration}ms"
|
||||
|
||||
#. js-lingui-id: mwTnop
|
||||
#. js-lingui-id: W1k7eB
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "24h - {hour24Label}"
|
||||
msgstr "24u - {hour24Label}"
|
||||
msgid "24h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QsMprd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -1456,6 +1456,11 @@ msgstr "Alle leden"
|
||||
msgid "All Metadata"
|
||||
msgstr "Alle Metadata"
|
||||
|
||||
#. js-lingui-id: zIk4M6
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
msgid "All objects"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: aFE/OW
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsTableHeader.tsx
|
||||
@@ -1746,6 +1751,11 @@ msgstr "API-sleutel gekopieerd naar klembord"
|
||||
msgid "API key is required"
|
||||
msgstr "API-sleutel is vereist"
|
||||
|
||||
#. js-lingui-id: sb6i1L
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "API key name cannot be empty"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Widx6n
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
msgid "API key roles"
|
||||
@@ -1811,10 +1821,10 @@ msgstr "API's"
|
||||
msgid "APIs & Webhooks"
|
||||
msgstr "API's & Webhooks"
|
||||
|
||||
#. js-lingui-id: BnUHmx
|
||||
#. js-lingui-id: 0UMxlw
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Apostrophe and dot - {apostropheAndDotExample}"
|
||||
msgstr "Apostrof en punt - {apostropheAndDotExample}"
|
||||
msgid "Apostrophe and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
@@ -2362,6 +2372,11 @@ msgstr "Omdat deze workflow geen handmatige trigger gebruikt, wordt het formulie
|
||||
msgid "Before"
|
||||
msgstr "Voor"
|
||||
|
||||
#. js-lingui-id: KYr9vA
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Best"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NgFKo1
|
||||
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getMonthsDescription.ts
|
||||
msgid "between {startMonth} and {endMonth}"
|
||||
@@ -3109,10 +3124,10 @@ msgstr "opdrachtmenu-item"
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr "Commando's gekopieerd naar klembord"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#. js-lingui-id: QeCopv
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Commas and dot - {commasAndDotExample}"
|
||||
msgstr "Komma's en punt - {commasAndDotExample}"
|
||||
msgid "Commas and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NBdIgR
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
@@ -3218,6 +3233,11 @@ msgstr "Standaard AI-modellen en beschikbaarheid configureren"
|
||||
msgid "Configure fallback login methods for users with SSO bypass permissions"
|
||||
msgstr "Configureer alternatieve inlogmethoden voor gebruikers met SSO-bypassrechten"
|
||||
|
||||
#. js-lingui-id: OLqG0t
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
|
||||
msgid "Configure how this object appears in search results"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ghdb7+
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
|
||||
msgid "Configure how we should display your events in your calendar"
|
||||
@@ -4214,6 +4234,7 @@ msgstr "Gegevensresidentie"
|
||||
#. js-lingui-id: r+cVRP
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/field-permissions/components/SettingsRolePermissionsObjectLevelObjectFieldPermissionTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Data type"
|
||||
msgstr "Gegevenstype"
|
||||
|
||||
@@ -4345,7 +4366,7 @@ msgstr "Workflow deactiveren"
|
||||
#. js-lingui-id: yAT3be
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
|
||||
@@ -4363,6 +4384,11 @@ msgstr "Debug-info"
|
||||
msgid "Decide which Sub-address fields you want to display"
|
||||
msgstr "Beslis welke sub-adresvelden je wilt weergeven"
|
||||
|
||||
#. js-lingui-id: Bn9+El
|
||||
#: src/modules/ai/components/AIChatEditorSection.tsx
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ovBPCi
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
|
||||
@@ -4931,10 +4957,10 @@ msgstr "Maak geen contacten aan van/naar Gmail, Outlook e-mails"
|
||||
msgid "Don't sync emails from team@ support@ noreply@..."
|
||||
msgstr "Synchroniseer geen e-mails van team@ support@ noreply@..."
|
||||
|
||||
#. js-lingui-id: bd+DPX
|
||||
#. js-lingui-id: Wm78zZ
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Dots and comma - {dotsAndCommaExample}"
|
||||
msgstr "Punten en komma - {dotsAndCommaExample}"
|
||||
msgid "Dots and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LE8J+K
|
||||
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
|
||||
@@ -6355,7 +6381,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
|
||||
msgstr "Activeren van Enterprise-licentie mislukt. Controleer uw Enterprise-sleutel of neem contact op met support."
|
||||
|
||||
#. js-lingui-id: vJiM7T
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to activate skill"
|
||||
msgstr "Activeren van vaardigheid mislukt"
|
||||
|
||||
@@ -6380,7 +6406,7 @@ msgid "Failed to delete jobs. Please try again later."
|
||||
msgstr "Fout bij het verwijderen van taken. Probeer het later opnieuw."
|
||||
|
||||
#. js-lingui-id: bmwWKk
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to delete skill"
|
||||
msgstr "Verwijderen van vaardigheid mislukt"
|
||||
|
||||
@@ -6753,9 +6779,6 @@ msgid "Files"
|
||||
msgstr "Bestanden"
|
||||
|
||||
#. js-lingui-id: o7J4JM
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/find-records-action/components/WorkflowEditActionFindRecords.tsx
|
||||
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
|
||||
#: src/modules/views/components/ViewBarFilterButton.tsx
|
||||
@@ -6772,6 +6795,11 @@ msgstr "Filteren"
|
||||
msgid "Filter by event"
|
||||
msgstr "Filteren op gebeurtenis"
|
||||
|
||||
#. js-lingui-id: yZOiaW
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdown.tsx
|
||||
msgid "Filter by object type"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gVEHcL
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Filter by record ID"
|
||||
@@ -7512,6 +7540,11 @@ msgstr "Identiteitsprovider-metadata XML"
|
||||
msgid "if"
|
||||
msgstr "als"
|
||||
|
||||
#. js-lingui-id: K6ChR5
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "If disabled, use advanced search filters to find these records"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ZfP/Ap
|
||||
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
|
||||
msgid "If this is unexpected, please verify your settings."
|
||||
@@ -7687,6 +7720,11 @@ msgstr "Opties voor inactieve vaardigheid"
|
||||
msgid "Inbox"
|
||||
msgstr "Inbox"
|
||||
|
||||
#. js-lingui-id: Wyip/m
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Include in default search"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mtGDyy
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Incomplete"
|
||||
@@ -9108,6 +9146,7 @@ msgstr "Modellen voor deze aanbieder. Schakel in of uit."
|
||||
|
||||
#. js-lingui-id: hty0d5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Monday"
|
||||
msgstr "Maandag"
|
||||
|
||||
@@ -9298,6 +9337,7 @@ msgstr "mySkill"
|
||||
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
|
||||
#: src/modules/settings/developers/components/SettingsApiKeysTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
@@ -9539,7 +9579,7 @@ msgstr "Nieuw record"
|
||||
#. js-lingui-id: gWnSyg
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "New Skill"
|
||||
msgstr "Nieuwe vaardigheid"
|
||||
|
||||
@@ -10263,6 +10303,7 @@ msgstr "object"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Object"
|
||||
@@ -12124,6 +12165,7 @@ msgstr "Russisch"
|
||||
|
||||
#. js-lingui-id: +5kO8P
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Saturday"
|
||||
msgstr "Zaterdag"
|
||||
|
||||
@@ -12189,6 +12231,7 @@ msgstr "SDK"
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/side-panel/hooks/useOpenRecordsSearchPageInSidePanel.ts
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentWorkspaceMemberPickerDropdown.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
@@ -12248,7 +12291,7 @@ msgid "Search a role..."
|
||||
msgstr "Zoek een rol..."
|
||||
|
||||
#. js-lingui-id: lJNEce
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Search a skill..."
|
||||
msgstr "Zoek een vaardigheid..."
|
||||
|
||||
@@ -12273,6 +12316,11 @@ msgstr "Zoek een type"
|
||||
msgid "Search a view..."
|
||||
msgstr "Zoek een weergave..."
|
||||
|
||||
#. js-lingui-id: N7Z3jc
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Search across indexed fields..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +7s4fw
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentEntityPickerDropdown.tsx
|
||||
msgid "Search agents"
|
||||
@@ -13043,6 +13091,11 @@ msgstr "Groep {groupValue} weergeven"
|
||||
msgid "Show hidden groups"
|
||||
msgstr "Verborgen groepen weergeven"
|
||||
|
||||
#. js-lingui-id: eOY8jq
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
msgid "Show hidden objects"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qi+g0a
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Show only rows with errors"
|
||||
@@ -13122,12 +13175,12 @@ msgid "Skill"
|
||||
msgstr "Vaardigheid"
|
||||
|
||||
#. js-lingui-id: h4t38o
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill activated"
|
||||
msgstr "Vaardigheid geactiveerd"
|
||||
|
||||
#. js-lingui-id: /IoK74
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill deleted"
|
||||
msgstr "Vaardigheid verwijderd"
|
||||
|
||||
@@ -13144,6 +13197,7 @@ msgstr "Vaardigheid niet gevonden"
|
||||
|
||||
#. js-lingui-id: PCSkw2
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skills"
|
||||
msgstr "Vaardigheden"
|
||||
|
||||
@@ -13289,10 +13343,10 @@ msgstr "Sorteringen"
|
||||
msgid "Source"
|
||||
msgstr "Bron"
|
||||
|
||||
#. js-lingui-id: IEtmGM
|
||||
#. js-lingui-id: xqlr9R
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Spaces and comma - {spacesAndCommaExample}"
|
||||
msgstr "Spaties en komma - {spacesAndCommaExample}"
|
||||
msgid "Spaces and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 65A04M
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -13598,6 +13652,7 @@ msgstr "Som"
|
||||
|
||||
#. js-lingui-id: DBC3t5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Sunday"
|
||||
msgstr "Zondag"
|
||||
|
||||
@@ -13746,43 +13801,24 @@ msgstr "Systeemrelaties"
|
||||
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
msgid "System settings"
|
||||
msgstr "Systeeminstellingen"
|
||||
|
||||
#. js-lingui-id: E3AMmw
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
msgid "System settings - {systemDateFormatLabel}"
|
||||
msgstr "Systeeminstellingen - {systemDateFormatLabel}"
|
||||
|
||||
#. js-lingui-id: uKM6SP
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "System Settings - {systemNumberFormatLabel}"
|
||||
msgstr "Systeeminstellingen - {systemNumberFormatLabel}"
|
||||
|
||||
#. js-lingui-id: 0ZgB1e
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "System Settings - {systemTimeFormatLabel}"
|
||||
msgstr "Systeeminstellingen - {systemTimeFormatLabel}"
|
||||
|
||||
#. js-lingui-id: e89dEj
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Monday"
|
||||
msgstr "Systeeminstellingen - Maandag"
|
||||
|
||||
#. js-lingui-id: o+Kvng
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Saturday"
|
||||
msgstr "Systeeminstellingen - Zaterdag"
|
||||
|
||||
#. js-lingui-id: gluMQd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Sunday"
|
||||
msgstr "Systeeminstellingen - Zondag"
|
||||
|
||||
#. js-lingui-id: HuA3RU
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Tab"
|
||||
@@ -14835,6 +14871,13 @@ msgstr "Niet-gelijst"
|
||||
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
|
||||
msgstr "Ontgrendel Enterprise-functies zoals SSO, beveiliging op rijniveau en auditlogs."
|
||||
|
||||
#. js-lingui-id: Te2H8x
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
#: src/modules/settings/developers/components/SettingsApiKeysFieldItemTableRow.tsx
|
||||
msgid "Unnamed API Key"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eQMhFX
|
||||
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
|
||||
msgid "unordered"
|
||||
@@ -15104,6 +15147,11 @@ msgstr "Gebruik authenticatore-apps en browserextensies zoals 1Password, Authy,
|
||||
msgid "Use best models only"
|
||||
msgstr "Alleen de beste modellen gebruiken"
|
||||
|
||||
#. js-lingui-id: cVOIgV
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Use filter to see existing tools or create your own"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: oTTQsc
|
||||
#: src/modules/settings/domains/utils/getSubdomainValidationSchema.ts
|
||||
msgid "Use letter, number and dash only. Start and finish with a letter or a number"
|
||||
@@ -15643,6 +15691,11 @@ msgstr "Week"
|
||||
msgid "weeks"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WKHqM+
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Weight"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nTuObL
|
||||
#: src/pages/auth/SignInUp.tsx
|
||||
msgid "Welcome to Twenty"
|
||||
|
||||
@@ -506,10 +506,10 @@ msgstr "1. Skriv"
|
||||
msgid "10,000 workflow node executions"
|
||||
msgstr "10 000 nodeutføringer av arbeidsflyt"
|
||||
|
||||
#. js-lingui-id: bM5lnW
|
||||
#. js-lingui-id: rU05hS
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "12h - {hour12Label}"
|
||||
msgstr "12t - {hour12Label}"
|
||||
msgid "12h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 4EdXYs
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -542,10 +542,10 @@ msgstr "20 000 nodeutføringer av arbeidsflyt"
|
||||
msgid "200 OK - {duration}ms"
|
||||
msgstr "200 OK - {duration}ms"
|
||||
|
||||
#. js-lingui-id: mwTnop
|
||||
#. js-lingui-id: W1k7eB
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "24h - {hour24Label}"
|
||||
msgstr "24t - {hour24Label}"
|
||||
msgid "24h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QsMprd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -1456,6 +1456,11 @@ msgstr "Alle medlemmer"
|
||||
msgid "All Metadata"
|
||||
msgstr "Alle metadata"
|
||||
|
||||
#. js-lingui-id: zIk4M6
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
msgid "All objects"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: aFE/OW
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsTableHeader.tsx
|
||||
@@ -1746,6 +1751,11 @@ msgstr "API-nøkkel kopiert til utklippstavlen"
|
||||
msgid "API key is required"
|
||||
msgstr "API-nøkkel er påkrevd"
|
||||
|
||||
#. js-lingui-id: sb6i1L
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "API key name cannot be empty"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Widx6n
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
msgid "API key roles"
|
||||
@@ -1811,10 +1821,10 @@ msgstr "API-er"
|
||||
msgid "APIs & Webhooks"
|
||||
msgstr "API og webhooks"
|
||||
|
||||
#. js-lingui-id: BnUHmx
|
||||
#. js-lingui-id: 0UMxlw
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Apostrophe and dot - {apostropheAndDotExample}"
|
||||
msgstr "Apostrof og punktum - {apostropheAndDotExample}"
|
||||
msgid "Apostrophe and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
@@ -2362,6 +2372,11 @@ msgstr "Siden denne arbeidsflyten ikke bruker en manuell utløser, vil ikke skje
|
||||
msgid "Before"
|
||||
msgstr "Før"
|
||||
|
||||
#. js-lingui-id: KYr9vA
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Best"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NgFKo1
|
||||
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getMonthsDescription.ts
|
||||
msgid "between {startMonth} and {endMonth}"
|
||||
@@ -3109,10 +3124,10 @@ msgstr "menyelement i kommandomenyen"
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr "Kommandoer kopiert til utklippstavlen"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#. js-lingui-id: QeCopv
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Commas and dot - {commasAndDotExample}"
|
||||
msgstr "Kommaer og punktum - {commasAndDotExample}"
|
||||
msgid "Commas and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NBdIgR
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
@@ -3218,6 +3233,11 @@ msgstr "Konfigurer standard AI-modeller og tilgjengelighet"
|
||||
msgid "Configure fallback login methods for users with SSO bypass permissions"
|
||||
msgstr "Konfigurer fallback-påloggingsmetoder for brukere med SSO-omgåelsesrettigheter"
|
||||
|
||||
#. js-lingui-id: OLqG0t
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
|
||||
msgid "Configure how this object appears in search results"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ghdb7+
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
|
||||
msgid "Configure how we should display your events in your calendar"
|
||||
@@ -4214,6 +4234,7 @@ msgstr "Dataresidens"
|
||||
#. js-lingui-id: r+cVRP
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/field-permissions/components/SettingsRolePermissionsObjectLevelObjectFieldPermissionTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Data type"
|
||||
msgstr "Datatype"
|
||||
|
||||
@@ -4345,7 +4366,7 @@ msgstr "Deaktiver Arbeidsflyt"
|
||||
#. js-lingui-id: yAT3be
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
|
||||
@@ -4363,6 +4384,11 @@ msgstr "Feilsøkingsinformasjon"
|
||||
msgid "Decide which Sub-address fields you want to display"
|
||||
msgstr "Bestem hvilke underadressefelt du vil vise"
|
||||
|
||||
#. js-lingui-id: Bn9+El
|
||||
#: src/modules/ai/components/AIChatEditorSection.tsx
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ovBPCi
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
|
||||
@@ -4931,10 +4957,10 @@ msgstr "Ikke opprett kontakter fra/til Gmail og Outlook e-poster"
|
||||
msgid "Don't sync emails from team@ support@ noreply@..."
|
||||
msgstr "Ikke synkroniser e-poster fra team@ support@ noreply@..."
|
||||
|
||||
#. js-lingui-id: bd+DPX
|
||||
#. js-lingui-id: Wm78zZ
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Dots and comma - {dotsAndCommaExample}"
|
||||
msgstr "Punktum og komma - {dotsAndCommaExample}"
|
||||
msgid "Dots and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LE8J+K
|
||||
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
|
||||
@@ -6355,7 +6381,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
|
||||
msgstr "Kunne ikke aktivere Enterprise-lisensen. Kontroller nøkkelen din eller kontakt kundestøtte."
|
||||
|
||||
#. js-lingui-id: vJiM7T
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to activate skill"
|
||||
msgstr "Kunne ikke aktivere ferdighet"
|
||||
|
||||
@@ -6380,7 +6406,7 @@ msgid "Failed to delete jobs. Please try again later."
|
||||
msgstr "Mislyktes å slette jobber. Vennligst prøv igjen senere."
|
||||
|
||||
#. js-lingui-id: bmwWKk
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to delete skill"
|
||||
msgstr "Kunne ikke slette ferdighet"
|
||||
|
||||
@@ -6753,9 +6779,6 @@ msgid "Files"
|
||||
msgstr "Filer"
|
||||
|
||||
#. js-lingui-id: o7J4JM
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/find-records-action/components/WorkflowEditActionFindRecords.tsx
|
||||
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
|
||||
#: src/modules/views/components/ViewBarFilterButton.tsx
|
||||
@@ -6772,6 +6795,11 @@ msgstr "Filtrer"
|
||||
msgid "Filter by event"
|
||||
msgstr "Filtrer etter hendelse"
|
||||
|
||||
#. js-lingui-id: yZOiaW
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdown.tsx
|
||||
msgid "Filter by object type"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gVEHcL
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Filter by record ID"
|
||||
@@ -7512,6 +7540,11 @@ msgstr "Identitetsleverandør Metadata XML"
|
||||
msgid "if"
|
||||
msgstr "hvis"
|
||||
|
||||
#. js-lingui-id: K6ChR5
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "If disabled, use advanced search filters to find these records"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ZfP/Ap
|
||||
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
|
||||
msgid "If this is unexpected, please verify your settings."
|
||||
@@ -7687,6 +7720,11 @@ msgstr "Alternativer for inaktiv ferdighet"
|
||||
msgid "Inbox"
|
||||
msgstr "Innboks"
|
||||
|
||||
#. js-lingui-id: Wyip/m
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Include in default search"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mtGDyy
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Incomplete"
|
||||
@@ -9108,6 +9146,7 @@ msgstr "Modeller for denne tilbyderen. Veksle for å aktivere eller deaktivere."
|
||||
|
||||
#. js-lingui-id: hty0d5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Monday"
|
||||
msgstr "Mandag"
|
||||
|
||||
@@ -9298,6 +9337,7 @@ msgstr "mySkill"
|
||||
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
|
||||
#: src/modules/settings/developers/components/SettingsApiKeysTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
@@ -9539,7 +9579,7 @@ msgstr "Ny post"
|
||||
#. js-lingui-id: gWnSyg
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "New Skill"
|
||||
msgstr "Ny ferdighet"
|
||||
|
||||
@@ -10263,6 +10303,7 @@ msgstr "objekt"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Object"
|
||||
@@ -12124,6 +12165,7 @@ msgstr "Russisk"
|
||||
|
||||
#. js-lingui-id: +5kO8P
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Saturday"
|
||||
msgstr "Lørdag"
|
||||
|
||||
@@ -12189,6 +12231,7 @@ msgstr "SDK"
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/side-panel/hooks/useOpenRecordsSearchPageInSidePanel.ts
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentWorkspaceMemberPickerDropdown.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
@@ -12248,7 +12291,7 @@ msgid "Search a role..."
|
||||
msgstr "Søk etter en rolle..."
|
||||
|
||||
#. js-lingui-id: lJNEce
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Search a skill..."
|
||||
msgstr "Søk etter en ferdighet..."
|
||||
|
||||
@@ -12273,6 +12316,11 @@ msgstr "Søk etter en type"
|
||||
msgid "Search a view..."
|
||||
msgstr "Søk etter en visning..."
|
||||
|
||||
#. js-lingui-id: N7Z3jc
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Search across indexed fields..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +7s4fw
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentEntityPickerDropdown.tsx
|
||||
msgid "Search agents"
|
||||
@@ -13043,6 +13091,11 @@ msgstr "Vis gruppe {groupValue}"
|
||||
msgid "Show hidden groups"
|
||||
msgstr "Vis skjulte grupper"
|
||||
|
||||
#. js-lingui-id: eOY8jq
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
msgid "Show hidden objects"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qi+g0a
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Show only rows with errors"
|
||||
@@ -13122,12 +13175,12 @@ msgid "Skill"
|
||||
msgstr "Ferdighet"
|
||||
|
||||
#. js-lingui-id: h4t38o
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill activated"
|
||||
msgstr "Ferdighet aktivert"
|
||||
|
||||
#. js-lingui-id: /IoK74
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill deleted"
|
||||
msgstr "Ferdighet slettet"
|
||||
|
||||
@@ -13144,6 +13197,7 @@ msgstr "Ferdighet ble ikke funnet"
|
||||
|
||||
#. js-lingui-id: PCSkw2
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skills"
|
||||
msgstr "Ferdigheter"
|
||||
|
||||
@@ -13289,10 +13343,10 @@ msgstr "Sorteringer"
|
||||
msgid "Source"
|
||||
msgstr "Kilde"
|
||||
|
||||
#. js-lingui-id: IEtmGM
|
||||
#. js-lingui-id: xqlr9R
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Spaces and comma - {spacesAndCommaExample}"
|
||||
msgstr "Mellomrom og komma - {spacesAndCommaExample}"
|
||||
msgid "Spaces and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 65A04M
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -13598,6 +13652,7 @@ msgstr "Sum"
|
||||
|
||||
#. js-lingui-id: DBC3t5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Sunday"
|
||||
msgstr "Søndag"
|
||||
|
||||
@@ -13746,43 +13801,24 @@ msgstr "Systemrelasjoner"
|
||||
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
msgid "System settings"
|
||||
msgstr "Systeminnstillinger"
|
||||
|
||||
#. js-lingui-id: E3AMmw
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
msgid "System settings - {systemDateFormatLabel}"
|
||||
msgstr "Systeminnstillinger - {systemDateFormatLabel}"
|
||||
|
||||
#. js-lingui-id: uKM6SP
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "System Settings - {systemNumberFormatLabel}"
|
||||
msgstr "Systeminnstillinger - {systemNumberFormatLabel}"
|
||||
|
||||
#. js-lingui-id: 0ZgB1e
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "System Settings - {systemTimeFormatLabel}"
|
||||
msgstr "Systeminnstillinger - {systemTimeFormatLabel}"
|
||||
|
||||
#. js-lingui-id: e89dEj
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Monday"
|
||||
msgstr "Systeminnstillinger - Mandag"
|
||||
|
||||
#. js-lingui-id: o+Kvng
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Saturday"
|
||||
msgstr "Systeminnstillinger - Lørdag"
|
||||
|
||||
#. js-lingui-id: gluMQd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Sunday"
|
||||
msgstr "Systeminnstillinger - Søndag"
|
||||
|
||||
#. js-lingui-id: HuA3RU
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Tab"
|
||||
@@ -14833,6 +14869,13 @@ msgstr "Ulisteført"
|
||||
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
|
||||
msgstr "Lås opp Enterprise-funksjoner som SSO, sikkerhet på radnivå og revisjonslogger."
|
||||
|
||||
#. js-lingui-id: Te2H8x
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
#: src/modules/settings/developers/components/SettingsApiKeysFieldItemTableRow.tsx
|
||||
msgid "Unnamed API Key"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eQMhFX
|
||||
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
|
||||
msgid "unordered"
|
||||
@@ -15102,6 +15145,11 @@ msgstr "Bruk autentiseringsapper og nettleserutvidelser som 1Password, Authy, Mi
|
||||
msgid "Use best models only"
|
||||
msgstr "Bruk kun de beste modellene"
|
||||
|
||||
#. js-lingui-id: cVOIgV
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Use filter to see existing tools or create your own"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: oTTQsc
|
||||
#: src/modules/settings/domains/utils/getSubdomainValidationSchema.ts
|
||||
msgid "Use letter, number and dash only. Start and finish with a letter or a number"
|
||||
@@ -15641,6 +15689,11 @@ msgstr "Uke"
|
||||
msgid "weeks"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WKHqM+
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Weight"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nTuObL
|
||||
#: src/pages/auth/SignInUp.tsx
|
||||
msgid "Welcome to Twenty"
|
||||
|
||||
@@ -506,10 +506,10 @@ msgstr "1. Typ"
|
||||
msgid "10,000 workflow node executions"
|
||||
msgstr "10 000 wykonanych operacji w węźle procesów"
|
||||
|
||||
#. js-lingui-id: bM5lnW
|
||||
#. js-lingui-id: rU05hS
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "12h - {hour12Label}"
|
||||
msgstr "12h - {hour12Label}"
|
||||
msgid "12h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 4EdXYs
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -542,10 +542,10 @@ msgstr "20 000 wykonanych operacji w węźle procesów"
|
||||
msgid "200 OK - {duration}ms"
|
||||
msgstr "200 OK - {duration}ms"
|
||||
|
||||
#. js-lingui-id: mwTnop
|
||||
#. js-lingui-id: W1k7eB
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "24h - {hour24Label}"
|
||||
msgstr "24h - {hour24Label}"
|
||||
msgid "24h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QsMprd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -1456,6 +1456,11 @@ msgstr "Wszyscy członkowie"
|
||||
msgid "All Metadata"
|
||||
msgstr "Wszystkie metadane"
|
||||
|
||||
#. js-lingui-id: zIk4M6
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
msgid "All objects"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: aFE/OW
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsTableHeader.tsx
|
||||
@@ -1746,6 +1751,11 @@ msgstr "Klucz API został skopiowany do schowka"
|
||||
msgid "API key is required"
|
||||
msgstr "Klucz API jest wymagany"
|
||||
|
||||
#. js-lingui-id: sb6i1L
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "API key name cannot be empty"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Widx6n
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
msgid "API key roles"
|
||||
@@ -1811,10 +1821,10 @@ msgstr "API"
|
||||
msgid "APIs & Webhooks"
|
||||
msgstr "API i webhooki"
|
||||
|
||||
#. js-lingui-id: BnUHmx
|
||||
#. js-lingui-id: 0UMxlw
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Apostrophe and dot - {apostropheAndDotExample}"
|
||||
msgstr "Apostrof i kropka - {apostropheAndDotExample}"
|
||||
msgid "Apostrophe and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
@@ -2362,6 +2372,11 @@ msgstr "Ponieważ ten przepływ pracy nie używa ręcznego wyzwalacza, formularz
|
||||
msgid "Before"
|
||||
msgstr "Przed"
|
||||
|
||||
#. js-lingui-id: KYr9vA
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Best"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NgFKo1
|
||||
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getMonthsDescription.ts
|
||||
msgid "between {startMonth} and {endMonth}"
|
||||
@@ -3109,10 +3124,10 @@ msgstr "pozycja menu poleceń"
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#. js-lingui-id: QeCopv
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Commas and dot - {commasAndDotExample}"
|
||||
msgstr "Przecinki i kropka - {commasAndDotExample}"
|
||||
msgid "Commas and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NBdIgR
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
@@ -3218,6 +3233,11 @@ msgstr "Skonfiguruj domyślne modele AI i ich dostępność"
|
||||
msgid "Configure fallback login methods for users with SSO bypass permissions"
|
||||
msgstr "Konfiguruj metody logowania awaryjnego dla użytkowników z uprawnieniami do obejścia SSO"
|
||||
|
||||
#. js-lingui-id: OLqG0t
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
|
||||
msgid "Configure how this object appears in search results"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ghdb7+
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
|
||||
msgid "Configure how we should display your events in your calendar"
|
||||
@@ -4214,6 +4234,7 @@ msgstr "Rezydencja danych"
|
||||
#. js-lingui-id: r+cVRP
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/field-permissions/components/SettingsRolePermissionsObjectLevelObjectFieldPermissionTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Data type"
|
||||
msgstr "Typ danych"
|
||||
|
||||
@@ -4345,7 +4366,7 @@ msgstr "Deaktywuj przepływ pracy"
|
||||
#. js-lingui-id: yAT3be
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
|
||||
@@ -4363,6 +4384,11 @@ msgstr "Informacje debugowania"
|
||||
msgid "Decide which Sub-address fields you want to display"
|
||||
msgstr "Zdecyduj, które pola podrzędnego adresu chcesz wyświetlić"
|
||||
|
||||
#. js-lingui-id: Bn9+El
|
||||
#: src/modules/ai/components/AIChatEditorSection.tsx
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ovBPCi
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
|
||||
@@ -4931,10 +4957,10 @@ msgstr "Nie twórz kontaktów z/dla Gmail, Outlook emails."
|
||||
msgid "Don't sync emails from team@ support@ noreply@..."
|
||||
msgstr "Nie synchronizuj wiadomości e-mail od team@ support@ noreply@..."
|
||||
|
||||
#. js-lingui-id: bd+DPX
|
||||
#. js-lingui-id: Wm78zZ
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Dots and comma - {dotsAndCommaExample}"
|
||||
msgstr "Kropki i przecinek - {dotsAndCommaExample}"
|
||||
msgid "Dots and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LE8J+K
|
||||
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
|
||||
@@ -6355,7 +6381,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
|
||||
msgstr "Nie udało się aktywować licencji Enterprise. Sprawdź swój klucz lub skontaktuj się ze wsparciem."
|
||||
|
||||
#. js-lingui-id: vJiM7T
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to activate skill"
|
||||
msgstr "Nie udało się aktywować umiejętności"
|
||||
|
||||
@@ -6380,7 +6406,7 @@ msgid "Failed to delete jobs. Please try again later."
|
||||
msgstr "Nie udało się usunąć zadań. Proszę spróbować ponownie później."
|
||||
|
||||
#. js-lingui-id: bmwWKk
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to delete skill"
|
||||
msgstr "Nie udało się usunąć umiejętności"
|
||||
|
||||
@@ -6753,9 +6779,6 @@ msgid "Files"
|
||||
msgstr "Pliki"
|
||||
|
||||
#. js-lingui-id: o7J4JM
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/find-records-action/components/WorkflowEditActionFindRecords.tsx
|
||||
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
|
||||
#: src/modules/views/components/ViewBarFilterButton.tsx
|
||||
@@ -6772,6 +6795,11 @@ msgstr "Filtruj"
|
||||
msgid "Filter by event"
|
||||
msgstr "Filtruj według zdarzenia"
|
||||
|
||||
#. js-lingui-id: yZOiaW
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdown.tsx
|
||||
msgid "Filter by object type"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gVEHcL
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Filter by record ID"
|
||||
@@ -7512,6 +7540,11 @@ msgstr "Metadane XML dostawcy tożsamości"
|
||||
msgid "if"
|
||||
msgstr "jeśli"
|
||||
|
||||
#. js-lingui-id: K6ChR5
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "If disabled, use advanced search filters to find these records"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ZfP/Ap
|
||||
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
|
||||
msgid "If this is unexpected, please verify your settings."
|
||||
@@ -7687,6 +7720,11 @@ msgstr "Opcje nieaktywnej umiejętności"
|
||||
msgid "Inbox"
|
||||
msgstr "Skrzynka odbiorcza"
|
||||
|
||||
#. js-lingui-id: Wyip/m
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Include in default search"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mtGDyy
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Incomplete"
|
||||
@@ -9108,6 +9146,7 @@ msgstr "Modele dla tego dostawcy. Przełącz, aby włączyć lub wyłączyć."
|
||||
|
||||
#. js-lingui-id: hty0d5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Monday"
|
||||
msgstr "Poniedziałek"
|
||||
|
||||
@@ -9298,6 +9337,7 @@ msgstr "mySkill"
|
||||
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
|
||||
#: src/modules/settings/developers/components/SettingsApiKeysTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
@@ -9539,7 +9579,7 @@ msgstr "Nowy rekord"
|
||||
#. js-lingui-id: gWnSyg
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "New Skill"
|
||||
msgstr "Nowa umiejętność"
|
||||
|
||||
@@ -10263,6 +10303,7 @@ msgstr "obiekt"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Object"
|
||||
@@ -12124,6 +12165,7 @@ msgstr "rosyjski"
|
||||
|
||||
#. js-lingui-id: +5kO8P
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Saturday"
|
||||
msgstr "Sobota"
|
||||
|
||||
@@ -12189,6 +12231,7 @@ msgstr "SDK"
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/side-panel/hooks/useOpenRecordsSearchPageInSidePanel.ts
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentWorkspaceMemberPickerDropdown.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
@@ -12248,7 +12291,7 @@ msgid "Search a role..."
|
||||
msgstr "Szukaj roli..."
|
||||
|
||||
#. js-lingui-id: lJNEce
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Search a skill..."
|
||||
msgstr "Szukaj umiejętności..."
|
||||
|
||||
@@ -12273,6 +12316,11 @@ msgstr "Wyszukaj typ"
|
||||
msgid "Search a view..."
|
||||
msgstr "Szukaj widoku..."
|
||||
|
||||
#. js-lingui-id: N7Z3jc
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Search across indexed fields..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +7s4fw
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentEntityPickerDropdown.tsx
|
||||
msgid "Search agents"
|
||||
@@ -13043,6 +13091,11 @@ msgstr "Pokaż grupę {groupValue}"
|
||||
msgid "Show hidden groups"
|
||||
msgstr "Pokaż ukryte grupy"
|
||||
|
||||
#. js-lingui-id: eOY8jq
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
msgid "Show hidden objects"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qi+g0a
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Show only rows with errors"
|
||||
@@ -13122,12 +13175,12 @@ msgid "Skill"
|
||||
msgstr "Umiejętność"
|
||||
|
||||
#. js-lingui-id: h4t38o
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill activated"
|
||||
msgstr "Umiejętność aktywowana"
|
||||
|
||||
#. js-lingui-id: /IoK74
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill deleted"
|
||||
msgstr "Umiejętność usunięta"
|
||||
|
||||
@@ -13144,6 +13197,7 @@ msgstr "Nie znaleziono umiejętności"
|
||||
|
||||
#. js-lingui-id: PCSkw2
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skills"
|
||||
msgstr "Umiejętności"
|
||||
|
||||
@@ -13289,10 +13343,10 @@ msgstr "Sortowanie"
|
||||
msgid "Source"
|
||||
msgstr "Źródło"
|
||||
|
||||
#. js-lingui-id: IEtmGM
|
||||
#. js-lingui-id: xqlr9R
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Spaces and comma - {spacesAndCommaExample}"
|
||||
msgstr "Spacje i przecinek - {spacesAndCommaExample}"
|
||||
msgid "Spaces and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 65A04M
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -13598,6 +13652,7 @@ msgstr "Suma"
|
||||
|
||||
#. js-lingui-id: DBC3t5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Sunday"
|
||||
msgstr "Niedziela"
|
||||
|
||||
@@ -13746,43 +13801,24 @@ msgstr "Relacje systemowe"
|
||||
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
msgid "System settings"
|
||||
msgstr "Ustawienia systemowe"
|
||||
|
||||
#. js-lingui-id: E3AMmw
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
msgid "System settings - {systemDateFormatLabel}"
|
||||
msgstr "Ustawienia systemowe - {systemDateFormatLabel}"
|
||||
|
||||
#. js-lingui-id: uKM6SP
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "System Settings - {systemNumberFormatLabel}"
|
||||
msgstr "Ustawienia systemowe - {systemNumberFormatLabel}"
|
||||
|
||||
#. js-lingui-id: 0ZgB1e
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "System Settings - {systemTimeFormatLabel}"
|
||||
msgstr "Ustawienia systemowe - {systemTimeFormatLabel}"
|
||||
|
||||
#. js-lingui-id: e89dEj
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Monday"
|
||||
msgstr "Ustawienia systemowe - Poniedziałek"
|
||||
|
||||
#. js-lingui-id: o+Kvng
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Saturday"
|
||||
msgstr "Ustawienia systemowe - Sobota"
|
||||
|
||||
#. js-lingui-id: gluMQd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Sunday"
|
||||
msgstr "Ustawienia systemowe - Niedziela"
|
||||
|
||||
#. js-lingui-id: HuA3RU
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Tab"
|
||||
@@ -14833,6 +14869,13 @@ msgstr "Niepubliczne"
|
||||
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
|
||||
msgstr "Odblokuj funkcje Enterprise, takie jak SSO, bezpieczeństwo na poziomie wiersza i dzienniki audytu."
|
||||
|
||||
#. js-lingui-id: Te2H8x
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
#: src/modules/settings/developers/components/SettingsApiKeysFieldItemTableRow.tsx
|
||||
msgid "Unnamed API Key"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eQMhFX
|
||||
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
|
||||
msgid "unordered"
|
||||
@@ -15102,6 +15145,11 @@ msgstr "Użyj aplikacji uwierzytelniających i rozszerzeń przeglądarki, takich
|
||||
msgid "Use best models only"
|
||||
msgstr "Używaj tylko najlepszych modeli"
|
||||
|
||||
#. js-lingui-id: cVOIgV
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Use filter to see existing tools or create your own"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: oTTQsc
|
||||
#: src/modules/settings/domains/utils/getSubdomainValidationSchema.ts
|
||||
msgid "Use letter, number and dash only. Start and finish with a letter or a number"
|
||||
@@ -15641,6 +15689,11 @@ msgstr "Tydzień"
|
||||
msgid "weeks"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WKHqM+
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Weight"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nTuObL
|
||||
#: src/pages/auth/SignInUp.tsx
|
||||
msgid "Welcome to Twenty"
|
||||
|
||||
@@ -501,9 +501,9 @@ msgstr ""
|
||||
msgid "10,000 workflow node executions"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: bM5lnW
|
||||
#. js-lingui-id: rU05hS
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "12h - {hour12Label}"
|
||||
msgid "12h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 4EdXYs
|
||||
@@ -537,9 +537,9 @@ msgstr ""
|
||||
msgid "200 OK - {duration}ms"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mwTnop
|
||||
#. js-lingui-id: W1k7eB
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "24h - {hour24Label}"
|
||||
msgid "24h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QsMprd
|
||||
@@ -1451,6 +1451,11 @@ msgstr ""
|
||||
msgid "All Metadata"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: zIk4M6
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
msgid "All objects"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: aFE/OW
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsTableHeader.tsx
|
||||
@@ -1741,6 +1746,11 @@ msgstr ""
|
||||
msgid "API key is required"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: sb6i1L
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "API key name cannot be empty"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Widx6n
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
msgid "API key roles"
|
||||
@@ -1806,9 +1816,9 @@ msgstr ""
|
||||
msgid "APIs & Webhooks"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: BnUHmx
|
||||
#. js-lingui-id: 0UMxlw
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Apostrophe and dot - {apostropheAndDotExample}"
|
||||
msgid "Apostrophe and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LMUw1U
|
||||
@@ -2357,6 +2367,11 @@ msgstr ""
|
||||
msgid "Before"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KYr9vA
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Best"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NgFKo1
|
||||
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getMonthsDescription.ts
|
||||
msgid "between {startMonth} and {endMonth}"
|
||||
@@ -3104,9 +3119,9 @@ msgstr ""
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#. js-lingui-id: QeCopv
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Commas and dot - {commasAndDotExample}"
|
||||
msgid "Commas and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NBdIgR
|
||||
@@ -3213,6 +3228,11 @@ msgstr ""
|
||||
msgid "Configure fallback login methods for users with SSO bypass permissions"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OLqG0t
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
|
||||
msgid "Configure how this object appears in search results"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ghdb7+
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
|
||||
msgid "Configure how we should display your events in your calendar"
|
||||
@@ -4209,6 +4229,7 @@ msgstr ""
|
||||
#. js-lingui-id: r+cVRP
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/field-permissions/components/SettingsRolePermissionsObjectLevelObjectFieldPermissionTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Data type"
|
||||
msgstr ""
|
||||
|
||||
@@ -4340,7 +4361,7 @@ msgstr ""
|
||||
#. js-lingui-id: yAT3be
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
|
||||
@@ -4358,6 +4379,11 @@ msgstr ""
|
||||
msgid "Decide which Sub-address fields you want to display"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Bn9+El
|
||||
#: src/modules/ai/components/AIChatEditorSection.tsx
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ovBPCi
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
|
||||
@@ -4926,9 +4952,9 @@ msgstr ""
|
||||
msgid "Don't sync emails from team@ support@ noreply@..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: bd+DPX
|
||||
#. js-lingui-id: Wm78zZ
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Dots and comma - {dotsAndCommaExample}"
|
||||
msgid "Dots and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LE8J+K
|
||||
@@ -6350,7 +6376,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vJiM7T
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to activate skill"
|
||||
msgstr ""
|
||||
|
||||
@@ -6375,7 +6401,7 @@ msgid "Failed to delete jobs. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: bmwWKk
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to delete skill"
|
||||
msgstr ""
|
||||
|
||||
@@ -6748,9 +6774,6 @@ msgid "Files"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: o7J4JM
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/find-records-action/components/WorkflowEditActionFindRecords.tsx
|
||||
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
|
||||
#: src/modules/views/components/ViewBarFilterButton.tsx
|
||||
@@ -6767,6 +6790,11 @@ msgstr ""
|
||||
msgid "Filter by event"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: yZOiaW
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdown.tsx
|
||||
msgid "Filter by object type"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gVEHcL
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Filter by record ID"
|
||||
@@ -7507,6 +7535,11 @@ msgstr ""
|
||||
msgid "if"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: K6ChR5
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "If disabled, use advanced search filters to find these records"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ZfP/Ap
|
||||
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
|
||||
msgid "If this is unexpected, please verify your settings."
|
||||
@@ -7682,6 +7715,11 @@ msgstr ""
|
||||
msgid "Inbox"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Wyip/m
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Include in default search"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mtGDyy
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Incomplete"
|
||||
@@ -9103,6 +9141,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: hty0d5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Monday"
|
||||
msgstr ""
|
||||
|
||||
@@ -9293,6 +9332,7 @@ msgstr ""
|
||||
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
|
||||
#: src/modules/settings/developers/components/SettingsApiKeysTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
@@ -9534,7 +9574,7 @@ msgstr ""
|
||||
#. js-lingui-id: gWnSyg
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "New Skill"
|
||||
msgstr ""
|
||||
|
||||
@@ -10258,6 +10298,7 @@ msgstr ""
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Object"
|
||||
@@ -12119,6 +12160,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: +5kO8P
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Saturday"
|
||||
msgstr ""
|
||||
|
||||
@@ -12184,6 +12226,7 @@ msgstr ""
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/side-panel/hooks/useOpenRecordsSearchPageInSidePanel.ts
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentWorkspaceMemberPickerDropdown.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
@@ -12243,7 +12286,7 @@ msgid "Search a role..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lJNEce
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Search a skill..."
|
||||
msgstr ""
|
||||
|
||||
@@ -12268,6 +12311,11 @@ msgstr ""
|
||||
msgid "Search a view..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: N7Z3jc
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Search across indexed fields..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +7s4fw
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentEntityPickerDropdown.tsx
|
||||
msgid "Search agents"
|
||||
@@ -13038,6 +13086,11 @@ msgstr ""
|
||||
msgid "Show hidden groups"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eOY8jq
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
msgid "Show hidden objects"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qi+g0a
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Show only rows with errors"
|
||||
@@ -13117,12 +13170,12 @@ msgid "Skill"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h4t38o
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill activated"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: /IoK74
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill deleted"
|
||||
msgstr ""
|
||||
|
||||
@@ -13139,6 +13192,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: PCSkw2
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skills"
|
||||
msgstr ""
|
||||
|
||||
@@ -13284,9 +13338,9 @@ msgstr ""
|
||||
msgid "Source"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: IEtmGM
|
||||
#. js-lingui-id: xqlr9R
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Spaces and comma - {spacesAndCommaExample}"
|
||||
msgid "Spaces and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 65A04M
|
||||
@@ -13593,6 +13647,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: DBC3t5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Sunday"
|
||||
msgstr ""
|
||||
|
||||
@@ -13741,43 +13796,24 @@ msgstr ""
|
||||
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
msgid "System settings"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: E3AMmw
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
msgid "System settings - {systemDateFormatLabel}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: uKM6SP
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "System Settings - {systemNumberFormatLabel}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0ZgB1e
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "System Settings - {systemTimeFormatLabel}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: e89dEj
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Monday"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: o+Kvng
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Saturday"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gluMQd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Sunday"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HuA3RU
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Tab"
|
||||
@@ -14828,6 +14864,13 @@ msgstr ""
|
||||
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Te2H8x
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
#: src/modules/settings/developers/components/SettingsApiKeysFieldItemTableRow.tsx
|
||||
msgid "Unnamed API Key"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eQMhFX
|
||||
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
|
||||
msgid "unordered"
|
||||
@@ -15097,6 +15140,11 @@ msgstr ""
|
||||
msgid "Use best models only"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: cVOIgV
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Use filter to see existing tools or create your own"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: oTTQsc
|
||||
#: src/modules/settings/domains/utils/getSubdomainValidationSchema.ts
|
||||
msgid "Use letter, number and dash only. Start and finish with a letter or a number"
|
||||
@@ -15634,6 +15682,11 @@ msgstr ""
|
||||
msgid "weeks"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WKHqM+
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Weight"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nTuObL
|
||||
#: src/pages/auth/SignInUp.tsx
|
||||
msgid "Welcome to Twenty"
|
||||
|
||||
@@ -506,10 +506,10 @@ msgstr "1. Tipo"
|
||||
msgid "10,000 workflow node executions"
|
||||
msgstr "10.000 execuções de nós de workflow"
|
||||
|
||||
#. js-lingui-id: bM5lnW
|
||||
#. js-lingui-id: rU05hS
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "12h - {hour12Label}"
|
||||
msgstr "12h - {hour12Label}"
|
||||
msgid "12h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 4EdXYs
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -542,10 +542,10 @@ msgstr "20.000 execuções de nós de workflow"
|
||||
msgid "200 OK - {duration}ms"
|
||||
msgstr "200 OK - {duration}ms"
|
||||
|
||||
#. js-lingui-id: mwTnop
|
||||
#. js-lingui-id: W1k7eB
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "24h - {hour24Label}"
|
||||
msgstr "24h - {hour24Label}"
|
||||
msgid "24h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QsMprd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -1456,6 +1456,11 @@ msgstr "Todos os membros"
|
||||
msgid "All Metadata"
|
||||
msgstr "Todos os metadados"
|
||||
|
||||
#. js-lingui-id: zIk4M6
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
msgid "All objects"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: aFE/OW
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsTableHeader.tsx
|
||||
@@ -1746,6 +1751,11 @@ msgstr "Chave da API copiada para a área de transferência"
|
||||
msgid "API key is required"
|
||||
msgstr "A chave de API é obrigatória"
|
||||
|
||||
#. js-lingui-id: sb6i1L
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "API key name cannot be empty"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Widx6n
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
msgid "API key roles"
|
||||
@@ -1811,10 +1821,10 @@ msgstr "APIs"
|
||||
msgid "APIs & Webhooks"
|
||||
msgstr "API e Webhooks"
|
||||
|
||||
#. js-lingui-id: BnUHmx
|
||||
#. js-lingui-id: 0UMxlw
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Apostrophe and dot - {apostropheAndDotExample}"
|
||||
msgstr "Apóstrofo e ponto - {apostropheAndDotExample}"
|
||||
msgid "Apostrophe and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
@@ -2362,6 +2372,11 @@ msgstr "Como este fluxo de trabalho não usa um gatilho manual, o formulário n
|
||||
msgid "Before"
|
||||
msgstr "Antes"
|
||||
|
||||
#. js-lingui-id: KYr9vA
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Best"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NgFKo1
|
||||
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getMonthsDescription.ts
|
||||
msgid "between {startMonth} and {endMonth}"
|
||||
@@ -3109,10 +3124,10 @@ msgstr "item do menu de comando"
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr "Comandos copiados para a área de transferência"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#. js-lingui-id: QeCopv
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Commas and dot - {commasAndDotExample}"
|
||||
msgstr "Vírgulas e ponto - {commasAndDotExample}"
|
||||
msgid "Commas and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NBdIgR
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
@@ -3218,6 +3233,11 @@ msgstr "Configurar os modelos de IA padrão e a disponibilidade"
|
||||
msgid "Configure fallback login methods for users with SSO bypass permissions"
|
||||
msgstr "Configurar métodos de login alternativos para usuários com permissões de contorno SSO"
|
||||
|
||||
#. js-lingui-id: OLqG0t
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
|
||||
msgid "Configure how this object appears in search results"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ghdb7+
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
|
||||
msgid "Configure how we should display your events in your calendar"
|
||||
@@ -4214,6 +4234,7 @@ msgstr "Residência de dados"
|
||||
#. js-lingui-id: r+cVRP
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/field-permissions/components/SettingsRolePermissionsObjectLevelObjectFieldPermissionTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Data type"
|
||||
msgstr "Tipo de Dados"
|
||||
|
||||
@@ -4345,7 +4366,7 @@ msgstr "Desativar Workflow"
|
||||
#. js-lingui-id: yAT3be
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
|
||||
@@ -4363,6 +4384,11 @@ msgstr "Informações de depuração"
|
||||
msgid "Decide which Sub-address fields you want to display"
|
||||
msgstr "Decidir quais campos de sub-endereço você deseja exibir"
|
||||
|
||||
#. js-lingui-id: Bn9+El
|
||||
#: src/modules/ai/components/AIChatEditorSection.tsx
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ovBPCi
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
|
||||
@@ -4931,10 +4957,10 @@ msgstr "Não crie contatos de/para e-mails do Gmail, Outlook"
|
||||
msgid "Don't sync emails from team@ support@ noreply@..."
|
||||
msgstr "Não sincronize e-mails de team@ support@ noreply@..."
|
||||
|
||||
#. js-lingui-id: bd+DPX
|
||||
#. js-lingui-id: Wm78zZ
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Dots and comma - {dotsAndCommaExample}"
|
||||
msgstr "Pontos e vírgula - {dotsAndCommaExample}"
|
||||
msgid "Dots and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LE8J+K
|
||||
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
|
||||
@@ -6355,7 +6381,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
|
||||
msgstr "Falha ao ativar a licença Enterprise. Verifique sua chave ou entre em contato com o suporte."
|
||||
|
||||
#. js-lingui-id: vJiM7T
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to activate skill"
|
||||
msgstr "Falha ao ativar a habilidade"
|
||||
|
||||
@@ -6380,7 +6406,7 @@ msgid "Failed to delete jobs. Please try again later."
|
||||
msgstr "Falha ao excluir trabalhos. Por favor, tente novamente mais tarde."
|
||||
|
||||
#. js-lingui-id: bmwWKk
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to delete skill"
|
||||
msgstr "Falha ao excluir a habilidade"
|
||||
|
||||
@@ -6753,9 +6779,6 @@ msgid "Files"
|
||||
msgstr "Arquivos"
|
||||
|
||||
#. js-lingui-id: o7J4JM
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/find-records-action/components/WorkflowEditActionFindRecords.tsx
|
||||
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
|
||||
#: src/modules/views/components/ViewBarFilterButton.tsx
|
||||
@@ -6772,6 +6795,11 @@ msgstr "Filtro"
|
||||
msgid "Filter by event"
|
||||
msgstr "Filtrar por evento"
|
||||
|
||||
#. js-lingui-id: yZOiaW
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdown.tsx
|
||||
msgid "Filter by object type"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gVEHcL
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Filter by record ID"
|
||||
@@ -7512,6 +7540,11 @@ msgstr "XML de Metadados do Provedor de Identidade"
|
||||
msgid "if"
|
||||
msgstr "se"
|
||||
|
||||
#. js-lingui-id: K6ChR5
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "If disabled, use advanced search filters to find these records"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ZfP/Ap
|
||||
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
|
||||
msgid "If this is unexpected, please verify your settings."
|
||||
@@ -7687,6 +7720,11 @@ msgstr "Opções da habilidade inativa"
|
||||
msgid "Inbox"
|
||||
msgstr "Caixa de entrada"
|
||||
|
||||
#. js-lingui-id: Wyip/m
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Include in default search"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mtGDyy
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Incomplete"
|
||||
@@ -9108,6 +9146,7 @@ msgstr "Modelos deste provedor. Alterne para ativar ou desativar."
|
||||
|
||||
#. js-lingui-id: hty0d5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Monday"
|
||||
msgstr "Segunda-feira"
|
||||
|
||||
@@ -9298,6 +9337,7 @@ msgstr "mySkill"
|
||||
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
|
||||
#: src/modules/settings/developers/components/SettingsApiKeysTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
@@ -9539,7 +9579,7 @@ msgstr "Novo registro"
|
||||
#. js-lingui-id: gWnSyg
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "New Skill"
|
||||
msgstr "Nova habilidade"
|
||||
|
||||
@@ -10263,6 +10303,7 @@ msgstr "objeto"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Object"
|
||||
@@ -12124,6 +12165,7 @@ msgstr "Russo"
|
||||
|
||||
#. js-lingui-id: +5kO8P
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Saturday"
|
||||
msgstr "Sábado"
|
||||
|
||||
@@ -12189,6 +12231,7 @@ msgstr "SDK"
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/side-panel/hooks/useOpenRecordsSearchPageInSidePanel.ts
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentWorkspaceMemberPickerDropdown.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
@@ -12248,7 +12291,7 @@ msgid "Search a role..."
|
||||
msgstr "Pesquise um papel..."
|
||||
|
||||
#. js-lingui-id: lJNEce
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Search a skill..."
|
||||
msgstr "Pesquisar uma habilidade..."
|
||||
|
||||
@@ -12273,6 +12316,11 @@ msgstr "Pesquisar um tipo"
|
||||
msgid "Search a view..."
|
||||
msgstr "Pesquisar uma visualização..."
|
||||
|
||||
#. js-lingui-id: N7Z3jc
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Search across indexed fields..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +7s4fw
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentEntityPickerDropdown.tsx
|
||||
msgid "Search agents"
|
||||
@@ -13043,6 +13091,11 @@ msgstr "Mostrar grupo {groupValue}"
|
||||
msgid "Show hidden groups"
|
||||
msgstr "Mostrar grupos ocultos"
|
||||
|
||||
#. js-lingui-id: eOY8jq
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
msgid "Show hidden objects"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qi+g0a
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Show only rows with errors"
|
||||
@@ -13122,12 +13175,12 @@ msgid "Skill"
|
||||
msgstr "Habilidade"
|
||||
|
||||
#. js-lingui-id: h4t38o
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill activated"
|
||||
msgstr "Habilidade ativada"
|
||||
|
||||
#. js-lingui-id: /IoK74
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill deleted"
|
||||
msgstr "Habilidade excluída"
|
||||
|
||||
@@ -13144,6 +13197,7 @@ msgstr "Habilidade não encontrada"
|
||||
|
||||
#. js-lingui-id: PCSkw2
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skills"
|
||||
msgstr "Habilidades"
|
||||
|
||||
@@ -13289,10 +13343,10 @@ msgstr "Ordenações"
|
||||
msgid "Source"
|
||||
msgstr "Fonte"
|
||||
|
||||
#. js-lingui-id: IEtmGM
|
||||
#. js-lingui-id: xqlr9R
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Spaces and comma - {spacesAndCommaExample}"
|
||||
msgstr "Espaços e vírgula - {spacesAndCommaExample}"
|
||||
msgid "Spaces and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 65A04M
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -13598,6 +13652,7 @@ msgstr "Soma"
|
||||
|
||||
#. js-lingui-id: DBC3t5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Sunday"
|
||||
msgstr "Domingo"
|
||||
|
||||
@@ -13746,43 +13801,24 @@ msgstr "Relações do Sistema"
|
||||
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
msgid "System settings"
|
||||
msgstr "Configurações de Sistema"
|
||||
|
||||
#. js-lingui-id: E3AMmw
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
msgid "System settings - {systemDateFormatLabel}"
|
||||
msgstr "Configurações do sistema - {systemDateFormatLabel}"
|
||||
|
||||
#. js-lingui-id: uKM6SP
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "System Settings - {systemNumberFormatLabel}"
|
||||
msgstr "Configurações do sistema - {systemNumberFormatLabel}"
|
||||
|
||||
#. js-lingui-id: 0ZgB1e
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "System Settings - {systemTimeFormatLabel}"
|
||||
msgstr "Configurações do sistema - {systemTimeFormatLabel}"
|
||||
|
||||
#. js-lingui-id: e89dEj
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Monday"
|
||||
msgstr "Configurações do sistema - Segunda-feira"
|
||||
|
||||
#. js-lingui-id: o+Kvng
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Saturday"
|
||||
msgstr "Configurações do sistema - Sábado"
|
||||
|
||||
#. js-lingui-id: gluMQd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Sunday"
|
||||
msgstr "Configurações do sistema - Domingo"
|
||||
|
||||
#. js-lingui-id: HuA3RU
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Tab"
|
||||
@@ -14833,6 +14869,13 @@ msgstr "Não Listado"
|
||||
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
|
||||
msgstr "Desbloqueie recursos Enterprise como SSO, segurança em nível de linha e logs de auditoria."
|
||||
|
||||
#. js-lingui-id: Te2H8x
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
#: src/modules/settings/developers/components/SettingsApiKeysFieldItemTableRow.tsx
|
||||
msgid "Unnamed API Key"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eQMhFX
|
||||
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
|
||||
msgid "unordered"
|
||||
@@ -15102,6 +15145,11 @@ msgstr "Use apps autenticadores e extensões de navegador como 1Password, Authy,
|
||||
msgid "Use best models only"
|
||||
msgstr "Usar apenas os melhores modelos"
|
||||
|
||||
#. js-lingui-id: cVOIgV
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Use filter to see existing tools or create your own"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: oTTQsc
|
||||
#: src/modules/settings/domains/utils/getSubdomainValidationSchema.ts
|
||||
msgid "Use letter, number and dash only. Start and finish with a letter or a number"
|
||||
@@ -15641,6 +15689,11 @@ msgstr "Semana"
|
||||
msgid "weeks"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WKHqM+
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Weight"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nTuObL
|
||||
#: src/pages/auth/SignInUp.tsx
|
||||
msgid "Welcome to Twenty"
|
||||
|
||||
@@ -506,10 +506,10 @@ msgstr "1. Tipo"
|
||||
msgid "10,000 workflow node executions"
|
||||
msgstr "10.000 execuções de nós de workflow"
|
||||
|
||||
#. js-lingui-id: bM5lnW
|
||||
#. js-lingui-id: rU05hS
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "12h - {hour12Label}"
|
||||
msgstr "12h - {hour12Label}"
|
||||
msgid "12h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 4EdXYs
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -542,10 +542,10 @@ msgstr "20.000 execuções de nós de workflow"
|
||||
msgid "200 OK - {duration}ms"
|
||||
msgstr "200 OK - {duration}ms"
|
||||
|
||||
#. js-lingui-id: mwTnop
|
||||
#. js-lingui-id: W1k7eB
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "24h - {hour24Label}"
|
||||
msgstr "24h - {hour24Label}"
|
||||
msgid "24h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QsMprd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -1456,6 +1456,11 @@ msgstr "Todos os membros"
|
||||
msgid "All Metadata"
|
||||
msgstr "Todos os metadados"
|
||||
|
||||
#. js-lingui-id: zIk4M6
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
msgid "All objects"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: aFE/OW
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsTableHeader.tsx
|
||||
@@ -1746,6 +1751,11 @@ msgstr "Chave API copiada para a área de transferência"
|
||||
msgid "API key is required"
|
||||
msgstr "A chave de API é obrigatória"
|
||||
|
||||
#. js-lingui-id: sb6i1L
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "API key name cannot be empty"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Widx6n
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
msgid "API key roles"
|
||||
@@ -1811,10 +1821,10 @@ msgstr "APIs"
|
||||
msgid "APIs & Webhooks"
|
||||
msgstr "API e Webhooks"
|
||||
|
||||
#. js-lingui-id: BnUHmx
|
||||
#. js-lingui-id: 0UMxlw
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Apostrophe and dot - {apostropheAndDotExample}"
|
||||
msgstr "Apóstrofo e ponto - {apostropheAndDotExample}"
|
||||
msgid "Apostrophe and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
@@ -2362,6 +2372,11 @@ msgstr "Como este fluxo de trabalho não está usando um acionador manual, o for
|
||||
msgid "Before"
|
||||
msgstr "Antes"
|
||||
|
||||
#. js-lingui-id: KYr9vA
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Best"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NgFKo1
|
||||
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getMonthsDescription.ts
|
||||
msgid "between {startMonth} and {endMonth}"
|
||||
@@ -3109,10 +3124,10 @@ msgstr "item do menu de comandos"
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr "Comandos copiados para a área de transferência"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#. js-lingui-id: QeCopv
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Commas and dot - {commasAndDotExample}"
|
||||
msgstr "Vírgulas e ponto - {commasAndDotExample}"
|
||||
msgid "Commas and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NBdIgR
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
@@ -3218,6 +3233,11 @@ msgstr "Configurar modelos de IA padrão e disponibilidade"
|
||||
msgid "Configure fallback login methods for users with SSO bypass permissions"
|
||||
msgstr "Configurar métodos de login alternativos para usuários com permissões de contornar SSO"
|
||||
|
||||
#. js-lingui-id: OLqG0t
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
|
||||
msgid "Configure how this object appears in search results"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ghdb7+
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
|
||||
msgid "Configure how we should display your events in your calendar"
|
||||
@@ -4214,6 +4234,7 @@ msgstr "Residência de dados"
|
||||
#. js-lingui-id: r+cVRP
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/field-permissions/components/SettingsRolePermissionsObjectLevelObjectFieldPermissionTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Data type"
|
||||
msgstr "Tipo de dados"
|
||||
|
||||
@@ -4345,7 +4366,7 @@ msgstr "Desativar Workflow"
|
||||
#. js-lingui-id: yAT3be
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
|
||||
@@ -4363,6 +4384,11 @@ msgstr "Informações de Depuração"
|
||||
msgid "Decide which Sub-address fields you want to display"
|
||||
msgstr "Decidir quais campos de Sub-endereço você deseja exibir"
|
||||
|
||||
#. js-lingui-id: Bn9+El
|
||||
#: src/modules/ai/components/AIChatEditorSection.tsx
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ovBPCi
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
|
||||
@@ -4931,10 +4957,10 @@ msgstr "Não criar contatos de/para emails do Gmail, Outlook"
|
||||
msgid "Don't sync emails from team@ support@ noreply@..."
|
||||
msgstr "Não sincronizar emails de team@ support@ noreply@..."
|
||||
|
||||
#. js-lingui-id: bd+DPX
|
||||
#. js-lingui-id: Wm78zZ
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Dots and comma - {dotsAndCommaExample}"
|
||||
msgstr "Pontos e vírgula - {dotsAndCommaExample}"
|
||||
msgid "Dots and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LE8J+K
|
||||
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
|
||||
@@ -6355,7 +6381,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
|
||||
msgstr "Falha ao ativar a licença Enterprise. Verifique a sua chave ou contacte o suporte."
|
||||
|
||||
#. js-lingui-id: vJiM7T
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to activate skill"
|
||||
msgstr "Falha ao ativar a habilidade"
|
||||
|
||||
@@ -6380,7 +6406,7 @@ msgid "Failed to delete jobs. Please try again later."
|
||||
msgstr "Falha ao deletar trabalhos. Por favor, tente novamente mais tarde."
|
||||
|
||||
#. js-lingui-id: bmwWKk
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to delete skill"
|
||||
msgstr "Falha ao excluir a habilidade"
|
||||
|
||||
@@ -6753,9 +6779,6 @@ msgid "Files"
|
||||
msgstr "Arquivos"
|
||||
|
||||
#. js-lingui-id: o7J4JM
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/find-records-action/components/WorkflowEditActionFindRecords.tsx
|
||||
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
|
||||
#: src/modules/views/components/ViewBarFilterButton.tsx
|
||||
@@ -6772,6 +6795,11 @@ msgstr "Filtro"
|
||||
msgid "Filter by event"
|
||||
msgstr "Filtrar por evento"
|
||||
|
||||
#. js-lingui-id: yZOiaW
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdown.tsx
|
||||
msgid "Filter by object type"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gVEHcL
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Filter by record ID"
|
||||
@@ -7512,6 +7540,11 @@ msgstr "XML de Metadados do Provedor de Identidade"
|
||||
msgid "if"
|
||||
msgstr "se"
|
||||
|
||||
#. js-lingui-id: K6ChR5
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "If disabled, use advanced search filters to find these records"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ZfP/Ap
|
||||
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
|
||||
msgid "If this is unexpected, please verify your settings."
|
||||
@@ -7687,6 +7720,11 @@ msgstr "Opções da Habilidade Inativa"
|
||||
msgid "Inbox"
|
||||
msgstr "Caixa de entrada"
|
||||
|
||||
#. js-lingui-id: Wyip/m
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Include in default search"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mtGDyy
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Incomplete"
|
||||
@@ -9108,6 +9146,7 @@ msgstr "Modelos deste provedor. Alterne para ativar ou desativar."
|
||||
|
||||
#. js-lingui-id: hty0d5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Monday"
|
||||
msgstr "Segunda-feira"
|
||||
|
||||
@@ -9298,6 +9337,7 @@ msgstr "mySkill"
|
||||
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
|
||||
#: src/modules/settings/developers/components/SettingsApiKeysTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
@@ -9539,7 +9579,7 @@ msgstr "Novo registo"
|
||||
#. js-lingui-id: gWnSyg
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "New Skill"
|
||||
msgstr "Nova Habilidade"
|
||||
|
||||
@@ -10263,6 +10303,7 @@ msgstr "objeto"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Object"
|
||||
@@ -12124,6 +12165,7 @@ msgstr "Russo"
|
||||
|
||||
#. js-lingui-id: +5kO8P
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Saturday"
|
||||
msgstr "Sábado"
|
||||
|
||||
@@ -12189,6 +12231,7 @@ msgstr "SDK"
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/side-panel/hooks/useOpenRecordsSearchPageInSidePanel.ts
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentWorkspaceMemberPickerDropdown.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
@@ -12248,7 +12291,7 @@ msgid "Search a role..."
|
||||
msgstr "Procure uma função..."
|
||||
|
||||
#. js-lingui-id: lJNEce
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Search a skill..."
|
||||
msgstr "Pesquisar uma habilidade..."
|
||||
|
||||
@@ -12273,6 +12316,11 @@ msgstr "Pesquisar um tipo"
|
||||
msgid "Search a view..."
|
||||
msgstr "Pesquisar uma vista..."
|
||||
|
||||
#. js-lingui-id: N7Z3jc
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Search across indexed fields..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +7s4fw
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentEntityPickerDropdown.tsx
|
||||
msgid "Search agents"
|
||||
@@ -13043,6 +13091,11 @@ msgstr "Mostrar grupo {groupValue}"
|
||||
msgid "Show hidden groups"
|
||||
msgstr "Mostrar grupos ocultos"
|
||||
|
||||
#. js-lingui-id: eOY8jq
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
msgid "Show hidden objects"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qi+g0a
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Show only rows with errors"
|
||||
@@ -13122,12 +13175,12 @@ msgid "Skill"
|
||||
msgstr "Habilidade"
|
||||
|
||||
#. js-lingui-id: h4t38o
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill activated"
|
||||
msgstr "Habilidade ativada"
|
||||
|
||||
#. js-lingui-id: /IoK74
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill deleted"
|
||||
msgstr "Habilidade excluída"
|
||||
|
||||
@@ -13144,6 +13197,7 @@ msgstr "Habilidade não encontrada"
|
||||
|
||||
#. js-lingui-id: PCSkw2
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skills"
|
||||
msgstr "Habilidades"
|
||||
|
||||
@@ -13289,10 +13343,10 @@ msgstr "Ordenações"
|
||||
msgid "Source"
|
||||
msgstr "Fonte"
|
||||
|
||||
#. js-lingui-id: IEtmGM
|
||||
#. js-lingui-id: xqlr9R
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Spaces and comma - {spacesAndCommaExample}"
|
||||
msgstr "Espaços e vírgula - {spacesAndCommaExample}"
|
||||
msgid "Spaces and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 65A04M
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -13598,6 +13652,7 @@ msgstr "Soma"
|
||||
|
||||
#. js-lingui-id: DBC3t5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Sunday"
|
||||
msgstr "Domingo"
|
||||
|
||||
@@ -13746,43 +13801,24 @@ msgstr "Relações do sistema"
|
||||
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
msgid "System settings"
|
||||
msgstr "Configurações do sistema"
|
||||
|
||||
#. js-lingui-id: E3AMmw
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
msgid "System settings - {systemDateFormatLabel}"
|
||||
msgstr "Definições do Sistema - {systemDateFormatLabel}"
|
||||
|
||||
#. js-lingui-id: uKM6SP
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "System Settings - {systemNumberFormatLabel}"
|
||||
msgstr "Definições do Sistema - {systemNumberFormatLabel}"
|
||||
|
||||
#. js-lingui-id: 0ZgB1e
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "System Settings - {systemTimeFormatLabel}"
|
||||
msgstr "Definições do Sistema - {systemTimeFormatLabel}"
|
||||
|
||||
#. js-lingui-id: e89dEj
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Monday"
|
||||
msgstr "Definições do Sistema - Segunda-feira"
|
||||
|
||||
#. js-lingui-id: o+Kvng
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Saturday"
|
||||
msgstr "Definições do Sistema - Sábado"
|
||||
|
||||
#. js-lingui-id: gluMQd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Sunday"
|
||||
msgstr "Definições do Sistema - Domingo"
|
||||
|
||||
#. js-lingui-id: HuA3RU
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Tab"
|
||||
@@ -14833,6 +14869,13 @@ msgstr "Não listado"
|
||||
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
|
||||
msgstr "Desbloqueie recursos Enterprise como SSO, segurança ao nível da linha e registos de auditoria."
|
||||
|
||||
#. js-lingui-id: Te2H8x
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
#: src/modules/settings/developers/components/SettingsApiKeysFieldItemTableRow.tsx
|
||||
msgid "Unnamed API Key"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eQMhFX
|
||||
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
|
||||
msgid "unordered"
|
||||
@@ -15102,6 +15145,11 @@ msgstr "Use aplicativos autenticadores e extensões de navegador como 1Password,
|
||||
msgid "Use best models only"
|
||||
msgstr "Usar apenas os melhores modelos"
|
||||
|
||||
#. js-lingui-id: cVOIgV
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Use filter to see existing tools or create your own"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: oTTQsc
|
||||
#: src/modules/settings/domains/utils/getSubdomainValidationSchema.ts
|
||||
msgid "Use letter, number and dash only. Start and finish with a letter or a number"
|
||||
@@ -15641,6 +15689,11 @@ msgstr "Semana"
|
||||
msgid "weeks"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WKHqM+
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Weight"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nTuObL
|
||||
#: src/pages/auth/SignInUp.tsx
|
||||
msgid "Welcome to Twenty"
|
||||
|
||||
@@ -506,10 +506,10 @@ msgstr "1. Tip"
|
||||
msgid "10,000 workflow node executions"
|
||||
msgstr "10.000 de execuții ale nodurilor fluxului de lucru"
|
||||
|
||||
#. js-lingui-id: bM5lnW
|
||||
#. js-lingui-id: rU05hS
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "12h - {hour12Label}"
|
||||
msgstr "12h - {hour12Label}"
|
||||
msgid "12h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 4EdXYs
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -542,10 +542,10 @@ msgstr "20.000 de execuții ale nodurilor fluxului de lucru"
|
||||
msgid "200 OK - {duration}ms"
|
||||
msgstr "200 OK - {duration}ms"
|
||||
|
||||
#. js-lingui-id: mwTnop
|
||||
#. js-lingui-id: W1k7eB
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "24h - {hour24Label}"
|
||||
msgstr "24h - {hour24Label}"
|
||||
msgid "24h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QsMprd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -1456,6 +1456,11 @@ msgstr "Toți membrii"
|
||||
msgid "All Metadata"
|
||||
msgstr "Toate metadatele"
|
||||
|
||||
#. js-lingui-id: zIk4M6
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
msgid "All objects"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: aFE/OW
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsTableHeader.tsx
|
||||
@@ -1746,6 +1751,11 @@ msgstr "Cheia API copiată în clipboard"
|
||||
msgid "API key is required"
|
||||
msgstr "Cheia API este necesară"
|
||||
|
||||
#. js-lingui-id: sb6i1L
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "API key name cannot be empty"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Widx6n
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
msgid "API key roles"
|
||||
@@ -1811,10 +1821,10 @@ msgstr "API-uri"
|
||||
msgid "APIs & Webhooks"
|
||||
msgstr "API-uri şi Webhooks"
|
||||
|
||||
#. js-lingui-id: BnUHmx
|
||||
#. js-lingui-id: 0UMxlw
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Apostrophe and dot - {apostropheAndDotExample}"
|
||||
msgstr "Apostrof și punct - {apostropheAndDotExample}"
|
||||
msgid "Apostrophe and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
@@ -2362,6 +2372,11 @@ msgstr "Deoarece acest flux de lucru nu folosește un declanșator manual, formu
|
||||
msgid "Before"
|
||||
msgstr "Înainte"
|
||||
|
||||
#. js-lingui-id: KYr9vA
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Best"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NgFKo1
|
||||
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getMonthsDescription.ts
|
||||
msgid "between {startMonth} and {endMonth}"
|
||||
@@ -3109,10 +3124,10 @@ msgstr "element din meniul de comenzi"
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr "Comenzi copiate în clipboard"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#. js-lingui-id: QeCopv
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Commas and dot - {commasAndDotExample}"
|
||||
msgstr "Virgule și punct - {commasAndDotExample}"
|
||||
msgid "Commas and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NBdIgR
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
@@ -3218,6 +3233,11 @@ msgstr "Configurează modelele AI implicite și disponibilitatea"
|
||||
msgid "Configure fallback login methods for users with SSO bypass permissions"
|
||||
msgstr "Configurează metode de conectare alternative pentru utilizatorii cu permisiuni de evitare SSO"
|
||||
|
||||
#. js-lingui-id: OLqG0t
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
|
||||
msgid "Configure how this object appears in search results"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ghdb7+
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
|
||||
msgid "Configure how we should display your events in your calendar"
|
||||
@@ -4214,6 +4234,7 @@ msgstr "Rezidența datelor"
|
||||
#. js-lingui-id: r+cVRP
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/field-permissions/components/SettingsRolePermissionsObjectLevelObjectFieldPermissionTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Data type"
|
||||
msgstr "Tip de date"
|
||||
|
||||
@@ -4345,7 +4366,7 @@ msgstr "Dezactivează Fluxul de Lucru"
|
||||
#. js-lingui-id: yAT3be
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
|
||||
@@ -4363,6 +4384,11 @@ msgstr "Informații de depanare"
|
||||
msgid "Decide which Sub-address fields you want to display"
|
||||
msgstr "Decideți ce câmpuri Sub-adresă doriți să afișați"
|
||||
|
||||
#. js-lingui-id: Bn9+El
|
||||
#: src/modules/ai/components/AIChatEditorSection.tsx
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ovBPCi
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
|
||||
@@ -4931,10 +4957,10 @@ msgstr "Nu creați contacte din/în Gmail, Outlook emails"
|
||||
msgid "Don't sync emails from team@ support@ noreply@..."
|
||||
msgstr "Nu sincronizați emailuri de la team@ support@ noreply@..."
|
||||
|
||||
#. js-lingui-id: bd+DPX
|
||||
#. js-lingui-id: Wm78zZ
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Dots and comma - {dotsAndCommaExample}"
|
||||
msgstr "Puncte și virgulă - {dotsAndCommaExample}"
|
||||
msgid "Dots and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LE8J+K
|
||||
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
|
||||
@@ -6355,7 +6381,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
|
||||
msgstr "Nu s-a putut activa licența Enterprise. Verificați cheia sau contactați asistența."
|
||||
|
||||
#. js-lingui-id: vJiM7T
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to activate skill"
|
||||
msgstr "Activarea abilității a eșuat"
|
||||
|
||||
@@ -6380,7 +6406,7 @@ msgid "Failed to delete jobs. Please try again later."
|
||||
msgstr "Eșuat la ștergerea locurilor de muncă. Încercați din nou mai târziu."
|
||||
|
||||
#. js-lingui-id: bmwWKk
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to delete skill"
|
||||
msgstr "Ștergerea abilității a eșuat"
|
||||
|
||||
@@ -6753,9 +6779,6 @@ msgid "Files"
|
||||
msgstr "Fișiere"
|
||||
|
||||
#. js-lingui-id: o7J4JM
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/find-records-action/components/WorkflowEditActionFindRecords.tsx
|
||||
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
|
||||
#: src/modules/views/components/ViewBarFilterButton.tsx
|
||||
@@ -6772,6 +6795,11 @@ msgstr "Filtru"
|
||||
msgid "Filter by event"
|
||||
msgstr "Filtrați după eveniment"
|
||||
|
||||
#. js-lingui-id: yZOiaW
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdown.tsx
|
||||
msgid "Filter by object type"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gVEHcL
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Filter by record ID"
|
||||
@@ -7512,6 +7540,11 @@ msgstr "XML-ul de Metadate al Furnizorului de Identitate"
|
||||
msgid "if"
|
||||
msgstr "dacă"
|
||||
|
||||
#. js-lingui-id: K6ChR5
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "If disabled, use advanced search filters to find these records"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ZfP/Ap
|
||||
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
|
||||
msgid "If this is unexpected, please verify your settings."
|
||||
@@ -7687,6 +7720,11 @@ msgstr "Opțiuni pentru abilitatea inactivă"
|
||||
msgid "Inbox"
|
||||
msgstr "Inbox"
|
||||
|
||||
#. js-lingui-id: Wyip/m
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Include in default search"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mtGDyy
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Incomplete"
|
||||
@@ -9108,6 +9146,7 @@ msgstr "Modele pentru acest furnizor. Comutați pentru a activa sau dezactiva."
|
||||
|
||||
#. js-lingui-id: hty0d5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Monday"
|
||||
msgstr "Luni"
|
||||
|
||||
@@ -9298,6 +9337,7 @@ msgstr "mySkill"
|
||||
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
|
||||
#: src/modules/settings/developers/components/SettingsApiKeysTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
@@ -9539,7 +9579,7 @@ msgstr "Înregistrare nouă"
|
||||
#. js-lingui-id: gWnSyg
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "New Skill"
|
||||
msgstr "Abilitate nouă"
|
||||
|
||||
@@ -10263,6 +10303,7 @@ msgstr "obiect"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Object"
|
||||
@@ -12124,6 +12165,7 @@ msgstr "Rusă"
|
||||
|
||||
#. js-lingui-id: +5kO8P
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Saturday"
|
||||
msgstr "Sâmbătă"
|
||||
|
||||
@@ -12189,6 +12231,7 @@ msgstr "SDK"
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/side-panel/hooks/useOpenRecordsSearchPageInSidePanel.ts
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentWorkspaceMemberPickerDropdown.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
@@ -12248,7 +12291,7 @@ msgid "Search a role..."
|
||||
msgstr "Căutați un rol..."
|
||||
|
||||
#. js-lingui-id: lJNEce
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Search a skill..."
|
||||
msgstr "Căutați o abilitate..."
|
||||
|
||||
@@ -12273,6 +12316,11 @@ msgstr "Căutați un tip"
|
||||
msgid "Search a view..."
|
||||
msgstr "Căutați o vizualizare..."
|
||||
|
||||
#. js-lingui-id: N7Z3jc
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Search across indexed fields..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +7s4fw
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentEntityPickerDropdown.tsx
|
||||
msgid "Search agents"
|
||||
@@ -13043,6 +13091,11 @@ msgstr "Afișează grupul {groupValue}"
|
||||
msgid "Show hidden groups"
|
||||
msgstr "Afișează grupurile ascunse"
|
||||
|
||||
#. js-lingui-id: eOY8jq
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
msgid "Show hidden objects"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qi+g0a
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Show only rows with errors"
|
||||
@@ -13122,12 +13175,12 @@ msgid "Skill"
|
||||
msgstr "Abilitate"
|
||||
|
||||
#. js-lingui-id: h4t38o
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill activated"
|
||||
msgstr "Abilitate activată"
|
||||
|
||||
#. js-lingui-id: /IoK74
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill deleted"
|
||||
msgstr "Abilitate ștearsă"
|
||||
|
||||
@@ -13144,6 +13197,7 @@ msgstr "Abilitatea nu a fost găsită"
|
||||
|
||||
#. js-lingui-id: PCSkw2
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skills"
|
||||
msgstr "Abilități"
|
||||
|
||||
@@ -13289,10 +13343,10 @@ msgstr "Sortări"
|
||||
msgid "Source"
|
||||
msgstr "Sursa"
|
||||
|
||||
#. js-lingui-id: IEtmGM
|
||||
#. js-lingui-id: xqlr9R
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Spaces and comma - {spacesAndCommaExample}"
|
||||
msgstr "Spații și virgulă - {spacesAndCommaExample}"
|
||||
msgid "Spaces and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 65A04M
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -13598,6 +13652,7 @@ msgstr "Sumă"
|
||||
|
||||
#. js-lingui-id: DBC3t5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Sunday"
|
||||
msgstr "Duminică"
|
||||
|
||||
@@ -13746,43 +13801,24 @@ msgstr "Relații de sistem"
|
||||
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
msgid "System settings"
|
||||
msgstr "Setările sistemului"
|
||||
|
||||
#. js-lingui-id: E3AMmw
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
msgid "System settings - {systemDateFormatLabel}"
|
||||
msgstr "Setări sistem - {systemDateFormatLabel}"
|
||||
|
||||
#. js-lingui-id: uKM6SP
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "System Settings - {systemNumberFormatLabel}"
|
||||
msgstr "Setări Sistem - {systemNumberFormatLabel}"
|
||||
|
||||
#. js-lingui-id: 0ZgB1e
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "System Settings - {systemTimeFormatLabel}"
|
||||
msgstr "Setări Sistem - {systemTimeFormatLabel}"
|
||||
|
||||
#. js-lingui-id: e89dEj
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Monday"
|
||||
msgstr "Setări sistem - Luni"
|
||||
|
||||
#. js-lingui-id: o+Kvng
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Saturday"
|
||||
msgstr "Setări sistem - Sâmbătă"
|
||||
|
||||
#. js-lingui-id: gluMQd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Sunday"
|
||||
msgstr "Setări sistem - Duminică"
|
||||
|
||||
#. js-lingui-id: HuA3RU
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Tab"
|
||||
@@ -14833,6 +14869,13 @@ msgstr "Nelistat"
|
||||
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
|
||||
msgstr "Deblocați funcționalități Enterprise precum SSO, securitatea la nivel de rând și jurnalele de audit."
|
||||
|
||||
#. js-lingui-id: Te2H8x
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
#: src/modules/settings/developers/components/SettingsApiKeysFieldItemTableRow.tsx
|
||||
msgid "Unnamed API Key"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eQMhFX
|
||||
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
|
||||
msgid "unordered"
|
||||
@@ -15102,6 +15145,11 @@ msgstr "Folosește aplicații de autentificare și extensii de browser precum 1P
|
||||
msgid "Use best models only"
|
||||
msgstr "Folosește doar cele mai bune modele"
|
||||
|
||||
#. js-lingui-id: cVOIgV
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Use filter to see existing tools or create your own"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: oTTQsc
|
||||
#: src/modules/settings/domains/utils/getSubdomainValidationSchema.ts
|
||||
msgid "Use letter, number and dash only. Start and finish with a letter or a number"
|
||||
@@ -15641,6 +15689,11 @@ msgstr "Săptămână"
|
||||
msgid "weeks"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WKHqM+
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Weight"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nTuObL
|
||||
#: src/pages/auth/SignInUp.tsx
|
||||
msgid "Welcome to Twenty"
|
||||
|
||||
Binary file not shown.
@@ -506,10 +506,10 @@ msgstr "1. Тип"
|
||||
msgid "10,000 workflow node executions"
|
||||
msgstr "10.000 извршења чворова радног тока"
|
||||
|
||||
#. js-lingui-id: bM5lnW
|
||||
#. js-lingui-id: rU05hS
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "12h - {hour12Label}"
|
||||
msgstr "12ч - {hour12Label}"
|
||||
msgid "12h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 4EdXYs
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -542,10 +542,10 @@ msgstr "20.000 извршења чворова радног тока"
|
||||
msgid "200 OK - {duration}ms"
|
||||
msgstr "200 OK - {duration}ms"
|
||||
|
||||
#. js-lingui-id: mwTnop
|
||||
#. js-lingui-id: W1k7eB
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "24h - {hour24Label}"
|
||||
msgstr "24ч - {hour24Label}"
|
||||
msgid "24h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QsMprd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -1456,6 +1456,11 @@ msgstr "Сви чланови"
|
||||
msgid "All Metadata"
|
||||
msgstr "Сви метаподаци"
|
||||
|
||||
#. js-lingui-id: zIk4M6
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
msgid "All objects"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: aFE/OW
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsTableHeader.tsx
|
||||
@@ -1746,6 +1751,11 @@ msgstr "API кључ копиран у клипборд"
|
||||
msgid "API key is required"
|
||||
msgstr "API кључ је обавезан"
|
||||
|
||||
#. js-lingui-id: sb6i1L
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "API key name cannot be empty"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Widx6n
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
msgid "API key roles"
|
||||
@@ -1811,10 +1821,10 @@ msgstr "АПИ-и"
|
||||
msgid "APIs & Webhooks"
|
||||
msgstr "API и Вебхукс"
|
||||
|
||||
#. js-lingui-id: BnUHmx
|
||||
#. js-lingui-id: 0UMxlw
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Apostrophe and dot - {apostropheAndDotExample}"
|
||||
msgstr "Апостроф и тачка - {apostropheAndDotExample}"
|
||||
msgid "Apostrophe and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
@@ -2362,6 +2372,11 @@ msgstr "Пошто овај радни ток не користи ручни о
|
||||
msgid "Before"
|
||||
msgstr "Пре"
|
||||
|
||||
#. js-lingui-id: KYr9vA
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Best"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NgFKo1
|
||||
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getMonthsDescription.ts
|
||||
msgid "between {startMonth} and {endMonth}"
|
||||
@@ -3109,10 +3124,10 @@ msgstr "ставка менија команде"
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr "Команде копиране у клипборд"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#. js-lingui-id: QeCopv
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Commas and dot - {commasAndDotExample}"
|
||||
msgstr "Запете и тачка - {commasAndDotExample}"
|
||||
msgid "Commas and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NBdIgR
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
@@ -3218,6 +3233,11 @@ msgstr "Подесите подразумеване AI моделе и дост
|
||||
msgid "Configure fallback login methods for users with SSO bypass permissions"
|
||||
msgstr "Конфигуришите резервни метод пријаве за кориснике са дозволом за заобилажење SSO-а"
|
||||
|
||||
#. js-lingui-id: OLqG0t
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
|
||||
msgid "Configure how this object appears in search results"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ghdb7+
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
|
||||
msgid "Configure how we should display your events in your calendar"
|
||||
@@ -4214,6 +4234,7 @@ msgstr "Резиденција података"
|
||||
#. js-lingui-id: r+cVRP
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/field-permissions/components/SettingsRolePermissionsObjectLevelObjectFieldPermissionTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Data type"
|
||||
msgstr "Тип података"
|
||||
|
||||
@@ -4345,7 +4366,7 @@ msgstr "Деактивирај радни ток"
|
||||
#. js-lingui-id: yAT3be
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
|
||||
@@ -4363,6 +4384,11 @@ msgstr "Информације за отклањање грешака"
|
||||
msgid "Decide which Sub-address fields you want to display"
|
||||
msgstr "Одлучите која поља под-адресе желите да прикажете"
|
||||
|
||||
#. js-lingui-id: Bn9+El
|
||||
#: src/modules/ai/components/AIChatEditorSection.tsx
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ovBPCi
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
|
||||
@@ -4931,10 +4957,10 @@ msgstr "Не креирајте контакте из/у Gmail, Outlook имеј
|
||||
msgid "Don't sync emails from team@ support@ noreply@..."
|
||||
msgstr "Не синхронизујте имејлове са team@ support@ noreply@..."
|
||||
|
||||
#. js-lingui-id: bd+DPX
|
||||
#. js-lingui-id: Wm78zZ
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Dots and comma - {dotsAndCommaExample}"
|
||||
msgstr "Тачке и запета - {dotsAndCommaExample}"
|
||||
msgid "Dots and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LE8J+K
|
||||
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
|
||||
@@ -6355,7 +6381,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
|
||||
msgstr "Неуспело активирање Enterprise лиценце. Проверите свој кључ или контактирајте подршку."
|
||||
|
||||
#. js-lingui-id: vJiM7T
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to activate skill"
|
||||
msgstr "Није успело активирање вештине"
|
||||
|
||||
@@ -6380,7 +6406,7 @@ msgid "Failed to delete jobs. Please try again later."
|
||||
msgstr "Није успело брисање послова. Покушајте поново касније."
|
||||
|
||||
#. js-lingui-id: bmwWKk
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to delete skill"
|
||||
msgstr "Није успело брисање вештине"
|
||||
|
||||
@@ -6753,9 +6779,6 @@ msgid "Files"
|
||||
msgstr "Датотеке"
|
||||
|
||||
#. js-lingui-id: o7J4JM
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/find-records-action/components/WorkflowEditActionFindRecords.tsx
|
||||
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
|
||||
#: src/modules/views/components/ViewBarFilterButton.tsx
|
||||
@@ -6772,6 +6795,11 @@ msgstr "Филтер"
|
||||
msgid "Filter by event"
|
||||
msgstr "Филтрирајте по догађају"
|
||||
|
||||
#. js-lingui-id: yZOiaW
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdown.tsx
|
||||
msgid "Filter by object type"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gVEHcL
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Filter by record ID"
|
||||
@@ -7512,6 +7540,11 @@ msgstr "XML метаподаци провајдера идентитета"
|
||||
msgid "if"
|
||||
msgstr "ако"
|
||||
|
||||
#. js-lingui-id: K6ChR5
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "If disabled, use advanced search filters to find these records"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ZfP/Ap
|
||||
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
|
||||
msgid "If this is unexpected, please verify your settings."
|
||||
@@ -7687,6 +7720,11 @@ msgstr "Опције неактивне вештине"
|
||||
msgid "Inbox"
|
||||
msgstr "Пријемно сандуче"
|
||||
|
||||
#. js-lingui-id: Wyip/m
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Include in default search"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mtGDyy
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Incomplete"
|
||||
@@ -9108,6 +9146,7 @@ msgstr "Модели за овог провајдера. Пребаците да
|
||||
|
||||
#. js-lingui-id: hty0d5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Monday"
|
||||
msgstr "Понедељак"
|
||||
|
||||
@@ -9298,6 +9337,7 @@ msgstr "mySkill"
|
||||
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
|
||||
#: src/modules/settings/developers/components/SettingsApiKeysTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
@@ -9539,7 +9579,7 @@ msgstr "Нови запис"
|
||||
#. js-lingui-id: gWnSyg
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "New Skill"
|
||||
msgstr "Нова вештина"
|
||||
|
||||
@@ -10263,6 +10303,7 @@ msgstr "објекат"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Object"
|
||||
@@ -12124,6 +12165,7 @@ msgstr "Руски"
|
||||
|
||||
#. js-lingui-id: +5kO8P
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Saturday"
|
||||
msgstr "Субота"
|
||||
|
||||
@@ -12189,6 +12231,7 @@ msgstr "SDK"
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/side-panel/hooks/useOpenRecordsSearchPageInSidePanel.ts
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentWorkspaceMemberPickerDropdown.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
@@ -12248,7 +12291,7 @@ msgid "Search a role..."
|
||||
msgstr "Претражите улогу..."
|
||||
|
||||
#. js-lingui-id: lJNEce
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Search a skill..."
|
||||
msgstr "Претражите вештину..."
|
||||
|
||||
@@ -12273,6 +12316,11 @@ msgstr "Претражите тип"
|
||||
msgid "Search a view..."
|
||||
msgstr "Претражите приказ..."
|
||||
|
||||
#. js-lingui-id: N7Z3jc
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Search across indexed fields..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +7s4fw
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentEntityPickerDropdown.tsx
|
||||
msgid "Search agents"
|
||||
@@ -13043,6 +13091,11 @@ msgstr "Прикажи групу {groupValue}"
|
||||
msgid "Show hidden groups"
|
||||
msgstr "Прикажи скривене групе"
|
||||
|
||||
#. js-lingui-id: eOY8jq
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
msgid "Show hidden objects"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qi+g0a
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Show only rows with errors"
|
||||
@@ -13122,12 +13175,12 @@ msgid "Skill"
|
||||
msgstr "Вештина"
|
||||
|
||||
#. js-lingui-id: h4t38o
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill activated"
|
||||
msgstr "Вештина је активирана"
|
||||
|
||||
#. js-lingui-id: /IoK74
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill deleted"
|
||||
msgstr "Вештина је обрисана"
|
||||
|
||||
@@ -13144,6 +13197,7 @@ msgstr "Вештина није пронађена"
|
||||
|
||||
#. js-lingui-id: PCSkw2
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skills"
|
||||
msgstr "Вештине"
|
||||
|
||||
@@ -13289,10 +13343,10 @@ msgstr "Сортирања"
|
||||
msgid "Source"
|
||||
msgstr "Извор"
|
||||
|
||||
#. js-lingui-id: IEtmGM
|
||||
#. js-lingui-id: xqlr9R
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Spaces and comma - {spacesAndCommaExample}"
|
||||
msgstr "Размаци и запета - {spacesAndCommaExample}"
|
||||
msgid "Spaces and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 65A04M
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -13598,6 +13652,7 @@ msgstr "Збир"
|
||||
|
||||
#. js-lingui-id: DBC3t5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Sunday"
|
||||
msgstr "Недеља"
|
||||
|
||||
@@ -13746,43 +13801,24 @@ msgstr "Системске релације"
|
||||
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
msgid "System settings"
|
||||
msgstr "Подешавања система"
|
||||
|
||||
#. js-lingui-id: E3AMmw
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
msgid "System settings - {systemDateFormatLabel}"
|
||||
msgstr "Подешавања система - {systemDateFormatLabel}"
|
||||
|
||||
#. js-lingui-id: uKM6SP
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "System Settings - {systemNumberFormatLabel}"
|
||||
msgstr "Подешавања система - {systemNumberFormatLabel}"
|
||||
|
||||
#. js-lingui-id: 0ZgB1e
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "System Settings - {systemTimeFormatLabel}"
|
||||
msgstr "Подешавања система - {systemTimeFormatLabel}"
|
||||
|
||||
#. js-lingui-id: e89dEj
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Monday"
|
||||
msgstr "Подешавања система - Понедељак"
|
||||
|
||||
#. js-lingui-id: o+Kvng
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Saturday"
|
||||
msgstr "Подешавања система - Субота"
|
||||
|
||||
#. js-lingui-id: gluMQd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Sunday"
|
||||
msgstr "Подешавања система - Недеља"
|
||||
|
||||
#. js-lingui-id: HuA3RU
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Tab"
|
||||
@@ -14833,6 +14869,13 @@ msgstr "Непостед"
|
||||
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
|
||||
msgstr "Откључајте Enterprise функције као што су SSO, безбедност на нивоу реда и дневници ревизије."
|
||||
|
||||
#. js-lingui-id: Te2H8x
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
#: src/modules/settings/developers/components/SettingsApiKeysFieldItemTableRow.tsx
|
||||
msgid "Unnamed API Key"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eQMhFX
|
||||
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
|
||||
msgid "unordered"
|
||||
@@ -15102,6 +15145,11 @@ msgstr "Користите апликације за аутентификаци
|
||||
msgid "Use best models only"
|
||||
msgstr "Користите само најбоље моделе"
|
||||
|
||||
#. js-lingui-id: cVOIgV
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Use filter to see existing tools or create your own"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: oTTQsc
|
||||
#: src/modules/settings/domains/utils/getSubdomainValidationSchema.ts
|
||||
msgid "Use letter, number and dash only. Start and finish with a letter or a number"
|
||||
@@ -15641,6 +15689,11 @@ msgstr "Недеља"
|
||||
msgid "weeks"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WKHqM+
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Weight"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nTuObL
|
||||
#: src/pages/auth/SignInUp.tsx
|
||||
msgid "Welcome to Twenty"
|
||||
|
||||
@@ -506,10 +506,10 @@ msgstr "1. Typ"
|
||||
msgid "10,000 workflow node executions"
|
||||
msgstr "10 000 utföranden av arbetsflödesnoder"
|
||||
|
||||
#. js-lingui-id: bM5lnW
|
||||
#. js-lingui-id: rU05hS
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "12h - {hour12Label}"
|
||||
msgstr "12h - {hour12Label}"
|
||||
msgid "12h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 4EdXYs
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -542,10 +542,10 @@ msgstr "20 000 utföranden av arbetsflödesnoder"
|
||||
msgid "200 OK - {duration}ms"
|
||||
msgstr "200 OK - {duration}ms"
|
||||
|
||||
#. js-lingui-id: mwTnop
|
||||
#. js-lingui-id: W1k7eB
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "24h - {hour24Label}"
|
||||
msgstr "24h - {hour24Label}"
|
||||
msgid "24h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QsMprd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -1456,6 +1456,11 @@ msgstr "Alla medlemmar"
|
||||
msgid "All Metadata"
|
||||
msgstr "All metadata"
|
||||
|
||||
#. js-lingui-id: zIk4M6
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
msgid "All objects"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: aFE/OW
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsTableHeader.tsx
|
||||
@@ -1746,6 +1751,11 @@ msgstr "API-nyckel kopierad till urklipp"
|
||||
msgid "API key is required"
|
||||
msgstr "API-nyckel krävs"
|
||||
|
||||
#. js-lingui-id: sb6i1L
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "API key name cannot be empty"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Widx6n
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
msgid "API key roles"
|
||||
@@ -1811,10 +1821,10 @@ msgstr "API:er"
|
||||
msgid "APIs & Webhooks"
|
||||
msgstr "API:er & Webhooks"
|
||||
|
||||
#. js-lingui-id: BnUHmx
|
||||
#. js-lingui-id: 0UMxlw
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Apostrophe and dot - {apostropheAndDotExample}"
|
||||
msgstr "Apostrof och punkt - {apostropheAndDotExample}"
|
||||
msgid "Apostrophe and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
@@ -2362,6 +2372,11 @@ msgstr "Eftersom det här arbetsflödet inte använder en manuell utlösare öpp
|
||||
msgid "Before"
|
||||
msgstr "Före"
|
||||
|
||||
#. js-lingui-id: KYr9vA
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Best"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NgFKo1
|
||||
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getMonthsDescription.ts
|
||||
msgid "between {startMonth} and {endMonth}"
|
||||
@@ -3109,10 +3124,10 @@ msgstr "kommandomenyalternativ"
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr "Kommandon kopierade till urklipp"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#. js-lingui-id: QeCopv
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Commas and dot - {commasAndDotExample}"
|
||||
msgstr "Kommatecken och punkt - {commasAndDotExample}"
|
||||
msgid "Commas and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NBdIgR
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
@@ -3218,6 +3233,11 @@ msgstr ""
|
||||
msgid "Configure fallback login methods for users with SSO bypass permissions"
|
||||
msgstr "Konfigurera alternativa inloggningsmetoder för användare med SSO-förbikopplingsrättigheter"
|
||||
|
||||
#. js-lingui-id: OLqG0t
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
|
||||
msgid "Configure how this object appears in search results"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ghdb7+
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
|
||||
msgid "Configure how we should display your events in your calendar"
|
||||
@@ -4214,6 +4234,7 @@ msgstr "Datahemvist"
|
||||
#. js-lingui-id: r+cVRP
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/field-permissions/components/SettingsRolePermissionsObjectLevelObjectFieldPermissionTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Data type"
|
||||
msgstr "Datatyp"
|
||||
|
||||
@@ -4345,7 +4366,7 @@ msgstr "Inaktivera arbetsflöde"
|
||||
#. js-lingui-id: yAT3be
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
|
||||
@@ -4363,6 +4384,11 @@ msgstr "Felsökningsinfo"
|
||||
msgid "Decide which Sub-address fields you want to display"
|
||||
msgstr "Bestäm vilka deladressfält du vill visa"
|
||||
|
||||
#. js-lingui-id: Bn9+El
|
||||
#: src/modules/ai/components/AIChatEditorSection.tsx
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ovBPCi
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
|
||||
@@ -4931,10 +4957,10 @@ msgstr "Skapa inte kontakter från/till Gmail, Outlook e-post"
|
||||
msgid "Don't sync emails from team@ support@ noreply@..."
|
||||
msgstr "Synka inte e-post från team@ support@ noreply@..."
|
||||
|
||||
#. js-lingui-id: bd+DPX
|
||||
#. js-lingui-id: Wm78zZ
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Dots and comma - {dotsAndCommaExample}"
|
||||
msgstr "Punkt och komma - {dotsAndCommaExample}"
|
||||
msgid "Dots and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LE8J+K
|
||||
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
|
||||
@@ -6355,7 +6381,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
|
||||
msgstr "Det gick inte att aktivera Enterprise-licensen. Kontrollera din nyckel eller kontakta support."
|
||||
|
||||
#. js-lingui-id: vJiM7T
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to activate skill"
|
||||
msgstr "Det gick inte att aktivera färdigheten"
|
||||
|
||||
@@ -6380,7 +6406,7 @@ msgid "Failed to delete jobs. Please try again later."
|
||||
msgstr "Det gick inte att radera jobben. Försök igen senare."
|
||||
|
||||
#. js-lingui-id: bmwWKk
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to delete skill"
|
||||
msgstr "Det gick inte att ta bort färdigheten"
|
||||
|
||||
@@ -6753,9 +6779,6 @@ msgid "Files"
|
||||
msgstr "Filer"
|
||||
|
||||
#. js-lingui-id: o7J4JM
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/find-records-action/components/WorkflowEditActionFindRecords.tsx
|
||||
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
|
||||
#: src/modules/views/components/ViewBarFilterButton.tsx
|
||||
@@ -6772,6 +6795,11 @@ msgstr "Filtrera"
|
||||
msgid "Filter by event"
|
||||
msgstr "Filtrera efter händelse"
|
||||
|
||||
#. js-lingui-id: yZOiaW
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdown.tsx
|
||||
msgid "Filter by object type"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gVEHcL
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Filter by record ID"
|
||||
@@ -7512,6 +7540,11 @@ msgstr "Metadata XML för identitetsleverantör"
|
||||
msgid "if"
|
||||
msgstr "om"
|
||||
|
||||
#. js-lingui-id: K6ChR5
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "If disabled, use advanced search filters to find these records"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ZfP/Ap
|
||||
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
|
||||
msgid "If this is unexpected, please verify your settings."
|
||||
@@ -7687,6 +7720,11 @@ msgstr "Inaktiva färdighetsalternativ"
|
||||
msgid "Inbox"
|
||||
msgstr "Inkorg"
|
||||
|
||||
#. js-lingui-id: Wyip/m
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Include in default search"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mtGDyy
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Incomplete"
|
||||
@@ -9108,6 +9146,7 @@ msgstr "Modeller för den här leverantören. Växla för att aktivera eller ina
|
||||
|
||||
#. js-lingui-id: hty0d5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Monday"
|
||||
msgstr ""
|
||||
"M\n"
|
||||
@@ -9300,6 +9339,7 @@ msgstr "mySkill"
|
||||
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
|
||||
#: src/modules/settings/developers/components/SettingsApiKeysTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
@@ -9541,7 +9581,7 @@ msgstr "Ny post"
|
||||
#. js-lingui-id: gWnSyg
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "New Skill"
|
||||
msgstr "Ny färdighet"
|
||||
|
||||
@@ -10265,6 +10305,7 @@ msgstr "objekt"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Object"
|
||||
@@ -12126,6 +12167,7 @@ msgstr "Russian"
|
||||
|
||||
#. js-lingui-id: +5kO8P
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Saturday"
|
||||
msgstr ""
|
||||
"L\n"
|
||||
@@ -12193,6 +12235,7 @@ msgstr "SDK"
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/side-panel/hooks/useOpenRecordsSearchPageInSidePanel.ts
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentWorkspaceMemberPickerDropdown.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
@@ -12252,7 +12295,7 @@ msgid "Search a role..."
|
||||
msgstr "Sök en roll..."
|
||||
|
||||
#. js-lingui-id: lJNEce
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Search a skill..."
|
||||
msgstr "Sök en färdighet..."
|
||||
|
||||
@@ -12277,6 +12320,11 @@ msgstr "Sök en typ"
|
||||
msgid "Search a view..."
|
||||
msgstr "Sök efter en vy..."
|
||||
|
||||
#. js-lingui-id: N7Z3jc
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Search across indexed fields..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +7s4fw
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentEntityPickerDropdown.tsx
|
||||
msgid "Search agents"
|
||||
@@ -13047,6 +13095,11 @@ msgstr "Visa grupp {groupValue}"
|
||||
msgid "Show hidden groups"
|
||||
msgstr "Visa dolda grupper"
|
||||
|
||||
#. js-lingui-id: eOY8jq
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
msgid "Show hidden objects"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qi+g0a
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Show only rows with errors"
|
||||
@@ -13126,12 +13179,12 @@ msgid "Skill"
|
||||
msgstr "Färdighet"
|
||||
|
||||
#. js-lingui-id: h4t38o
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill activated"
|
||||
msgstr "Färdighet aktiverad"
|
||||
|
||||
#. js-lingui-id: /IoK74
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill deleted"
|
||||
msgstr "Färdighet raderad"
|
||||
|
||||
@@ -13148,6 +13201,7 @@ msgstr "Färdighet hittades inte"
|
||||
|
||||
#. js-lingui-id: PCSkw2
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skills"
|
||||
msgstr "Färdigheter"
|
||||
|
||||
@@ -13293,10 +13347,10 @@ msgstr "Sorteringar"
|
||||
msgid "Source"
|
||||
msgstr "Källa"
|
||||
|
||||
#. js-lingui-id: IEtmGM
|
||||
#. js-lingui-id: xqlr9R
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Spaces and comma - {spacesAndCommaExample}"
|
||||
msgstr "Mellanslag och komma - {spacesAndCommaExample}"
|
||||
msgid "Spaces and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 65A04M
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -13602,6 +13656,7 @@ msgstr "Summa"
|
||||
|
||||
#. js-lingui-id: DBC3t5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Sunday"
|
||||
msgstr ""
|
||||
"S\n"
|
||||
@@ -13752,49 +13807,24 @@ msgstr "Systemrelationer"
|
||||
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
msgid "System settings"
|
||||
msgstr "Systeminställningar"
|
||||
|
||||
#. js-lingui-id: E3AMmw
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
msgid "System settings - {systemDateFormatLabel}"
|
||||
msgstr "Systeminställningar - {systemDateFormatLabel}"
|
||||
|
||||
#. js-lingui-id: uKM6SP
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "System Settings - {systemNumberFormatLabel}"
|
||||
msgstr "Systeminställningar - {systemNumberFormatLabel}"
|
||||
|
||||
#. js-lingui-id: 0ZgB1e
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "System Settings - {systemTimeFormatLabel}"
|
||||
msgstr "Systeminställningar - {systemTimeFormatLabel}"
|
||||
|
||||
#. js-lingui-id: e89dEj
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Monday"
|
||||
msgstr ""
|
||||
"Systeminst | ||||