Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b38dd8a92d | ||
|
|
aafd9a8f3e | ||
|
|
ad769ba14e | ||
|
|
0b8e0acd51 | ||
|
|
d8c85eaba4 | ||
|
|
1832505f00 | ||
|
|
956f1fc268 |
@@ -0,0 +1,53 @@
|
||||
name: CI Tinybird
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- feature/reimplement-tinybird
|
||||
- main
|
||||
paths:
|
||||
- 'package.json'
|
||||
- 'packages/twenty-tinybird/**'
|
||||
|
||||
pull_request:
|
||||
paths:
|
||||
- 'package.json'
|
||||
- 'packages/twenty-tinybird/**'
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
env:
|
||||
TINYBIRD_HOST: https://api.eu-central-1.aws.tinybird.co
|
||||
TINYBIRD_TOKEN: ${{ secrets.TB_ADMIN_TOKEN }}
|
||||
|
||||
jobs:
|
||||
changed-files-check:
|
||||
uses: ./.github/workflows/changed-files.yaml
|
||||
with:
|
||||
files: packages/twenty-tinybird/**
|
||||
ci:
|
||||
runs-on: ubuntu-latest
|
||||
needs: changed-files-check
|
||||
if: needs.changed-files-check.outputs.any_changed == 'true'
|
||||
timeout-minutes: 10
|
||||
defaults:
|
||||
run:
|
||||
working-directory: './packages/twenty-tinybird'
|
||||
services:
|
||||
tinybird:
|
||||
image: tinybirdco/tinybird-local:beta
|
||||
ports:
|
||||
- 7181:7181
|
||||
steps:
|
||||
- uses: actions/checkout@master
|
||||
with:
|
||||
fetch-depth: 1
|
||||
ref: ${{ github.event.pull_request.head.sha }}
|
||||
- name: Install Tinybird CLI
|
||||
run: curl https://tinybird.co | sh
|
||||
- name: Build project
|
||||
run: tb build
|
||||
- name: Test project
|
||||
run: tb test run
|
||||
|
||||
@@ -1,27 +1,14 @@
|
||||
# Makefile for building Twenty CRM docker images.
|
||||
# Set the tag and/or target build platform using make command-line variables assignments.
|
||||
#
|
||||
# Optional make variables:
|
||||
# PLATFORM - defaults to 'linux/amd64'
|
||||
# TAG - defaults to 'latest'
|
||||
#
|
||||
# Example: make
|
||||
# Example: make PLATFORM=linux/aarch64 TAG=my-tag
|
||||
|
||||
PLATFORM ?= linux/amd64
|
||||
TAG ?= latest
|
||||
|
||||
prod-build:
|
||||
@cd ../.. && docker build -f ./packages/twenty-docker/twenty/Dockerfile --platform $(PLATFORM) --tag twenty:$(TAG) . && cd -
|
||||
@cd ../.. && docker build -f ./packages/twenty-docker/twenty/Dockerfile --tag twenty . && cd -
|
||||
|
||||
prod-run:
|
||||
@docker run -d -p 3000:3000 --name twenty twenty:$(TAG)
|
||||
@docker run -d -p 3000:3000 --name twenty twenty
|
||||
|
||||
prod-postgres-run:
|
||||
@docker run -d -p 5432:5432 -e POSTGRES_USER=postgres -e POSTGRES_PASSWORD=postgres --name twenty-postgres twenty-postgres:$(TAG)
|
||||
@docker run -d -p 5432:5432 -e POSTGRES_USER=postgres -e POSTGRES_PASSWORD=postgres --name twenty-postgres twenty-postgres
|
||||
|
||||
prod-website-build:
|
||||
@cd ../.. && docker build -f ./packages/twenty-docker/twenty-website/Dockerfile --platform $(PLATFORM) --tag twenty-website:$(TAG) . && cd -
|
||||
@cd ../.. && docker build -f ./packages/twenty-docker/twenty-website/Dockerfile --tag twenty-website . && cd -
|
||||
|
||||
prod-website-run:
|
||||
@docker run -d -p 3000:3000 --name twenty-website twenty-website:$(TAG)
|
||||
@docker run -d -p 3000:3000 --name twenty-website twenty-website
|
||||
|
||||
@@ -10,9 +10,8 @@ if [ "${DISABLE_DB_MIGRATIONS}" != "true" ] && [ ! -f /app/docker-data/db_status
|
||||
PGPASS=$(echo $PG_DATABASE_URL | awk -F ':' '{print $3}' | awk -F '@' '{print $1}')
|
||||
PGHOST=$(echo $PG_DATABASE_URL | awk -F '@' '{print $2}' | awk -F ':' '{print $1}')
|
||||
PGPORT=$(echo $PG_DATABASE_URL | awk -F ':' '{print $4}' | awk -F '/' '{print $1}')
|
||||
PGDATABASE=$(echo $PG_DATABASE_URL | awk -F ':' '{print $4}' | awk -F '/' '{print $2}')
|
||||
PGPASSWORD=${PGPASS} psql -h ${PGHOST} -p ${PGPORT} -U ${PGUSER} -d postgres -tc "SELECT 1 FROM pg_database WHERE datname = '${PGDATABASE}'" | grep -q 1 || \
|
||||
PGPASSWORD=${PGPASS} psql -h ${PGHOST} -p ${PGPORT} -U ${PGUSER} -d postgres -c "CREATE DATABASE \"${PGDATABASE}\""
|
||||
PGPASSWORD=${PGPASS} psql -h ${PGHOST} -p ${PGPORT} -U ${PGUSER} -d postgres -tc "SELECT 1 FROM pg_database WHERE datname = 'default'" | grep -q 1 || \
|
||||
PGPASSWORD=${PGPASS} psql -h ${PGHOST} -p ${PGPORT} -U ${PGUSER} -d postgres -c "CREATE DATABASE \"default\""
|
||||
|
||||
# Run setup and migration scripts
|
||||
NODE_OPTIONS="--max-old-space-size=1500" tsx ./scripts/setup-db.ts
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "twenty-e2e-testing",
|
||||
"version": "0.50.1",
|
||||
"version": "0.44.16",
|
||||
"description": "",
|
||||
"author": "",
|
||||
"private": true,
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
import { defineConfig } from '@lingui/conf';
|
||||
import { formatter } from '@lingui/format-po';
|
||||
import { APP_LOCALES, SOURCE_LOCALE } from 'twenty-shared/translations';
|
||||
import { APP_LOCALES } from 'twenty-shared/translations';
|
||||
|
||||
export default defineConfig({
|
||||
sourceLocale: 'en',
|
||||
locales: Object.values(APP_LOCALES),
|
||||
pseudoLocale: 'pseudo-en',
|
||||
fallbackLocales: {
|
||||
default: SOURCE_LOCALE,
|
||||
'pseudo-en': 'en',
|
||||
},
|
||||
extractorParserOptions: {
|
||||
tsExperimentalDecorators: true,
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "twenty-emails",
|
||||
"version": "0.50.1",
|
||||
"version": "0.44.17",
|
||||
"description": "",
|
||||
"author": "",
|
||||
"private": true,
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import { defineConfig } from '@lingui/conf';
|
||||
import { formatter } from '@lingui/format-po';
|
||||
import { APP_LOCALES, SOURCE_LOCALE } from 'twenty-shared/translations';
|
||||
import { APP_LOCALES } from 'twenty-shared/translations';
|
||||
|
||||
export default defineConfig({
|
||||
sourceLocale: 'en',
|
||||
@@ -8,7 +8,6 @@ export default defineConfig({
|
||||
pseudoLocale: 'pseudo-en',
|
||||
fallbackLocales: {
|
||||
'pseudo-en': 'en',
|
||||
default: SOURCE_LOCALE,
|
||||
},
|
||||
catalogs: [
|
||||
{
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "twenty-front",
|
||||
"version": "0.50.1",
|
||||
"version": "0.44.17",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
|
||||
@@ -24,12 +24,12 @@ const documents = {
|
||||
"\n \n query GetManyDatabaseConnections($input: RemoteServerTypeInput!) {\n findManyRemoteServersByType(input: $input) {\n ...RemoteServerFields\n }\n }\n": types.GetManyDatabaseConnectionsDocument,
|
||||
"\n \n query GetManyRemoteTables($input: FindManyRemoteTablesInput!) {\n findDistantTablesWithStatus(input: $input) {\n ...RemoteTableFields\n }\n }\n": types.GetManyRemoteTablesDocument,
|
||||
"\n \n query GetOneDatabaseConnection($input: RemoteServerIdInput!) {\n findOneRemoteServerById(input: $input) {\n ...RemoteServerFields\n }\n }\n": types.GetOneDatabaseConnectionDocument,
|
||||
"\n mutation CreateOneObjectMetadataItem($input: CreateOneObjectInput!) {\n createOneObject(input: $input) {\n id\n dataSourceId\n nameSingular\n namePlural\n labelSingular\n labelPlural\n description\n icon\n isCustom\n isActive\n isSearchable\n createdAt\n updatedAt\n labelIdentifierFieldMetadataId\n imageIdentifierFieldMetadataId\n isLabelSyncedWithName\n }\n }\n": types.CreateOneObjectMetadataItemDocument,
|
||||
"\n mutation CreateOneFieldMetadataItem($input: CreateOneFieldMetadataInput!) {\n createOneField(input: $input) {\n id\n type\n name\n label\n description\n icon\n isCustom\n isActive\n isNullable\n createdAt\n updatedAt\n settings\n defaultValue\n options\n isLabelSyncedWithName\n }\n }\n": types.CreateOneFieldMetadataItemDocument,
|
||||
"\n mutation CreateOneObjectMetadataItem($input: CreateOneObjectInput!) {\n createOneObject(input: $input) {\n id\n dataSourceId\n nameSingular\n namePlural\n labelSingular\n labelPlural\n description\n icon\n isCustom\n isActive\n isSearchable\n createdAt\n updatedAt\n labelIdentifierFieldMetadataId\n imageIdentifierFieldMetadataId\n }\n }\n": types.CreateOneObjectMetadataItemDocument,
|
||||
"\n mutation CreateOneFieldMetadataItem($input: CreateOneFieldMetadataInput!) {\n createOneField(input: $input) {\n id\n type\n name\n label\n description\n icon\n isCustom\n isActive\n isNullable\n createdAt\n updatedAt\n settings\n defaultValue\n options\n }\n }\n": types.CreateOneFieldMetadataItemDocument,
|
||||
"\n mutation CreateOneRelationMetadataItem(\n $input: CreateOneRelationMetadataInput!\n ) {\n createOneRelationMetadata(input: $input) {\n id\n relationType\n fromObjectMetadataId\n toObjectMetadataId\n fromFieldMetadataId\n toFieldMetadataId\n createdAt\n updatedAt\n }\n }\n": types.CreateOneRelationMetadataItemDocument,
|
||||
"\n mutation UpdateOneFieldMetadataItem(\n $idToUpdate: UUID!\n $updatePayload: UpdateFieldInput!\n ) {\n updateOneField(input: { id: $idToUpdate, update: $updatePayload }) {\n id\n type\n name\n label\n description\n icon\n isCustom\n isActive\n isNullable\n createdAt\n updatedAt\n settings\n isLabelSyncedWithName\n }\n }\n": types.UpdateOneFieldMetadataItemDocument,
|
||||
"\n mutation UpdateOneObjectMetadataItem(\n $idToUpdate: UUID!\n $updatePayload: UpdateObjectPayload!\n ) {\n updateOneObject(input: { id: $idToUpdate, update: $updatePayload }) {\n id\n dataSourceId\n nameSingular\n namePlural\n labelSingular\n labelPlural\n description\n icon\n isCustom\n isActive\n isSearchable\n createdAt\n updatedAt\n labelIdentifierFieldMetadataId\n imageIdentifierFieldMetadataId\n isLabelSyncedWithName\n }\n }\n": types.UpdateOneObjectMetadataItemDocument,
|
||||
"\n mutation DeleteOneObjectMetadataItem($idToDelete: UUID!) {\n deleteOneObject(input: { id: $idToDelete }) {\n id\n dataSourceId\n nameSingular\n namePlural\n labelSingular\n labelPlural\n description\n icon\n isCustom\n isActive\n isSearchable\n createdAt\n updatedAt\n labelIdentifierFieldMetadataId\n imageIdentifierFieldMetadataId\n isLabelSyncedWithName\n }\n }\n": types.DeleteOneObjectMetadataItemDocument,
|
||||
"\n mutation UpdateOneObjectMetadataItem(\n $idToUpdate: UUID!\n $updatePayload: UpdateObjectPayload!\n ) {\n updateOneObject(input: { id: $idToUpdate, update: $updatePayload }) {\n id\n dataSourceId\n nameSingular\n namePlural\n labelSingular\n labelPlural\n description\n icon\n isCustom\n isActive\n isSearchable\n createdAt\n updatedAt\n labelIdentifierFieldMetadataId\n imageIdentifierFieldMetadataId\n }\n }\n": types.UpdateOneObjectMetadataItemDocument,
|
||||
"\n mutation DeleteOneObjectMetadataItem($idToDelete: UUID!) {\n deleteOneObject(input: { id: $idToDelete }) {\n id\n dataSourceId\n nameSingular\n namePlural\n labelSingular\n labelPlural\n description\n icon\n isCustom\n isActive\n isSearchable\n createdAt\n updatedAt\n labelIdentifierFieldMetadataId\n imageIdentifierFieldMetadataId\n }\n }\n": types.DeleteOneObjectMetadataItemDocument,
|
||||
"\n mutation DeleteOneFieldMetadataItem($idToDelete: UUID!) {\n deleteOneField(input: { id: $idToDelete }) {\n id\n type\n name\n label\n description\n icon\n isCustom\n isActive\n isNullable\n createdAt\n updatedAt\n settings\n }\n }\n": types.DeleteOneFieldMetadataItemDocument,
|
||||
"\n mutation DeleteOneRelationMetadataItem($idToDelete: UUID!) {\n deleteOneRelation(input: { id: $idToDelete }) {\n id\n }\n }\n": types.DeleteOneRelationMetadataItemDocument,
|
||||
"\n query ObjectMetadataItems {\n objects(paging: { first: 1000 }) {\n edges {\n node {\n id\n dataSourceId\n nameSingular\n namePlural\n labelSingular\n labelPlural\n description\n icon\n isCustom\n isRemote\n isActive\n isSystem\n createdAt\n updatedAt\n labelIdentifierFieldMetadataId\n imageIdentifierFieldMetadataId\n shortcut\n isLabelSyncedWithName\n isSearchable\n duplicateCriteria\n indexMetadatas(paging: { first: 100 }) {\n edges {\n node {\n id\n createdAt\n updatedAt\n name\n indexWhereClause\n indexType\n isUnique\n indexFieldMetadatas(paging: { first: 100 }) {\n edges {\n node {\n id\n createdAt\n updatedAt\n order\n fieldMetadataId\n }\n }\n }\n }\n }\n }\n fieldsList {\n id\n type\n name\n label\n description\n icon\n isCustom\n isActive\n isSystem\n isNullable\n isUnique\n createdAt\n updatedAt\n defaultValue\n options\n settings\n isLabelSyncedWithName\n relationDefinition {\n relationId\n direction\n sourceObjectMetadata {\n id\n nameSingular\n namePlural\n }\n sourceFieldMetadata {\n id\n name\n }\n targetObjectMetadata {\n id\n nameSingular\n namePlural\n }\n targetFieldMetadata {\n id\n name\n }\n }\n }\n }\n }\n pageInfo {\n hasNextPage\n hasPreviousPage\n startCursor\n endCursor\n }\n }\n }\n": types.ObjectMetadataItemsDocument,
|
||||
@@ -106,11 +106,11 @@ export function graphql(source: "\n \n query GetOneDatabaseConnection($input:
|
||||
/**
|
||||
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
||||
*/
|
||||
export function graphql(source: "\n mutation CreateOneObjectMetadataItem($input: CreateOneObjectInput!) {\n createOneObject(input: $input) {\n id\n dataSourceId\n nameSingular\n namePlural\n labelSingular\n labelPlural\n description\n icon\n isCustom\n isActive\n isSearchable\n createdAt\n updatedAt\n labelIdentifierFieldMetadataId\n imageIdentifierFieldMetadataId\n isLabelSyncedWithName\n }\n }\n"): (typeof documents)["\n mutation CreateOneObjectMetadataItem($input: CreateOneObjectInput!) {\n createOneObject(input: $input) {\n id\n dataSourceId\n nameSingular\n namePlural\n labelSingular\n labelPlural\n description\n icon\n isCustom\n isActive\n isSearchable\n createdAt\n updatedAt\n labelIdentifierFieldMetadataId\n imageIdentifierFieldMetadataId\n isLabelSyncedWithName\n }\n }\n"];
|
||||
export function graphql(source: "\n mutation CreateOneObjectMetadataItem($input: CreateOneObjectInput!) {\n createOneObject(input: $input) {\n id\n dataSourceId\n nameSingular\n namePlural\n labelSingular\n labelPlural\n description\n icon\n isCustom\n isActive\n isSearchable\n createdAt\n updatedAt\n labelIdentifierFieldMetadataId\n imageIdentifierFieldMetadataId\n }\n }\n"): (typeof documents)["\n mutation CreateOneObjectMetadataItem($input: CreateOneObjectInput!) {\n createOneObject(input: $input) {\n id\n dataSourceId\n nameSingular\n namePlural\n labelSingular\n labelPlural\n description\n icon\n isCustom\n isActive\n isSearchable\n createdAt\n updatedAt\n labelIdentifierFieldMetadataId\n imageIdentifierFieldMetadataId\n }\n }\n"];
|
||||
/**
|
||||
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
||||
*/
|
||||
export function graphql(source: "\n mutation CreateOneFieldMetadataItem($input: CreateOneFieldMetadataInput!) {\n createOneField(input: $input) {\n id\n type\n name\n label\n description\n icon\n isCustom\n isActive\n isNullable\n createdAt\n updatedAt\n settings\n defaultValue\n options\n isLabelSyncedWithName\n }\n }\n"): (typeof documents)["\n mutation CreateOneFieldMetadataItem($input: CreateOneFieldMetadataInput!) {\n createOneField(input: $input) {\n id\n type\n name\n label\n description\n icon\n isCustom\n isActive\n isNullable\n createdAt\n updatedAt\n settings\n defaultValue\n options\n isLabelSyncedWithName\n }\n }\n"];
|
||||
export function graphql(source: "\n mutation CreateOneFieldMetadataItem($input: CreateOneFieldMetadataInput!) {\n createOneField(input: $input) {\n id\n type\n name\n label\n description\n icon\n isCustom\n isActive\n isNullable\n createdAt\n updatedAt\n settings\n defaultValue\n options\n }\n }\n"): (typeof documents)["\n mutation CreateOneFieldMetadataItem($input: CreateOneFieldMetadataInput!) {\n createOneField(input: $input) {\n id\n type\n name\n label\n description\n icon\n isCustom\n isActive\n isNullable\n createdAt\n updatedAt\n settings\n defaultValue\n options\n }\n }\n"];
|
||||
/**
|
||||
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
||||
*/
|
||||
@@ -122,11 +122,11 @@ export function graphql(source: "\n mutation UpdateOneFieldMetadataItem(\n $
|
||||
/**
|
||||
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
||||
*/
|
||||
export function graphql(source: "\n mutation UpdateOneObjectMetadataItem(\n $idToUpdate: UUID!\n $updatePayload: UpdateObjectPayload!\n ) {\n updateOneObject(input: { id: $idToUpdate, update: $updatePayload }) {\n id\n dataSourceId\n nameSingular\n namePlural\n labelSingular\n labelPlural\n description\n icon\n isCustom\n isActive\n isSearchable\n createdAt\n updatedAt\n labelIdentifierFieldMetadataId\n imageIdentifierFieldMetadataId\n isLabelSyncedWithName\n }\n }\n"): (typeof documents)["\n mutation UpdateOneObjectMetadataItem(\n $idToUpdate: UUID!\n $updatePayload: UpdateObjectPayload!\n ) {\n updateOneObject(input: { id: $idToUpdate, update: $updatePayload }) {\n id\n dataSourceId\n nameSingular\n namePlural\n labelSingular\n labelPlural\n description\n icon\n isCustom\n isActive\n isSearchable\n createdAt\n updatedAt\n labelIdentifierFieldMetadataId\n imageIdentifierFieldMetadataId\n isLabelSyncedWithName\n }\n }\n"];
|
||||
export function graphql(source: "\n mutation UpdateOneObjectMetadataItem(\n $idToUpdate: UUID!\n $updatePayload: UpdateObjectPayload!\n ) {\n updateOneObject(input: { id: $idToUpdate, update: $updatePayload }) {\n id\n dataSourceId\n nameSingular\n namePlural\n labelSingular\n labelPlural\n description\n icon\n isCustom\n isActive\n isSearchable\n createdAt\n updatedAt\n labelIdentifierFieldMetadataId\n imageIdentifierFieldMetadataId\n }\n }\n"): (typeof documents)["\n mutation UpdateOneObjectMetadataItem(\n $idToUpdate: UUID!\n $updatePayload: UpdateObjectPayload!\n ) {\n updateOneObject(input: { id: $idToUpdate, update: $updatePayload }) {\n id\n dataSourceId\n nameSingular\n namePlural\n labelSingular\n labelPlural\n description\n icon\n isCustom\n isActive\n isSearchable\n createdAt\n updatedAt\n labelIdentifierFieldMetadataId\n imageIdentifierFieldMetadataId\n }\n }\n"];
|
||||
/**
|
||||
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
||||
*/
|
||||
export function graphql(source: "\n mutation DeleteOneObjectMetadataItem($idToDelete: UUID!) {\n deleteOneObject(input: { id: $idToDelete }) {\n id\n dataSourceId\n nameSingular\n namePlural\n labelSingular\n labelPlural\n description\n icon\n isCustom\n isActive\n isSearchable\n createdAt\n updatedAt\n labelIdentifierFieldMetadataId\n imageIdentifierFieldMetadataId\n isLabelSyncedWithName\n }\n }\n"): (typeof documents)["\n mutation DeleteOneObjectMetadataItem($idToDelete: UUID!) {\n deleteOneObject(input: { id: $idToDelete }) {\n id\n dataSourceId\n nameSingular\n namePlural\n labelSingular\n labelPlural\n description\n icon\n isCustom\n isActive\n isSearchable\n createdAt\n updatedAt\n labelIdentifierFieldMetadataId\n imageIdentifierFieldMetadataId\n isLabelSyncedWithName\n }\n }\n"];
|
||||
export function graphql(source: "\n mutation DeleteOneObjectMetadataItem($idToDelete: UUID!) {\n deleteOneObject(input: { id: $idToDelete }) {\n id\n dataSourceId\n nameSingular\n namePlural\n labelSingular\n labelPlural\n description\n icon\n isCustom\n isActive\n isSearchable\n createdAt\n updatedAt\n labelIdentifierFieldMetadataId\n imageIdentifierFieldMetadataId\n }\n }\n"): (typeof documents)["\n mutation DeleteOneObjectMetadataItem($idToDelete: UUID!) {\n deleteOneObject(input: { id: $idToDelete }) {\n id\n dataSourceId\n nameSingular\n namePlural\n labelSingular\n labelPlural\n description\n icon\n isCustom\n isActive\n isSearchable\n createdAt\n updatedAt\n labelIdentifierFieldMetadataId\n imageIdentifierFieldMetadataId\n }\n }\n"];
|
||||
/**
|
||||
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
||||
*/
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -1,5 +1,5 @@
|
||||
import { gql } from '@apollo/client';
|
||||
import * as Apollo from '@apollo/client';
|
||||
import { gql } from '@apollo/client';
|
||||
export type Maybe<T> = T | null;
|
||||
export type InputMaybe<T> = Maybe<T>;
|
||||
export type Exact<T extends { [key: string]: unknown }> = { [K in keyof T]: T[K] };
|
||||
@@ -55,6 +55,16 @@ export type Analytics = {
|
||||
success: Scalars['Boolean'];
|
||||
};
|
||||
|
||||
export type AnalyticsTinybirdJwtMap = {
|
||||
__typename?: 'AnalyticsTinybirdJwtMap';
|
||||
getPageviewsAnalytics: Scalars['String'];
|
||||
getServerlessFunctionDuration: Scalars['String'];
|
||||
getServerlessFunctionErrorCount: Scalars['String'];
|
||||
getServerlessFunctionSuccessRate: Scalars['String'];
|
||||
getUsersAnalytics: Scalars['String'];
|
||||
getWebhookAnalytics: Scalars['String'];
|
||||
};
|
||||
|
||||
export type ApiConfig = {
|
||||
__typename?: 'ApiConfig';
|
||||
mutationMaximumAffectedRecords: Scalars['Float'];
|
||||
@@ -437,7 +447,6 @@ export type EnvironmentVariable = {
|
||||
};
|
||||
|
||||
export enum EnvironmentVariablesGroup {
|
||||
AnalyticsConfig = 'AnalyticsConfig',
|
||||
BillingConfig = 'BillingConfig',
|
||||
CaptchaConfig = 'CaptchaConfig',
|
||||
CloudflareConfig = 'CloudflareConfig',
|
||||
@@ -454,6 +463,7 @@ export enum EnvironmentVariablesGroup {
|
||||
ServerlessConfig = 'ServerlessConfig',
|
||||
StorageConfig = 'StorageConfig',
|
||||
SupportChatConfig = 'SupportChatConfig',
|
||||
TinybirdConfig = 'TinybirdConfig',
|
||||
TokensDuration = 'TokensDuration'
|
||||
}
|
||||
|
||||
@@ -497,6 +507,7 @@ export enum FeatureFlagKey {
|
||||
IsEventObjectEnabled = 'IsEventObjectEnabled',
|
||||
IsJsonFilterEnabled = 'IsJsonFilterEnabled',
|
||||
IsNewRelationEnabled = 'IsNewRelationEnabled',
|
||||
IsPermissionsEnabled = 'IsPermissionsEnabled',
|
||||
IsPermissionsV2Enabled = 'IsPermissionsV2Enabled',
|
||||
IsPostgreSQLIntegrationEnabled = 'IsPostgreSQLIntegrationEnabled',
|
||||
IsStripeIntegrationEnabled = 'IsStripeIntegrationEnabled',
|
||||
@@ -526,7 +537,6 @@ export type Field = {
|
||||
relation?: Maybe<Relation>;
|
||||
relationDefinition?: Maybe<RelationDefinition>;
|
||||
settings?: Maybe<Scalars['JSON']>;
|
||||
standardOverrides?: Maybe<StandardOverrides>;
|
||||
toRelationMetadata?: Maybe<RelationMetadata>;
|
||||
type: FieldMetadataType;
|
||||
updatedAt: Scalars['DateTime'];
|
||||
@@ -811,7 +821,6 @@ export type Mutation = {
|
||||
deleteCurrentWorkspace: Workspace;
|
||||
deleteOneField: Field;
|
||||
deleteOneObject: Object;
|
||||
deleteOneRole: Scalars['String'];
|
||||
deleteOneServerlessFunction: ServerlessFunction;
|
||||
deleteSSOIdentityProvider: DeleteSsoOutput;
|
||||
deleteUser: User;
|
||||
@@ -847,7 +856,6 @@ export type Mutation = {
|
||||
updateOneRole: Role;
|
||||
updateOneServerlessFunction: ServerlessFunction;
|
||||
updatePasswordViaResetToken: InvalidatePassword;
|
||||
updateWorkflowRunStep: WorkflowAction;
|
||||
updateWorkflowVersionStep: WorkflowAction;
|
||||
updateWorkspace: Workspace;
|
||||
updateWorkspaceFeatureFlag: Scalars['Boolean'];
|
||||
@@ -856,8 +864,6 @@ export type Mutation = {
|
||||
uploadImage: Scalars['String'];
|
||||
uploadProfilePicture: Scalars['String'];
|
||||
uploadWorkspaceLogo: Scalars['String'];
|
||||
upsertOneObjectPermission: ObjectPermission;
|
||||
upsertOneSettingPermission: SettingPermission;
|
||||
userLookupAdminPanel: UserLookup;
|
||||
validateApprovedAccessDomain: ApprovedAccessDomain;
|
||||
};
|
||||
@@ -953,11 +959,6 @@ export type MutationDeleteOneObjectArgs = {
|
||||
};
|
||||
|
||||
|
||||
export type MutationDeleteOneRoleArgs = {
|
||||
roleId: Scalars['String'];
|
||||
};
|
||||
|
||||
|
||||
export type MutationDeleteOneServerlessFunctionArgs = {
|
||||
input: ServerlessFunctionIdInput;
|
||||
};
|
||||
@@ -1112,11 +1113,6 @@ export type MutationUpdatePasswordViaResetTokenArgs = {
|
||||
};
|
||||
|
||||
|
||||
export type MutationUpdateWorkflowRunStepArgs = {
|
||||
input: UpdateWorkflowRunStepInput;
|
||||
};
|
||||
|
||||
|
||||
export type MutationUpdateWorkflowVersionStepArgs = {
|
||||
input: UpdateWorkflowVersionStepInput;
|
||||
};
|
||||
@@ -1162,16 +1158,6 @@ export type MutationUploadWorkspaceLogoArgs = {
|
||||
};
|
||||
|
||||
|
||||
export type MutationUpsertOneObjectPermissionArgs = {
|
||||
upsertObjectPermissionInput: UpsertObjectPermissionInput;
|
||||
};
|
||||
|
||||
|
||||
export type MutationUpsertOneSettingPermissionArgs = {
|
||||
upsertSettingPermissionInput: UpsertSettingPermissionInput;
|
||||
};
|
||||
|
||||
|
||||
export type MutationUserLookupAdminPanelArgs = {
|
||||
userIdentifier: Scalars['String'];
|
||||
};
|
||||
@@ -1205,7 +1191,6 @@ export type Object = {
|
||||
namePlural: Scalars['String'];
|
||||
nameSingular: Scalars['String'];
|
||||
shortcut?: Maybe<Scalars['String']>;
|
||||
standardOverrides?: Maybe<ObjectStandardOverrides>;
|
||||
updatedAt: Scalars['DateTime'];
|
||||
};
|
||||
|
||||
@@ -1264,17 +1249,6 @@ export type ObjectIndexMetadatasConnection = {
|
||||
pageInfo: PageInfo;
|
||||
};
|
||||
|
||||
export type ObjectPermission = {
|
||||
__typename?: 'ObjectPermission';
|
||||
canDestroyObjectRecords?: Maybe<Scalars['Boolean']>;
|
||||
canReadObjectRecords?: Maybe<Scalars['Boolean']>;
|
||||
canSoftDeleteObjectRecords?: Maybe<Scalars['Boolean']>;
|
||||
canUpdateObjectRecords?: Maybe<Scalars['Boolean']>;
|
||||
id: Scalars['String'];
|
||||
objectMetadataId: Scalars['String'];
|
||||
roleId: Scalars['String'];
|
||||
};
|
||||
|
||||
export type ObjectRecordFilterInput = {
|
||||
and?: InputMaybe<Array<ObjectRecordFilterInput>>;
|
||||
createdAt?: InputMaybe<DateFilter>;
|
||||
@@ -1285,15 +1259,6 @@ export type ObjectRecordFilterInput = {
|
||||
updatedAt?: InputMaybe<DateFilter>;
|
||||
};
|
||||
|
||||
export type ObjectStandardOverrides = {
|
||||
__typename?: 'ObjectStandardOverrides';
|
||||
description?: Maybe<Scalars['String']>;
|
||||
icon?: Maybe<Scalars['String']>;
|
||||
labelPlural?: Maybe<Scalars['String']>;
|
||||
labelSingular?: Maybe<Scalars['String']>;
|
||||
translations?: Maybe<Scalars['JSON']>;
|
||||
};
|
||||
|
||||
/** Onboarding status */
|
||||
export enum OnboardingStatus {
|
||||
COMPLETED = 'COMPLETED',
|
||||
@@ -1744,15 +1709,7 @@ export enum ServerlessFunctionSyncStatus {
|
||||
READY = 'READY'
|
||||
}
|
||||
|
||||
export type SettingPermission = {
|
||||
__typename?: 'SettingPermission';
|
||||
canUpdateSetting?: Maybe<Scalars['Boolean']>;
|
||||
id: Scalars['String'];
|
||||
roleId: Scalars['String'];
|
||||
setting: SettingPermissionType;
|
||||
};
|
||||
|
||||
export enum SettingPermissionType {
|
||||
export enum SettingsPermissions {
|
||||
ADMIN_PANEL = 'ADMIN_PANEL',
|
||||
API_KEYS_AND_WEBHOOKS = 'API_KEYS_AND_WEBHOOKS',
|
||||
DATA_MODEL = 'DATA_MODEL',
|
||||
@@ -1793,14 +1750,6 @@ export type SignUpOutput = {
|
||||
workspace: WorkspaceUrlsAndId;
|
||||
};
|
||||
|
||||
export type StandardOverrides = {
|
||||
__typename?: 'StandardOverrides';
|
||||
description?: Maybe<Scalars['String']>;
|
||||
icon?: Maybe<Scalars['String']>;
|
||||
label?: Maybe<Scalars['String']>;
|
||||
translations?: Maybe<Scalars['JSON']>;
|
||||
};
|
||||
|
||||
export type SubmitFormStepInput = {
|
||||
/** Form response in JSON format */
|
||||
response: Scalars['JSON'];
|
||||
@@ -2005,13 +1954,6 @@ export type UpdateServerlessFunctionInput = {
|
||||
timeoutSeconds?: InputMaybe<Scalars['Float']>;
|
||||
};
|
||||
|
||||
export type UpdateWorkflowRunStepInput = {
|
||||
/** Step to update in JSON format */
|
||||
step: Scalars['JSON'];
|
||||
/** Workflow run ID */
|
||||
workflowRunId: Scalars['String'];
|
||||
};
|
||||
|
||||
export type UpdateWorkflowVersionStepInput = {
|
||||
/** Step to update in JSON format */
|
||||
step: Scalars['JSON'];
|
||||
@@ -2033,23 +1975,9 @@ export type UpdateWorkspaceInput = {
|
||||
subdomain?: InputMaybe<Scalars['String']>;
|
||||
};
|
||||
|
||||
export type UpsertObjectPermissionInput = {
|
||||
canDestroyObjectRecords?: InputMaybe<Scalars['Boolean']>;
|
||||
canReadObjectRecords?: InputMaybe<Scalars['Boolean']>;
|
||||
canSoftDeleteObjectRecords?: InputMaybe<Scalars['Boolean']>;
|
||||
canUpdateObjectRecords?: InputMaybe<Scalars['Boolean']>;
|
||||
objectMetadataId: Scalars['String'];
|
||||
roleId: Scalars['String'];
|
||||
};
|
||||
|
||||
export type UpsertSettingPermissionInput = {
|
||||
canUpdateSetting?: InputMaybe<Scalars['Boolean']>;
|
||||
roleId: Scalars['String'];
|
||||
setting: SettingPermissionType;
|
||||
};
|
||||
|
||||
export type User = {
|
||||
__typename?: 'User';
|
||||
analyticsTinybirdJwts?: Maybe<AnalyticsTinybirdJwtMap>;
|
||||
canAccessFullAdminPanel: Scalars['Boolean'];
|
||||
canImpersonate: Scalars['Boolean'];
|
||||
createdAt: Scalars['DateTime'];
|
||||
@@ -2121,7 +2049,7 @@ export type UserWorkspace = {
|
||||
deletedAt?: Maybe<Scalars['DateTime']>;
|
||||
id: Scalars['UUID'];
|
||||
objectRecordsPermissions?: Maybe<Array<PermissionsOnAllObjectRecords>>;
|
||||
settingsPermissions?: Maybe<Array<SettingPermissionType>>;
|
||||
settingsPermissions?: Maybe<Array<SettingsPermissions>>;
|
||||
updatedAt: Scalars['DateTime'];
|
||||
user: User;
|
||||
userId: Scalars['String'];
|
||||
@@ -2666,7 +2594,7 @@ export type GetSsoIdentityProvidersQueryVariables = Exact<{ [key: string]: never
|
||||
|
||||
export type GetSsoIdentityProvidersQuery = { __typename?: 'Query', getSSOIdentityProviders: Array<{ __typename?: 'FindAvailableSSOIDPOutput', type: IdentityProviderType, id: string, name: string, issuer: string, status: SsoIdentityProviderStatus }> };
|
||||
|
||||
export type UserQueryFragmentFragment = { __typename?: 'User', id: any, firstName: string, lastName: string, email: string, canAccessFullAdminPanel: boolean, canImpersonate: boolean, supportUserHash?: string | null, onboardingStatus?: OnboardingStatus | null, userVars: any, workspaceMember?: { __typename?: 'WorkspaceMember', id: any, colorScheme: string, avatarUrl?: string | null, locale?: string | null, userEmail: string, timeZone?: string | null, dateFormat?: WorkspaceMemberDateFormatEnum | null, timeFormat?: WorkspaceMemberTimeFormatEnum | null, name: { __typename?: 'FullName', firstName: string, lastName: string } } | null, workspaceMembers?: Array<{ __typename?: 'WorkspaceMember', id: any, colorScheme: string, avatarUrl?: string | null, locale?: string | null, userEmail: string, timeZone?: string | null, dateFormat?: WorkspaceMemberDateFormatEnum | null, timeFormat?: WorkspaceMemberTimeFormatEnum | null, name: { __typename?: 'FullName', firstName: string, lastName: string } }> | null, currentUserWorkspace?: { __typename?: 'UserWorkspace', settingsPermissions?: Array<SettingPermissionType> | null, objectRecordsPermissions?: Array<PermissionsOnAllObjectRecords> | null } | null, currentWorkspace?: { __typename?: 'Workspace', id: any, displayName?: string | null, logo?: string | null, inviteHash?: string | null, allowImpersonation: boolean, activationStatus: WorkspaceActivationStatus, isPublicInviteLinkEnabled: boolean, isGoogleAuthEnabled: boolean, isMicrosoftAuthEnabled: boolean, isPasswordAuthEnabled: boolean, subdomain: string, hasValidEnterpriseKey: boolean, customDomain?: string | null, isCustomDomainEnabled: boolean, metadataVersion: number, workspaceMembersCount?: number | null, workspaceUrls: { __typename?: 'workspaceUrls', subdomainUrl: string, customUrl?: string | null }, featureFlags?: Array<{ __typename?: 'FeatureFlag', id: any, key: FeatureFlagKey, value: boolean, workspaceId: string }> | null, currentBillingSubscription?: { __typename?: 'BillingSubscription', id: any, status: SubscriptionStatus, interval?: SubscriptionInterval | null } | null, billingSubscriptions: Array<{ __typename?: 'BillingSubscription', id: any, status: SubscriptionStatus }>, defaultRole?: { __typename?: 'Role', id: string, label: string, description?: string | null, icon?: string | null, canUpdateAllSettings: boolean, isEditable: boolean, canReadAllObjectRecords: boolean, canUpdateAllObjectRecords: boolean, canSoftDeleteAllObjectRecords: boolean, canDestroyAllObjectRecords: boolean } | null } | null, workspaces: Array<{ __typename?: 'UserWorkspace', workspace?: { __typename?: 'Workspace', id: any, logo?: string | null, displayName?: string | null, subdomain: string, customDomain?: string | null, workspaceUrls: { __typename?: 'workspaceUrls', subdomainUrl: string, customUrl?: string | null } } | null }> };
|
||||
export type UserQueryFragmentFragment = { __typename?: 'User', id: any, firstName: string, lastName: string, email: string, canAccessFullAdminPanel: boolean, canImpersonate: boolean, supportUserHash?: string | null, onboardingStatus?: OnboardingStatus | null, userVars: any, analyticsTinybirdJwts?: { __typename?: 'AnalyticsTinybirdJwtMap', getWebhookAnalytics: string, getPageviewsAnalytics: string, getUsersAnalytics: string, getServerlessFunctionDuration: string, getServerlessFunctionSuccessRate: string, getServerlessFunctionErrorCount: string } | null, workspaceMember?: { __typename?: 'WorkspaceMember', id: any, colorScheme: string, avatarUrl?: string | null, locale?: string | null, userEmail: string, timeZone?: string | null, dateFormat?: WorkspaceMemberDateFormatEnum | null, timeFormat?: WorkspaceMemberTimeFormatEnum | null, name: { __typename?: 'FullName', firstName: string, lastName: string } } | null, workspaceMembers?: Array<{ __typename?: 'WorkspaceMember', id: any, colorScheme: string, avatarUrl?: string | null, locale?: string | null, userEmail: string, timeZone?: string | null, dateFormat?: WorkspaceMemberDateFormatEnum | null, timeFormat?: WorkspaceMemberTimeFormatEnum | null, name: { __typename?: 'FullName', firstName: string, lastName: string } }> | null, currentUserWorkspace?: { __typename?: 'UserWorkspace', settingsPermissions?: Array<SettingsPermissions> | null, objectRecordsPermissions?: Array<PermissionsOnAllObjectRecords> | null } | null, currentWorkspace?: { __typename?: 'Workspace', id: any, displayName?: string | null, logo?: string | null, inviteHash?: string | null, allowImpersonation: boolean, activationStatus: WorkspaceActivationStatus, isPublicInviteLinkEnabled: boolean, isGoogleAuthEnabled: boolean, isMicrosoftAuthEnabled: boolean, isPasswordAuthEnabled: boolean, subdomain: string, hasValidEnterpriseKey: boolean, customDomain?: string | null, isCustomDomainEnabled: boolean, metadataVersion: number, workspaceMembersCount?: number | null, workspaceUrls: { __typename?: 'workspaceUrls', subdomainUrl: string, customUrl?: string | null }, featureFlags?: Array<{ __typename?: 'FeatureFlag', id: any, key: FeatureFlagKey, value: boolean, workspaceId: string }> | null, currentBillingSubscription?: { __typename?: 'BillingSubscription', id: any, status: SubscriptionStatus, interval?: SubscriptionInterval | null } | null, billingSubscriptions: Array<{ __typename?: 'BillingSubscription', id: any, status: SubscriptionStatus }>, defaultRole?: { __typename?: 'Role', id: string, label: string, description?: string | null, icon?: string | null, canUpdateAllSettings: boolean, isEditable: boolean, canReadAllObjectRecords: boolean, canUpdateAllObjectRecords: boolean, canSoftDeleteAllObjectRecords: boolean, canDestroyAllObjectRecords: boolean } | null } | null, workspaces: Array<{ __typename?: 'UserWorkspace', workspace?: { __typename?: 'Workspace', id: any, logo?: string | null, displayName?: string | null, subdomain: string, customDomain?: string | null, workspaceUrls: { __typename?: 'workspaceUrls', subdomainUrl: string, customUrl?: string | null } } | null }> };
|
||||
|
||||
export type DeleteUserAccountMutationVariables = Exact<{ [key: string]: never; }>;
|
||||
|
||||
@@ -2683,7 +2611,7 @@ export type UploadProfilePictureMutation = { __typename?: 'Mutation', uploadProf
|
||||
export type GetCurrentUserQueryVariables = Exact<{ [key: string]: never; }>;
|
||||
|
||||
|
||||
export type GetCurrentUserQuery = { __typename?: 'Query', currentUser: { __typename?: 'User', id: any, firstName: string, lastName: string, email: string, canAccessFullAdminPanel: boolean, canImpersonate: boolean, supportUserHash?: string | null, onboardingStatus?: OnboardingStatus | null, userVars: any, workspaceMember?: { __typename?: 'WorkspaceMember', id: any, colorScheme: string, avatarUrl?: string | null, locale?: string | null, userEmail: string, timeZone?: string | null, dateFormat?: WorkspaceMemberDateFormatEnum | null, timeFormat?: WorkspaceMemberTimeFormatEnum | null, name: { __typename?: 'FullName', firstName: string, lastName: string } } | null, workspaceMembers?: Array<{ __typename?: 'WorkspaceMember', id: any, colorScheme: string, avatarUrl?: string | null, locale?: string | null, userEmail: string, timeZone?: string | null, dateFormat?: WorkspaceMemberDateFormatEnum | null, timeFormat?: WorkspaceMemberTimeFormatEnum | null, name: { __typename?: 'FullName', firstName: string, lastName: string } }> | null, currentUserWorkspace?: { __typename?: 'UserWorkspace', settingsPermissions?: Array<SettingPermissionType> | null, objectRecordsPermissions?: Array<PermissionsOnAllObjectRecords> | null } | null, currentWorkspace?: { __typename?: 'Workspace', id: any, displayName?: string | null, logo?: string | null, inviteHash?: string | null, allowImpersonation: boolean, activationStatus: WorkspaceActivationStatus, isPublicInviteLinkEnabled: boolean, isGoogleAuthEnabled: boolean, isMicrosoftAuthEnabled: boolean, isPasswordAuthEnabled: boolean, subdomain: string, hasValidEnterpriseKey: boolean, customDomain?: string | null, isCustomDomainEnabled: boolean, metadataVersion: number, workspaceMembersCount?: number | null, workspaceUrls: { __typename?: 'workspaceUrls', subdomainUrl: string, customUrl?: string | null }, featureFlags?: Array<{ __typename?: 'FeatureFlag', id: any, key: FeatureFlagKey, value: boolean, workspaceId: string }> | null, currentBillingSubscription?: { __typename?: 'BillingSubscription', id: any, status: SubscriptionStatus, interval?: SubscriptionInterval | null } | null, billingSubscriptions: Array<{ __typename?: 'BillingSubscription', id: any, status: SubscriptionStatus }>, defaultRole?: { __typename?: 'Role', id: string, label: string, description?: string | null, icon?: string | null, canUpdateAllSettings: boolean, isEditable: boolean, canReadAllObjectRecords: boolean, canUpdateAllObjectRecords: boolean, canSoftDeleteAllObjectRecords: boolean, canDestroyAllObjectRecords: boolean } | null } | null, workspaces: Array<{ __typename?: 'UserWorkspace', workspace?: { __typename?: 'Workspace', id: any, logo?: string | null, displayName?: string | null, subdomain: string, customDomain?: string | null, workspaceUrls: { __typename?: 'workspaceUrls', subdomainUrl: string, customUrl?: string | null } } | null }> } };
|
||||
export type GetCurrentUserQuery = { __typename?: 'Query', currentUser: { __typename?: 'User', id: any, firstName: string, lastName: string, email: string, canAccessFullAdminPanel: boolean, canImpersonate: boolean, supportUserHash?: string | null, onboardingStatus?: OnboardingStatus | null, userVars: any, analyticsTinybirdJwts?: { __typename?: 'AnalyticsTinybirdJwtMap', getWebhookAnalytics: string, getPageviewsAnalytics: string, getUsersAnalytics: string, getServerlessFunctionDuration: string, getServerlessFunctionSuccessRate: string, getServerlessFunctionErrorCount: string } | null, workspaceMember?: { __typename?: 'WorkspaceMember', id: any, colorScheme: string, avatarUrl?: string | null, locale?: string | null, userEmail: string, timeZone?: string | null, dateFormat?: WorkspaceMemberDateFormatEnum | null, timeFormat?: WorkspaceMemberTimeFormatEnum | null, name: { __typename?: 'FullName', firstName: string, lastName: string } } | null, workspaceMembers?: Array<{ __typename?: 'WorkspaceMember', id: any, colorScheme: string, avatarUrl?: string | null, locale?: string | null, userEmail: string, timeZone?: string | null, dateFormat?: WorkspaceMemberDateFormatEnum | null, timeFormat?: WorkspaceMemberTimeFormatEnum | null, name: { __typename?: 'FullName', firstName: string, lastName: string } }> | null, currentUserWorkspace?: { __typename?: 'UserWorkspace', settingsPermissions?: Array<SettingsPermissions> | null, objectRecordsPermissions?: Array<PermissionsOnAllObjectRecords> | null } | null, currentWorkspace?: { __typename?: 'Workspace', id: any, displayName?: string | null, logo?: string | null, inviteHash?: string | null, allowImpersonation: boolean, activationStatus: WorkspaceActivationStatus, isPublicInviteLinkEnabled: boolean, isGoogleAuthEnabled: boolean, isMicrosoftAuthEnabled: boolean, isPasswordAuthEnabled: boolean, subdomain: string, hasValidEnterpriseKey: boolean, customDomain?: string | null, isCustomDomainEnabled: boolean, metadataVersion: number, workspaceMembersCount?: number | null, workspaceUrls: { __typename?: 'workspaceUrls', subdomainUrl: string, customUrl?: string | null }, featureFlags?: Array<{ __typename?: 'FeatureFlag', id: any, key: FeatureFlagKey, value: boolean, workspaceId: string }> | null, currentBillingSubscription?: { __typename?: 'BillingSubscription', id: any, status: SubscriptionStatus, interval?: SubscriptionInterval | null } | null, billingSubscriptions: Array<{ __typename?: 'BillingSubscription', id: any, status: SubscriptionStatus }>, defaultRole?: { __typename?: 'Role', id: string, label: string, description?: string | null, icon?: string | null, canUpdateAllSettings: boolean, isEditable: boolean, canReadAllObjectRecords: boolean, canUpdateAllObjectRecords: boolean, canSoftDeleteAllObjectRecords: boolean, canDestroyAllObjectRecords: boolean } | null } | null, workspaces: Array<{ __typename?: 'UserWorkspace', workspace?: { __typename?: 'Workspace', id: any, logo?: string | null, displayName?: string | null, subdomain: string, customDomain?: string | null, workspaceUrls: { __typename?: 'workspaceUrls', subdomainUrl: string, customUrl?: string | null } } | null }> } };
|
||||
|
||||
export type ActivateWorkflowVersionMutationVariables = Exact<{
|
||||
workflowVersionId: Scalars['String'];
|
||||
@@ -2734,13 +2662,6 @@ export type RunWorkflowVersionMutationVariables = Exact<{
|
||||
|
||||
export type RunWorkflowVersionMutation = { __typename?: 'Mutation', runWorkflowVersion: { __typename?: 'WorkflowRun', workflowRunId: any } };
|
||||
|
||||
export type UpdateWorkflowRunStepMutationVariables = Exact<{
|
||||
input: UpdateWorkflowRunStepInput;
|
||||
}>;
|
||||
|
||||
|
||||
export type UpdateWorkflowRunStepMutation = { __typename?: 'Mutation', updateWorkflowRunStep: { __typename?: 'WorkflowAction', id: any, name: string, type: string, settings: any, valid: boolean } };
|
||||
|
||||
export type UpdateWorkflowVersionStepMutationVariables = Exact<{
|
||||
input: UpdateWorkflowVersionStepInput;
|
||||
}>;
|
||||
@@ -2959,6 +2880,14 @@ export const UserQueryFragmentFragmentDoc = gql`
|
||||
canAccessFullAdminPanel
|
||||
canImpersonate
|
||||
supportUserHash
|
||||
analyticsTinybirdJwts {
|
||||
getWebhookAnalytics
|
||||
getPageviewsAnalytics
|
||||
getUsersAnalytics
|
||||
getServerlessFunctionDuration
|
||||
getServerlessFunctionSuccessRate
|
||||
getServerlessFunctionErrorCount
|
||||
}
|
||||
onboardingStatus
|
||||
workspaceMember {
|
||||
...WorkspaceMemberQueryFragment
|
||||
@@ -5336,43 +5265,6 @@ export function useRunWorkflowVersionMutation(baseOptions?: Apollo.MutationHookO
|
||||
export type RunWorkflowVersionMutationHookResult = ReturnType<typeof useRunWorkflowVersionMutation>;
|
||||
export type RunWorkflowVersionMutationResult = Apollo.MutationResult<RunWorkflowVersionMutation>;
|
||||
export type RunWorkflowVersionMutationOptions = Apollo.BaseMutationOptions<RunWorkflowVersionMutation, RunWorkflowVersionMutationVariables>;
|
||||
export const UpdateWorkflowRunStepDocument = gql`
|
||||
mutation UpdateWorkflowRunStep($input: UpdateWorkflowRunStepInput!) {
|
||||
updateWorkflowRunStep(input: $input) {
|
||||
id
|
||||
name
|
||||
type
|
||||
settings
|
||||
valid
|
||||
}
|
||||
}
|
||||
`;
|
||||
export type UpdateWorkflowRunStepMutationFn = Apollo.MutationFunction<UpdateWorkflowRunStepMutation, UpdateWorkflowRunStepMutationVariables>;
|
||||
|
||||
/**
|
||||
* __useUpdateWorkflowRunStepMutation__
|
||||
*
|
||||
* To run a mutation, you first call `useUpdateWorkflowRunStepMutation` within a React component and pass it any options that fit your needs.
|
||||
* When your component renders, `useUpdateWorkflowRunStepMutation` returns a tuple that includes:
|
||||
* - A mutate function that you can call at any time to execute the mutation
|
||||
* - An object with fields that represent the current status of the mutation's execution
|
||||
*
|
||||
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
||||
*
|
||||
* @example
|
||||
* const [updateWorkflowRunStepMutation, { data, loading, error }] = useUpdateWorkflowRunStepMutation({
|
||||
* variables: {
|
||||
* input: // value for 'input'
|
||||
* },
|
||||
* });
|
||||
*/
|
||||
export function useUpdateWorkflowRunStepMutation(baseOptions?: Apollo.MutationHookOptions<UpdateWorkflowRunStepMutation, UpdateWorkflowRunStepMutationVariables>) {
|
||||
const options = {...defaultOptions, ...baseOptions}
|
||||
return Apollo.useMutation<UpdateWorkflowRunStepMutation, UpdateWorkflowRunStepMutationVariables>(UpdateWorkflowRunStepDocument, options);
|
||||
}
|
||||
export type UpdateWorkflowRunStepMutationHookResult = ReturnType<typeof useUpdateWorkflowRunStepMutation>;
|
||||
export type UpdateWorkflowRunStepMutationResult = Apollo.MutationResult<UpdateWorkflowRunStepMutation>;
|
||||
export type UpdateWorkflowRunStepMutationOptions = Apollo.BaseMutationOptions<UpdateWorkflowRunStepMutation, UpdateWorkflowRunStepMutationVariables>;
|
||||
export const UpdateWorkflowVersionStepDocument = gql`
|
||||
mutation UpdateWorkflowVersionStep($input: UpdateWorkflowVersionStepInput!) {
|
||||
updateWorkflowVersionStep(input: $input) {
|
||||
|
||||
@@ -87,11 +87,6 @@ msgstr "crwdns45:0{aggregateLabel}crwdnd45:0{fieldLabel}crwdne45:0"
|
||||
msgid "{apiKeyName} API Key"
|
||||
msgstr "crwdns47:0{apiKeyName}crwdne47:0"
|
||||
|
||||
#. js-lingui-id: zi5SHH
|
||||
#: src/modules/object-record/record-index/components/RecordIndexPageHeader.tsx
|
||||
msgid "{contextStoreNumberOfSelectedRecords} selected"
|
||||
msgstr "crwdns5630:0{contextStoreNumberOfSelectedRecords}crwdne5630:0"
|
||||
|
||||
#. js-lingui-id: 6j5rE1
|
||||
#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx
|
||||
#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx
|
||||
@@ -105,8 +100,8 @@ msgstr "crwdns1783:0{workspaceMemberName}crwdne1783:0"
|
||||
|
||||
#. js-lingui-id: YT0WJ4
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#~ msgid "1 000 workflow node executions"
|
||||
#~ msgstr "1 000 workflow node executions"
|
||||
msgid "1 000 workflow node executions"
|
||||
msgstr "crwdns51:0crwdne51:0"
|
||||
|
||||
#. js-lingui-id: vb5TwV
|
||||
#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldSelect.tsx
|
||||
@@ -119,11 +114,6 @@ msgstr "crwdns4999:0crwdne4999:0"
|
||||
msgid "1. Type"
|
||||
msgstr "crwdns5001:0crwdne5001:0"
|
||||
|
||||
#. js-lingui-id: AvXug3
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "10 000 workflow node executions"
|
||||
msgstr "crwdns5590:0crwdne5590:0"
|
||||
|
||||
#. js-lingui-id: 4EdXYs
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "12h ({hour12Label})"
|
||||
@@ -140,11 +130,6 @@ msgstr "crwdns5003:0crwdne5003:0"
|
||||
msgid "2. Configure field"
|
||||
msgstr "crwdns55:0crwdne55:0"
|
||||
|
||||
#. js-lingui-id: kAtmAv
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "20 000 workflow node executions"
|
||||
msgstr "crwdns5592:0crwdne5592:0"
|
||||
|
||||
#. js-lingui-id: QsMprd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "24h ({hour24Label})"
|
||||
@@ -201,11 +186,6 @@ msgstr "crwdns67:0crwdne67:0"
|
||||
msgid "Accounts"
|
||||
msgstr "crwdns69:0crwdne69:0"
|
||||
|
||||
#. js-lingui-id: bwRvnp
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
msgid "Action"
|
||||
msgstr "crwdns5594:0crwdne5594:0"
|
||||
|
||||
#. js-lingui-id: 7L01XJ
|
||||
#: src/modules/settings/roles/role-permissions/components/RolePermissionsSettingsTableHeader.tsx
|
||||
#: src/modules/settings/roles/role-permissions/components/RolePermissionsObjectsTableHeader.tsx
|
||||
@@ -252,7 +232,7 @@ msgid "Add Approved Access Domain"
|
||||
msgstr "crwdns4879:0crwdne4879:0"
|
||||
|
||||
#. js-lingui-id: DpV70M
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionForm.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
|
||||
msgid "Add Field"
|
||||
msgstr "crwdns81:0crwdne81:0"
|
||||
@@ -453,7 +433,6 @@ msgstr "crwdns5437:0crwdne5437:0"
|
||||
|
||||
#. js-lingui-id: 0RqpZr
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "API & Webhooks"
|
||||
msgstr "crwdns115:0crwdne115:0"
|
||||
|
||||
@@ -537,23 +516,13 @@ msgstr "crwdns125:0crwdne125:0"
|
||||
|
||||
#. js-lingui-id: 8Y3Jbl
|
||||
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
|
||||
#~ msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
#~ msgstr "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
|
||||
#. js-lingui-id: 2BZAqa
|
||||
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
|
||||
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu."
|
||||
msgstr "crwdns5596:0crwdne5596:0"
|
||||
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
msgstr "crwdns5427:0{osControlSymbol}crwdne5427:0"
|
||||
|
||||
#. js-lingui-id: Se0vJw
|
||||
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
|
||||
#~ msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
#~ msgstr "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
|
||||
#. js-lingui-id: yb2hF4
|
||||
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
|
||||
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu."
|
||||
msgstr "crwdns5598:0crwdne5598:0"
|
||||
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
msgstr "crwdns5429:0{osControlSymbol}crwdne5429:0"
|
||||
|
||||
#. js-lingui-id: nYD/Cq
|
||||
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
|
||||
@@ -716,11 +685,6 @@ msgstr "crwdns5549:0crwdne5549:0"
|
||||
msgid "Calendars"
|
||||
msgstr "crwdns161:0crwdne161:0"
|
||||
|
||||
#. js-lingui-id: msssZq
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Can't change API names for standard objects"
|
||||
msgstr "crwdns5600:0crwdne5600:0"
|
||||
|
||||
#. js-lingui-id: dEgA5A
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
|
||||
@@ -831,11 +795,6 @@ msgstr "crwdns185:0crwdne185:0"
|
||||
msgid "Close command menu"
|
||||
msgstr "crwdns4859:0crwdne4859:0"
|
||||
|
||||
#. js-lingui-id: EWPtMO
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
msgid "Code"
|
||||
msgstr "crwdns5602:0crwdne5602:0"
|
||||
|
||||
#. js-lingui-id: H86f9p
|
||||
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
|
||||
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
|
||||
@@ -945,7 +904,6 @@ msgstr "crwdns211:0crwdne211:0"
|
||||
|
||||
#. js-lingui-id: u+VWhB
|
||||
#: src/pages/settings/workspace/SettingsCustomDomainRecords.tsx
|
||||
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminEnvCopyableText.tsx
|
||||
msgid "Copied to clipboard!"
|
||||
msgstr "crwdns4891:0crwdne4891:0"
|
||||
@@ -1109,7 +1067,6 @@ msgstr "crwdns5361:0crwdne5361:0"
|
||||
|
||||
#. js-lingui-id: 8skTDV
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "Custom objects"
|
||||
msgstr "crwdns243:0crwdne243:0"
|
||||
|
||||
@@ -1522,7 +1479,6 @@ msgstr "crwdns319:0crwdne319:0"
|
||||
#: src/pages/settings/SettingsWorkspaceMembers.tsx
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/auth/PasswordReset.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentTableHeader.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
msgid "Email"
|
||||
@@ -1540,7 +1496,6 @@ msgstr "crwdns5371:0crwdne5371:0"
|
||||
|
||||
#. js-lingui-id: lfQsvW
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "Email integration"
|
||||
msgstr "crwdns323:0crwdne323:0"
|
||||
|
||||
@@ -1988,7 +1943,6 @@ msgstr "crwdns395:0crwdne395:0"
|
||||
|
||||
#. js-lingui-id: scmRyR
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "Full access"
|
||||
msgstr "crwdns397:0crwdne397:0"
|
||||
|
||||
@@ -2026,24 +1980,11 @@ msgstr "crwdns407:0crwdne407:0"
|
||||
msgid "Global"
|
||||
msgstr "crwdns409:0crwdne409:0"
|
||||
|
||||
#. js-lingui-id: iS69s6
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
msgid "Go to runs"
|
||||
msgstr "crwdns5604:0crwdne5604:0"
|
||||
|
||||
#. js-lingui-id: mT57+Q
|
||||
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
|
||||
msgid "Go to Settings"
|
||||
msgstr "crwdns5145:0crwdne5145:0"
|
||||
|
||||
#. js-lingui-id: A5WHZY
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
|
||||
msgid "Go to workflows"
|
||||
msgstr "crwdns5606:0crwdne5606:0"
|
||||
|
||||
#. js-lingui-id: hWp1MY
|
||||
#: src/pages/settings/SettingsWorkspace.tsx
|
||||
msgid "Grant Twenty support temporary access to your workspace so we can troubleshoot problems or recover content on your behalf. You can revoke access at any time."
|
||||
@@ -2103,34 +2044,6 @@ msgstr "crwdns5153:0crwdne5153:0"
|
||||
msgid "Hide"
|
||||
msgstr "crwdns413:0crwdne413:0"
|
||||
|
||||
#. js-lingui-id: OlbYor
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
|
||||
msgid "Hide deleted"
|
||||
msgstr "crwdns5620:0crwdne5620:0"
|
||||
|
||||
#. js-lingui-id: FHhlye
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
|
||||
msgid "Hide deleted records"
|
||||
msgstr "crwdns5622:0crwdne5622:0"
|
||||
|
||||
#. js-lingui-id: 0dZtKR
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
msgid "Hide deleted runs"
|
||||
msgstr "crwdns5624:0crwdne5624:0"
|
||||
|
||||
#. js-lingui-id: Jc6FrI
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
msgid "Hide deleted versions"
|
||||
msgstr "crwdns5626:0crwdne5626:0"
|
||||
|
||||
#. js-lingui-id: aOZAIB
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
msgid "Hide deleted workflows"
|
||||
msgstr "crwdns5628:0crwdne5628:0"
|
||||
|
||||
#. js-lingui-id: HS8BG/
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupsContent.tsx
|
||||
msgid "Hide empty groups"
|
||||
@@ -2538,8 +2451,8 @@ msgstr "crwdns469:0crwdne469:0"
|
||||
|
||||
#. js-lingui-id: nOhz3x
|
||||
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
|
||||
msgid "Logout"
|
||||
msgstr "crwdns5608:0crwdne5608:0"
|
||||
#~ msgid "Logout"
|
||||
#~ msgstr "Logout"
|
||||
|
||||
#. js-lingui-id: PTozs8
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
@@ -3395,7 +3308,7 @@ msgid "Restore records"
|
||||
msgstr "crwdns5421:0crwdne5421:0"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/command-menu/hooks/useCommandMenuSearchRecords.tsx
|
||||
#: src/modules/command-menu/hooks/useSearchRecords.tsx
|
||||
msgid "Results"
|
||||
msgstr "crwdns617:0crwdne617:0"
|
||||
|
||||
@@ -3486,7 +3399,6 @@ msgstr "crwdns629:0crwdne629:0"
|
||||
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupFieldsContent.tsx
|
||||
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx
|
||||
#: src/modules/object-record/advanced-filter/components/AdvancedFilterFieldSelectSearchInput.tsx
|
||||
msgid "Search fields"
|
||||
msgstr "crwdns631:0crwdne631:0"
|
||||
|
||||
@@ -3549,19 +3461,11 @@ msgstr "crwdns5415:0crwdne5415:0"
|
||||
#. js-lingui-id: OpPn5Z
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
msgid "See runs"
|
||||
msgstr "crwdns641:0crwdne641:0"
|
||||
|
||||
#. js-lingui-id: gGEfj/
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
msgid "See version"
|
||||
msgstr "crwdns5610:0crwdne5610:0"
|
||||
|
||||
#. js-lingui-id: EtyY4+
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
@@ -3574,21 +3478,6 @@ msgstr "crwdns643:0crwdne643:0"
|
||||
msgid "See versions history"
|
||||
msgstr "crwdns645:0crwdne645:0"
|
||||
|
||||
#. js-lingui-id: qEKLJV
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
msgid "See workflow"
|
||||
msgstr "crwdns5612:0crwdne5612:0"
|
||||
|
||||
#. js-lingui-id: XThiR2
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
|
||||
msgid "See workflows"
|
||||
msgstr "crwdns5614:0crwdne5614:0"
|
||||
|
||||
#. js-lingui-id: WZvt/6
|
||||
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
|
||||
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
|
||||
@@ -3767,11 +3656,6 @@ msgstr "crwdns677:0crwdne677:0"
|
||||
msgid "SSO"
|
||||
msgstr "crwdns679:0crwdne679:0"
|
||||
|
||||
#. js-lingui-id: vlvAkg
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "SSO (SAML / OIDC)"
|
||||
msgstr "crwdns5616:0crwdne5616:0"
|
||||
|
||||
#. js-lingui-id: ErU1td
|
||||
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
|
||||
msgid "Stages"
|
||||
@@ -3861,11 +3745,6 @@ msgstr "crwdns697:0{to}crwdne697:0"
|
||||
msgid "Switch billing {to}"
|
||||
msgstr "crwdns699:0{to}crwdne699:0"
|
||||
|
||||
#. js-lingui-id: lz+f/E
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "Switch to {alternatePlanName}"
|
||||
msgstr "crwdns5618:0{alternatePlanName}crwdne5618:0"
|
||||
|
||||
#. js-lingui-id: 5TRY4+
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
|
||||
msgid "Sync failed"
|
||||
@@ -4149,7 +4028,6 @@ msgstr "crwdns755:0crwdne755:0"
|
||||
|
||||
#. js-lingui-id: GQCXQS
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "Unlimited contacts"
|
||||
msgstr "crwdns757:0crwdne757:0"
|
||||
|
||||
|
||||
@@ -87,11 +87,6 @@ msgstr "{aggregateLabel} van {fieldLabel}"
|
||||
msgid "{apiKeyName} API Key"
|
||||
msgstr "{apiKeyName} API-sleutel"
|
||||
|
||||
#. js-lingui-id: zi5SHH
|
||||
#: src/modules/object-record/record-index/components/RecordIndexPageHeader.tsx
|
||||
msgid "{contextStoreNumberOfSelectedRecords} selected"
|
||||
msgstr "{contextStoreNumberOfSelectedRecords} geselekteer"
|
||||
|
||||
#. js-lingui-id: 6j5rE1
|
||||
#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx
|
||||
#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx
|
||||
@@ -105,8 +100,8 @@ msgstr "{workspaceMemberName} sal ontkoppel word van die volgende rol:"
|
||||
|
||||
#. js-lingui-id: YT0WJ4
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#~ msgid "1 000 workflow node executions"
|
||||
#~ msgstr "1 000 workflow node executions"
|
||||
msgid "1 000 workflow node executions"
|
||||
msgstr "1 000 werkstroomnode-uitvoerings"
|
||||
|
||||
#. js-lingui-id: vb5TwV
|
||||
#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldSelect.tsx
|
||||
@@ -119,11 +114,6 @@ msgstr "1. Kies 'n veldtipe"
|
||||
msgid "1. Type"
|
||||
msgstr "1. Tipe"
|
||||
|
||||
#. js-lingui-id: AvXug3
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "10 000 workflow node executions"
|
||||
msgstr "10 000 werkvloeiknoopuitvoerings"
|
||||
|
||||
#. js-lingui-id: 4EdXYs
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "12h ({hour12Label})"
|
||||
@@ -140,11 +130,6 @@ msgstr "2. Stel op"
|
||||
msgid "2. Configure field"
|
||||
msgstr "2. Stel veld op"
|
||||
|
||||
#. js-lingui-id: kAtmAv
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "20 000 workflow node executions"
|
||||
msgstr "20 000 werkvloeiknoopuitvoerings"
|
||||
|
||||
#. js-lingui-id: QsMprd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "24h ({hour24Label})"
|
||||
@@ -201,11 +186,6 @@ msgstr "Rekeningverwydering"
|
||||
msgid "Accounts"
|
||||
msgstr "Rekeninge"
|
||||
|
||||
#. js-lingui-id: bwRvnp
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
msgid "Action"
|
||||
msgstr "Aksie"
|
||||
|
||||
#. js-lingui-id: 7L01XJ
|
||||
#: src/modules/settings/roles/role-permissions/components/RolePermissionsSettingsTableHeader.tsx
|
||||
#: src/modules/settings/roles/role-permissions/components/RolePermissionsObjectsTableHeader.tsx
|
||||
@@ -252,7 +232,7 @@ msgid "Add Approved Access Domain"
|
||||
msgstr "Voeg Goedgekeurde Toegangsdomein by"
|
||||
|
||||
#. js-lingui-id: DpV70M
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionForm.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
|
||||
msgid "Add Field"
|
||||
msgstr "Voeg veld by"
|
||||
@@ -453,7 +433,6 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: 0RqpZr
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "API & Webhooks"
|
||||
msgstr "API & Webtuistes"
|
||||
|
||||
@@ -537,28 +516,13 @@ msgstr "Is jy seker dat jy jou faktureringsinterval wil verander?"
|
||||
|
||||
#. js-lingui-id: 8Y3Jbl
|
||||
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
|
||||
#~ msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
#~ msgstr "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
|
||||
#. js-lingui-id: 2BZAqa
|
||||
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
|
||||
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu."
|
||||
msgstr "Is jy seker jy wil hierdie rekords uitvee? Hulle kan herstel word vanaf die Command menu."
|
||||
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
msgstr "Is jy seker jy wil hierdie rekords uitvee? Hulle kan herstel word vanaf die Command menu ({osControlSymbol} + K)."
|
||||
|
||||
#. js-lingui-id: Se0vJw
|
||||
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
|
||||
#~ msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
#~ msgstr "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
|
||||
#. js-lingui-id: yb2hF4
|
||||
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
|
||||
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu."
|
||||
msgstr "Is jy seker jy wil hierdie rekord uitvee? Dit kan herstel word vanaf die Command menu."
|
||||
|
||||
#. js-lingui-id: rnCqBK
|
||||
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
|
||||
msgid "Are you sure? Your current information will not be saved."
|
||||
msgstr ""
|
||||
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
msgstr "Is jy seker jy wil hierdie rekord uitvee? Dit kan herstel word vanaf die Command menu ({osControlSymbol} + K)."
|
||||
|
||||
#. js-lingui-id: nYD/Cq
|
||||
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
|
||||
@@ -721,18 +685,10 @@ msgstr "Kalendersinchronisasie"
|
||||
msgid "Calendars"
|
||||
msgstr "Kalenders"
|
||||
|
||||
#. js-lingui-id: msssZq
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Can't change API names for standard objects"
|
||||
msgstr "Kan nie API-name vir standaardobjekte verander nie"
|
||||
|
||||
#. js-lingui-id: dEgA5A
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
msgid "Cancel"
|
||||
msgstr "Kanselleer"
|
||||
@@ -839,11 +795,6 @@ msgstr "Maak toe"
|
||||
msgid "Close command menu"
|
||||
msgstr "Sluit opdragkieslys"
|
||||
|
||||
#. js-lingui-id: EWPtMO
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
msgid "Code"
|
||||
msgstr "Kode"
|
||||
|
||||
#. js-lingui-id: H86f9p
|
||||
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
|
||||
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
|
||||
@@ -856,11 +807,6 @@ msgstr "Vou in"
|
||||
msgid "Color code"
|
||||
msgstr "Kleurkode"
|
||||
|
||||
#. js-lingui-id: 93hd3e
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
msgid "Columns not matched:"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NM9bMd
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
msgid "Compact view"
|
||||
@@ -892,7 +838,6 @@ msgid "Configure your emails and calendar settings."
|
||||
msgstr "Stel jou e-posse en kalender instellings op."
|
||||
|
||||
#. js-lingui-id: 7VpPHA
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentConfirmationModal.tsx
|
||||
msgid "Confirm"
|
||||
msgstr "Bevestig"
|
||||
@@ -938,8 +883,6 @@ msgstr "Konteks"
|
||||
#: src/pages/onboarding/CreateWorkspace.tsx
|
||||
#: src/pages/onboarding/CreateProfile.tsx
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx
|
||||
msgid "Continue"
|
||||
msgstr "Gaan voort"
|
||||
@@ -1004,11 +947,6 @@ msgstr "Kopieer hierdie sleutel aangesien dit nie weer sigbaar sal wees nie"
|
||||
msgid "Core"
|
||||
msgstr "Kern"
|
||||
|
||||
#. js-lingui-id: w5Stxm
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Correct the issues and fill the missing data."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wBMjJ2
|
||||
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterMenuContent.tsx
|
||||
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx
|
||||
@@ -1130,7 +1068,6 @@ msgstr "Pasgemaakte domein opgedateer"
|
||||
|
||||
#. js-lingui-id: 8skTDV
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "Custom objects"
|
||||
msgstr "Pasgemaakte voorwerpe"
|
||||
|
||||
@@ -1443,11 +1380,6 @@ msgstr "Vertoon as relatiewe datum"
|
||||
msgid "Display text on multiple lines"
|
||||
msgstr "Vertoon teks op meerdere reëls"
|
||||
|
||||
#. js-lingui-id: ji7sqw
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/TemplateColumn.tsx
|
||||
msgid "Do not import"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: U9q4zF
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid "Doesn't contain"
|
||||
@@ -1491,11 +1423,6 @@ msgstr "Moenie e-posse van team@ support@ noreply@ sinkroniseer nie..."
|
||||
msgid "Download file"
|
||||
msgstr "Laai lêer af"
|
||||
|
||||
#. js-lingui-id: 6D/BnN
|
||||
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
|
||||
msgid "Drop file here..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KIjvtr
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
msgid "Dutch"
|
||||
@@ -1553,7 +1480,6 @@ msgstr "Redigeer jou subdomein naam of stel 'n persoonlike domein in."
|
||||
#: src/pages/settings/SettingsWorkspaceMembers.tsx
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/auth/PasswordReset.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentTableHeader.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
msgid "Email"
|
||||
@@ -1571,7 +1497,6 @@ msgstr "E-pos kan nie leeg wees nie"
|
||||
|
||||
#. js-lingui-id: lfQsvW
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "Email integration"
|
||||
msgstr "E-pos integrasie"
|
||||
|
||||
@@ -1781,21 +1706,11 @@ msgstr "Sluit die volgende mense en domeine uit van my e-possinchronisasie. Inte
|
||||
msgid "Existing objects"
|
||||
msgstr "Bestaande voorwerpe"
|
||||
|
||||
#. js-lingui-id: ydzS9x
|
||||
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
|
||||
msgid "Exit"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LFNXuj
|
||||
#: src/modules/ui/layout/fullscreen/components/FullScreenContainer.tsx
|
||||
msgid "Exit Full Screen"
|
||||
msgstr "Verlaat Volskerm"
|
||||
|
||||
#. js-lingui-id: XB4onr
|
||||
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
|
||||
msgid "Exit import flow"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: IZ4o2e
|
||||
#: src/modules/navigation/components/AppNavigationDrawer.tsx
|
||||
msgid "Exit Settings"
|
||||
@@ -1981,11 +1896,6 @@ msgstr "Filtreer"
|
||||
msgid "Filters"
|
||||
msgstr "Filtreerders"
|
||||
|
||||
#. js-lingui-id: SNdnlf
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Finish flow with errors"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: USZ2N6
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
msgid "Finnish"
|
||||
@@ -2034,7 +1944,6 @@ msgstr "van jaarliks na maandeliks"
|
||||
|
||||
#. js-lingui-id: scmRyR
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "Full access"
|
||||
msgstr "Volle toegang"
|
||||
|
||||
@@ -2072,24 +1981,11 @@ msgstr "Kry jou inskrywing"
|
||||
msgid "Global"
|
||||
msgstr "Globaal"
|
||||
|
||||
#. js-lingui-id: iS69s6
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
msgid "Go to runs"
|
||||
msgstr "Gaan na uitvoerings"
|
||||
|
||||
#. js-lingui-id: mT57+Q
|
||||
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
|
||||
msgid "Go to Settings"
|
||||
msgstr "Gaan na instellings"
|
||||
|
||||
#. js-lingui-id: A5WHZY
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
|
||||
msgid "Go to workflows"
|
||||
msgstr "Gaan na werkvloeie"
|
||||
|
||||
#. js-lingui-id: hWp1MY
|
||||
#: src/pages/settings/SettingsWorkspace.tsx
|
||||
msgid "Grant Twenty support temporary access to your workspace so we can troubleshoot problems or recover content on your behalf. You can revoke access at any time."
|
||||
@@ -2149,34 +2045,6 @@ msgstr "Verborge velde"
|
||||
msgid "Hide"
|
||||
msgstr "Steek weg"
|
||||
|
||||
#. js-lingui-id: OlbYor
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
|
||||
msgid "Hide deleted"
|
||||
msgstr "\aVersteek verwyderde"
|
||||
|
||||
#. js-lingui-id: FHhlye
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
|
||||
msgid "Hide deleted records"
|
||||
msgstr "Versteek verwyderde rekords"
|
||||
|
||||
#. js-lingui-id: 0dZtKR
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
msgid "Hide deleted runs"
|
||||
msgstr "Versteek verwyderde lopies"
|
||||
|
||||
#. js-lingui-id: Jc6FrI
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
msgid "Hide deleted versions"
|
||||
msgstr "Versteek verwyderde weergawes"
|
||||
|
||||
#. js-lingui-id: aOZAIB
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
msgid "Hide deleted workflows"
|
||||
msgstr "Steek verwyderde werkvloeie weg"
|
||||
|
||||
#. js-lingui-id: HS8BG/
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupsContent.tsx
|
||||
msgid "Hide empty groups"
|
||||
@@ -2584,8 +2452,8 @@ msgstr "Teken uit"
|
||||
|
||||
#. js-lingui-id: nOhz3x
|
||||
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
|
||||
msgid "Logout"
|
||||
msgstr "Teken uit"
|
||||
#~ msgid "Logout"
|
||||
#~ msgstr "Logout"
|
||||
|
||||
#. js-lingui-id: PTozs8
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
@@ -2629,16 +2497,6 @@ msgstr "Bestuur jou intekening"
|
||||
msgid "Mark as done"
|
||||
msgstr "Merk as voltooi"
|
||||
|
||||
#. js-lingui-id: 7h8ch8
|
||||
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
|
||||
msgid "Match columns"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gDLior
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
msgid "Match Columns"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: CK1KXz
|
||||
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
|
||||
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
|
||||
@@ -2867,12 +2725,6 @@ msgstr "Nuwe SSO Verskaffer"
|
||||
#~ msgid "New Webhook"
|
||||
#~ msgstr "New Webhook"
|
||||
|
||||
#. js-lingui-id: AxNmtI
|
||||
#: src/modules/spreadsheet-import/steps/components/SelectSheetStep/SelectSheetStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
msgid "Next Step"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OTe3RI
|
||||
#: src/pages/settings/workspace/SettingsDomain.tsx
|
||||
msgid "No change detected"
|
||||
@@ -2888,16 +2740,6 @@ msgstr "Geen gekoppelde rekening"
|
||||
msgid "No country"
|
||||
msgstr "Geen land nie"
|
||||
|
||||
#. js-lingui-id: pxvJ9B
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "No data containing errors"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: dihZwh
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "No data found"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UwvrGq
|
||||
#: src/pages/settings/SettingsWorkspaceMembers.tsx
|
||||
msgid "No members"
|
||||
@@ -2954,11 +2796,6 @@ msgstr "Geen rekords gevind nie"
|
||||
#~ msgid "No Result"
|
||||
#~ msgstr "No Result"
|
||||
|
||||
#. js-lingui-id: Ev2r9A
|
||||
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
|
||||
msgid "No results"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: MA3x23
|
||||
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentWorkspaceMemberPickerDropdownContent.tsx
|
||||
msgid "No Results"
|
||||
@@ -2991,11 +2828,6 @@ msgstr "Geen"
|
||||
msgid "Norwegian"
|
||||
msgstr "Noors"
|
||||
|
||||
#. js-lingui-id: v3W9iu
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
msgid "Not all columns matched"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0qBE9S
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx
|
||||
@@ -3291,11 +3123,6 @@ msgstr "Voorskou"
|
||||
msgid "Privacy Policy"
|
||||
msgstr "Privaatheidsbeleid"
|
||||
|
||||
#. js-lingui-id: k1ifdL
|
||||
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
|
||||
msgid "Processing..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vERlcd
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
@@ -3409,7 +3236,6 @@ msgstr "Herlaai"
|
||||
|
||||
#. js-lingui-id: t/YqKh
|
||||
#: src/modules/ui/input/components/ImageInput.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Remove"
|
||||
msgstr "Verwyder"
|
||||
|
||||
@@ -3483,15 +3309,10 @@ msgid "Restore records"
|
||||
msgstr "Herstel rekords"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/command-menu/hooks/useCommandMenuSearchRecords.tsx
|
||||
#: src/modules/command-menu/hooks/useSearchRecords.tsx
|
||||
msgid "Results"
|
||||
msgstr "Resultate"
|
||||
|
||||
#. js-lingui-id: BohSvm
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Review your import"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 5dJK4M
|
||||
#: src/pages/settings/roles/SettingsRoles.tsx
|
||||
#: src/pages/settings/roles/SettingsRoles.tsx
|
||||
@@ -3532,7 +3353,6 @@ msgstr "Skema"
|
||||
#. js-lingui-id: A1taO8
|
||||
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownWorkspacesListComponents.tsx
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentWorkspaceMemberPickerDropdown.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/navigation/components/MainNavigationDrawerItems.tsx
|
||||
#: src/modules/command-menu/hooks/useOpenRecordsSearchPageInCommandMenu.ts
|
||||
@@ -3580,7 +3400,6 @@ msgstr "Soek 'n indeks..."
|
||||
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupFieldsContent.tsx
|
||||
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx
|
||||
#: src/modules/object-record/advanced-filter/components/AdvancedFilterFieldSelectSearchInput.tsx
|
||||
msgid "Search fields"
|
||||
msgstr "Soek velde"
|
||||
|
||||
@@ -3643,19 +3462,11 @@ msgstr "Sien verwyderde werkvloeie"
|
||||
#. js-lingui-id: OpPn5Z
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
msgid "See runs"
|
||||
msgstr "Sien lopies"
|
||||
|
||||
#. js-lingui-id: gGEfj/
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
msgid "See version"
|
||||
msgstr "Sien weergawes"
|
||||
|
||||
#. js-lingui-id: EtyY4+
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
@@ -3668,52 +3479,12 @@ msgstr "Sien weergawes"
|
||||
msgid "See versions history"
|
||||
msgstr "Sien weergawes geskiedenis"
|
||||
|
||||
#. js-lingui-id: qEKLJV
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
msgid "See workflow"
|
||||
msgstr "Sien werksvloei"
|
||||
|
||||
#. js-lingui-id: XThiR2
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
|
||||
msgid "See workflows"
|
||||
msgstr "Sien werkvloeie"
|
||||
|
||||
#. js-lingui-id: WZvt/6
|
||||
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
|
||||
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
|
||||
msgid "Select Action"
|
||||
msgstr "Kies Aksie"
|
||||
|
||||
#. js-lingui-id: hVPa4O
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/UnmatchColumn.tsx
|
||||
msgid "Select an option"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 21YIUv
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/TemplateColumn.tsx
|
||||
msgid "Select column..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: J6WI1B
|
||||
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
|
||||
msgid "Select file"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ljSvAs
|
||||
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
|
||||
msgid "Select header row"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mWHn81
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
msgid "Select the correct field for each column you'd like to import."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: pofGCP
|
||||
#: src/modules/settings/data-model/fields/forms/boolean/components/SettingsDataModelFieldBooleanForm.tsx
|
||||
msgid "Select the default value for this boolean field"
|
||||
@@ -3724,11 +3495,6 @@ msgstr "Kies die verstek waarde vir hierdie booleaanse veld"
|
||||
msgid "Select the events you wish to send to this endpoint"
|
||||
msgstr "Kies die gebeure wat jy wil stuur na hierdie eindpunt"
|
||||
|
||||
#. js-lingui-id: +xn1pe
|
||||
#: src/modules/spreadsheet-import/steps/components/SelectSheetStep/SelectSheetStep.tsx
|
||||
msgid "Select the sheet to use"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AXTJAW
|
||||
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
|
||||
msgid "Select your preferred language"
|
||||
@@ -3833,16 +3599,6 @@ msgstr "Behoort die verandering van 'n veld se etiket ook die API naam te verand
|
||||
msgid "Should changing an object's label also change the API?"
|
||||
msgstr "Moet 'n verandering aan 'n objek se etiket ook die API verander?"
|
||||
|
||||
#. js-lingui-id: qi+g0a
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Show only rows with errors"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: MHlGJL
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Show unmatched columns"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: uVg8dY
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutOpenInContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
@@ -3901,11 +3657,6 @@ msgstr "Spaans"
|
||||
msgid "SSO"
|
||||
msgstr "EGS"
|
||||
|
||||
#. js-lingui-id: vlvAkg
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "SSO (SAML / OIDC)"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ErU1td
|
||||
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
|
||||
msgid "Stages"
|
||||
@@ -3959,11 +3710,6 @@ msgstr "Onderwerp en metadata sal met jou span gedeel word."
|
||||
msgid "Subject, body and attachments will be shared with your team."
|
||||
msgstr "Onderwerp, liggaam en aanhangsels sal met jou span gedeel word."
|
||||
|
||||
#. js-lingui-id: hQRttt
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Submit"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: B5jRKH
|
||||
#: src/pages/settings/SettingsBilling.tsx
|
||||
msgid "Subscription has been switched {to}"
|
||||
@@ -4000,11 +3746,6 @@ msgstr "Verander na {to}"
|
||||
msgid "Switch billing {to}"
|
||||
msgstr "Verander rekening na {to}"
|
||||
|
||||
#. js-lingui-id: lz+f/E
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "Switch to {alternatePlanName}"
|
||||
msgstr "Skakel oor na {alternatePlanName}"
|
||||
|
||||
#. js-lingui-id: 5TRY4+
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
|
||||
msgid "Sync failed"
|
||||
@@ -4145,16 +3886,6 @@ msgstr "Tema"
|
||||
msgid "Theme "
|
||||
msgstr "Tema "
|
||||
|
||||
#. js-lingui-id: /cSDOy
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
msgid "There are required columns that are not matched or ignored. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: luL9RX
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ynfkhb
|
||||
#: src/pages/auth/PasswordReset.tsx
|
||||
msgid "There was an error while updating password."
|
||||
@@ -4298,7 +4029,6 @@ msgstr "Onbekende fout"
|
||||
|
||||
#. js-lingui-id: GQCXQS
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "Unlimited contacts"
|
||||
msgstr "Onbeperkte kontakte"
|
||||
|
||||
@@ -4312,13 +4042,7 @@ msgstr "Opgedateer"
|
||||
msgid "Upload"
|
||||
msgstr "Laai op"
|
||||
|
||||
#. js-lingui-id: 7OP1Xi
|
||||
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
|
||||
msgid "Upload .xlsx, .xls or .csv file"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2IXDgU
|
||||
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
msgid "Upload file"
|
||||
msgstr "Laai lêer op"
|
||||
@@ -4395,11 +4119,6 @@ msgstr "Gebruiker is nie aangeteken nie"
|
||||
#~ msgid "Users"
|
||||
#~ msgstr "Users"
|
||||
|
||||
#. js-lingui-id: MGeZsN
|
||||
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
|
||||
msgid "Validate data"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: fXVIZq
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
|
||||
@@ -4614,11 +4333,6 @@ msgstr "Skryf 'n geheim"
|
||||
msgid "yes"
|
||||
msgstr "ja"
|
||||
|
||||
#. js-lingui-id: qsAug0
|
||||
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
|
||||
msgid "You are already importing this column."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: MFDARJ
|
||||
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
|
||||
msgid "You are not allowed to create records for this object"
|
||||
|
||||
@@ -87,11 +87,6 @@ msgstr "{aggregateLabel} من {fieldLabel}"
|
||||
msgid "{apiKeyName} API Key"
|
||||
msgstr "مفتاح واجهة برمجة التطبيقات {apiKeyName}"
|
||||
|
||||
#. js-lingui-id: zi5SHH
|
||||
#: src/modules/object-record/record-index/components/RecordIndexPageHeader.tsx
|
||||
msgid "{contextStoreNumberOfSelectedRecords} selected"
|
||||
msgstr "{contextStoreNumberOfSelectedRecords} مُختار"
|
||||
|
||||
#. js-lingui-id: 6j5rE1
|
||||
#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx
|
||||
#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx
|
||||
@@ -105,8 +100,8 @@ msgstr "{workspaceMemberName} سيتم إلغاء تعيينه من الدور
|
||||
|
||||
#. js-lingui-id: YT0WJ4
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#~ msgid "1 000 workflow node executions"
|
||||
#~ msgstr "1 000 workflow node executions"
|
||||
msgid "1 000 workflow node executions"
|
||||
msgstr "1 000 تنفيذ عقدة سير العمل"
|
||||
|
||||
#. js-lingui-id: vb5TwV
|
||||
#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldSelect.tsx
|
||||
@@ -119,11 +114,6 @@ msgstr "1. اختر نوع الحقل"
|
||||
msgid "1. Type"
|
||||
msgstr "1. نوع"
|
||||
|
||||
#. js-lingui-id: AvXug3
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "10 000 workflow node executions"
|
||||
msgstr "10 000 تنفيذ عقدة سير العمل"
|
||||
|
||||
#. js-lingui-id: 4EdXYs
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "12h ({hour12Label})"
|
||||
@@ -140,11 +130,6 @@ msgstr "2. التكويين"
|
||||
msgid "2. Configure field"
|
||||
msgstr "2. تكوين الحقل"
|
||||
|
||||
#. js-lingui-id: kAtmAv
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "20 000 workflow node executions"
|
||||
msgstr "20 000 تنفيذ عقدة سير العمل"
|
||||
|
||||
#. js-lingui-id: QsMprd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "24h ({hour24Label})"
|
||||
@@ -201,11 +186,6 @@ msgstr "حذف الحساب"
|
||||
msgid "Accounts"
|
||||
msgstr "الحسابات"
|
||||
|
||||
#. js-lingui-id: bwRvnp
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
msgid "Action"
|
||||
msgstr "عمل"
|
||||
|
||||
#. js-lingui-id: 7L01XJ
|
||||
#: src/modules/settings/roles/role-permissions/components/RolePermissionsSettingsTableHeader.tsx
|
||||
#: src/modules/settings/roles/role-permissions/components/RolePermissionsObjectsTableHeader.tsx
|
||||
@@ -252,7 +232,7 @@ msgid "Add Approved Access Domain"
|
||||
msgstr "إضافة نطاق وصول معتمد"
|
||||
|
||||
#. js-lingui-id: DpV70M
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionForm.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
|
||||
msgid "Add Field"
|
||||
msgstr "إضافة حقل"
|
||||
@@ -453,7 +433,6 @@ msgstr "واجهة برمجة التطبيقات"
|
||||
|
||||
#. js-lingui-id: 0RqpZr
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "API & Webhooks"
|
||||
msgstr "واجهة برمجة التطبيقات والويب هوك"
|
||||
|
||||
@@ -537,28 +516,13 @@ msgstr "هل أنت متأكد أنك تريد تغيير فترة الفوتر
|
||||
|
||||
#. js-lingui-id: 8Y3Jbl
|
||||
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
|
||||
#~ msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
#~ msgstr "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
|
||||
#. js-lingui-id: 2BZAqa
|
||||
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
|
||||
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu."
|
||||
msgstr "هل أنت متأكد أنك تريد حذف هذه السجلات؟ يمكن استرجاعها من قائمة الأوامر."
|
||||
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
msgstr "هل أنت متأكد أنك تريد حذف هذه السجلات؟ يمكن استرجاعها من قائمة الأوامر ({osControlSymbol} + K)."
|
||||
|
||||
#. js-lingui-id: Se0vJw
|
||||
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
|
||||
#~ msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
#~ msgstr "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
|
||||
#. js-lingui-id: yb2hF4
|
||||
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
|
||||
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu."
|
||||
msgstr "هل أنت متأكد أنك تريد حذف هذا السجل؟ يمكن استرجاعه من قائمة الأوامر."
|
||||
|
||||
#. js-lingui-id: rnCqBK
|
||||
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
|
||||
msgid "Are you sure? Your current information will not be saved."
|
||||
msgstr ""
|
||||
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
msgstr "هل أنت متأكد أنك تريد حذف هذا السجل؟ يمكن استرجاعه من قائمة الأوامر ({osControlSymbol} + K)."
|
||||
|
||||
#. js-lingui-id: nYD/Cq
|
||||
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
|
||||
@@ -721,18 +685,10 @@ msgstr "مزامنة التقويم"
|
||||
msgid "Calendars"
|
||||
msgstr "التقاويم"
|
||||
|
||||
#. js-lingui-id: msssZq
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Can't change API names for standard objects"
|
||||
msgstr "لا يمكن تغيير أسماء API للكائنات القياسية"
|
||||
|
||||
#. js-lingui-id: dEgA5A
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
msgid "Cancel"
|
||||
msgstr "إلغاء"
|
||||
@@ -839,11 +795,6 @@ msgstr "إغلاق"
|
||||
msgid "Close command menu"
|
||||
msgstr "إغلاق قائمة الأوامر"
|
||||
|
||||
#. js-lingui-id: EWPtMO
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
msgid "Code"
|
||||
msgstr "رمز"
|
||||
|
||||
#. js-lingui-id: H86f9p
|
||||
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
|
||||
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
|
||||
@@ -856,11 +807,6 @@ msgstr "طي"
|
||||
msgid "Color code"
|
||||
msgstr "رمز اللون"
|
||||
|
||||
#. js-lingui-id: 93hd3e
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
msgid "Columns not matched:"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NM9bMd
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
msgid "Compact view"
|
||||
@@ -892,7 +838,6 @@ msgid "Configure your emails and calendar settings."
|
||||
msgstr "ضبط إعدادات بريدك الإلكتروني والتقويم."
|
||||
|
||||
#. js-lingui-id: 7VpPHA
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentConfirmationModal.tsx
|
||||
msgid "Confirm"
|
||||
msgstr "تأكيد"
|
||||
@@ -938,8 +883,6 @@ msgstr "السياق"
|
||||
#: src/pages/onboarding/CreateWorkspace.tsx
|
||||
#: src/pages/onboarding/CreateProfile.tsx
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx
|
||||
msgid "Continue"
|
||||
msgstr "استمر"
|
||||
@@ -1004,11 +947,6 @@ msgstr "انسخ هذا المفتاح لأنه لن يظهر مرة أخرى"
|
||||
msgid "Core"
|
||||
msgstr "النواة"
|
||||
|
||||
#. js-lingui-id: w5Stxm
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Correct the issues and fill the missing data."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wBMjJ2
|
||||
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterMenuContent.tsx
|
||||
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx
|
||||
@@ -1130,7 +1068,6 @@ msgstr "النطاق المخصص محدث"
|
||||
|
||||
#. js-lingui-id: 8skTDV
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "Custom objects"
|
||||
msgstr "كائنات مخصصة"
|
||||
|
||||
@@ -1443,11 +1380,6 @@ msgstr "عرض كتاريخ نسبي"
|
||||
msgid "Display text on multiple lines"
|
||||
msgstr "عرض النصوص في عدة خطوط"
|
||||
|
||||
#. js-lingui-id: ji7sqw
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/TemplateColumn.tsx
|
||||
msgid "Do not import"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: U9q4zF
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid "Doesn't contain"
|
||||
@@ -1491,11 +1423,6 @@ msgstr "لا تقم بمزامنة رسائل البريد الإلكتروني
|
||||
msgid "Download file"
|
||||
msgstr "تنزيل الملف"
|
||||
|
||||
#. js-lingui-id: 6D/BnN
|
||||
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
|
||||
msgid "Drop file here..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KIjvtr
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
msgid "Dutch"
|
||||
@@ -1553,7 +1480,6 @@ msgstr "قم بتعديل اسم النطاق الفرعي أو اضبط نطا
|
||||
#: src/pages/settings/SettingsWorkspaceMembers.tsx
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/auth/PasswordReset.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentTableHeader.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
msgid "Email"
|
||||
@@ -1571,7 +1497,6 @@ msgstr "لا يمكن أن يكون البريد الإلكتروني فارغً
|
||||
|
||||
#. js-lingui-id: lfQsvW
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "Email integration"
|
||||
msgstr "تكامل البريد الإلكتروني"
|
||||
|
||||
@@ -1781,21 +1706,11 @@ msgstr "استبعاد الأشخاص والمجالات التالية من م
|
||||
msgid "Existing objects"
|
||||
msgstr "الكائنات الحالية"
|
||||
|
||||
#. js-lingui-id: ydzS9x
|
||||
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
|
||||
msgid "Exit"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LFNXuj
|
||||
#: src/modules/ui/layout/fullscreen/components/FullScreenContainer.tsx
|
||||
msgid "Exit Full Screen"
|
||||
msgstr "خروج من وضع ملء الشاشة"
|
||||
|
||||
#. js-lingui-id: XB4onr
|
||||
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
|
||||
msgid "Exit import flow"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: IZ4o2e
|
||||
#: src/modules/navigation/components/AppNavigationDrawer.tsx
|
||||
msgid "Exit Settings"
|
||||
@@ -1981,11 +1896,6 @@ msgstr "تصفية"
|
||||
msgid "Filters"
|
||||
msgstr "الفلاتر"
|
||||
|
||||
#. js-lingui-id: SNdnlf
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Finish flow with errors"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: USZ2N6
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
msgid "Finnish"
|
||||
@@ -2034,7 +1944,6 @@ msgstr "من سنوي إلى شهري"
|
||||
|
||||
#. js-lingui-id: scmRyR
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "Full access"
|
||||
msgstr "وصول كامل"
|
||||
|
||||
@@ -2072,24 +1981,11 @@ msgstr "احصل على اشتراكك"
|
||||
msgid "Global"
|
||||
msgstr "عالمي"
|
||||
|
||||
#. js-lingui-id: iS69s6
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
msgid "Go to runs"
|
||||
msgstr "انتقل إلى العمليات"
|
||||
|
||||
#. js-lingui-id: mT57+Q
|
||||
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
|
||||
msgid "Go to Settings"
|
||||
msgstr "انتقل إلى الإعدادات"
|
||||
|
||||
#. js-lingui-id: A5WHZY
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
|
||||
msgid "Go to workflows"
|
||||
msgstr "اذهب إلى دورات العمل"
|
||||
|
||||
#. js-lingui-id: hWp1MY
|
||||
#: src/pages/settings/SettingsWorkspace.tsx
|
||||
msgid "Grant Twenty support temporary access to your workspace so we can troubleshoot problems or recover content on your behalf. You can revoke access at any time."
|
||||
@@ -2149,34 +2045,6 @@ msgstr "الحقول المخفية"
|
||||
msgid "Hide"
|
||||
msgstr "إخفاء"
|
||||
|
||||
#. js-lingui-id: OlbYor
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
|
||||
msgid "Hide deleted"
|
||||
msgstr "إخفاء المحذوفين"
|
||||
|
||||
#. js-lingui-id: FHhlye
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
|
||||
msgid "Hide deleted records"
|
||||
msgstr "إخفاء السجلات المحذوفة"
|
||||
|
||||
#. js-lingui-id: 0dZtKR
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
msgid "Hide deleted runs"
|
||||
msgstr "إخفاء التشغيلات المحذوفة"
|
||||
|
||||
#. js-lingui-id: Jc6FrI
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
msgid "Hide deleted versions"
|
||||
msgstr "إخفاء الإصدارات المحذوفة"
|
||||
|
||||
#. js-lingui-id: aOZAIB
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
msgid "Hide deleted workflows"
|
||||
msgstr "إخفاء الإجراءات المحذوفة"
|
||||
|
||||
#. js-lingui-id: HS8BG/
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupsContent.tsx
|
||||
msgid "Hide empty groups"
|
||||
@@ -2584,8 +2452,8 @@ msgstr "تسجيل الخروج"
|
||||
|
||||
#. js-lingui-id: nOhz3x
|
||||
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
|
||||
msgid "Logout"
|
||||
msgstr "تسجيل الخروج"
|
||||
#~ msgid "Logout"
|
||||
#~ msgstr "Logout"
|
||||
|
||||
#. js-lingui-id: PTozs8
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
@@ -2629,16 +2497,6 @@ msgstr "إدارة اشتراكك"
|
||||
msgid "Mark as done"
|
||||
msgstr "وضع علامة كمنجز"
|
||||
|
||||
#. js-lingui-id: 7h8ch8
|
||||
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
|
||||
msgid "Match columns"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gDLior
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
msgid "Match Columns"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: CK1KXz
|
||||
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
|
||||
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
|
||||
@@ -2867,12 +2725,6 @@ msgstr "موفر دخول موحد جديد"
|
||||
#~ msgid "New Webhook"
|
||||
#~ msgstr "New Webhook"
|
||||
|
||||
#. js-lingui-id: AxNmtI
|
||||
#: src/modules/spreadsheet-import/steps/components/SelectSheetStep/SelectSheetStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
msgid "Next Step"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OTe3RI
|
||||
#: src/pages/settings/workspace/SettingsDomain.tsx
|
||||
msgid "No change detected"
|
||||
@@ -2888,16 +2740,6 @@ msgstr "لا يوجد حساب متصل"
|
||||
msgid "No country"
|
||||
msgstr "لا دولة"
|
||||
|
||||
#. js-lingui-id: pxvJ9B
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "No data containing errors"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: dihZwh
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "No data found"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UwvrGq
|
||||
#: src/pages/settings/SettingsWorkspaceMembers.tsx
|
||||
msgid "No members"
|
||||
@@ -2954,11 +2796,6 @@ msgstr "لم يتم العثور على سجلات"
|
||||
#~ msgid "No Result"
|
||||
#~ msgstr "No Result"
|
||||
|
||||
#. js-lingui-id: Ev2r9A
|
||||
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
|
||||
msgid "No results"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: MA3x23
|
||||
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentWorkspaceMemberPickerDropdownContent.tsx
|
||||
msgid "No Results"
|
||||
@@ -2991,11 +2828,6 @@ msgstr "لا شيء"
|
||||
msgid "Norwegian"
|
||||
msgstr "النرويجية"
|
||||
|
||||
#. js-lingui-id: v3W9iu
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
msgid "Not all columns matched"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0qBE9S
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx
|
||||
@@ -3291,11 +3123,6 @@ msgstr "معاينة"
|
||||
msgid "Privacy Policy"
|
||||
msgstr "\\\\"
|
||||
|
||||
#. js-lingui-id: k1ifdL
|
||||
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
|
||||
msgid "Processing..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vERlcd
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
@@ -3409,7 +3236,6 @@ msgstr "إعادة تحميل"
|
||||
|
||||
#. js-lingui-id: t/YqKh
|
||||
#: src/modules/ui/input/components/ImageInput.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Remove"
|
||||
msgstr "\\\\"
|
||||
|
||||
@@ -3483,15 +3309,10 @@ msgid "Restore records"
|
||||
msgstr "استعادة السجلات"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/command-menu/hooks/useCommandMenuSearchRecords.tsx
|
||||
#: src/modules/command-menu/hooks/useSearchRecords.tsx
|
||||
msgid "Results"
|
||||
msgstr "\\\\"
|
||||
|
||||
#. js-lingui-id: BohSvm
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Review your import"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 5dJK4M
|
||||
#: src/pages/settings/roles/SettingsRoles.tsx
|
||||
#: src/pages/settings/roles/SettingsRoles.tsx
|
||||
@@ -3532,7 +3353,6 @@ msgstr "مخطط"
|
||||
#. js-lingui-id: A1taO8
|
||||
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownWorkspacesListComponents.tsx
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentWorkspaceMemberPickerDropdown.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/navigation/components/MainNavigationDrawerItems.tsx
|
||||
#: src/modules/command-menu/hooks/useOpenRecordsSearchPageInCommandMenu.ts
|
||||
@@ -3580,7 +3400,6 @@ msgstr "ابحث عن فهرس..."
|
||||
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupFieldsContent.tsx
|
||||
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx
|
||||
#: src/modules/object-record/advanced-filter/components/AdvancedFilterFieldSelectSearchInput.tsx
|
||||
msgid "Search fields"
|
||||
msgstr "\\\\"
|
||||
|
||||
@@ -3643,19 +3462,11 @@ msgstr "رؤية مجرى العمل المحذوفة"
|
||||
#. js-lingui-id: OpPn5Z
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
msgid "See runs"
|
||||
msgstr "\\\\"
|
||||
|
||||
#. js-lingui-id: gGEfj/
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
msgid "See version"
|
||||
msgstr "انظر النسخة"
|
||||
|
||||
#. js-lingui-id: EtyY4+
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
@@ -3668,52 +3479,12 @@ msgstr "\\\\"
|
||||
msgid "See versions history"
|
||||
msgstr "\\\\"
|
||||
|
||||
#. js-lingui-id: qEKLJV
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
msgid "See workflow"
|
||||
msgstr "انظر دورة العمل"
|
||||
|
||||
#. js-lingui-id: XThiR2
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
|
||||
msgid "See workflows"
|
||||
msgstr "انظر دورات العمل"
|
||||
|
||||
#. js-lingui-id: WZvt/6
|
||||
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
|
||||
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
|
||||
msgid "Select Action"
|
||||
msgstr "اختر الإجراء"
|
||||
|
||||
#. js-lingui-id: hVPa4O
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/UnmatchColumn.tsx
|
||||
msgid "Select an option"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 21YIUv
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/TemplateColumn.tsx
|
||||
msgid "Select column..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: J6WI1B
|
||||
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
|
||||
msgid "Select file"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ljSvAs
|
||||
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
|
||||
msgid "Select header row"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mWHn81
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
msgid "Select the correct field for each column you'd like to import."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: pofGCP
|
||||
#: src/modules/settings/data-model/fields/forms/boolean/components/SettingsDataModelFieldBooleanForm.tsx
|
||||
msgid "Select the default value for this boolean field"
|
||||
@@ -3724,11 +3495,6 @@ msgstr "اختر القيمة الافتراضية لهذا الحقل المن
|
||||
msgid "Select the events you wish to send to this endpoint"
|
||||
msgstr "\\\\"
|
||||
|
||||
#. js-lingui-id: +xn1pe
|
||||
#: src/modules/spreadsheet-import/steps/components/SelectSheetStep/SelectSheetStep.tsx
|
||||
msgid "Select the sheet to use"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AXTJAW
|
||||
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
|
||||
msgid "Select your preferred language"
|
||||
@@ -3833,16 +3599,6 @@ msgstr "هل ينبغي أن يؤدي تغيير تسمية الحقل أيضا
|
||||
msgid "Should changing an object's label also change the API?"
|
||||
msgstr "هل يجب أن يؤدي تغيير مسمى الكائن أيضاً إلى تغيير الواجهة برمجية؟"
|
||||
|
||||
#. js-lingui-id: qi+g0a
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Show only rows with errors"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: MHlGJL
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Show unmatched columns"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: uVg8dY
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutOpenInContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
@@ -3901,11 +3657,6 @@ msgstr "الإسبانية"
|
||||
msgid "SSO"
|
||||
msgstr "التسجيل الموحد"
|
||||
|
||||
#. js-lingui-id: vlvAkg
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "SSO (SAML / OIDC)"
|
||||
msgstr "تسجيل الدخول الأحادي (SAML / OIDC)"
|
||||
|
||||
#. js-lingui-id: ErU1td
|
||||
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
|
||||
msgid "Stages"
|
||||
@@ -3959,11 +3710,6 @@ msgstr "سيتم مشاركة الموضوع والبيانات الوصفية
|
||||
msgid "Subject, body and attachments will be shared with your team."
|
||||
msgstr "سيتم مشاركة الموضوع والمحتوى والمرفقات مع فريقك."
|
||||
|
||||
#. js-lingui-id: hQRttt
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Submit"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: B5jRKH
|
||||
#: src/pages/settings/SettingsBilling.tsx
|
||||
msgid "Subscription has been switched {to}"
|
||||
@@ -4000,11 +3746,6 @@ msgstr "تبديل <b>{to}</b>"
|
||||
msgid "Switch billing {to}"
|
||||
msgstr "تبديل الفوترة <b>{to}</b>"
|
||||
|
||||
#. js-lingui-id: lz+f/E
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "Switch to {alternatePlanName}"
|
||||
msgstr "التبديل إلى {alternatePlanName}"
|
||||
|
||||
#. js-lingui-id: 5TRY4+
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
|
||||
msgid "Sync failed"
|
||||
@@ -4145,16 +3886,6 @@ msgstr "سمة"
|
||||
msgid "Theme "
|
||||
msgstr "سمة "
|
||||
|
||||
#. js-lingui-id: /cSDOy
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
msgid "There are required columns that are not matched or ignored. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: luL9RX
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ynfkhb
|
||||
#: src/pages/auth/PasswordReset.tsx
|
||||
msgid "There was an error while updating password."
|
||||
@@ -4298,7 +4029,6 @@ msgstr "خطأ غير معروف"
|
||||
|
||||
#. js-lingui-id: GQCXQS
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "Unlimited contacts"
|
||||
msgstr "جهات اتصال غير محدودة"
|
||||
|
||||
@@ -4312,13 +4042,7 @@ msgstr "تم التحديث"
|
||||
msgid "Upload"
|
||||
msgstr "رفع"
|
||||
|
||||
#. js-lingui-id: 7OP1Xi
|
||||
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
|
||||
msgid "Upload .xlsx, .xls or .csv file"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2IXDgU
|
||||
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
msgid "Upload file"
|
||||
msgstr "رفع الملف"
|
||||
@@ -4395,11 +4119,6 @@ msgstr "المستخدم غير مسجل الدخول"
|
||||
#~ msgid "Users"
|
||||
#~ msgstr "Users"
|
||||
|
||||
#. js-lingui-id: MGeZsN
|
||||
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
|
||||
msgid "Validate data"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: fXVIZq
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
|
||||
@@ -4614,11 +4333,6 @@ msgstr "اكتب سرًا"
|
||||
msgid "yes"
|
||||
msgstr "نعم"
|
||||
|
||||
#. js-lingui-id: qsAug0
|
||||
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
|
||||
msgid "You are already importing this column."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: MFDARJ
|
||||
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
|
||||
msgid "You are not allowed to create records for this object"
|
||||
|
||||
@@ -87,11 +87,6 @@ msgstr "{aggregateLabel} de {fieldLabel}"
|
||||
msgid "{apiKeyName} API Key"
|
||||
msgstr "Clau d'API de {apiKeyName}"
|
||||
|
||||
#. js-lingui-id: zi5SHH
|
||||
#: src/modules/object-record/record-index/components/RecordIndexPageHeader.tsx
|
||||
msgid "{contextStoreNumberOfSelectedRecords} selected"
|
||||
msgstr "{contextStoreNumberOfSelectedRecords} seleccionats"
|
||||
|
||||
#. js-lingui-id: 6j5rE1
|
||||
#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx
|
||||
#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx
|
||||
@@ -105,8 +100,8 @@ msgstr "{workspaceMemberName} serà desassignat del següent rol:"
|
||||
|
||||
#. js-lingui-id: YT0WJ4
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#~ msgid "1 000 workflow node executions"
|
||||
#~ msgstr "1 000 workflow node executions"
|
||||
msgid "1 000 workflow node executions"
|
||||
msgstr "1 000 execucions de nusos de flujos de treball"
|
||||
|
||||
#. js-lingui-id: vb5TwV
|
||||
#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldSelect.tsx
|
||||
@@ -119,11 +114,6 @@ msgstr "1. Selecciona un tipus de camp"
|
||||
msgid "1. Type"
|
||||
msgstr "1. Tipus"
|
||||
|
||||
#. js-lingui-id: AvXug3
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "10 000 workflow node executions"
|
||||
msgstr "10.000 execucions de nodes de flux de treball"
|
||||
|
||||
#. js-lingui-id: 4EdXYs
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "12h ({hour12Label})"
|
||||
@@ -140,11 +130,6 @@ msgstr "2. Configura"
|
||||
msgid "2. Configure field"
|
||||
msgstr "2. Configura el camp"
|
||||
|
||||
#. js-lingui-id: kAtmAv
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "20 000 workflow node executions"
|
||||
msgstr "20.000 execucions de nodes de flux de treball"
|
||||
|
||||
#. js-lingui-id: QsMprd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "24h ({hour24Label})"
|
||||
@@ -201,11 +186,6 @@ msgstr "Eliminació de compte"
|
||||
msgid "Accounts"
|
||||
msgstr "Comptes"
|
||||
|
||||
#. js-lingui-id: bwRvnp
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
msgid "Action"
|
||||
msgstr "Acció"
|
||||
|
||||
#. js-lingui-id: 7L01XJ
|
||||
#: src/modules/settings/roles/role-permissions/components/RolePermissionsSettingsTableHeader.tsx
|
||||
#: src/modules/settings/roles/role-permissions/components/RolePermissionsObjectsTableHeader.tsx
|
||||
@@ -252,7 +232,7 @@ msgid "Add Approved Access Domain"
|
||||
msgstr "Afegeix un domini d'accés aprovat"
|
||||
|
||||
#. js-lingui-id: DpV70M
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionForm.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
|
||||
msgid "Add Field"
|
||||
msgstr "Afegeix camp"
|
||||
@@ -453,7 +433,6 @@ msgstr "API"
|
||||
|
||||
#. js-lingui-id: 0RqpZr
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "API & Webhooks"
|
||||
msgstr "API i Webhooks"
|
||||
|
||||
@@ -537,28 +516,13 @@ msgstr "Esteu segurs que voleu canviar el vostre interval de facturació?"
|
||||
|
||||
#. js-lingui-id: 8Y3Jbl
|
||||
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
|
||||
#~ msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
#~ msgstr "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
|
||||
#. js-lingui-id: 2BZAqa
|
||||
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
|
||||
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu."
|
||||
msgstr "Esteu segur que voleu suprimir aquests registres? Es poden recuperar des del menú d'ordres."
|
||||
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
msgstr "Esteu segur que voleu suprimir aquests registres? Es poden recuperar des del menú d'ordres ({osControlSymbol} + K)."
|
||||
|
||||
#. js-lingui-id: Se0vJw
|
||||
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
|
||||
#~ msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
#~ msgstr "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
|
||||
#. js-lingui-id: yb2hF4
|
||||
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
|
||||
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu."
|
||||
msgstr "Esteu segur que voleu suprimir aquest registre? Es pot recuperar des del menú d'ordres."
|
||||
|
||||
#. js-lingui-id: rnCqBK
|
||||
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
|
||||
msgid "Are you sure? Your current information will not be saved."
|
||||
msgstr ""
|
||||
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
msgstr "Esteu segur que voleu suprimir aquest registre? Es pot recuperar des del menú d'ordres ({osControlSymbol} + K)."
|
||||
|
||||
#. js-lingui-id: nYD/Cq
|
||||
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
|
||||
@@ -721,18 +685,10 @@ msgstr "Sincronització del calendari"
|
||||
msgid "Calendars"
|
||||
msgstr "Calendaris"
|
||||
|
||||
#. js-lingui-id: msssZq
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Can't change API names for standard objects"
|
||||
msgstr "No es poden canviar els noms de les API per a objectes estàndard"
|
||||
|
||||
#. js-lingui-id: dEgA5A
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
msgid "Cancel"
|
||||
msgstr "Cancel·la"
|
||||
@@ -839,11 +795,6 @@ msgstr "Tanca"
|
||||
msgid "Close command menu"
|
||||
msgstr "Tanca el menú de comandament"
|
||||
|
||||
#. js-lingui-id: EWPtMO
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
msgid "Code"
|
||||
msgstr "Codi"
|
||||
|
||||
#. js-lingui-id: H86f9p
|
||||
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
|
||||
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
|
||||
@@ -856,11 +807,6 @@ msgstr "Contraure"
|
||||
msgid "Color code"
|
||||
msgstr "Codi de colors"
|
||||
|
||||
#. js-lingui-id: 93hd3e
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
msgid "Columns not matched:"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NM9bMd
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
msgid "Compact view"
|
||||
@@ -892,7 +838,6 @@ msgid "Configure your emails and calendar settings."
|
||||
msgstr "Configureu els vostres correus electrònics i les preferències del calendari."
|
||||
|
||||
#. js-lingui-id: 7VpPHA
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentConfirmationModal.tsx
|
||||
msgid "Confirm"
|
||||
msgstr "Confirmar"
|
||||
@@ -938,8 +883,6 @@ msgstr "Context"
|
||||
#: src/pages/onboarding/CreateWorkspace.tsx
|
||||
#: src/pages/onboarding/CreateProfile.tsx
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx
|
||||
msgid "Continue"
|
||||
msgstr "Continua"
|
||||
@@ -1004,11 +947,6 @@ msgstr "Copia aquesta clau ja que no serà visible de nou"
|
||||
msgid "Core"
|
||||
msgstr "Nucli"
|
||||
|
||||
#. js-lingui-id: w5Stxm
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Correct the issues and fill the missing data."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wBMjJ2
|
||||
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterMenuContent.tsx
|
||||
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx
|
||||
@@ -1130,7 +1068,6 @@ msgstr "Domini personalitzat actualitzat"
|
||||
|
||||
#. js-lingui-id: 8skTDV
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "Custom objects"
|
||||
msgstr "Objectes personalitzats"
|
||||
|
||||
@@ -1443,11 +1380,6 @@ msgstr "Mostrar com a data relativa"
|
||||
msgid "Display text on multiple lines"
|
||||
msgstr "Mostra text en múltiples línies"
|
||||
|
||||
#. js-lingui-id: ji7sqw
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/TemplateColumn.tsx
|
||||
msgid "Do not import"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: U9q4zF
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid "Doesn't contain"
|
||||
@@ -1491,11 +1423,6 @@ msgstr "No sincronitzar correus de team@ support@ noreply@..."
|
||||
msgid "Download file"
|
||||
msgstr "Descarrega fitxer"
|
||||
|
||||
#. js-lingui-id: 6D/BnN
|
||||
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
|
||||
msgid "Drop file here..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KIjvtr
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
msgid "Dutch"
|
||||
@@ -1553,7 +1480,6 @@ msgstr "Edita el nom del teu subdomini o estableix un domini personalitzat."
|
||||
#: src/pages/settings/SettingsWorkspaceMembers.tsx
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/auth/PasswordReset.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentTableHeader.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
msgid "Email"
|
||||
@@ -1571,7 +1497,6 @@ msgstr "El correu electrònic no pot estar buit"
|
||||
|
||||
#. js-lingui-id: lfQsvW
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "Email integration"
|
||||
msgstr "Integració de correu electrònic"
|
||||
|
||||
@@ -1781,21 +1706,11 @@ msgstr "Exclou les persones i dominis següents de la meva sincronització del c
|
||||
msgid "Existing objects"
|
||||
msgstr "Objectes existents"
|
||||
|
||||
#. js-lingui-id: ydzS9x
|
||||
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
|
||||
msgid "Exit"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LFNXuj
|
||||
#: src/modules/ui/layout/fullscreen/components/FullScreenContainer.tsx
|
||||
msgid "Exit Full Screen"
|
||||
msgstr "Sortir de la pantalla completa"
|
||||
|
||||
#. js-lingui-id: XB4onr
|
||||
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
|
||||
msgid "Exit import flow"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: IZ4o2e
|
||||
#: src/modules/navigation/components/AppNavigationDrawer.tsx
|
||||
msgid "Exit Settings"
|
||||
@@ -1981,11 +1896,6 @@ msgstr "Filtrar"
|
||||
msgid "Filters"
|
||||
msgstr "Filtres"
|
||||
|
||||
#. js-lingui-id: SNdnlf
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Finish flow with errors"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: USZ2N6
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
msgid "Finnish"
|
||||
@@ -2034,7 +1944,6 @@ msgstr "d'anual a mensual"
|
||||
|
||||
#. js-lingui-id: scmRyR
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "Full access"
|
||||
msgstr "Accés complet"
|
||||
|
||||
@@ -2072,24 +1981,11 @@ msgstr "Obteniu la vostra subscripció"
|
||||
msgid "Global"
|
||||
msgstr "Global"
|
||||
|
||||
#. js-lingui-id: iS69s6
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
msgid "Go to runs"
|
||||
msgstr "Anar a les execucions"
|
||||
|
||||
#. js-lingui-id: mT57+Q
|
||||
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
|
||||
msgid "Go to Settings"
|
||||
msgstr "Anar a Configuració"
|
||||
|
||||
#. js-lingui-id: A5WHZY
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
|
||||
msgid "Go to workflows"
|
||||
msgstr "Anar als fluxos de treball"
|
||||
|
||||
#. js-lingui-id: hWp1MY
|
||||
#: src/pages/settings/SettingsWorkspace.tsx
|
||||
msgid "Grant Twenty support temporary access to your workspace so we can troubleshoot problems or recover content on your behalf. You can revoke access at any time."
|
||||
@@ -2149,34 +2045,6 @@ msgstr "Camps ocults"
|
||||
msgid "Hide"
|
||||
msgstr "Amagar"
|
||||
|
||||
#. js-lingui-id: OlbYor
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
|
||||
msgid "Hide deleted"
|
||||
msgstr "Amaga eliminats"
|
||||
|
||||
#. js-lingui-id: FHhlye
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
|
||||
msgid "Hide deleted records"
|
||||
msgstr "Amaga registres suprimits"
|
||||
|
||||
#. js-lingui-id: 0dZtKR
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
msgid "Hide deleted runs"
|
||||
msgstr "Amaga execucions eliminades"
|
||||
|
||||
#. js-lingui-id: Jc6FrI
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
msgid "Hide deleted versions"
|
||||
msgstr "Amaga versions eliminades"
|
||||
|
||||
#. js-lingui-id: aOZAIB
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
msgid "Hide deleted workflows"
|
||||
msgstr "Amagar fluxos de treball eliminats"
|
||||
|
||||
#. js-lingui-id: HS8BG/
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupsContent.tsx
|
||||
msgid "Hide empty groups"
|
||||
@@ -2584,8 +2452,8 @@ msgstr "Tancar sessió"
|
||||
|
||||
#. js-lingui-id: nOhz3x
|
||||
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
|
||||
msgid "Logout"
|
||||
msgstr "Tancar sessió"
|
||||
#~ msgid "Logout"
|
||||
#~ msgstr "Logout"
|
||||
|
||||
#. js-lingui-id: PTozs8
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
@@ -2629,16 +2497,6 @@ msgstr "Gestiona la teva subscripció"
|
||||
msgid "Mark as done"
|
||||
msgstr "Marcar com a fet"
|
||||
|
||||
#. js-lingui-id: 7h8ch8
|
||||
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
|
||||
msgid "Match columns"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gDLior
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
msgid "Match Columns"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: CK1KXz
|
||||
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
|
||||
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
|
||||
@@ -2867,12 +2725,6 @@ msgstr "Nou proveïdor SSO"
|
||||
#~ msgid "New Webhook"
|
||||
#~ msgstr "New Webhook"
|
||||
|
||||
#. js-lingui-id: AxNmtI
|
||||
#: src/modules/spreadsheet-import/steps/components/SelectSheetStep/SelectSheetStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
msgid "Next Step"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OTe3RI
|
||||
#: src/pages/settings/workspace/SettingsDomain.tsx
|
||||
msgid "No change detected"
|
||||
@@ -2888,16 +2740,6 @@ msgstr "Cap compte connectat"
|
||||
msgid "No country"
|
||||
msgstr "Sense país"
|
||||
|
||||
#. js-lingui-id: pxvJ9B
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "No data containing errors"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: dihZwh
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "No data found"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UwvrGq
|
||||
#: src/pages/settings/SettingsWorkspaceMembers.tsx
|
||||
msgid "No members"
|
||||
@@ -2954,11 +2796,6 @@ msgstr "No s'han trobat registres"
|
||||
#~ msgid "No Result"
|
||||
#~ msgstr "No Result"
|
||||
|
||||
#. js-lingui-id: Ev2r9A
|
||||
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
|
||||
msgid "No results"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: MA3x23
|
||||
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentWorkspaceMemberPickerDropdownContent.tsx
|
||||
msgid "No Results"
|
||||
@@ -2991,11 +2828,6 @@ msgstr "Cap"
|
||||
msgid "Norwegian"
|
||||
msgstr "Noruec"
|
||||
|
||||
#. js-lingui-id: v3W9iu
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
msgid "Not all columns matched"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0qBE9S
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx
|
||||
@@ -3291,11 +3123,6 @@ msgstr "Previsualització"
|
||||
msgid "Privacy Policy"
|
||||
msgstr "Política de Privacitat"
|
||||
|
||||
#. js-lingui-id: k1ifdL
|
||||
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
|
||||
msgid "Processing..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vERlcd
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
@@ -3409,7 +3236,6 @@ msgstr "Tornar a carregar"
|
||||
|
||||
#. js-lingui-id: t/YqKh
|
||||
#: src/modules/ui/input/components/ImageInput.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Remove"
|
||||
msgstr "Elimina"
|
||||
|
||||
@@ -3483,15 +3309,10 @@ msgid "Restore records"
|
||||
msgstr "Restaurar registres"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/command-menu/hooks/useCommandMenuSearchRecords.tsx
|
||||
#: src/modules/command-menu/hooks/useSearchRecords.tsx
|
||||
msgid "Results"
|
||||
msgstr "Resultats"
|
||||
|
||||
#. js-lingui-id: BohSvm
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Review your import"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 5dJK4M
|
||||
#: src/pages/settings/roles/SettingsRoles.tsx
|
||||
#: src/pages/settings/roles/SettingsRoles.tsx
|
||||
@@ -3532,7 +3353,6 @@ msgstr "Esquema"
|
||||
#. js-lingui-id: A1taO8
|
||||
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownWorkspacesListComponents.tsx
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentWorkspaceMemberPickerDropdown.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/navigation/components/MainNavigationDrawerItems.tsx
|
||||
#: src/modules/command-menu/hooks/useOpenRecordsSearchPageInCommandMenu.ts
|
||||
@@ -3580,7 +3400,6 @@ msgstr "Cerca un índex..."
|
||||
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupFieldsContent.tsx
|
||||
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx
|
||||
#: src/modules/object-record/advanced-filter/components/AdvancedFilterFieldSelectSearchInput.tsx
|
||||
msgid "Search fields"
|
||||
msgstr "Cerca camps"
|
||||
|
||||
@@ -3643,19 +3462,11 @@ msgstr "Veure fluxos de treball eliminats"
|
||||
#. js-lingui-id: OpPn5Z
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
msgid "See runs"
|
||||
msgstr "Veure les execucions"
|
||||
|
||||
#. js-lingui-id: gGEfj/
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
msgid "See version"
|
||||
msgstr "Veure la versió"
|
||||
|
||||
#. js-lingui-id: EtyY4+
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
@@ -3668,52 +3479,12 @@ msgstr "Veure les versions"
|
||||
msgid "See versions history"
|
||||
msgstr "Veure l'historial de versions"
|
||||
|
||||
#. js-lingui-id: qEKLJV
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
msgid "See workflow"
|
||||
msgstr "Veure el flux de treball"
|
||||
|
||||
#. js-lingui-id: XThiR2
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
|
||||
msgid "See workflows"
|
||||
msgstr "Veure els fluxos de treball"
|
||||
|
||||
#. js-lingui-id: WZvt/6
|
||||
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
|
||||
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
|
||||
msgid "Select Action"
|
||||
msgstr "Selecciona Acció"
|
||||
|
||||
#. js-lingui-id: hVPa4O
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/UnmatchColumn.tsx
|
||||
msgid "Select an option"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 21YIUv
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/TemplateColumn.tsx
|
||||
msgid "Select column..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: J6WI1B
|
||||
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
|
||||
msgid "Select file"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ljSvAs
|
||||
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
|
||||
msgid "Select header row"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mWHn81
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
msgid "Select the correct field for each column you'd like to import."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: pofGCP
|
||||
#: src/modules/settings/data-model/fields/forms/boolean/components/SettingsDataModelFieldBooleanForm.tsx
|
||||
msgid "Select the default value for this boolean field"
|
||||
@@ -3724,11 +3495,6 @@ msgstr "Selecciona el valor predeterminat per a aquest camp booleà"
|
||||
msgid "Select the events you wish to send to this endpoint"
|
||||
msgstr "Selecciona els esdeveniments que vols enviar a aquest endpoint"
|
||||
|
||||
#. js-lingui-id: +xn1pe
|
||||
#: src/modules/spreadsheet-import/steps/components/SelectSheetStep/SelectSheetStep.tsx
|
||||
msgid "Select the sheet to use"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AXTJAW
|
||||
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
|
||||
msgid "Select your preferred language"
|
||||
@@ -3833,16 +3599,6 @@ msgstr "¿Canviar l'etiqueta d'un camp hauria de canviar també el nom de l'API?
|
||||
msgid "Should changing an object's label also change the API?"
|
||||
msgstr "¿Canviar l'etiqueta d'un objecte hauria de canviar també l'API?"
|
||||
|
||||
#. js-lingui-id: qi+g0a
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Show only rows with errors"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: MHlGJL
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Show unmatched columns"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: uVg8dY
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutOpenInContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
@@ -3901,11 +3657,6 @@ msgstr "Espanyol"
|
||||
msgid "SSO"
|
||||
msgstr "SSO"
|
||||
|
||||
#. js-lingui-id: vlvAkg
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "SSO (SAML / OIDC)"
|
||||
msgstr "SSO (SAML / OIDC)"
|
||||
|
||||
#. js-lingui-id: ErU1td
|
||||
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
|
||||
msgid "Stages"
|
||||
@@ -3959,11 +3710,6 @@ msgstr "Assignatura i metadades seran compartides amb el teu equip."
|
||||
msgid "Subject, body and attachments will be shared with your team."
|
||||
msgstr "Assignatura, cos i adjunts seran compartits amb el teu equip."
|
||||
|
||||
#. js-lingui-id: hQRttt
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Submit"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: B5jRKH
|
||||
#: src/pages/settings/SettingsBilling.tsx
|
||||
msgid "Subscription has been switched {to}"
|
||||
@@ -4000,11 +3746,6 @@ msgstr "Canviar {to}"
|
||||
msgid "Switch billing {to}"
|
||||
msgstr "Canviar facturació {to}"
|
||||
|
||||
#. js-lingui-id: lz+f/E
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "Switch to {alternatePlanName}"
|
||||
msgstr "Canviar a {alternatePlanName}"
|
||||
|
||||
#. js-lingui-id: 5TRY4+
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
|
||||
msgid "Sync failed"
|
||||
@@ -4145,16 +3886,6 @@ msgstr "Tema"
|
||||
msgid "Theme "
|
||||
msgstr "Tema "
|
||||
|
||||
#. js-lingui-id: /cSDOy
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
msgid "There are required columns that are not matched or ignored. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: luL9RX
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ynfkhb
|
||||
#: src/pages/auth/PasswordReset.tsx
|
||||
msgid "There was an error while updating password."
|
||||
@@ -4298,7 +4029,6 @@ msgstr "Error desconegut"
|
||||
|
||||
#. js-lingui-id: GQCXQS
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "Unlimited contacts"
|
||||
msgstr "Contactes il·limitats"
|
||||
|
||||
@@ -4312,13 +4042,7 @@ msgstr "Actualitzat"
|
||||
msgid "Upload"
|
||||
msgstr "Pujada"
|
||||
|
||||
#. js-lingui-id: 7OP1Xi
|
||||
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
|
||||
msgid "Upload .xlsx, .xls or .csv file"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2IXDgU
|
||||
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
msgid "Upload file"
|
||||
msgstr "Carrega fitxer"
|
||||
@@ -4395,11 +4119,6 @@ msgstr "L'usuari no està logat"
|
||||
#~ msgid "Users"
|
||||
#~ msgstr "Users"
|
||||
|
||||
#. js-lingui-id: MGeZsN
|
||||
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
|
||||
msgid "Validate data"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: fXVIZq
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
|
||||
@@ -4614,11 +4333,6 @@ msgstr "Escriu un secret"
|
||||
msgid "yes"
|
||||
msgstr "sí"
|
||||
|
||||
#. js-lingui-id: qsAug0
|
||||
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
|
||||
msgid "You are already importing this column."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: MFDARJ
|
||||
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
|
||||
msgid "You are not allowed to create records for this object"
|
||||
|
||||
@@ -87,11 +87,6 @@ msgstr "{aggregateLabel} z {fieldLabel}"
|
||||
msgid "{apiKeyName} API Key"
|
||||
msgstr "{apiKeyName} API klíč"
|
||||
|
||||
#. js-lingui-id: zi5SHH
|
||||
#: src/modules/object-record/record-index/components/RecordIndexPageHeader.tsx
|
||||
msgid "{contextStoreNumberOfSelectedRecords} selected"
|
||||
msgstr "{contextStoreNumberOfSelectedRecords} vybrané"
|
||||
|
||||
#. js-lingui-id: 6j5rE1
|
||||
#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx
|
||||
#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx
|
||||
@@ -105,8 +100,8 @@ msgstr "{workspaceMemberName} bude odebrán z následující role:"
|
||||
|
||||
#. js-lingui-id: YT0WJ4
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#~ msgid "1 000 workflow node executions"
|
||||
#~ msgstr "1 000 workflow node executions"
|
||||
msgid "1 000 workflow node executions"
|
||||
msgstr "1 000 spuštění uzlů Workflow"
|
||||
|
||||
#. js-lingui-id: vb5TwV
|
||||
#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldSelect.tsx
|
||||
@@ -119,11 +114,6 @@ msgstr "1. Vyberte typ pole"
|
||||
msgid "1. Type"
|
||||
msgstr "1. Typ"
|
||||
|
||||
#. js-lingui-id: AvXug3
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "10 000 workflow node executions"
|
||||
msgstr "10 000 spuštění uzlu pracovního postupu"
|
||||
|
||||
#. js-lingui-id: 4EdXYs
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "12h ({hour12Label})"
|
||||
@@ -140,11 +130,6 @@ msgstr "2. Nakonfigurujte"
|
||||
msgid "2. Configure field"
|
||||
msgstr "2. Nakonfigurujte pole"
|
||||
|
||||
#. js-lingui-id: kAtmAv
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "20 000 workflow node executions"
|
||||
msgstr "20 000 spuštění uzlu pracovního postupu"
|
||||
|
||||
#. js-lingui-id: QsMprd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "24h ({hour24Label})"
|
||||
@@ -201,11 +186,6 @@ msgstr "Smazání účtu"
|
||||
msgid "Accounts"
|
||||
msgstr "Účty"
|
||||
|
||||
#. js-lingui-id: bwRvnp
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
msgid "Action"
|
||||
msgstr "Akce"
|
||||
|
||||
#. js-lingui-id: 7L01XJ
|
||||
#: src/modules/settings/roles/role-permissions/components/RolePermissionsSettingsTableHeader.tsx
|
||||
#: src/modules/settings/roles/role-permissions/components/RolePermissionsObjectsTableHeader.tsx
|
||||
@@ -252,7 +232,7 @@ msgid "Add Approved Access Domain"
|
||||
msgstr "Přidat schválenou přístupovou doménu"
|
||||
|
||||
#. js-lingui-id: DpV70M
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionForm.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
|
||||
msgid "Add Field"
|
||||
msgstr "Přidat pole"
|
||||
@@ -453,7 +433,6 @@ msgstr "API"
|
||||
|
||||
#. js-lingui-id: 0RqpZr
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "API & Webhooks"
|
||||
msgstr "API & Webhooks"
|
||||
|
||||
@@ -537,28 +516,13 @@ msgstr "Jste si jisti, že chcete změnit interval fakturace?"
|
||||
|
||||
#. js-lingui-id: 8Y3Jbl
|
||||
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
|
||||
#~ msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
#~ msgstr "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
|
||||
#. js-lingui-id: 2BZAqa
|
||||
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
|
||||
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu."
|
||||
msgstr "Jste si jisti, že chcete smazat tyto záznamy? Mohou být obnoveny z příkazové nabídky."
|
||||
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
msgstr "Jste si jisti, že chcete smazat tyto záznamy? Můžete je obnovit z nabídky Příkaz ({osControlSymbol} + K)."
|
||||
|
||||
#. js-lingui-id: Se0vJw
|
||||
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
|
||||
#~ msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
#~ msgstr "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
|
||||
#. js-lingui-id: yb2hF4
|
||||
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
|
||||
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu."
|
||||
msgstr "Jste si jisti, že chcete odstranit tento záznam? Lze jej obnovit z menu Příkazy."
|
||||
|
||||
#. js-lingui-id: rnCqBK
|
||||
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
|
||||
msgid "Are you sure? Your current information will not be saved."
|
||||
msgstr ""
|
||||
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
msgstr "Jste si jisti, že chcete smazat tento záznam? Můžete jej obnovit z nabídky Příkaz ({osControlSymbol} + K)."
|
||||
|
||||
#. js-lingui-id: nYD/Cq
|
||||
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
|
||||
@@ -721,18 +685,10 @@ msgstr "Synchronizace kalendáře"
|
||||
msgid "Calendars"
|
||||
msgstr "Kalendáře"
|
||||
|
||||
#. js-lingui-id: msssZq
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Can't change API names for standard objects"
|
||||
msgstr "Nelze změnit názvy API pro standardní objekty"
|
||||
|
||||
#. js-lingui-id: dEgA5A
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
msgid "Cancel"
|
||||
msgstr "Storno"
|
||||
@@ -839,11 +795,6 @@ msgstr "Zavřít"
|
||||
msgid "Close command menu"
|
||||
msgstr "Zavřít příkazové menu"
|
||||
|
||||
#. js-lingui-id: EWPtMO
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
msgid "Code"
|
||||
msgstr "Kód"
|
||||
|
||||
#. js-lingui-id: H86f9p
|
||||
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
|
||||
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
|
||||
@@ -856,11 +807,6 @@ msgstr "Sbalit"
|
||||
msgid "Color code"
|
||||
msgstr "Barevný kód"
|
||||
|
||||
#. js-lingui-id: 93hd3e
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
msgid "Columns not matched:"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NM9bMd
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
msgid "Compact view"
|
||||
@@ -892,7 +838,6 @@ msgid "Configure your emails and calendar settings."
|
||||
msgstr "Nakonfigurujte nastavení svých e-mailů a kalendáře."
|
||||
|
||||
#. js-lingui-id: 7VpPHA
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentConfirmationModal.tsx
|
||||
msgid "Confirm"
|
||||
msgstr "Potvrdit"
|
||||
@@ -938,8 +883,6 @@ msgstr "Kontext"
|
||||
#: src/pages/onboarding/CreateWorkspace.tsx
|
||||
#: src/pages/onboarding/CreateProfile.tsx
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx
|
||||
msgid "Continue"
|
||||
msgstr "Pokračovat"
|
||||
@@ -1004,11 +947,6 @@ msgstr "Zkopírujte tento klíč, nebude již znovu viditelný"
|
||||
msgid "Core"
|
||||
msgstr "Jádro"
|
||||
|
||||
#. js-lingui-id: w5Stxm
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Correct the issues and fill the missing data."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wBMjJ2
|
||||
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterMenuContent.tsx
|
||||
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx
|
||||
@@ -1130,7 +1068,6 @@ msgstr "Vlastní doména aktualizována"
|
||||
|
||||
#. js-lingui-id: 8skTDV
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "Custom objects"
|
||||
msgstr "Vlastní objekty"
|
||||
|
||||
@@ -1443,11 +1380,6 @@ msgstr "Zobrazit jako relativní datum"
|
||||
msgid "Display text on multiple lines"
|
||||
msgstr "Zobrazit text na více řádcích"
|
||||
|
||||
#. js-lingui-id: ji7sqw
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/TemplateColumn.tsx
|
||||
msgid "Do not import"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: U9q4zF
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid "Doesn't contain"
|
||||
@@ -1491,11 +1423,6 @@ msgstr "Nesynchronizovat e-maily z team@ support@ noreply@..."
|
||||
msgid "Download file"
|
||||
msgstr "Stáhnout soubor"
|
||||
|
||||
#. js-lingui-id: 6D/BnN
|
||||
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
|
||||
msgid "Drop file here..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KIjvtr
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
msgid "Dutch"
|
||||
@@ -1553,7 +1480,6 @@ msgstr "Upravit název vaší subdomény nebo nastavit vlastní doménu."
|
||||
#: src/pages/settings/SettingsWorkspaceMembers.tsx
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/auth/PasswordReset.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentTableHeader.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
msgid "Email"
|
||||
@@ -1571,7 +1497,6 @@ msgstr "Email nesmí být prázdný"
|
||||
|
||||
#. js-lingui-id: lfQsvW
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "Email integration"
|
||||
msgstr "Integrace e-mailů"
|
||||
|
||||
@@ -1781,21 +1706,11 @@ msgstr "Vyloučit následující lidi a domény z mé synchronizace emailů. Int
|
||||
msgid "Existing objects"
|
||||
msgstr "Stávající objekty"
|
||||
|
||||
#. js-lingui-id: ydzS9x
|
||||
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
|
||||
msgid "Exit"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LFNXuj
|
||||
#: src/modules/ui/layout/fullscreen/components/FullScreenContainer.tsx
|
||||
msgid "Exit Full Screen"
|
||||
msgstr "Ukončit režim celé obrazovky"
|
||||
|
||||
#. js-lingui-id: XB4onr
|
||||
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
|
||||
msgid "Exit import flow"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: IZ4o2e
|
||||
#: src/modules/navigation/components/AppNavigationDrawer.tsx
|
||||
msgid "Exit Settings"
|
||||
@@ -1981,11 +1896,6 @@ msgstr "Filtr"
|
||||
msgid "Filters"
|
||||
msgstr "Filtry"
|
||||
|
||||
#. js-lingui-id: SNdnlf
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Finish flow with errors"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: USZ2N6
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
msgid "Finnish"
|
||||
@@ -2034,7 +1944,6 @@ msgstr "z ročního na měsíční"
|
||||
|
||||
#. js-lingui-id: scmRyR
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "Full access"
|
||||
msgstr "Plný přístup"
|
||||
|
||||
@@ -2072,24 +1981,11 @@ msgstr "Získejte své předplatné"
|
||||
msgid "Global"
|
||||
msgstr "Globální"
|
||||
|
||||
#. js-lingui-id: iS69s6
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
msgid "Go to runs"
|
||||
msgstr "Přejít na spuštění"
|
||||
|
||||
#. js-lingui-id: mT57+Q
|
||||
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
|
||||
msgid "Go to Settings"
|
||||
msgstr "Přejít do nastavení"
|
||||
|
||||
#. js-lingui-id: A5WHZY
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
|
||||
msgid "Go to workflows"
|
||||
msgstr "Přejít na pracovní postupy"
|
||||
|
||||
#. js-lingui-id: hWp1MY
|
||||
#: src/pages/settings/SettingsWorkspace.tsx
|
||||
msgid "Grant Twenty support temporary access to your workspace so we can troubleshoot problems or recover content on your behalf. You can revoke access at any time."
|
||||
@@ -2149,34 +2045,6 @@ msgstr "Skrytá pole"
|
||||
msgid "Hide"
|
||||
msgstr "Skrýt"
|
||||
|
||||
#. js-lingui-id: OlbYor
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
|
||||
msgid "Hide deleted"
|
||||
msgstr "Skrýt smazané"
|
||||
|
||||
#. js-lingui-id: FHhlye
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
|
||||
msgid "Hide deleted records"
|
||||
msgstr "Skrýt smazané záznamy"
|
||||
|
||||
#. js-lingui-id: 0dZtKR
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
msgid "Hide deleted runs"
|
||||
msgstr "Skrýt smazaná spuštění"
|
||||
|
||||
#. js-lingui-id: Jc6FrI
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
msgid "Hide deleted versions"
|
||||
msgstr "Skrýt smazané verze"
|
||||
|
||||
#. js-lingui-id: aOZAIB
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
msgid "Hide deleted workflows"
|
||||
msgstr "Skryt smazané pracovní postupy"
|
||||
|
||||
#. js-lingui-id: HS8BG/
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupsContent.tsx
|
||||
msgid "Hide empty groups"
|
||||
@@ -2584,8 +2452,8 @@ msgstr "Odhlásit se"
|
||||
|
||||
#. js-lingui-id: nOhz3x
|
||||
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
|
||||
msgid "Logout"
|
||||
msgstr "Odhlásit"
|
||||
#~ msgid "Logout"
|
||||
#~ msgstr "Logout"
|
||||
|
||||
#. js-lingui-id: PTozs8
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
@@ -2629,16 +2497,6 @@ msgstr "Spravujte své předplatné"
|
||||
msgid "Mark as done"
|
||||
msgstr "Označit jako hotovo"
|
||||
|
||||
#. js-lingui-id: 7h8ch8
|
||||
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
|
||||
msgid "Match columns"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gDLior
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
msgid "Match Columns"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: CK1KXz
|
||||
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
|
||||
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
|
||||
@@ -2867,12 +2725,6 @@ msgstr "Nový poskytovatel SSO"
|
||||
#~ msgid "New Webhook"
|
||||
#~ msgstr "New Webhook"
|
||||
|
||||
#. js-lingui-id: AxNmtI
|
||||
#: src/modules/spreadsheet-import/steps/components/SelectSheetStep/SelectSheetStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
msgid "Next Step"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OTe3RI
|
||||
#: src/pages/settings/workspace/SettingsDomain.tsx
|
||||
msgid "No change detected"
|
||||
@@ -2888,16 +2740,6 @@ msgstr "Žádný propojený účet"
|
||||
msgid "No country"
|
||||
msgstr "Žádná země"
|
||||
|
||||
#. js-lingui-id: pxvJ9B
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "No data containing errors"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: dihZwh
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "No data found"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UwvrGq
|
||||
#: src/pages/settings/SettingsWorkspaceMembers.tsx
|
||||
msgid "No members"
|
||||
@@ -2954,11 +2796,6 @@ msgstr "Žádné záznamy nenalezeny"
|
||||
#~ msgid "No Result"
|
||||
#~ msgstr "No Result"
|
||||
|
||||
#. js-lingui-id: Ev2r9A
|
||||
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
|
||||
msgid "No results"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: MA3x23
|
||||
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentWorkspaceMemberPickerDropdownContent.tsx
|
||||
msgid "No Results"
|
||||
@@ -2991,11 +2828,6 @@ msgstr "Žádný"
|
||||
msgid "Norwegian"
|
||||
msgstr "Norština"
|
||||
|
||||
#. js-lingui-id: v3W9iu
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
msgid "Not all columns matched"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0qBE9S
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx
|
||||
@@ -3291,11 +3123,6 @@ msgstr "Náhled"
|
||||
msgid "Privacy Policy"
|
||||
msgstr "Zásady ochrany osobních údajů"
|
||||
|
||||
#. js-lingui-id: k1ifdL
|
||||
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
|
||||
msgid "Processing..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vERlcd
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
@@ -3409,7 +3236,6 @@ msgstr "Načíst znovu"
|
||||
|
||||
#. js-lingui-id: t/YqKh
|
||||
#: src/modules/ui/input/components/ImageInput.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Remove"
|
||||
msgstr "Odstranit"
|
||||
|
||||
@@ -3483,15 +3309,10 @@ msgid "Restore records"
|
||||
msgstr "Obnovit záznamy"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/command-menu/hooks/useCommandMenuSearchRecords.tsx
|
||||
#: src/modules/command-menu/hooks/useSearchRecords.tsx
|
||||
msgid "Results"
|
||||
msgstr "Výsledky"
|
||||
|
||||
#. js-lingui-id: BohSvm
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Review your import"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 5dJK4M
|
||||
#: src/pages/settings/roles/SettingsRoles.tsx
|
||||
#: src/pages/settings/roles/SettingsRoles.tsx
|
||||
@@ -3532,7 +3353,6 @@ msgstr "Schéma"
|
||||
#. js-lingui-id: A1taO8
|
||||
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownWorkspacesListComponents.tsx
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentWorkspaceMemberPickerDropdown.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/navigation/components/MainNavigationDrawerItems.tsx
|
||||
#: src/modules/command-menu/hooks/useOpenRecordsSearchPageInCommandMenu.ts
|
||||
@@ -3580,7 +3400,6 @@ msgstr "Hledat v indexu..."
|
||||
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupFieldsContent.tsx
|
||||
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx
|
||||
#: src/modules/object-record/advanced-filter/components/AdvancedFilterFieldSelectSearchInput.tsx
|
||||
msgid "Search fields"
|
||||
msgstr "Hledání ve sloupcích"
|
||||
|
||||
@@ -3643,19 +3462,11 @@ msgstr "Zobrazit smazané pracovní postupy"
|
||||
#. js-lingui-id: OpPn5Z
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
msgid "See runs"
|
||||
msgstr "Zobrazit spuštění"
|
||||
|
||||
#. js-lingui-id: gGEfj/
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
msgid "See version"
|
||||
msgstr "Zobrazit verzi"
|
||||
|
||||
#. js-lingui-id: EtyY4+
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
@@ -3668,52 +3479,12 @@ msgstr "Zobrazit verze"
|
||||
msgid "See versions history"
|
||||
msgstr "Zobrazit historii verzí"
|
||||
|
||||
#. js-lingui-id: qEKLJV
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
msgid "See workflow"
|
||||
msgstr "Zobrazit pracovní postup"
|
||||
|
||||
#. js-lingui-id: XThiR2
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
|
||||
msgid "See workflows"
|
||||
msgstr "Zobrazit pracovní postupy"
|
||||
|
||||
#. js-lingui-id: WZvt/6
|
||||
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
|
||||
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
|
||||
msgid "Select Action"
|
||||
msgstr "Vybrat akci"
|
||||
|
||||
#. js-lingui-id: hVPa4O
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/UnmatchColumn.tsx
|
||||
msgid "Select an option"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 21YIUv
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/TemplateColumn.tsx
|
||||
msgid "Select column..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: J6WI1B
|
||||
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
|
||||
msgid "Select file"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ljSvAs
|
||||
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
|
||||
msgid "Select header row"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mWHn81
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
msgid "Select the correct field for each column you'd like to import."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: pofGCP
|
||||
#: src/modules/settings/data-model/fields/forms/boolean/components/SettingsDataModelFieldBooleanForm.tsx
|
||||
msgid "Select the default value for this boolean field"
|
||||
@@ -3724,11 +3495,6 @@ msgstr "Vyberte výchozí hodnotu pro toto logické pole"
|
||||
msgid "Select the events you wish to send to this endpoint"
|
||||
msgstr "Vyberte události, které chcete poslat na tento koncový bod"
|
||||
|
||||
#. js-lingui-id: +xn1pe
|
||||
#: src/modules/spreadsheet-import/steps/components/SelectSheetStep/SelectSheetStep.tsx
|
||||
msgid "Select the sheet to use"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AXTJAW
|
||||
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
|
||||
msgid "Select your preferred language"
|
||||
@@ -3833,16 +3599,6 @@ msgstr "Měla by změna popisku pole změnit také API název?"
|
||||
msgid "Should changing an object's label also change the API?"
|
||||
msgstr "Měla by změna popisku objektu změnit také API?"
|
||||
|
||||
#. js-lingui-id: qi+g0a
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Show only rows with errors"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: MHlGJL
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Show unmatched columns"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: uVg8dY
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutOpenInContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
@@ -3901,11 +3657,6 @@ msgstr "Španělština"
|
||||
msgid "SSO"
|
||||
msgstr "Jednotné přihlášení"
|
||||
|
||||
#. js-lingui-id: vlvAkg
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "SSO (SAML / OIDC)"
|
||||
msgstr "SSO (SAML / OIDC)"
|
||||
|
||||
#. js-lingui-id: ErU1td
|
||||
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
|
||||
msgid "Stages"
|
||||
@@ -3959,11 +3710,6 @@ msgstr "Předmět a metadata budou sdíleny s vaším týmem."
|
||||
msgid "Subject, body and attachments will be shared with your team."
|
||||
msgstr "Předmět, obsah a přílohy budou sdíleny s vaším týmem."
|
||||
|
||||
#. js-lingui-id: hQRttt
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Submit"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: B5jRKH
|
||||
#: src/pages/settings/SettingsBilling.tsx
|
||||
msgid "Subscription has been switched {to}"
|
||||
@@ -4000,11 +3746,6 @@ msgstr "Přepnout {to}"
|
||||
msgid "Switch billing {to}"
|
||||
msgstr "Přepnout fakturaci {to}"
|
||||
|
||||
#. js-lingui-id: lz+f/E
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "Switch to {alternatePlanName}"
|
||||
msgstr "Přepnout na {alternatePlanName}"
|
||||
|
||||
#. js-lingui-id: 5TRY4+
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
|
||||
msgid "Sync failed"
|
||||
@@ -4145,16 +3886,6 @@ msgstr "Téma"
|
||||
msgid "Theme "
|
||||
msgstr "Téma "
|
||||
|
||||
#. js-lingui-id: /cSDOy
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
msgid "There are required columns that are not matched or ignored. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: luL9RX
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ynfkhb
|
||||
#: src/pages/auth/PasswordReset.tsx
|
||||
msgid "There was an error while updating password."
|
||||
@@ -4298,7 +4029,6 @@ msgstr "Neznámá chyba"
|
||||
|
||||
#. js-lingui-id: GQCXQS
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "Unlimited contacts"
|
||||
msgstr "Neomezený počet kontaktů"
|
||||
|
||||
@@ -4312,13 +4042,7 @@ msgstr "Aktualizováno"
|
||||
msgid "Upload"
|
||||
msgstr "Nahrát"
|
||||
|
||||
#. js-lingui-id: 7OP1Xi
|
||||
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
|
||||
msgid "Upload .xlsx, .xls or .csv file"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2IXDgU
|
||||
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
msgid "Upload file"
|
||||
msgstr "Nahrát soubor"
|
||||
@@ -4395,11 +4119,6 @@ msgstr "Uživatel není přihlášen"
|
||||
#~ msgid "Users"
|
||||
#~ msgstr "Users"
|
||||
|
||||
#. js-lingui-id: MGeZsN
|
||||
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
|
||||
msgid "Validate data"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: fXVIZq
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
|
||||
@@ -4614,11 +4333,6 @@ msgstr "Napište tajemství"
|
||||
msgid "yes"
|
||||
msgstr "ano"
|
||||
|
||||
#. js-lingui-id: qsAug0
|
||||
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
|
||||
msgid "You are already importing this column."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: MFDARJ
|
||||
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
|
||||
msgid "You are not allowed to create records for this object"
|
||||
|
||||
@@ -87,11 +87,6 @@ msgstr "{aggregateLabel} af {fieldLabel}"
|
||||
msgid "{apiKeyName} API Key"
|
||||
msgstr "{apiKeyName} API-nøgle"
|
||||
|
||||
#. js-lingui-id: zi5SHH
|
||||
#: src/modules/object-record/record-index/components/RecordIndexPageHeader.tsx
|
||||
msgid "{contextStoreNumberOfSelectedRecords} selected"
|
||||
msgstr "{contextStoreNumberOfSelectedRecords} valgt"
|
||||
|
||||
#. js-lingui-id: 6j5rE1
|
||||
#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx
|
||||
#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx
|
||||
@@ -105,8 +100,8 @@ msgstr "{workspaceMemberName} vil blive fjernet fra f\\u00f8lgende rolle:"
|
||||
|
||||
#. js-lingui-id: YT0WJ4
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#~ msgid "1 000 workflow node executions"
|
||||
#~ msgstr "1 000 workflow node executions"
|
||||
msgid "1 000 workflow node executions"
|
||||
msgstr "1 000 workflow node eksekveringer"
|
||||
|
||||
#. js-lingui-id: vb5TwV
|
||||
#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldSelect.tsx
|
||||
@@ -119,11 +114,6 @@ msgstr "1. Vælg en felttype"
|
||||
msgid "1. Type"
|
||||
msgstr "1. Skriv"
|
||||
|
||||
#. js-lingui-id: AvXug3
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "10 000 workflow node executions"
|
||||
msgstr "10 000 workflow node eksekveringer"
|
||||
|
||||
#. js-lingui-id: 4EdXYs
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "12h ({hour12Label})"
|
||||
@@ -140,11 +130,6 @@ msgstr "2. Konfigurer"
|
||||
msgid "2. Configure field"
|
||||
msgstr "2. Konfigurer felt"
|
||||
|
||||
#. js-lingui-id: kAtmAv
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "20 000 workflow node executions"
|
||||
msgstr "20 000 workflow node eksekveringer"
|
||||
|
||||
#. js-lingui-id: QsMprd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "24h ({hour24Label})"
|
||||
@@ -201,11 +186,6 @@ msgstr "Konto Sletning"
|
||||
msgid "Accounts"
|
||||
msgstr "Konti"
|
||||
|
||||
#. js-lingui-id: bwRvnp
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
msgid "Action"
|
||||
msgstr "Handling"
|
||||
|
||||
#. js-lingui-id: 7L01XJ
|
||||
#: src/modules/settings/roles/role-permissions/components/RolePermissionsSettingsTableHeader.tsx
|
||||
#: src/modules/settings/roles/role-permissions/components/RolePermissionsObjectsTableHeader.tsx
|
||||
@@ -252,7 +232,7 @@ msgid "Add Approved Access Domain"
|
||||
msgstr "Tilføj godkendt adgangsdomæne"
|
||||
|
||||
#. js-lingui-id: DpV70M
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionForm.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
|
||||
msgid "Add Field"
|
||||
msgstr "Tilføj Felt"
|
||||
@@ -453,7 +433,6 @@ msgstr "API"
|
||||
|
||||
#. js-lingui-id: 0RqpZr
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "API & Webhooks"
|
||||
msgstr "API & Webhooks"
|
||||
|
||||
@@ -537,28 +516,13 @@ msgstr "Er du sikker på, at du vil ændre din faktureringsperiode?"
|
||||
|
||||
#. js-lingui-id: 8Y3Jbl
|
||||
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
|
||||
#~ msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
#~ msgstr "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
|
||||
#. js-lingui-id: 2BZAqa
|
||||
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
|
||||
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu."
|
||||
msgstr "Er du sikker på, at du vil slette disse poster? De kan gendannes fra Kommandomenuen."
|
||||
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
msgstr "Er du sikker på, at du vil slette disse poster? De kan gendannes fra Kommandomenuen ({osControlSymbol} + K)."
|
||||
|
||||
#. js-lingui-id: Se0vJw
|
||||
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
|
||||
#~ msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
#~ msgstr "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
|
||||
#. js-lingui-id: yb2hF4
|
||||
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
|
||||
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu."
|
||||
msgstr "Er du sikker på, at du vil slette denne post? Den kan gendannes fra Kommandomenuen."
|
||||
|
||||
#. js-lingui-id: rnCqBK
|
||||
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
|
||||
msgid "Are you sure? Your current information will not be saved."
|
||||
msgstr ""
|
||||
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
msgstr "Er du sikker på, at du vil slette denne post? Den kan gendannes fra Kommandomenuen ({osControlSymbol} + K)."
|
||||
|
||||
#. js-lingui-id: nYD/Cq
|
||||
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
|
||||
@@ -721,18 +685,10 @@ msgstr "Kalendersynkronisering"
|
||||
msgid "Calendars"
|
||||
msgstr "Kalendere"
|
||||
|
||||
#. js-lingui-id: msssZq
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Can't change API names for standard objects"
|
||||
msgstr "Kan ikke ændre API-navne for standardobjekter"
|
||||
|
||||
#. js-lingui-id: dEgA5A
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
msgid "Cancel"
|
||||
msgstr "Annuller"
|
||||
@@ -839,11 +795,6 @@ msgstr "Luk"
|
||||
msgid "Close command menu"
|
||||
msgstr "Luk kommandomenu"
|
||||
|
||||
#. js-lingui-id: EWPtMO
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
msgid "Code"
|
||||
msgstr "Kode"
|
||||
|
||||
#. js-lingui-id: H86f9p
|
||||
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
|
||||
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
|
||||
@@ -856,11 +807,6 @@ msgstr "Skjul"
|
||||
msgid "Color code"
|
||||
msgstr "Farvekode"
|
||||
|
||||
#. js-lingui-id: 93hd3e
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
msgid "Columns not matched:"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NM9bMd
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
msgid "Compact view"
|
||||
@@ -892,7 +838,6 @@ msgid "Configure your emails and calendar settings."
|
||||
msgstr "Konfigurer dine e-mails og kalenderindstillinger."
|
||||
|
||||
#. js-lingui-id: 7VpPHA
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentConfirmationModal.tsx
|
||||
msgid "Confirm"
|
||||
msgstr "Bekr\\u00e6ft"
|
||||
@@ -938,8 +883,6 @@ msgstr "Kontekst"
|
||||
#: src/pages/onboarding/CreateWorkspace.tsx
|
||||
#: src/pages/onboarding/CreateProfile.tsx
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx
|
||||
msgid "Continue"
|
||||
msgstr "Fortsæt"
|
||||
@@ -1004,11 +947,6 @@ msgstr "Kopiér denne nøgle, da den ikke vil være synlig igen"
|
||||
msgid "Core"
|
||||
msgstr "Kerne"
|
||||
|
||||
#. js-lingui-id: w5Stxm
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Correct the issues and fill the missing data."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wBMjJ2
|
||||
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterMenuContent.tsx
|
||||
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx
|
||||
@@ -1130,7 +1068,6 @@ msgstr "Brugerdefineret domæne opdateret"
|
||||
|
||||
#. js-lingui-id: 8skTDV
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "Custom objects"
|
||||
msgstr "Tilpassede objekter"
|
||||
|
||||
@@ -1443,11 +1380,6 @@ msgstr "Vis som relativ dato"
|
||||
msgid "Display text on multiple lines"
|
||||
msgstr "Vis tekst på flere linjer"
|
||||
|
||||
#. js-lingui-id: ji7sqw
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/TemplateColumn.tsx
|
||||
msgid "Do not import"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: U9q4zF
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid "Doesn't contain"
|
||||
@@ -1491,11 +1423,6 @@ msgstr "Synkronisér ikke e-mails fra team@ support@ noreply@..."
|
||||
msgid "Download file"
|
||||
msgstr "Download fil"
|
||||
|
||||
#. js-lingui-id: 6D/BnN
|
||||
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
|
||||
msgid "Drop file here..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KIjvtr
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
msgid "Dutch"
|
||||
@@ -1553,7 +1480,6 @@ msgstr "Rediger dit underdomænenavn eller sæt et brugerdefineret domæne."
|
||||
#: src/pages/settings/SettingsWorkspaceMembers.tsx
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/auth/PasswordReset.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentTableHeader.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
msgid "Email"
|
||||
@@ -1571,7 +1497,6 @@ msgstr "E-mail kan ikke være tom"
|
||||
|
||||
#. js-lingui-id: lfQsvW
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "Email integration"
|
||||
msgstr "E-mailintegration"
|
||||
|
||||
@@ -1781,21 +1706,11 @@ msgstr "Ekskluder følgende personer og domæner fra min e-mail-synkronisering.
|
||||
msgid "Existing objects"
|
||||
msgstr "Eksisterende objekter"
|
||||
|
||||
#. js-lingui-id: ydzS9x
|
||||
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
|
||||
msgid "Exit"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LFNXuj
|
||||
#: src/modules/ui/layout/fullscreen/components/FullScreenContainer.tsx
|
||||
msgid "Exit Full Screen"
|
||||
msgstr "Afslut fuld skærm"
|
||||
|
||||
#. js-lingui-id: XB4onr
|
||||
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
|
||||
msgid "Exit import flow"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: IZ4o2e
|
||||
#: src/modules/navigation/components/AppNavigationDrawer.tsx
|
||||
msgid "Exit Settings"
|
||||
@@ -1981,11 +1896,6 @@ msgstr "Filtrér"
|
||||
msgid "Filters"
|
||||
msgstr "Filtre"
|
||||
|
||||
#. js-lingui-id: SNdnlf
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Finish flow with errors"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: USZ2N6
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
msgid "Finnish"
|
||||
@@ -2034,7 +1944,6 @@ msgstr "fra årligt til månedligt"
|
||||
|
||||
#. js-lingui-id: scmRyR
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "Full access"
|
||||
msgstr "Fuld adgang"
|
||||
|
||||
@@ -2072,24 +1981,11 @@ msgstr "Få dit abonnement"
|
||||
msgid "Global"
|
||||
msgstr "Globalt"
|
||||
|
||||
#. js-lingui-id: iS69s6
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
msgid "Go to runs"
|
||||
msgstr "Gå til kørsler"
|
||||
|
||||
#. js-lingui-id: mT57+Q
|
||||
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
|
||||
msgid "Go to Settings"
|
||||
msgstr "Gå til indstillinger"
|
||||
|
||||
#. js-lingui-id: A5WHZY
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
|
||||
msgid "Go to workflows"
|
||||
msgstr "Gå til arbejdsprocesser"
|
||||
|
||||
#. js-lingui-id: hWp1MY
|
||||
#: src/pages/settings/SettingsWorkspace.tsx
|
||||
msgid "Grant Twenty support temporary access to your workspace so we can troubleshoot problems or recover content on your behalf. You can revoke access at any time."
|
||||
@@ -2149,34 +2045,6 @@ msgstr "Skjulte felter"
|
||||
msgid "Hide"
|
||||
msgstr "Skjul"
|
||||
|
||||
#. js-lingui-id: OlbYor
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
|
||||
msgid "Hide deleted"
|
||||
msgstr "Skjul slettet"
|
||||
|
||||
#. js-lingui-id: FHhlye
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
|
||||
msgid "Hide deleted records"
|
||||
msgstr "Skjul slettede poster"
|
||||
|
||||
#. js-lingui-id: 0dZtKR
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
msgid "Hide deleted runs"
|
||||
msgstr "Skjul slettede gennemløb"
|
||||
|
||||
#. js-lingui-id: Jc6FrI
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
msgid "Hide deleted versions"
|
||||
msgstr "Skjul slettede versioner"
|
||||
|
||||
#. js-lingui-id: aOZAIB
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
msgid "Hide deleted workflows"
|
||||
msgstr "Skjul slettede arbejdsprocesser"
|
||||
|
||||
#. js-lingui-id: HS8BG/
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupsContent.tsx
|
||||
msgid "Hide empty groups"
|
||||
@@ -2584,8 +2452,8 @@ msgstr "Log ud"
|
||||
|
||||
#. js-lingui-id: nOhz3x
|
||||
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
|
||||
msgid "Logout"
|
||||
msgstr "Logud"
|
||||
#~ msgid "Logout"
|
||||
#~ msgstr "Logout"
|
||||
|
||||
#. js-lingui-id: PTozs8
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
@@ -2629,16 +2497,6 @@ msgstr "Administrer dit abonnement"
|
||||
msgid "Mark as done"
|
||||
msgstr "Marker som udført"
|
||||
|
||||
#. js-lingui-id: 7h8ch8
|
||||
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
|
||||
msgid "Match columns"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gDLior
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
msgid "Match Columns"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: CK1KXz
|
||||
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
|
||||
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
|
||||
@@ -2867,12 +2725,6 @@ msgstr "Ny SSO-udbyder"
|
||||
#~ msgid "New Webhook"
|
||||
#~ msgstr "New Webhook"
|
||||
|
||||
#. js-lingui-id: AxNmtI
|
||||
#: src/modules/spreadsheet-import/steps/components/SelectSheetStep/SelectSheetStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
msgid "Next Step"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OTe3RI
|
||||
#: src/pages/settings/workspace/SettingsDomain.tsx
|
||||
msgid "No change detected"
|
||||
@@ -2888,16 +2740,6 @@ msgstr "Ingen tilknyttet konto"
|
||||
msgid "No country"
|
||||
msgstr "Intet land"
|
||||
|
||||
#. js-lingui-id: pxvJ9B
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "No data containing errors"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: dihZwh
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "No data found"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UwvrGq
|
||||
#: src/pages/settings/SettingsWorkspaceMembers.tsx
|
||||
msgid "No members"
|
||||
@@ -2954,11 +2796,6 @@ msgstr "Ingen poster fundet"
|
||||
#~ msgid "No Result"
|
||||
#~ msgstr "No Result"
|
||||
|
||||
#. js-lingui-id: Ev2r9A
|
||||
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
|
||||
msgid "No results"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: MA3x23
|
||||
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentWorkspaceMemberPickerDropdownContent.tsx
|
||||
msgid "No Results"
|
||||
@@ -2991,11 +2828,6 @@ msgstr "Ingen"
|
||||
msgid "Norwegian"
|
||||
msgstr "Norsk"
|
||||
|
||||
#. js-lingui-id: v3W9iu
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
msgid "Not all columns matched"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0qBE9S
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx
|
||||
@@ -3291,11 +3123,6 @@ msgstr "Forhåndsvisning"
|
||||
msgid "Privacy Policy"
|
||||
msgstr "Privatlivspolitik"
|
||||
|
||||
#. js-lingui-id: k1ifdL
|
||||
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
|
||||
msgid "Processing..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vERlcd
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
@@ -3409,7 +3236,6 @@ msgstr "Genindlæs"
|
||||
|
||||
#. js-lingui-id: t/YqKh
|
||||
#: src/modules/ui/input/components/ImageInput.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Remove"
|
||||
msgstr "Fjern"
|
||||
|
||||
@@ -3483,15 +3309,10 @@ msgid "Restore records"
|
||||
msgstr "Gendan poster"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/command-menu/hooks/useCommandMenuSearchRecords.tsx
|
||||
#: src/modules/command-menu/hooks/useSearchRecords.tsx
|
||||
msgid "Results"
|
||||
msgstr "Resultater"
|
||||
|
||||
#. js-lingui-id: BohSvm
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Review your import"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 5dJK4M
|
||||
#: src/pages/settings/roles/SettingsRoles.tsx
|
||||
#: src/pages/settings/roles/SettingsRoles.tsx
|
||||
@@ -3532,7 +3353,6 @@ msgstr "Skema"
|
||||
#. js-lingui-id: A1taO8
|
||||
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownWorkspacesListComponents.tsx
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentWorkspaceMemberPickerDropdown.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/navigation/components/MainNavigationDrawerItems.tsx
|
||||
#: src/modules/command-menu/hooks/useOpenRecordsSearchPageInCommandMenu.ts
|
||||
@@ -3580,7 +3400,6 @@ msgstr "Søg i et indeks..."
|
||||
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupFieldsContent.tsx
|
||||
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx
|
||||
#: src/modules/object-record/advanced-filter/components/AdvancedFilterFieldSelectSearchInput.tsx
|
||||
msgid "Search fields"
|
||||
msgstr "Søg felter"
|
||||
|
||||
@@ -3643,19 +3462,11 @@ msgstr "Se slettede arbejdsprocesser"
|
||||
#. js-lingui-id: OpPn5Z
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
msgid "See runs"
|
||||
msgstr "Se kørsler"
|
||||
|
||||
#. js-lingui-id: gGEfj/
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
msgid "See version"
|
||||
msgstr "Se version"
|
||||
|
||||
#. js-lingui-id: EtyY4+
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
@@ -3668,52 +3479,12 @@ msgstr "Se versioner"
|
||||
msgid "See versions history"
|
||||
msgstr "Se versionshistorik"
|
||||
|
||||
#. js-lingui-id: qEKLJV
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
msgid "See workflow"
|
||||
msgstr "Se arbejdsproces"
|
||||
|
||||
#. js-lingui-id: XThiR2
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
|
||||
msgid "See workflows"
|
||||
msgstr "Se arbejdsprocesser"
|
||||
|
||||
#. js-lingui-id: WZvt/6
|
||||
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
|
||||
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
|
||||
msgid "Select Action"
|
||||
msgstr "Vælg handling"
|
||||
|
||||
#. js-lingui-id: hVPa4O
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/UnmatchColumn.tsx
|
||||
msgid "Select an option"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 21YIUv
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/TemplateColumn.tsx
|
||||
msgid "Select column..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: J6WI1B
|
||||
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
|
||||
msgid "Select file"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ljSvAs
|
||||
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
|
||||
msgid "Select header row"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mWHn81
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
msgid "Select the correct field for each column you'd like to import."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: pofGCP
|
||||
#: src/modules/settings/data-model/fields/forms/boolean/components/SettingsDataModelFieldBooleanForm.tsx
|
||||
msgid "Select the default value for this boolean field"
|
||||
@@ -3724,11 +3495,6 @@ msgstr "Vælg standardværdien for dette booleske felt"
|
||||
msgid "Select the events you wish to send to this endpoint"
|
||||
msgstr "Vælg de begivenheder du ønsker at sende til dette endepunkt"
|
||||
|
||||
#. js-lingui-id: +xn1pe
|
||||
#: src/modules/spreadsheet-import/steps/components/SelectSheetStep/SelectSheetStep.tsx
|
||||
msgid "Select the sheet to use"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AXTJAW
|
||||
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
|
||||
msgid "Select your preferred language"
|
||||
@@ -3833,16 +3599,6 @@ msgstr "Skal det at ændre et felts etiket også ændre API-navnet?"
|
||||
msgid "Should changing an object's label also change the API?"
|
||||
msgstr "Skal \\u00e6ndring af et objekts etiket ogs\\u00e5 \\u00e6ndre API'et?"
|
||||
|
||||
#. js-lingui-id: qi+g0a
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Show only rows with errors"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: MHlGJL
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Show unmatched columns"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: uVg8dY
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutOpenInContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
@@ -3901,11 +3657,6 @@ msgstr "Spansk"
|
||||
msgid "SSO"
|
||||
msgstr "SSO"
|
||||
|
||||
#. js-lingui-id: vlvAkg
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "SSO (SAML / OIDC)"
|
||||
msgstr "SSO (SAML / OIDC)"
|
||||
|
||||
#. js-lingui-id: ErU1td
|
||||
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
|
||||
msgid "Stages"
|
||||
@@ -3959,11 +3710,6 @@ msgstr "Emne og metadata vil blive delt med dit team."
|
||||
msgid "Subject, body and attachments will be shared with your team."
|
||||
msgstr "Emne, krop og vedhæftede filer vil blive delt med dit team."
|
||||
|
||||
#. js-lingui-id: hQRttt
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Submit"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: B5jRKH
|
||||
#: src/pages/settings/SettingsBilling.tsx
|
||||
msgid "Subscription has been switched {to}"
|
||||
@@ -4000,11 +3746,6 @@ msgstr "Skift {to}"
|
||||
msgid "Switch billing {to}"
|
||||
msgstr "Skift fakturering {to}"
|
||||
|
||||
#. js-lingui-id: lz+f/E
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "Switch to {alternatePlanName}"
|
||||
msgstr "Skift til {alternatePlanName}"
|
||||
|
||||
#. js-lingui-id: 5TRY4+
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
|
||||
msgid "Sync failed"
|
||||
@@ -4145,16 +3886,6 @@ msgstr "Tema"
|
||||
msgid "Theme "
|
||||
msgstr "Tema "
|
||||
|
||||
#. js-lingui-id: /cSDOy
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
msgid "There are required columns that are not matched or ignored. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: luL9RX
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ynfkhb
|
||||
#: src/pages/auth/PasswordReset.tsx
|
||||
msgid "There was an error while updating password."
|
||||
@@ -4298,7 +4029,6 @@ msgstr "Ukendt fejl"
|
||||
|
||||
#. js-lingui-id: GQCXQS
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "Unlimited contacts"
|
||||
msgstr "Ubegrænsede kontakter"
|
||||
|
||||
@@ -4312,13 +4042,7 @@ msgstr "Opdateret"
|
||||
msgid "Upload"
|
||||
msgstr "Upload"
|
||||
|
||||
#. js-lingui-id: 7OP1Xi
|
||||
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
|
||||
msgid "Upload .xlsx, .xls or .csv file"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2IXDgU
|
||||
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
msgid "Upload file"
|
||||
msgstr "Upload fil"
|
||||
@@ -4395,11 +4119,6 @@ msgstr "Bruger er ikke logget ind"
|
||||
#~ msgid "Users"
|
||||
#~ msgstr "Users"
|
||||
|
||||
#. js-lingui-id: MGeZsN
|
||||
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
|
||||
msgid "Validate data"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: fXVIZq
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
|
||||
@@ -4614,11 +4333,6 @@ msgstr "Skriv en hemmelighed"
|
||||
msgid "yes"
|
||||
msgstr "ja"
|
||||
|
||||
#. js-lingui-id: qsAug0
|
||||
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
|
||||
msgid "You are already importing this column."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: MFDARJ
|
||||
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
|
||||
msgid "You are not allowed to create records for this object"
|
||||
|
||||
@@ -87,11 +87,6 @@ msgstr "{aggregateLabel} von {fieldLabel}"
|
||||
msgid "{apiKeyName} API Key"
|
||||
msgstr "{apiKeyName} API-Schlüssel"
|
||||
|
||||
#. js-lingui-id: zi5SHH
|
||||
#: src/modules/object-record/record-index/components/RecordIndexPageHeader.tsx
|
||||
msgid "{contextStoreNumberOfSelectedRecords} selected"
|
||||
msgstr "{contextStoreNumberOfSelectedRecords} ausgewählt"
|
||||
|
||||
#. js-lingui-id: 6j5rE1
|
||||
#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx
|
||||
#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx
|
||||
@@ -105,8 +100,8 @@ msgstr "{workspaceMemberName} wird von folgender Rolle abgezogen:"
|
||||
|
||||
#. js-lingui-id: YT0WJ4
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#~ msgid "1 000 workflow node executions"
|
||||
#~ msgstr "1 000 workflow node executions"
|
||||
msgid "1 000 workflow node executions"
|
||||
msgstr "1.000 Workflow-Knotenausführungen"
|
||||
|
||||
#. js-lingui-id: vb5TwV
|
||||
#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldSelect.tsx
|
||||
@@ -119,11 +114,6 @@ msgstr "1. Wählen Sie einen Feldtyp aus"
|
||||
msgid "1. Type"
|
||||
msgstr "1. Typ"
|
||||
|
||||
#. js-lingui-id: AvXug3
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "10 000 workflow node executions"
|
||||
msgstr "10.000 Workflow-Knotenausführungen"
|
||||
|
||||
#. js-lingui-id: 4EdXYs
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "12h ({hour12Label})"
|
||||
@@ -140,11 +130,6 @@ msgstr "2. Konfigurieren"
|
||||
msgid "2. Configure field"
|
||||
msgstr "2. Feld konfigurieren"
|
||||
|
||||
#. js-lingui-id: kAtmAv
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "20 000 workflow node executions"
|
||||
msgstr "20.000 Workflow-Knotenausführungen"
|
||||
|
||||
#. js-lingui-id: QsMprd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "24h ({hour24Label})"
|
||||
@@ -201,11 +186,6 @@ msgstr "Kontolöschung"
|
||||
msgid "Accounts"
|
||||
msgstr "Konten"
|
||||
|
||||
#. js-lingui-id: bwRvnp
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
msgid "Action"
|
||||
msgstr "Aktion"
|
||||
|
||||
#. js-lingui-id: 7L01XJ
|
||||
#: src/modules/settings/roles/role-permissions/components/RolePermissionsSettingsTableHeader.tsx
|
||||
#: src/modules/settings/roles/role-permissions/components/RolePermissionsObjectsTableHeader.tsx
|
||||
@@ -252,7 +232,7 @@ msgid "Add Approved Access Domain"
|
||||
msgstr "Genehmigte Zugriffsdomäne hinzufügen"
|
||||
|
||||
#. js-lingui-id: DpV70M
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionForm.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
|
||||
msgid "Add Field"
|
||||
msgstr "Feld hinzufügen"
|
||||
@@ -453,7 +433,6 @@ msgstr "API"
|
||||
|
||||
#. js-lingui-id: 0RqpZr
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "API & Webhooks"
|
||||
msgstr "API & Webhooks"
|
||||
|
||||
@@ -537,28 +516,13 @@ msgstr "Sind Sie sicher, dass Sie Ihr Abrechnungsintervall ändern möchten?"
|
||||
|
||||
#. js-lingui-id: 8Y3Jbl
|
||||
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
|
||||
#~ msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
#~ msgstr "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
|
||||
#. js-lingui-id: 2BZAqa
|
||||
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
|
||||
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu."
|
||||
msgstr "Sind Sie sicher, dass Sie diese Datensätze löschen möchten? Sie können aus dem Befehlsmenü wiederhergestellt werden."
|
||||
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
msgstr "Sind Sie sicher, dass Sie diese Datensätze löschen möchten? Sie können aus dem Befehlsmenü ({osControlSymbol} + K) wiederhergestellt werden."
|
||||
|
||||
#. js-lingui-id: Se0vJw
|
||||
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
|
||||
#~ msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
#~ msgstr "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
|
||||
#. js-lingui-id: yb2hF4
|
||||
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
|
||||
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu."
|
||||
msgstr "Sind Sie sicher, dass Sie diesen Datensatz löschen möchten? Er kann aus dem Befehlsmenü wiederhergestellt werden."
|
||||
|
||||
#. js-lingui-id: rnCqBK
|
||||
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
|
||||
msgid "Are you sure? Your current information will not be saved."
|
||||
msgstr ""
|
||||
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
msgstr "Sind Sie sicher, dass Sie diesen Datensatz löschen möchten? Er kann aus dem Befehlsmenü ({osControlSymbol} + K) wiederhergestellt werden."
|
||||
|
||||
#. js-lingui-id: nYD/Cq
|
||||
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
|
||||
@@ -721,18 +685,10 @@ msgstr "Kalender-Synchronisierung"
|
||||
msgid "Calendars"
|
||||
msgstr "Kalender"
|
||||
|
||||
#. js-lingui-id: msssZq
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Can't change API names for standard objects"
|
||||
msgstr "API-Namen für Standardobjekte können nicht geändert werden"
|
||||
|
||||
#. js-lingui-id: dEgA5A
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
msgid "Cancel"
|
||||
msgstr "Abbrechen"
|
||||
@@ -839,11 +795,6 @@ msgstr "Schließen"
|
||||
msgid "Close command menu"
|
||||
msgstr "Befehlsmenü schließen"
|
||||
|
||||
#. js-lingui-id: EWPtMO
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
msgid "Code"
|
||||
msgstr "Code"
|
||||
|
||||
#. js-lingui-id: H86f9p
|
||||
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
|
||||
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
|
||||
@@ -856,11 +807,6 @@ msgstr "Einklappen"
|
||||
msgid "Color code"
|
||||
msgstr "Farbcode"
|
||||
|
||||
#. js-lingui-id: 93hd3e
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
msgid "Columns not matched:"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NM9bMd
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
msgid "Compact view"
|
||||
@@ -892,7 +838,6 @@ msgid "Configure your emails and calendar settings."
|
||||
msgstr "E-Mail- und Kalendereinstellungen konfigurieren."
|
||||
|
||||
#. js-lingui-id: 7VpPHA
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentConfirmationModal.tsx
|
||||
msgid "Confirm"
|
||||
msgstr "Best\\u00e4tigen"
|
||||
@@ -938,8 +883,6 @@ msgstr "Kontext"
|
||||
#: src/pages/onboarding/CreateWorkspace.tsx
|
||||
#: src/pages/onboarding/CreateProfile.tsx
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx
|
||||
msgid "Continue"
|
||||
msgstr "Weiter"
|
||||
@@ -1004,11 +947,6 @@ msgstr "Diesen Schlüssel kopieren, da er nicht mehr sichtbar sein wird"
|
||||
msgid "Core"
|
||||
msgstr "Kern"
|
||||
|
||||
#. js-lingui-id: w5Stxm
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Correct the issues and fill the missing data."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wBMjJ2
|
||||
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterMenuContent.tsx
|
||||
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx
|
||||
@@ -1130,7 +1068,6 @@ msgstr "Benutzerdefinierte Domain aktualisiert"
|
||||
|
||||
#. js-lingui-id: 8skTDV
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "Custom objects"
|
||||
msgstr "Benutzerdefinierte Objekte"
|
||||
|
||||
@@ -1443,11 +1380,6 @@ msgstr "Als relatives Datum anzeigen"
|
||||
msgid "Display text on multiple lines"
|
||||
msgstr "Text auf mehreren Zeilen anzeigen"
|
||||
|
||||
#. js-lingui-id: ji7sqw
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/TemplateColumn.tsx
|
||||
msgid "Do not import"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: U9q4zF
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid "Doesn't contain"
|
||||
@@ -1491,11 +1423,6 @@ msgstr "Kein E-Mail-Sync von team@ support@ noreply@..."
|
||||
msgid "Download file"
|
||||
msgstr "Datei herunterladen"
|
||||
|
||||
#. js-lingui-id: 6D/BnN
|
||||
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
|
||||
msgid "Drop file here..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KIjvtr
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
msgid "Dutch"
|
||||
@@ -1553,7 +1480,6 @@ msgstr "Bearbeiten Sie den Namen Ihrer Subdomain oder legen Sie eine benutzerdef
|
||||
#: src/pages/settings/SettingsWorkspaceMembers.tsx
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/auth/PasswordReset.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentTableHeader.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
msgid "Email"
|
||||
@@ -1571,7 +1497,6 @@ msgstr "E-Mail darf nicht leer sein"
|
||||
|
||||
#. js-lingui-id: lfQsvW
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "Email integration"
|
||||
msgstr "E-Mail-Integration"
|
||||
|
||||
@@ -1781,21 +1706,11 @@ msgstr "Folgende Personen und Domains von meiner E-Mail-Synchronisation ausschli
|
||||
msgid "Existing objects"
|
||||
msgstr "Vorhandene Objekte"
|
||||
|
||||
#. js-lingui-id: ydzS9x
|
||||
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
|
||||
msgid "Exit"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LFNXuj
|
||||
#: src/modules/ui/layout/fullscreen/components/FullScreenContainer.tsx
|
||||
msgid "Exit Full Screen"
|
||||
msgstr "Vollbildmodus beenden"
|
||||
|
||||
#. js-lingui-id: XB4onr
|
||||
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
|
||||
msgid "Exit import flow"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: IZ4o2e
|
||||
#: src/modules/navigation/components/AppNavigationDrawer.tsx
|
||||
msgid "Exit Settings"
|
||||
@@ -1981,11 +1896,6 @@ msgstr "Filter"
|
||||
msgid "Filters"
|
||||
msgstr "Filter"
|
||||
|
||||
#. js-lingui-id: SNdnlf
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Finish flow with errors"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: USZ2N6
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
msgid "Finnish"
|
||||
@@ -2034,7 +1944,6 @@ msgstr "von jährlich zu monatlich"
|
||||
|
||||
#. js-lingui-id: scmRyR
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "Full access"
|
||||
msgstr "Vollzugriff"
|
||||
|
||||
@@ -2072,24 +1981,11 @@ msgstr "Abonnement abschließen"
|
||||
msgid "Global"
|
||||
msgstr "Global"
|
||||
|
||||
#. js-lingui-id: iS69s6
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
msgid "Go to runs"
|
||||
msgstr "Zu den Läufen gehen"
|
||||
|
||||
#. js-lingui-id: mT57+Q
|
||||
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
|
||||
msgid "Go to Settings"
|
||||
msgstr "Zu den Einstellungen gehen"
|
||||
|
||||
#. js-lingui-id: A5WHZY
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
|
||||
msgid "Go to workflows"
|
||||
msgstr "Zu Workflows gehen"
|
||||
|
||||
#. js-lingui-id: hWp1MY
|
||||
#: src/pages/settings/SettingsWorkspace.tsx
|
||||
msgid "Grant Twenty support temporary access to your workspace so we can troubleshoot problems or recover content on your behalf. You can revoke access at any time."
|
||||
@@ -2149,34 +2045,6 @@ msgstr "Versteckte Felder"
|
||||
msgid "Hide"
|
||||
msgstr "Ausblenden"
|
||||
|
||||
#. js-lingui-id: OlbYor
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
|
||||
msgid "Hide deleted"
|
||||
msgstr "Gelöschtes ausblenden"
|
||||
|
||||
#. js-lingui-id: FHhlye
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
|
||||
msgid "Hide deleted records"
|
||||
msgstr "Gelöschte Datensätze ausblenden"
|
||||
|
||||
#. js-lingui-id: 0dZtKR
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
msgid "Hide deleted runs"
|
||||
msgstr "Gelöschte Ausführungen ausblenden"
|
||||
|
||||
#. js-lingui-id: Jc6FrI
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
msgid "Hide deleted versions"
|
||||
msgstr "Gelöschte Versionen ausblenden"
|
||||
|
||||
#. js-lingui-id: aOZAIB
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
msgid "Hide deleted workflows"
|
||||
msgstr "Gelöschte Workflows ausblenden"
|
||||
|
||||
#. js-lingui-id: HS8BG/
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupsContent.tsx
|
||||
msgid "Hide empty groups"
|
||||
@@ -2584,8 +2452,8 @@ msgstr "Abmelden"
|
||||
|
||||
#. js-lingui-id: nOhz3x
|
||||
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
|
||||
msgid "Logout"
|
||||
msgstr "Abmelden"
|
||||
#~ msgid "Logout"
|
||||
#~ msgstr "Logout"
|
||||
|
||||
#. js-lingui-id: PTozs8
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
@@ -2629,16 +2497,6 @@ msgstr "Abonnement verwalten"
|
||||
msgid "Mark as done"
|
||||
msgstr "Als erledigt markieren"
|
||||
|
||||
#. js-lingui-id: 7h8ch8
|
||||
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
|
||||
msgid "Match columns"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gDLior
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
msgid "Match Columns"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: CK1KXz
|
||||
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
|
||||
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
|
||||
@@ -2867,12 +2725,6 @@ msgstr "Neuer SSO-Anbieter"
|
||||
#~ msgid "New Webhook"
|
||||
#~ msgstr "New Webhook"
|
||||
|
||||
#. js-lingui-id: AxNmtI
|
||||
#: src/modules/spreadsheet-import/steps/components/SelectSheetStep/SelectSheetStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
msgid "Next Step"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OTe3RI
|
||||
#: src/pages/settings/workspace/SettingsDomain.tsx
|
||||
msgid "No change detected"
|
||||
@@ -2888,16 +2740,6 @@ msgstr "Kein verbundenes Konto"
|
||||
msgid "No country"
|
||||
msgstr "Kein Land"
|
||||
|
||||
#. js-lingui-id: pxvJ9B
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "No data containing errors"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: dihZwh
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "No data found"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UwvrGq
|
||||
#: src/pages/settings/SettingsWorkspaceMembers.tsx
|
||||
msgid "No members"
|
||||
@@ -2954,11 +2796,6 @@ msgstr "Keine Einträge gefunden"
|
||||
#~ msgid "No Result"
|
||||
#~ msgstr "No Result"
|
||||
|
||||
#. js-lingui-id: Ev2r9A
|
||||
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
|
||||
msgid "No results"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: MA3x23
|
||||
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentWorkspaceMemberPickerDropdownContent.tsx
|
||||
msgid "No Results"
|
||||
@@ -2991,11 +2828,6 @@ msgstr "Keine"
|
||||
msgid "Norwegian"
|
||||
msgstr "Norwegisch"
|
||||
|
||||
#. js-lingui-id: v3W9iu
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
msgid "Not all columns matched"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0qBE9S
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx
|
||||
@@ -3291,11 +3123,6 @@ msgstr "Vorschau"
|
||||
msgid "Privacy Policy"
|
||||
msgstr "Datenschutzrichtlinie"
|
||||
|
||||
#. js-lingui-id: k1ifdL
|
||||
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
|
||||
msgid "Processing..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vERlcd
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
@@ -3409,7 +3236,6 @@ msgstr "Neu laden"
|
||||
|
||||
#. js-lingui-id: t/YqKh
|
||||
#: src/modules/ui/input/components/ImageInput.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Remove"
|
||||
msgstr "Entfernen"
|
||||
|
||||
@@ -3483,15 +3309,10 @@ msgid "Restore records"
|
||||
msgstr "Datensätze wiederherstellen"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/command-menu/hooks/useCommandMenuSearchRecords.tsx
|
||||
#: src/modules/command-menu/hooks/useSearchRecords.tsx
|
||||
msgid "Results"
|
||||
msgstr "Ergebnisse"
|
||||
|
||||
#. js-lingui-id: BohSvm
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Review your import"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 5dJK4M
|
||||
#: src/pages/settings/roles/SettingsRoles.tsx
|
||||
#: src/pages/settings/roles/SettingsRoles.tsx
|
||||
@@ -3532,7 +3353,6 @@ msgstr "Schema"
|
||||
#. js-lingui-id: A1taO8
|
||||
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownWorkspacesListComponents.tsx
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentWorkspaceMemberPickerDropdown.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/navigation/components/MainNavigationDrawerItems.tsx
|
||||
#: src/modules/command-menu/hooks/useOpenRecordsSearchPageInCommandMenu.ts
|
||||
@@ -3580,7 +3400,6 @@ msgstr "Index suchen..."
|
||||
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupFieldsContent.tsx
|
||||
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx
|
||||
#: src/modules/object-record/advanced-filter/components/AdvancedFilterFieldSelectSearchInput.tsx
|
||||
msgid "Search fields"
|
||||
msgstr "Felder suchen"
|
||||
|
||||
@@ -3643,19 +3462,11 @@ msgstr "Gelöschte Workflows anzeigen"
|
||||
#. js-lingui-id: OpPn5Z
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
msgid "See runs"
|
||||
msgstr "Läufe anzeigen"
|
||||
|
||||
#. js-lingui-id: gGEfj/
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
msgid "See version"
|
||||
msgstr "Version anzeigen"
|
||||
|
||||
#. js-lingui-id: EtyY4+
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
@@ -3668,52 +3479,12 @@ msgstr "Versionen anzeigen"
|
||||
msgid "See versions history"
|
||||
msgstr "Versionsverlauf anzeigen"
|
||||
|
||||
#. js-lingui-id: qEKLJV
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
msgid "See workflow"
|
||||
msgstr "Workflow anzeigen"
|
||||
|
||||
#. js-lingui-id: XThiR2
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
|
||||
msgid "See workflows"
|
||||
msgstr "Workflows anzeigen"
|
||||
|
||||
#. js-lingui-id: WZvt/6
|
||||
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
|
||||
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
|
||||
msgid "Select Action"
|
||||
msgstr "Aktion auswählen"
|
||||
|
||||
#. js-lingui-id: hVPa4O
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/UnmatchColumn.tsx
|
||||
msgid "Select an option"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 21YIUv
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/TemplateColumn.tsx
|
||||
msgid "Select column..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: J6WI1B
|
||||
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
|
||||
msgid "Select file"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ljSvAs
|
||||
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
|
||||
msgid "Select header row"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mWHn81
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
msgid "Select the correct field for each column you'd like to import."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: pofGCP
|
||||
#: src/modules/settings/data-model/fields/forms/boolean/components/SettingsDataModelFieldBooleanForm.tsx
|
||||
msgid "Select the default value for this boolean field"
|
||||
@@ -3724,11 +3495,6 @@ msgstr "Wählen Sie den Standardwert für dieses boolesche Feld aus"
|
||||
msgid "Select the events you wish to send to this endpoint"
|
||||
msgstr "Wählen Sie die Ereignisse aus, die Sie an diesen Endpunkt senden möchten"
|
||||
|
||||
#. js-lingui-id: +xn1pe
|
||||
#: src/modules/spreadsheet-import/steps/components/SelectSheetStep/SelectSheetStep.tsx
|
||||
msgid "Select the sheet to use"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AXTJAW
|
||||
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
|
||||
msgid "Select your preferred language"
|
||||
@@ -3833,16 +3599,6 @@ msgstr "Sollte die Änderung einer Feldbezeichnung auch den API-Namen ändern?"
|
||||
msgid "Should changing an object's label also change the API?"
|
||||
msgstr "Sollte die Änderung eines Objektnamens auch den API-Namen ändern?"
|
||||
|
||||
#. js-lingui-id: qi+g0a
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Show only rows with errors"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: MHlGJL
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Show unmatched columns"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: uVg8dY
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutOpenInContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
@@ -3901,11 +3657,6 @@ msgstr "Spanisch"
|
||||
msgid "SSO"
|
||||
msgstr "SSO"
|
||||
|
||||
#. js-lingui-id: vlvAkg
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "SSO (SAML / OIDC)"
|
||||
msgstr "SSO (SAML / OIDC)"
|
||||
|
||||
#. js-lingui-id: ErU1td
|
||||
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
|
||||
msgid "Stages"
|
||||
@@ -3959,11 +3710,6 @@ msgstr "Betreff und Metadaten werden mit Ihrem Team geteilt."
|
||||
msgid "Subject, body and attachments will be shared with your team."
|
||||
msgstr "Betreff, Text und Anlagen werden mit Ihrem Team geteilt."
|
||||
|
||||
#. js-lingui-id: hQRttt
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Submit"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: B5jRKH
|
||||
#: src/pages/settings/SettingsBilling.tsx
|
||||
msgid "Subscription has been switched {to}"
|
||||
@@ -4000,11 +3746,6 @@ msgstr "Wechseln zu {to}"
|
||||
msgid "Switch billing {to}"
|
||||
msgstr "Abrechnung auf {to} umstellen"
|
||||
|
||||
#. js-lingui-id: lz+f/E
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "Switch to {alternatePlanName}"
|
||||
msgstr "Zu {alternatePlanName} wechseln"
|
||||
|
||||
#. js-lingui-id: 5TRY4+
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
|
||||
msgid "Sync failed"
|
||||
@@ -4145,16 +3886,6 @@ msgstr "Thema"
|
||||
msgid "Theme "
|
||||
msgstr "Thema "
|
||||
|
||||
#. js-lingui-id: /cSDOy
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
msgid "There are required columns that are not matched or ignored. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: luL9RX
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ynfkhb
|
||||
#: src/pages/auth/PasswordReset.tsx
|
||||
msgid "There was an error while updating password."
|
||||
@@ -4298,7 +4029,6 @@ msgstr "Unbekannter Fehler"
|
||||
|
||||
#. js-lingui-id: GQCXQS
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "Unlimited contacts"
|
||||
msgstr "Unbegrenzte Kontakte"
|
||||
|
||||
@@ -4312,13 +4042,7 @@ msgstr "Aktualisiert"
|
||||
msgid "Upload"
|
||||
msgstr "Hochladen"
|
||||
|
||||
#. js-lingui-id: 7OP1Xi
|
||||
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
|
||||
msgid "Upload .xlsx, .xls or .csv file"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2IXDgU
|
||||
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
msgid "Upload file"
|
||||
msgstr "Datei hochladen"
|
||||
@@ -4395,11 +4119,6 @@ msgstr "Benutzer ist nicht eingeloggt"
|
||||
#~ msgid "Users"
|
||||
#~ msgstr "Users"
|
||||
|
||||
#. js-lingui-id: MGeZsN
|
||||
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
|
||||
msgid "Validate data"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: fXVIZq
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
|
||||
@@ -4614,11 +4333,6 @@ msgstr "Ein Geheimnis schreiben"
|
||||
msgid "yes"
|
||||
msgstr "ja"
|
||||
|
||||
#. js-lingui-id: qsAug0
|
||||
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
|
||||
msgid "You are already importing this column."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: MFDARJ
|
||||
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
|
||||
msgid "You are not allowed to create records for this object"
|
||||
|
||||
@@ -87,11 +87,6 @@ msgstr "{aggregateLabel} του {fieldLabel}"
|
||||
msgid "{apiKeyName} API Key"
|
||||
msgstr "API Key {apiKeyName}"
|
||||
|
||||
#. js-lingui-id: zi5SHH
|
||||
#: src/modules/object-record/record-index/components/RecordIndexPageHeader.tsx
|
||||
msgid "{contextStoreNumberOfSelectedRecords} selected"
|
||||
msgstr "{contextStoreNumberOfSelectedRecords} επιλεγμένα"
|
||||
|
||||
#. js-lingui-id: 6j5rE1
|
||||
#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx
|
||||
#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx
|
||||
@@ -105,8 +100,8 @@ msgstr "Ο χρήστης {workspaceMemberName} θα αποδεσμευτεί α
|
||||
|
||||
#. js-lingui-id: YT0WJ4
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#~ msgid "1 000 workflow node executions"
|
||||
#~ msgstr "1 000 workflow node executions"
|
||||
msgid "1 000 workflow node executions"
|
||||
msgstr "1 000 εκτελέσεις κόμβων διεργασιών"
|
||||
|
||||
#. js-lingui-id: vb5TwV
|
||||
#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldSelect.tsx
|
||||
@@ -119,11 +114,6 @@ msgstr "1. Επιλέξτε έναν τύπο πεδίου"
|
||||
msgid "1. Type"
|
||||
msgstr "1. Τύπος"
|
||||
|
||||
#. js-lingui-id: AvXug3
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "10 000 workflow node executions"
|
||||
msgstr "10 000 εκτελέσεις κόμβου ροής εργασιών"
|
||||
|
||||
#. js-lingui-id: 4EdXYs
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "12h ({hour12Label})"
|
||||
@@ -140,11 +130,6 @@ msgstr "2. Διαμόρφωση"
|
||||
msgid "2. Configure field"
|
||||
msgstr "2. Διαμόρφωση πεδίου"
|
||||
|
||||
#. js-lingui-id: kAtmAv
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "20 000 workflow node executions"
|
||||
msgstr "20 000 εκτελέσεις κόμβου ροής εργασιών"
|
||||
|
||||
#. js-lingui-id: QsMprd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "24h ({hour24Label})"
|
||||
@@ -201,11 +186,6 @@ msgstr "Διαγραφή Λογαριασμού"
|
||||
msgid "Accounts"
|
||||
msgstr "Λογαριασμοί"
|
||||
|
||||
#. js-lingui-id: bwRvnp
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
msgid "Action"
|
||||
msgstr "Ενέργεια"
|
||||
|
||||
#. js-lingui-id: 7L01XJ
|
||||
#: src/modules/settings/roles/role-permissions/components/RolePermissionsSettingsTableHeader.tsx
|
||||
#: src/modules/settings/roles/role-permissions/components/RolePermissionsObjectsTableHeader.tsx
|
||||
@@ -252,7 +232,7 @@ msgid "Add Approved Access Domain"
|
||||
msgstr "Προσθήκη Εγκεκριμένου Τομέα Πρόσβασης"
|
||||
|
||||
#. js-lingui-id: DpV70M
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionForm.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
|
||||
msgid "Add Field"
|
||||
msgstr "Προσθήκη Πεδίου"
|
||||
@@ -453,7 +433,6 @@ msgstr "API"
|
||||
|
||||
#. js-lingui-id: 0RqpZr
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "API & Webhooks"
|
||||
msgstr "API & Webhooks"
|
||||
|
||||
@@ -537,28 +516,13 @@ msgstr "Είστε βέβαιοι ότι θέλετε να αλλάξετε το
|
||||
|
||||
#. js-lingui-id: 8Y3Jbl
|
||||
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
|
||||
#~ msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
#~ msgstr "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
|
||||
#. js-lingui-id: 2BZAqa
|
||||
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
|
||||
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu."
|
||||
msgstr "Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτές τις εγγραφές; Μπορούν να αποκατασταθούν από το μενού Εντολών."
|
||||
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
msgstr "Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτές τις εγγραφές; Μπορούν να αποκατασταθούν από το μενού Εντολών ({osControlSymbol} + K)."
|
||||
|
||||
#. js-lingui-id: Se0vJw
|
||||
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
|
||||
#~ msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
#~ msgstr "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
|
||||
#. js-lingui-id: yb2hF4
|
||||
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
|
||||
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu."
|
||||
msgstr "Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτήν την εγγραφή; Μπορεί να αποκατασταθεί από το μενού Εντολών."
|
||||
|
||||
#. js-lingui-id: rnCqBK
|
||||
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
|
||||
msgid "Are you sure? Your current information will not be saved."
|
||||
msgstr ""
|
||||
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
msgstr "Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτήν την εγγραφή; Μπορεί να αποκατασταθεί από το μενού Εντολών ({osControlSymbol} + K)."
|
||||
|
||||
#. js-lingui-id: nYD/Cq
|
||||
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
|
||||
@@ -721,18 +685,10 @@ msgstr "Συγχρονισμός Ημερολογίου"
|
||||
msgid "Calendars"
|
||||
msgstr "Ημερολόγια"
|
||||
|
||||
#. js-lingui-id: msssZq
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Can't change API names for standard objects"
|
||||
msgstr "Δεν είναι δυνατή η αλλαγή των ονομάτων API για τυπικά αντικείμενα"
|
||||
|
||||
#. js-lingui-id: dEgA5A
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
msgid "Cancel"
|
||||
msgstr "Ακύρωση"
|
||||
@@ -839,11 +795,6 @@ msgstr "Κλείσιμο"
|
||||
msgid "Close command menu"
|
||||
msgstr "Κλείσιμο μενού εντολών"
|
||||
|
||||
#. js-lingui-id: EWPtMO
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
msgid "Code"
|
||||
msgstr "Κωδικός"
|
||||
|
||||
#. js-lingui-id: H86f9p
|
||||
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
|
||||
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
|
||||
@@ -856,11 +807,6 @@ msgstr "Σύμπτυξη"
|
||||
msgid "Color code"
|
||||
msgstr "Κωδικός χρώματος"
|
||||
|
||||
#. js-lingui-id: 93hd3e
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
msgid "Columns not matched:"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NM9bMd
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
msgid "Compact view"
|
||||
@@ -892,7 +838,6 @@ msgid "Configure your emails and calendar settings."
|
||||
msgstr "Ρυθμίστε τις ρυθμίσεις email και ημερολογίου σας."
|
||||
|
||||
#. js-lingui-id: 7VpPHA
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentConfirmationModal.tsx
|
||||
msgid "Confirm"
|
||||
msgstr "Επιβεβαίωση"
|
||||
@@ -938,8 +883,6 @@ msgstr "Περιβάλλον"
|
||||
#: src/pages/onboarding/CreateWorkspace.tsx
|
||||
#: src/pages/onboarding/CreateProfile.tsx
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx
|
||||
msgid "Continue"
|
||||
msgstr "Συνέχεια"
|
||||
@@ -1004,11 +947,6 @@ msgstr "Αντιγράψτε αυτό το κλειδί γιατί δεν θα
|
||||
msgid "Core"
|
||||
msgstr "Πυρήνας"
|
||||
|
||||
#. js-lingui-id: w5Stxm
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Correct the issues and fill the missing data."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wBMjJ2
|
||||
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterMenuContent.tsx
|
||||
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx
|
||||
@@ -1130,7 +1068,6 @@ msgstr "Προσαρμοσμένος τομέας ενημερώθηκε"
|
||||
|
||||
#. js-lingui-id: 8skTDV
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "Custom objects"
|
||||
msgstr "Προσαρμοσμένα αντικείμενα"
|
||||
|
||||
@@ -1443,11 +1380,6 @@ msgstr "Εμφάνιση σε σχετική ημερομηνία"
|
||||
msgid "Display text on multiple lines"
|
||||
msgstr "Εμφανίστε το κείμενο σε πολλαπλές γραμμές"
|
||||
|
||||
#. js-lingui-id: ji7sqw
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/TemplateColumn.tsx
|
||||
msgid "Do not import"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: U9q4zF
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid "Doesn't contain"
|
||||
@@ -1491,11 +1423,6 @@ msgstr "Μην συγχρονίζετε email από team@ support@ noreply@..."
|
||||
msgid "Download file"
|
||||
msgstr "Λήψη αρχείου"
|
||||
|
||||
#. js-lingui-id: 6D/BnN
|
||||
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
|
||||
msgid "Drop file here..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KIjvtr
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
msgid "Dutch"
|
||||
@@ -1553,7 +1480,6 @@ msgstr "Επεξεργαστείτε το όνομα του υποτομέα σ
|
||||
#: src/pages/settings/SettingsWorkspaceMembers.tsx
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/auth/PasswordReset.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentTableHeader.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
msgid "Email"
|
||||
@@ -1571,7 +1497,6 @@ msgstr "Το email δεν μπορεί να είναι κενό"
|
||||
|
||||
#. js-lingui-id: lfQsvW
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "Email integration"
|
||||
msgstr "Ενσωμάτωση με email"
|
||||
|
||||
@@ -1781,21 +1706,11 @@ msgstr "Εξαιρέστε τα παρακάτω άτομα και τομείς
|
||||
msgid "Existing objects"
|
||||
msgstr "Υπάρχοντα αντικείμενα"
|
||||
|
||||
#. js-lingui-id: ydzS9x
|
||||
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
|
||||
msgid "Exit"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LFNXuj
|
||||
#: src/modules/ui/layout/fullscreen/components/FullScreenContainer.tsx
|
||||
msgid "Exit Full Screen"
|
||||
msgstr "Έξοδος από την Πλήρη Οθόνη"
|
||||
|
||||
#. js-lingui-id: XB4onr
|
||||
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
|
||||
msgid "Exit import flow"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: IZ4o2e
|
||||
#: src/modules/navigation/components/AppNavigationDrawer.tsx
|
||||
msgid "Exit Settings"
|
||||
@@ -1981,11 +1896,6 @@ msgstr "Φίλτρο"
|
||||
msgid "Filters"
|
||||
msgstr "Φίλτρα"
|
||||
|
||||
#. js-lingui-id: SNdnlf
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Finish flow with errors"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: USZ2N6
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
msgid "Finnish"
|
||||
@@ -2034,7 +1944,6 @@ msgstr "από ετήσιο σε μηνιαίο"
|
||||
|
||||
#. js-lingui-id: scmRyR
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "Full access"
|
||||
msgstr "Πλήρης πρόσβαση"
|
||||
|
||||
@@ -2072,24 +1981,11 @@ msgstr "Αποκτήστε τη συνδρομή σας"
|
||||
msgid "Global"
|
||||
msgstr "Παγκόσμιο"
|
||||
|
||||
#. js-lingui-id: iS69s6
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
msgid "Go to runs"
|
||||
msgstr "Πήγαινε στις εκτελέσεις"
|
||||
|
||||
#. js-lingui-id: mT57+Q
|
||||
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
|
||||
msgid "Go to Settings"
|
||||
msgstr "Μετάβαση στις Ρυθμίσεις"
|
||||
|
||||
#. js-lingui-id: A5WHZY
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
|
||||
msgid "Go to workflows"
|
||||
msgstr "Μετάβαση στις ροές εργασίας"
|
||||
|
||||
#. js-lingui-id: hWp1MY
|
||||
#: src/pages/settings/SettingsWorkspace.tsx
|
||||
msgid "Grant Twenty support temporary access to your workspace so we can troubleshoot problems or recover content on your behalf. You can revoke access at any time."
|
||||
@@ -2149,34 +2045,6 @@ msgstr "Κρυφά Πεδία"
|
||||
msgid "Hide"
|
||||
msgstr "Απόκρυψη"
|
||||
|
||||
#. js-lingui-id: OlbYor
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
|
||||
msgid "Hide deleted"
|
||||
msgstr "Απόκρυψη διαγραμμένων"
|
||||
|
||||
#. js-lingui-id: FHhlye
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
|
||||
msgid "Hide deleted records"
|
||||
msgstr "Απόκρυψη διαγραμμένων εγγραφών"
|
||||
|
||||
#. js-lingui-id: 0dZtKR
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
msgid "Hide deleted runs"
|
||||
msgstr "Απόκρυψη διαγραμμένων εκτελέσεων"
|
||||
|
||||
#. js-lingui-id: Jc6FrI
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
msgid "Hide deleted versions"
|
||||
msgstr "Απόκρυψη διαγραμμένων εκδόσεων"
|
||||
|
||||
#. js-lingui-id: aOZAIB
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
msgid "Hide deleted workflows"
|
||||
msgstr "Απόκρυψη διαγραμμένων workflows"
|
||||
|
||||
#. js-lingui-id: HS8BG/
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupsContent.tsx
|
||||
msgid "Hide empty groups"
|
||||
@@ -2584,8 +2452,8 @@ msgstr "Αποσύνδεση"
|
||||
|
||||
#. js-lingui-id: nOhz3x
|
||||
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
|
||||
msgid "Logout"
|
||||
msgstr "Αποσύνδεση"
|
||||
#~ msgid "Logout"
|
||||
#~ msgstr "Logout"
|
||||
|
||||
#. js-lingui-id: PTozs8
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
@@ -2629,16 +2497,6 @@ msgstr "Διαχείριση της συνδρομής σας"
|
||||
msgid "Mark as done"
|
||||
msgstr "Σημειώστε ως ολοκληρωμένο"
|
||||
|
||||
#. js-lingui-id: 7h8ch8
|
||||
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
|
||||
msgid "Match columns"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gDLior
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
msgid "Match Columns"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: CK1KXz
|
||||
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
|
||||
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
|
||||
@@ -2867,12 +2725,6 @@ msgstr "Νέος πάροχος SSO"
|
||||
#~ msgid "New Webhook"
|
||||
#~ msgstr "New Webhook"
|
||||
|
||||
#. js-lingui-id: AxNmtI
|
||||
#: src/modules/spreadsheet-import/steps/components/SelectSheetStep/SelectSheetStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
msgid "Next Step"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OTe3RI
|
||||
#: src/pages/settings/workspace/SettingsDomain.tsx
|
||||
msgid "No change detected"
|
||||
@@ -2888,16 +2740,6 @@ msgstr "Κανένας συνδεδεμένος λογαριασμός"
|
||||
msgid "No country"
|
||||
msgstr "Χωρίς χώρα"
|
||||
|
||||
#. js-lingui-id: pxvJ9B
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "No data containing errors"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: dihZwh
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "No data found"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UwvrGq
|
||||
#: src/pages/settings/SettingsWorkspaceMembers.tsx
|
||||
msgid "No members"
|
||||
@@ -2954,11 +2796,6 @@ msgstr "Δεν βρέθηκαν εγγραφές"
|
||||
#~ msgid "No Result"
|
||||
#~ msgstr "No Result"
|
||||
|
||||
#. js-lingui-id: Ev2r9A
|
||||
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
|
||||
msgid "No results"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: MA3x23
|
||||
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentWorkspaceMemberPickerDropdownContent.tsx
|
||||
msgid "No Results"
|
||||
@@ -2991,11 +2828,6 @@ msgstr "Κανένα"
|
||||
msgid "Norwegian"
|
||||
msgstr "Νορβηγικά"
|
||||
|
||||
#. js-lingui-id: v3W9iu
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
msgid "Not all columns matched"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0qBE9S
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx
|
||||
@@ -3291,11 +3123,6 @@ msgstr "Προεπισκόπηση"
|
||||
msgid "Privacy Policy"
|
||||
msgstr "Πολιτική Απορρήτου"
|
||||
|
||||
#. js-lingui-id: k1ifdL
|
||||
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
|
||||
msgid "Processing..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vERlcd
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
@@ -3409,7 +3236,6 @@ msgstr "Ανανέωση"
|
||||
|
||||
#. js-lingui-id: t/YqKh
|
||||
#: src/modules/ui/input/components/ImageInput.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Remove"
|
||||
msgstr "Αφαίρεση"
|
||||
|
||||
@@ -3483,15 +3309,10 @@ msgid "Restore records"
|
||||
msgstr "Επαναφορά εγγραφών"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/command-menu/hooks/useCommandMenuSearchRecords.tsx
|
||||
#: src/modules/command-menu/hooks/useSearchRecords.tsx
|
||||
msgid "Results"
|
||||
msgstr "Αποτελέσματα"
|
||||
|
||||
#. js-lingui-id: BohSvm
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Review your import"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 5dJK4M
|
||||
#: src/pages/settings/roles/SettingsRoles.tsx
|
||||
#: src/pages/settings/roles/SettingsRoles.tsx
|
||||
@@ -3532,7 +3353,6 @@ msgstr "Σχήμα"
|
||||
#. js-lingui-id: A1taO8
|
||||
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownWorkspacesListComponents.tsx
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentWorkspaceMemberPickerDropdown.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/navigation/components/MainNavigationDrawerItems.tsx
|
||||
#: src/modules/command-menu/hooks/useOpenRecordsSearchPageInCommandMenu.ts
|
||||
@@ -3580,7 +3400,6 @@ msgstr "Αναζήτηση ευρετηρίου..."
|
||||
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupFieldsContent.tsx
|
||||
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx
|
||||
#: src/modules/object-record/advanced-filter/components/AdvancedFilterFieldSelectSearchInput.tsx
|
||||
msgid "Search fields"
|
||||
msgstr "Αναζήτηση πεδίων"
|
||||
|
||||
@@ -3643,19 +3462,11 @@ msgstr "Δείτε διαγραμμένα workflows"
|
||||
#. js-lingui-id: OpPn5Z
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
msgid "See runs"
|
||||
msgstr "Δείτε τις εκτελέσεις"
|
||||
|
||||
#. js-lingui-id: gGEfj/
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
msgid "See version"
|
||||
msgstr "Δείτε την έκδοση"
|
||||
|
||||
#. js-lingui-id: EtyY4+
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
@@ -3668,52 +3479,12 @@ msgstr "Δείτε τις εκδόσεις"
|
||||
msgid "See versions history"
|
||||
msgstr "Δείτε το ιστορικό των εκδόσεων"
|
||||
|
||||
#. js-lingui-id: qEKLJV
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
msgid "See workflow"
|
||||
msgstr "Δείτε τη ροή εργασίας"
|
||||
|
||||
#. js-lingui-id: XThiR2
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
|
||||
msgid "See workflows"
|
||||
msgstr "Δείτε τις ροές εργασίας"
|
||||
|
||||
#. js-lingui-id: WZvt/6
|
||||
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
|
||||
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
|
||||
msgid "Select Action"
|
||||
msgstr "Επιλέξτε Ενέργεια"
|
||||
|
||||
#. js-lingui-id: hVPa4O
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/UnmatchColumn.tsx
|
||||
msgid "Select an option"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 21YIUv
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/TemplateColumn.tsx
|
||||
msgid "Select column..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: J6WI1B
|
||||
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
|
||||
msgid "Select file"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ljSvAs
|
||||
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
|
||||
msgid "Select header row"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mWHn81
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
msgid "Select the correct field for each column you'd like to import."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: pofGCP
|
||||
#: src/modules/settings/data-model/fields/forms/boolean/components/SettingsDataModelFieldBooleanForm.tsx
|
||||
msgid "Select the default value for this boolean field"
|
||||
@@ -3724,11 +3495,6 @@ msgstr "Επιλέξτε την προεπιλεγμένη τιμή για αυ
|
||||
msgid "Select the events you wish to send to this endpoint"
|
||||
msgstr "Επιλέξτε τα γεγονότα που επιθυμείτε να στείλετε σε αυτό το τελικό σημείο"
|
||||
|
||||
#. js-lingui-id: +xn1pe
|
||||
#: src/modules/spreadsheet-import/steps/components/SelectSheetStep/SelectSheetStep.tsx
|
||||
msgid "Select the sheet to use"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AXTJAW
|
||||
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
|
||||
msgid "Select your preferred language"
|
||||
@@ -3833,16 +3599,6 @@ msgstr "Θα πρέπει η αλλαγή της ετικέτας ενός πε
|
||||
msgid "Should changing an object's label also change the API?"
|
||||
msgstr "Πρέπει η αλλαγή της ετικέτας ενός αντικειμένου να αλλάζει επίσης το API;"
|
||||
|
||||
#. js-lingui-id: qi+g0a
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Show only rows with errors"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: MHlGJL
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Show unmatched columns"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: uVg8dY
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutOpenInContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
@@ -3901,11 +3657,6 @@ msgstr "Ισπανικά"
|
||||
msgid "SSO"
|
||||
msgstr "Ενιαίο Σύστημα Εισόδου"
|
||||
|
||||
#. js-lingui-id: vlvAkg
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "SSO (SAML / OIDC)"
|
||||
msgstr "SSO (SAML / OIDC)"
|
||||
|
||||
#. js-lingui-id: ErU1td
|
||||
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
|
||||
msgid "Stages"
|
||||
@@ -3959,11 +3710,6 @@ msgstr "Το θέμα και τα μεταδεδομένα θα μοιραστο
|
||||
msgid "Subject, body and attachments will be shared with your team."
|
||||
msgstr "Το θέμα, το σώμα και τα συνημμένα θα μοιραστούν με την ομάδα σας."
|
||||
|
||||
#. js-lingui-id: hQRttt
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Submit"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: B5jRKH
|
||||
#: src/pages/settings/SettingsBilling.tsx
|
||||
msgid "Subscription has been switched {to}"
|
||||
@@ -4000,11 +3746,6 @@ msgstr "Εναλλαγή <b>{σε}</b>"
|
||||
msgid "Switch billing {to}"
|
||||
msgstr "Εναλλαγή χρέωσης <b>{σε}</b>"
|
||||
|
||||
#. js-lingui-id: lz+f/E
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "Switch to {alternatePlanName}"
|
||||
msgstr "Αλλαγή σε {alternatePlanName}"
|
||||
|
||||
#. js-lingui-id: 5TRY4+
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
|
||||
msgid "Sync failed"
|
||||
@@ -4145,16 +3886,6 @@ msgstr "Θέμα"
|
||||
msgid "Theme "
|
||||
msgstr "Θέμα "
|
||||
|
||||
#. js-lingui-id: /cSDOy
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
msgid "There are required columns that are not matched or ignored. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: luL9RX
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ynfkhb
|
||||
#: src/pages/auth/PasswordReset.tsx
|
||||
msgid "There was an error while updating password."
|
||||
@@ -4298,7 +4029,6 @@ msgstr "Άγνωστο σφάλμα"
|
||||
|
||||
#. js-lingui-id: GQCXQS
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "Unlimited contacts"
|
||||
msgstr "Απεριόριστες επαφές"
|
||||
|
||||
@@ -4312,13 +4042,7 @@ msgstr "Ενημερώθηκε"
|
||||
msgid "Upload"
|
||||
msgstr "Ανέβασμα"
|
||||
|
||||
#. js-lingui-id: 7OP1Xi
|
||||
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
|
||||
msgid "Upload .xlsx, .xls or .csv file"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2IXDgU
|
||||
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
msgid "Upload file"
|
||||
msgstr "Ανέβασμα αρχείου"
|
||||
@@ -4395,11 +4119,6 @@ msgstr "Ο χρήστης δεν έχει συνδεθεί"
|
||||
#~ msgid "Users"
|
||||
#~ msgstr "Users"
|
||||
|
||||
#. js-lingui-id: MGeZsN
|
||||
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
|
||||
msgid "Validate data"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: fXVIZq
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
|
||||
@@ -4614,11 +4333,6 @@ msgstr "Γράψτε ένα μυστικό"
|
||||
msgid "yes"
|
||||
msgstr "ναι"
|
||||
|
||||
#. js-lingui-id: qsAug0
|
||||
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
|
||||
msgid "You are already importing this column."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: MFDARJ
|
||||
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
|
||||
msgid "You are not allowed to create records for this object"
|
||||
|
||||
@@ -82,11 +82,6 @@ msgstr "{aggregateLabel} of {fieldLabel}"
|
||||
msgid "{apiKeyName} API Key"
|
||||
msgstr "{apiKeyName} API Key"
|
||||
|
||||
#. js-lingui-id: zi5SHH
|
||||
#: src/modules/object-record/record-index/components/RecordIndexPageHeader.tsx
|
||||
msgid "{contextStoreNumberOfSelectedRecords} selected"
|
||||
msgstr "{contextStoreNumberOfSelectedRecords} selected"
|
||||
|
||||
#. js-lingui-id: 6j5rE1
|
||||
#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx
|
||||
#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx
|
||||
@@ -100,8 +95,8 @@ msgstr "{workspaceMemberName} will be unassigned from the following role:"
|
||||
|
||||
#. js-lingui-id: YT0WJ4
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#~ msgid "1 000 workflow node executions"
|
||||
#~ msgstr "1 000 workflow node executions"
|
||||
msgid "1 000 workflow node executions"
|
||||
msgstr "1 000 workflow node executions"
|
||||
|
||||
#. js-lingui-id: vb5TwV
|
||||
#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldSelect.tsx
|
||||
@@ -114,11 +109,6 @@ msgstr "1. Select a field type"
|
||||
msgid "1. Type"
|
||||
msgstr "1. Type"
|
||||
|
||||
#. js-lingui-id: AvXug3
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "10 000 workflow node executions"
|
||||
msgstr "10 000 workflow node executions"
|
||||
|
||||
#. js-lingui-id: 4EdXYs
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "12h ({hour12Label})"
|
||||
@@ -135,11 +125,6 @@ msgstr "2. Configure"
|
||||
msgid "2. Configure field"
|
||||
msgstr "2. Configure field"
|
||||
|
||||
#. js-lingui-id: kAtmAv
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "20 000 workflow node executions"
|
||||
msgstr "20 000 workflow node executions"
|
||||
|
||||
#. js-lingui-id: QsMprd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "24h ({hour24Label})"
|
||||
@@ -196,11 +181,6 @@ msgstr "Account Deletion"
|
||||
msgid "Accounts"
|
||||
msgstr "Accounts"
|
||||
|
||||
#. js-lingui-id: bwRvnp
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
msgid "Action"
|
||||
msgstr "Action"
|
||||
|
||||
#. js-lingui-id: 7L01XJ
|
||||
#: src/modules/settings/roles/role-permissions/components/RolePermissionsSettingsTableHeader.tsx
|
||||
#: src/modules/settings/roles/role-permissions/components/RolePermissionsObjectsTableHeader.tsx
|
||||
@@ -247,7 +227,7 @@ msgid "Add Approved Access Domain"
|
||||
msgstr "Add Approved Access Domain"
|
||||
|
||||
#. js-lingui-id: DpV70M
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionForm.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
|
||||
msgid "Add Field"
|
||||
msgstr "Add Field"
|
||||
@@ -448,7 +428,6 @@ msgstr "API"
|
||||
|
||||
#. js-lingui-id: 0RqpZr
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "API & Webhooks"
|
||||
msgstr "API & Webhooks"
|
||||
|
||||
@@ -532,28 +511,13 @@ msgstr "Are you sure that you want to change your billing interval?"
|
||||
|
||||
#. js-lingui-id: 8Y3Jbl
|
||||
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
|
||||
#~ msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
#~ msgstr "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
|
||||
#. js-lingui-id: 2BZAqa
|
||||
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
|
||||
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu."
|
||||
msgstr "Are you sure you want to delete these records? They can be recovered from the Command menu."
|
||||
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
msgstr "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
|
||||
#. js-lingui-id: Se0vJw
|
||||
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
|
||||
#~ msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
#~ msgstr "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
|
||||
#. js-lingui-id: yb2hF4
|
||||
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
|
||||
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu."
|
||||
msgstr "Are you sure you want to delete this record? It can be recovered from the Command menu."
|
||||
|
||||
#. js-lingui-id: rnCqBK
|
||||
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
|
||||
msgid "Are you sure? Your current information will not be saved."
|
||||
msgstr "Are you sure? Your current information will not be saved."
|
||||
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
msgstr "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
|
||||
#. js-lingui-id: nYD/Cq
|
||||
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
|
||||
@@ -716,18 +680,10 @@ msgstr "Calendar Sync"
|
||||
msgid "Calendars"
|
||||
msgstr "Calendars"
|
||||
|
||||
#. js-lingui-id: msssZq
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Can't change API names for standard objects"
|
||||
msgstr "Can't change API names for standard objects"
|
||||
|
||||
#. js-lingui-id: dEgA5A
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
msgid "Cancel"
|
||||
msgstr "Cancel"
|
||||
@@ -834,11 +790,6 @@ msgstr "Close"
|
||||
msgid "Close command menu"
|
||||
msgstr "Close command menu"
|
||||
|
||||
#. js-lingui-id: EWPtMO
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
msgid "Code"
|
||||
msgstr "Code"
|
||||
|
||||
#. js-lingui-id: H86f9p
|
||||
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
|
||||
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
|
||||
@@ -851,11 +802,6 @@ msgstr "Collapse"
|
||||
msgid "Color code"
|
||||
msgstr "Color code"
|
||||
|
||||
#. js-lingui-id: 93hd3e
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
msgid "Columns not matched:"
|
||||
msgstr "Columns not matched:"
|
||||
|
||||
#. js-lingui-id: NM9bMd
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
msgid "Compact view"
|
||||
@@ -887,7 +833,6 @@ msgid "Configure your emails and calendar settings."
|
||||
msgstr "Configure your emails and calendar settings."
|
||||
|
||||
#. js-lingui-id: 7VpPHA
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentConfirmationModal.tsx
|
||||
msgid "Confirm"
|
||||
msgstr "Confirm"
|
||||
@@ -933,8 +878,6 @@ msgstr "Context"
|
||||
#: src/pages/onboarding/CreateWorkspace.tsx
|
||||
#: src/pages/onboarding/CreateProfile.tsx
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx
|
||||
msgid "Continue"
|
||||
msgstr "Continue"
|
||||
@@ -999,11 +942,6 @@ msgstr "Copy this key as it will not be visible again"
|
||||
msgid "Core"
|
||||
msgstr "Core"
|
||||
|
||||
#. js-lingui-id: w5Stxm
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Correct the issues and fill the missing data."
|
||||
msgstr "Correct the issues and fill the missing data."
|
||||
|
||||
#. js-lingui-id: wBMjJ2
|
||||
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterMenuContent.tsx
|
||||
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx
|
||||
@@ -1125,7 +1063,6 @@ msgstr "Custom domain updated"
|
||||
|
||||
#. js-lingui-id: 8skTDV
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "Custom objects"
|
||||
msgstr "Custom objects"
|
||||
|
||||
@@ -1438,11 +1375,6 @@ msgstr "Display as relative date"
|
||||
msgid "Display text on multiple lines"
|
||||
msgstr "Display text on multiple lines"
|
||||
|
||||
#. js-lingui-id: ji7sqw
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/TemplateColumn.tsx
|
||||
msgid "Do not import"
|
||||
msgstr "Do not import"
|
||||
|
||||
#. js-lingui-id: U9q4zF
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid "Doesn't contain"
|
||||
@@ -1486,11 +1418,6 @@ msgstr "Don’t sync emails from team@ support@ noreply@..."
|
||||
msgid "Download file"
|
||||
msgstr "Download file"
|
||||
|
||||
#. js-lingui-id: 6D/BnN
|
||||
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
|
||||
msgid "Drop file here..."
|
||||
msgstr "Drop file here..."
|
||||
|
||||
#. js-lingui-id: KIjvtr
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
msgid "Dutch"
|
||||
@@ -1548,7 +1475,6 @@ msgstr "Edit your subdomain name or set a custom domain."
|
||||
#: src/pages/settings/SettingsWorkspaceMembers.tsx
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/auth/PasswordReset.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentTableHeader.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
msgid "Email"
|
||||
@@ -1566,7 +1492,6 @@ msgstr "Email cannot be empty"
|
||||
|
||||
#. js-lingui-id: lfQsvW
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "Email integration"
|
||||
msgstr "Email integration"
|
||||
|
||||
@@ -1776,21 +1701,11 @@ msgstr "Exclude the following people and domains from my email sync. Internal co
|
||||
msgid "Existing objects"
|
||||
msgstr "Existing objects"
|
||||
|
||||
#. js-lingui-id: ydzS9x
|
||||
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
|
||||
msgid "Exit"
|
||||
msgstr "Exit"
|
||||
|
||||
#. js-lingui-id: LFNXuj
|
||||
#: src/modules/ui/layout/fullscreen/components/FullScreenContainer.tsx
|
||||
msgid "Exit Full Screen"
|
||||
msgstr "Exit Full Screen"
|
||||
|
||||
#. js-lingui-id: XB4onr
|
||||
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
|
||||
msgid "Exit import flow"
|
||||
msgstr "Exit import flow"
|
||||
|
||||
#. js-lingui-id: IZ4o2e
|
||||
#: src/modules/navigation/components/AppNavigationDrawer.tsx
|
||||
msgid "Exit Settings"
|
||||
@@ -1976,11 +1891,6 @@ msgstr "Filter"
|
||||
msgid "Filters"
|
||||
msgstr "Filters"
|
||||
|
||||
#. js-lingui-id: SNdnlf
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Finish flow with errors"
|
||||
msgstr "Finish flow with errors"
|
||||
|
||||
#. js-lingui-id: USZ2N6
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
msgid "Finnish"
|
||||
@@ -2029,7 +1939,6 @@ msgstr "from yearly to monthly"
|
||||
|
||||
#. js-lingui-id: scmRyR
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "Full access"
|
||||
msgstr "Full access"
|
||||
|
||||
@@ -2067,24 +1976,11 @@ msgstr "Get your subscription"
|
||||
msgid "Global"
|
||||
msgstr "Global"
|
||||
|
||||
#. js-lingui-id: iS69s6
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
msgid "Go to runs"
|
||||
msgstr "Go to runs"
|
||||
|
||||
#. js-lingui-id: mT57+Q
|
||||
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
|
||||
msgid "Go to Settings"
|
||||
msgstr "Go to Settings"
|
||||
|
||||
#. js-lingui-id: A5WHZY
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
|
||||
msgid "Go to workflows"
|
||||
msgstr "Go to workflows"
|
||||
|
||||
#. js-lingui-id: hWp1MY
|
||||
#: src/pages/settings/SettingsWorkspace.tsx
|
||||
msgid "Grant Twenty support temporary access to your workspace so we can troubleshoot problems or recover content on your behalf. You can revoke access at any time."
|
||||
@@ -2144,34 +2040,6 @@ msgstr "Hidden Fields"
|
||||
msgid "Hide"
|
||||
msgstr "Hide"
|
||||
|
||||
#. js-lingui-id: OlbYor
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
|
||||
msgid "Hide deleted"
|
||||
msgstr "Hide deleted"
|
||||
|
||||
#. js-lingui-id: FHhlye
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
|
||||
msgid "Hide deleted records"
|
||||
msgstr "Hide deleted records"
|
||||
|
||||
#. js-lingui-id: 0dZtKR
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
msgid "Hide deleted runs"
|
||||
msgstr "Hide deleted runs"
|
||||
|
||||
#. js-lingui-id: Jc6FrI
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
msgid "Hide deleted versions"
|
||||
msgstr "Hide deleted versions"
|
||||
|
||||
#. js-lingui-id: aOZAIB
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
msgid "Hide deleted workflows"
|
||||
msgstr "Hide deleted workflows"
|
||||
|
||||
#. js-lingui-id: HS8BG/
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupsContent.tsx
|
||||
msgid "Hide empty groups"
|
||||
@@ -2579,8 +2447,8 @@ msgstr "Log out"
|
||||
|
||||
#. js-lingui-id: nOhz3x
|
||||
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
|
||||
msgid "Logout"
|
||||
msgstr "Logout"
|
||||
#~ msgid "Logout"
|
||||
#~ msgstr "Logout"
|
||||
|
||||
#. js-lingui-id: PTozs8
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
@@ -2624,16 +2492,6 @@ msgstr "Manage your subscription"
|
||||
msgid "Mark as done"
|
||||
msgstr "Mark as done"
|
||||
|
||||
#. js-lingui-id: 7h8ch8
|
||||
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
|
||||
msgid "Match columns"
|
||||
msgstr "Match columns"
|
||||
|
||||
#. js-lingui-id: gDLior
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
msgid "Match Columns"
|
||||
msgstr "Match Columns"
|
||||
|
||||
#. js-lingui-id: CK1KXz
|
||||
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
|
||||
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
|
||||
@@ -2862,12 +2720,6 @@ msgstr "New SSO provider"
|
||||
#~ msgid "New Webhook"
|
||||
#~ msgstr "New Webhook"
|
||||
|
||||
#. js-lingui-id: AxNmtI
|
||||
#: src/modules/spreadsheet-import/steps/components/SelectSheetStep/SelectSheetStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
msgid "Next Step"
|
||||
msgstr "Next Step"
|
||||
|
||||
#. js-lingui-id: OTe3RI
|
||||
#: src/pages/settings/workspace/SettingsDomain.tsx
|
||||
msgid "No change detected"
|
||||
@@ -2883,16 +2735,6 @@ msgstr "No connected account"
|
||||
msgid "No country"
|
||||
msgstr "No country"
|
||||
|
||||
#. js-lingui-id: pxvJ9B
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "No data containing errors"
|
||||
msgstr "No data containing errors"
|
||||
|
||||
#. js-lingui-id: dihZwh
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "No data found"
|
||||
msgstr "No data found"
|
||||
|
||||
#. js-lingui-id: UwvrGq
|
||||
#: src/pages/settings/SettingsWorkspaceMembers.tsx
|
||||
msgid "No members"
|
||||
@@ -2949,11 +2791,6 @@ msgstr "No records found"
|
||||
#~ msgid "No Result"
|
||||
#~ msgstr "No Result"
|
||||
|
||||
#. js-lingui-id: Ev2r9A
|
||||
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
|
||||
msgid "No results"
|
||||
msgstr "No results"
|
||||
|
||||
#. js-lingui-id: MA3x23
|
||||
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentWorkspaceMemberPickerDropdownContent.tsx
|
||||
msgid "No Results"
|
||||
@@ -2986,11 +2823,6 @@ msgstr "None"
|
||||
msgid "Norwegian"
|
||||
msgstr "Norwegian"
|
||||
|
||||
#. js-lingui-id: v3W9iu
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
msgid "Not all columns matched"
|
||||
msgstr "Not all columns matched"
|
||||
|
||||
#. js-lingui-id: 0qBE9S
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx
|
||||
@@ -3286,11 +3118,6 @@ msgstr "Preview"
|
||||
msgid "Privacy Policy"
|
||||
msgstr "Privacy Policy"
|
||||
|
||||
#. js-lingui-id: k1ifdL
|
||||
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
|
||||
msgid "Processing..."
|
||||
msgstr "Processing..."
|
||||
|
||||
#. js-lingui-id: vERlcd
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
@@ -3404,7 +3231,6 @@ msgstr "Reload"
|
||||
|
||||
#. js-lingui-id: t/YqKh
|
||||
#: src/modules/ui/input/components/ImageInput.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Remove"
|
||||
msgstr "Remove"
|
||||
|
||||
@@ -3478,15 +3304,10 @@ msgid "Restore records"
|
||||
msgstr "Restore records"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/command-menu/hooks/useCommandMenuSearchRecords.tsx
|
||||
#: src/modules/command-menu/hooks/useSearchRecords.tsx
|
||||
msgid "Results"
|
||||
msgstr "Results"
|
||||
|
||||
#. js-lingui-id: BohSvm
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Review your import"
|
||||
msgstr "Review your import"
|
||||
|
||||
#. js-lingui-id: 5dJK4M
|
||||
#: src/pages/settings/roles/SettingsRoles.tsx
|
||||
#: src/pages/settings/roles/SettingsRoles.tsx
|
||||
@@ -3527,7 +3348,6 @@ msgstr "Schema"
|
||||
#. js-lingui-id: A1taO8
|
||||
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownWorkspacesListComponents.tsx
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentWorkspaceMemberPickerDropdown.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/navigation/components/MainNavigationDrawerItems.tsx
|
||||
#: src/modules/command-menu/hooks/useOpenRecordsSearchPageInCommandMenu.ts
|
||||
@@ -3575,7 +3395,6 @@ msgstr "Search an index..."
|
||||
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupFieldsContent.tsx
|
||||
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx
|
||||
#: src/modules/object-record/advanced-filter/components/AdvancedFilterFieldSelectSearchInput.tsx
|
||||
msgid "Search fields"
|
||||
msgstr "Search fields"
|
||||
|
||||
@@ -3638,19 +3457,11 @@ msgstr "See deleted workflows"
|
||||
#. js-lingui-id: OpPn5Z
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
msgid "See runs"
|
||||
msgstr "See runs"
|
||||
|
||||
#. js-lingui-id: gGEfj/
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
msgid "See version"
|
||||
msgstr "See version"
|
||||
|
||||
#. js-lingui-id: EtyY4+
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
@@ -3663,52 +3474,12 @@ msgstr "See versions"
|
||||
msgid "See versions history"
|
||||
msgstr "See versions history"
|
||||
|
||||
#. js-lingui-id: qEKLJV
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
msgid "See workflow"
|
||||
msgstr "See workflow"
|
||||
|
||||
#. js-lingui-id: XThiR2
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
|
||||
msgid "See workflows"
|
||||
msgstr "See workflows"
|
||||
|
||||
#. js-lingui-id: WZvt/6
|
||||
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
|
||||
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
|
||||
msgid "Select Action"
|
||||
msgstr "Select Action"
|
||||
|
||||
#. js-lingui-id: hVPa4O
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/UnmatchColumn.tsx
|
||||
msgid "Select an option"
|
||||
msgstr "Select an option"
|
||||
|
||||
#. js-lingui-id: 21YIUv
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/TemplateColumn.tsx
|
||||
msgid "Select column..."
|
||||
msgstr "Select column..."
|
||||
|
||||
#. js-lingui-id: J6WI1B
|
||||
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
|
||||
msgid "Select file"
|
||||
msgstr "Select file"
|
||||
|
||||
#. js-lingui-id: ljSvAs
|
||||
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
|
||||
msgid "Select header row"
|
||||
msgstr "Select header row"
|
||||
|
||||
#. js-lingui-id: mWHn81
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
msgid "Select the correct field for each column you'd like to import."
|
||||
msgstr "Select the correct field for each column you'd like to import."
|
||||
|
||||
#. js-lingui-id: pofGCP
|
||||
#: src/modules/settings/data-model/fields/forms/boolean/components/SettingsDataModelFieldBooleanForm.tsx
|
||||
msgid "Select the default value for this boolean field"
|
||||
@@ -3719,11 +3490,6 @@ msgstr "Select the default value for this boolean field"
|
||||
msgid "Select the events you wish to send to this endpoint"
|
||||
msgstr "Select the events you wish to send to this endpoint"
|
||||
|
||||
#. js-lingui-id: +xn1pe
|
||||
#: src/modules/spreadsheet-import/steps/components/SelectSheetStep/SelectSheetStep.tsx
|
||||
msgid "Select the sheet to use"
|
||||
msgstr "Select the sheet to use"
|
||||
|
||||
#. js-lingui-id: AXTJAW
|
||||
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
|
||||
msgid "Select your preferred language"
|
||||
@@ -3828,16 +3594,6 @@ msgstr "Should changing a field's label also change the API name?"
|
||||
msgid "Should changing an object's label also change the API?"
|
||||
msgstr "Should changing an object's label also change the API?"
|
||||
|
||||
#. js-lingui-id: qi+g0a
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Show only rows with errors"
|
||||
msgstr "Show only rows with errors"
|
||||
|
||||
#. js-lingui-id: MHlGJL
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Show unmatched columns"
|
||||
msgstr "Show unmatched columns"
|
||||
|
||||
#. js-lingui-id: uVg8dY
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutOpenInContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
@@ -3896,11 +3652,6 @@ msgstr "Spanish"
|
||||
msgid "SSO"
|
||||
msgstr "SSO"
|
||||
|
||||
#. js-lingui-id: vlvAkg
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "SSO (SAML / OIDC)"
|
||||
msgstr "SSO (SAML / OIDC)"
|
||||
|
||||
#. js-lingui-id: ErU1td
|
||||
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
|
||||
msgid "Stages"
|
||||
@@ -3954,11 +3705,6 @@ msgstr "Subject and metadata will be shared with your team."
|
||||
msgid "Subject, body and attachments will be shared with your team."
|
||||
msgstr "Subject, body and attachments will be shared with your team."
|
||||
|
||||
#. js-lingui-id: hQRttt
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Submit"
|
||||
msgstr "Submit"
|
||||
|
||||
#. js-lingui-id: B5jRKH
|
||||
#: src/pages/settings/SettingsBilling.tsx
|
||||
msgid "Subscription has been switched {to}"
|
||||
@@ -3995,11 +3741,6 @@ msgstr "Switch {to}"
|
||||
msgid "Switch billing {to}"
|
||||
msgstr "Switch billing {to}"
|
||||
|
||||
#. js-lingui-id: lz+f/E
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "Switch to {alternatePlanName}"
|
||||
msgstr "Switch to {alternatePlanName}"
|
||||
|
||||
#. js-lingui-id: 5TRY4+
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
|
||||
msgid "Sync failed"
|
||||
@@ -4140,16 +3881,6 @@ msgstr "Theme"
|
||||
msgid "Theme "
|
||||
msgstr "Theme "
|
||||
|
||||
#. js-lingui-id: /cSDOy
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
msgid "There are required columns that are not matched or ignored. Do you want to continue?"
|
||||
msgstr "There are required columns that are not matched or ignored. Do you want to continue?"
|
||||
|
||||
#. js-lingui-id: luL9RX
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
|
||||
msgstr "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
|
||||
|
||||
#. js-lingui-id: ynfkhb
|
||||
#: src/pages/auth/PasswordReset.tsx
|
||||
msgid "There was an error while updating password."
|
||||
@@ -4293,7 +4024,6 @@ msgstr "Unknown error"
|
||||
|
||||
#. js-lingui-id: GQCXQS
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "Unlimited contacts"
|
||||
msgstr "Unlimited contacts"
|
||||
|
||||
@@ -4307,13 +4037,7 @@ msgstr "Updated"
|
||||
msgid "Upload"
|
||||
msgstr "Upload"
|
||||
|
||||
#. js-lingui-id: 7OP1Xi
|
||||
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
|
||||
msgid "Upload .xlsx, .xls or .csv file"
|
||||
msgstr "Upload .xlsx, .xls or .csv file"
|
||||
|
||||
#. js-lingui-id: 2IXDgU
|
||||
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
msgid "Upload file"
|
||||
msgstr "Upload file"
|
||||
@@ -4390,11 +4114,6 @@ msgstr "User is not logged in"
|
||||
#~ msgid "Users"
|
||||
#~ msgstr "Users"
|
||||
|
||||
#. js-lingui-id: MGeZsN
|
||||
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
|
||||
msgid "Validate data"
|
||||
msgstr "Validate data"
|
||||
|
||||
#. js-lingui-id: fXVIZq
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
|
||||
@@ -4609,11 +4328,6 @@ msgstr "Write a secret"
|
||||
msgid "yes"
|
||||
msgstr "yes"
|
||||
|
||||
#. js-lingui-id: qsAug0
|
||||
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
|
||||
msgid "You are already importing this column."
|
||||
msgstr "You are already importing this column."
|
||||
|
||||
#. js-lingui-id: MFDARJ
|
||||
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
|
||||
msgid "You are not allowed to create records for this object"
|
||||
|
||||
@@ -87,11 +87,6 @@ msgstr "{aggregateLabel} de {fieldLabel}"
|
||||
msgid "{apiKeyName} API Key"
|
||||
msgstr "Clave API {apiKeyName}"
|
||||
|
||||
#. js-lingui-id: zi5SHH
|
||||
#: src/modules/object-record/record-index/components/RecordIndexPageHeader.tsx
|
||||
msgid "{contextStoreNumberOfSelectedRecords} selected"
|
||||
msgstr "{contextStoreNumberOfSelectedRecords} seleccionados"
|
||||
|
||||
#. js-lingui-id: 6j5rE1
|
||||
#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx
|
||||
#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx
|
||||
@@ -105,8 +100,8 @@ msgstr "{workspaceMemberName} dejará de estar asignado al siguiente rol:"
|
||||
|
||||
#. js-lingui-id: YT0WJ4
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#~ msgid "1 000 workflow node executions"
|
||||
#~ msgstr "1 000 workflow node executions"
|
||||
msgid "1 000 workflow node executions"
|
||||
msgstr "1 000 ejecuciones de nodos de workflow"
|
||||
|
||||
#. js-lingui-id: vb5TwV
|
||||
#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldSelect.tsx
|
||||
@@ -119,11 +114,6 @@ msgstr "1. Seleccionar un tipo de campo"
|
||||
msgid "1. Type"
|
||||
msgstr "1. Tipo"
|
||||
|
||||
#. js-lingui-id: AvXug3
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "10 000 workflow node executions"
|
||||
msgstr "10 000 ejecuciones de nodos de workflow"
|
||||
|
||||
#. js-lingui-id: 4EdXYs
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "12h ({hour12Label})"
|
||||
@@ -140,11 +130,6 @@ msgstr "2. Configurar"
|
||||
msgid "2. Configure field"
|
||||
msgstr "2. Configurar campo"
|
||||
|
||||
#. js-lingui-id: kAtmAv
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "20 000 workflow node executions"
|
||||
msgstr "20 000 ejecuciones de nodos de workflow"
|
||||
|
||||
#. js-lingui-id: QsMprd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "24h ({hour24Label})"
|
||||
@@ -201,11 +186,6 @@ msgstr "Eliminación de cuenta"
|
||||
msgid "Accounts"
|
||||
msgstr "Cuentas"
|
||||
|
||||
#. js-lingui-id: bwRvnp
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
msgid "Action"
|
||||
msgstr "Acción"
|
||||
|
||||
#. js-lingui-id: 7L01XJ
|
||||
#: src/modules/settings/roles/role-permissions/components/RolePermissionsSettingsTableHeader.tsx
|
||||
#: src/modules/settings/roles/role-permissions/components/RolePermissionsObjectsTableHeader.tsx
|
||||
@@ -252,7 +232,7 @@ msgid "Add Approved Access Domain"
|
||||
msgstr "Añadir Dominio de Acceso Aprobado"
|
||||
|
||||
#. js-lingui-id: DpV70M
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionForm.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
|
||||
msgid "Add Field"
|
||||
msgstr "Añadir campo"
|
||||
@@ -453,7 +433,6 @@ msgstr "API"
|
||||
|
||||
#. js-lingui-id: 0RqpZr
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "API & Webhooks"
|
||||
msgstr "API y Webhooks"
|
||||
|
||||
@@ -537,28 +516,13 @@ msgstr "¿Está seguro de que desea cambiar el intervalo de facturación?"
|
||||
|
||||
#. js-lingui-id: 8Y3Jbl
|
||||
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
|
||||
#~ msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
#~ msgstr "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
|
||||
#. js-lingui-id: 2BZAqa
|
||||
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
|
||||
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu."
|
||||
msgstr "¿Está seguro de que desea eliminar estos registros? Se pueden recuperar del menú de Comandos."
|
||||
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
msgstr "¿Está seguro de que desea eliminar estos registros? Se pueden recuperar del menú de Comandos ({osControlSymbol} + K)."
|
||||
|
||||
#. js-lingui-id: Se0vJw
|
||||
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
|
||||
#~ msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
#~ msgstr "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
|
||||
#. js-lingui-id: yb2hF4
|
||||
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
|
||||
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu."
|
||||
msgstr "¿Está seguro de que desea eliminar este registro? Se puede recuperar del menú de Comandos."
|
||||
|
||||
#. js-lingui-id: rnCqBK
|
||||
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
|
||||
msgid "Are you sure? Your current information will not be saved."
|
||||
msgstr ""
|
||||
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
msgstr "¿Está seguro de que desea eliminar este registro? Se puede recuperar del menú de Comandos ({osControlSymbol} + K)."
|
||||
|
||||
#. js-lingui-id: nYD/Cq
|
||||
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
|
||||
@@ -721,18 +685,10 @@ msgstr "Sincronización del calendario"
|
||||
msgid "Calendars"
|
||||
msgstr "Calendarios"
|
||||
|
||||
#. js-lingui-id: msssZq
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Can't change API names for standard objects"
|
||||
msgstr "No se pueden cambiar los nombres de la API para los objetos estándar"
|
||||
|
||||
#. js-lingui-id: dEgA5A
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
@@ -839,11 +795,6 @@ msgstr "Cerrar"
|
||||
msgid "Close command menu"
|
||||
msgstr "Cerrar menú de comandos"
|
||||
|
||||
#. js-lingui-id: EWPtMO
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
msgid "Code"
|
||||
msgstr "Código"
|
||||
|
||||
#. js-lingui-id: H86f9p
|
||||
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
|
||||
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
|
||||
@@ -856,11 +807,6 @@ msgstr "Colapsar"
|
||||
msgid "Color code"
|
||||
msgstr "Código de color"
|
||||
|
||||
#. js-lingui-id: 93hd3e
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
msgid "Columns not matched:"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NM9bMd
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
msgid "Compact view"
|
||||
@@ -892,7 +838,6 @@ msgid "Configure your emails and calendar settings."
|
||||
msgstr "Configura tus correos electrónicos y calendario."
|
||||
|
||||
#. js-lingui-id: 7VpPHA
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentConfirmationModal.tsx
|
||||
msgid "Confirm"
|
||||
msgstr "Confirmar"
|
||||
@@ -938,8 +883,6 @@ msgstr "Contexto"
|
||||
#: src/pages/onboarding/CreateWorkspace.tsx
|
||||
#: src/pages/onboarding/CreateProfile.tsx
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx
|
||||
msgid "Continue"
|
||||
msgstr "Continuar"
|
||||
@@ -1004,11 +947,6 @@ msgstr "Copie esta clave ya que no será visible de nuevo"
|
||||
msgid "Core"
|
||||
msgstr "Núcleo"
|
||||
|
||||
#. js-lingui-id: w5Stxm
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Correct the issues and fill the missing data."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wBMjJ2
|
||||
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterMenuContent.tsx
|
||||
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx
|
||||
@@ -1130,7 +1068,6 @@ msgstr "Dominio personalizado actualizado"
|
||||
|
||||
#. js-lingui-id: 8skTDV
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "Custom objects"
|
||||
msgstr "Objetos personalizados"
|
||||
|
||||
@@ -1443,11 +1380,6 @@ msgstr "Mostrar como fecha relativa"
|
||||
msgid "Display text on multiple lines"
|
||||
msgstr "Mostrar texto en varias líneas"
|
||||
|
||||
#. js-lingui-id: ji7sqw
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/TemplateColumn.tsx
|
||||
msgid "Do not import"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: U9q4zF
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid "Doesn't contain"
|
||||
@@ -1491,11 +1423,6 @@ msgstr "No sincronizar correos electrónicos de team@ support@ noreply@..."
|
||||
msgid "Download file"
|
||||
msgstr "Descargar archivo"
|
||||
|
||||
#. js-lingui-id: 6D/BnN
|
||||
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
|
||||
msgid "Drop file here..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KIjvtr
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
msgid "Dutch"
|
||||
@@ -1553,7 +1480,6 @@ msgstr "Edite el nombre de su subdominio o establezca un dominio personalizado."
|
||||
#: src/pages/settings/SettingsWorkspaceMembers.tsx
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/auth/PasswordReset.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentTableHeader.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
msgid "Email"
|
||||
@@ -1571,7 +1497,6 @@ msgstr "El correo electrónico no puede estar vacío"
|
||||
|
||||
#. js-lingui-id: lfQsvW
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "Email integration"
|
||||
msgstr "Integración de correo electrónico"
|
||||
|
||||
@@ -1781,21 +1706,11 @@ msgstr "Excluir las siguientes personas y dominios de mi sincronización de corr
|
||||
msgid "Existing objects"
|
||||
msgstr "Objetos existentes"
|
||||
|
||||
#. js-lingui-id: ydzS9x
|
||||
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
|
||||
msgid "Exit"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LFNXuj
|
||||
#: src/modules/ui/layout/fullscreen/components/FullScreenContainer.tsx
|
||||
msgid "Exit Full Screen"
|
||||
msgstr "Salir de pantalla completa"
|
||||
|
||||
#. js-lingui-id: XB4onr
|
||||
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
|
||||
msgid "Exit import flow"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: IZ4o2e
|
||||
#: src/modules/navigation/components/AppNavigationDrawer.tsx
|
||||
msgid "Exit Settings"
|
||||
@@ -1981,11 +1896,6 @@ msgstr "Filtro"
|
||||
msgid "Filters"
|
||||
msgstr "Filtros"
|
||||
|
||||
#. js-lingui-id: SNdnlf
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Finish flow with errors"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: USZ2N6
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
msgid "Finnish"
|
||||
@@ -2034,7 +1944,6 @@ msgstr "de anual a mensual"
|
||||
|
||||
#. js-lingui-id: scmRyR
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "Full access"
|
||||
msgstr "Acceso total"
|
||||
|
||||
@@ -2072,24 +1981,11 @@ msgstr "Obtenga su suscripción"
|
||||
msgid "Global"
|
||||
msgstr "Global"
|
||||
|
||||
#. js-lingui-id: iS69s6
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
msgid "Go to runs"
|
||||
msgstr "Ir a ejecuciones"
|
||||
|
||||
#. js-lingui-id: mT57+Q
|
||||
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
|
||||
msgid "Go to Settings"
|
||||
msgstr "Ir a Configuración"
|
||||
|
||||
#. js-lingui-id: A5WHZY
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
|
||||
msgid "Go to workflows"
|
||||
msgstr "Ir a flujos de trabajo"
|
||||
|
||||
#. js-lingui-id: hWp1MY
|
||||
#: src/pages/settings/SettingsWorkspace.tsx
|
||||
msgid "Grant Twenty support temporary access to your workspace so we can troubleshoot problems or recover content on your behalf. You can revoke access at any time."
|
||||
@@ -2149,34 +2045,6 @@ msgstr "Campos Ocultos"
|
||||
msgid "Hide"
|
||||
msgstr "Ocultar"
|
||||
|
||||
#. js-lingui-id: OlbYor
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
|
||||
msgid "Hide deleted"
|
||||
msgstr "Ocultar eliminado"
|
||||
|
||||
#. js-lingui-id: FHhlye
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
|
||||
msgid "Hide deleted records"
|
||||
msgstr "Ocultar registros eliminados"
|
||||
|
||||
#. js-lingui-id: 0dZtKR
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
msgid "Hide deleted runs"
|
||||
msgstr "Ocultar ejecuciones eliminadas"
|
||||
|
||||
#. js-lingui-id: Jc6FrI
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
msgid "Hide deleted versions"
|
||||
msgstr "Ocultar versiones eliminadas"
|
||||
|
||||
#. js-lingui-id: aOZAIB
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
msgid "Hide deleted workflows"
|
||||
msgstr "Ocultar flujos de trabajo eliminados"
|
||||
|
||||
#. js-lingui-id: HS8BG/
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupsContent.tsx
|
||||
msgid "Hide empty groups"
|
||||
@@ -2584,8 +2452,8 @@ msgstr "Cerrar sesión"
|
||||
|
||||
#. js-lingui-id: nOhz3x
|
||||
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
|
||||
msgid "Logout"
|
||||
msgstr "Cerrar sesión"
|
||||
#~ msgid "Logout"
|
||||
#~ msgstr "Logout"
|
||||
|
||||
#. js-lingui-id: PTozs8
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
@@ -2629,16 +2497,6 @@ msgstr "Gestione su suscripción"
|
||||
msgid "Mark as done"
|
||||
msgstr "Marcar como hecho"
|
||||
|
||||
#. js-lingui-id: 7h8ch8
|
||||
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
|
||||
msgid "Match columns"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gDLior
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
msgid "Match Columns"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: CK1KXz
|
||||
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
|
||||
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
|
||||
@@ -2867,12 +2725,6 @@ msgstr "Nuevo proveedor SSO"
|
||||
#~ msgid "New Webhook"
|
||||
#~ msgstr "New Webhook"
|
||||
|
||||
#. js-lingui-id: AxNmtI
|
||||
#: src/modules/spreadsheet-import/steps/components/SelectSheetStep/SelectSheetStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
msgid "Next Step"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OTe3RI
|
||||
#: src/pages/settings/workspace/SettingsDomain.tsx
|
||||
msgid "No change detected"
|
||||
@@ -2888,16 +2740,6 @@ msgstr "No hay cuenta conectada"
|
||||
msgid "No country"
|
||||
msgstr "Sin país"
|
||||
|
||||
#. js-lingui-id: pxvJ9B
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "No data containing errors"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: dihZwh
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "No data found"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UwvrGq
|
||||
#: src/pages/settings/SettingsWorkspaceMembers.tsx
|
||||
msgid "No members"
|
||||
@@ -2954,11 +2796,6 @@ msgstr "No se encontraron registros"
|
||||
#~ msgid "No Result"
|
||||
#~ msgstr "No Result"
|
||||
|
||||
#. js-lingui-id: Ev2r9A
|
||||
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
|
||||
msgid "No results"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: MA3x23
|
||||
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentWorkspaceMemberPickerDropdownContent.tsx
|
||||
msgid "No Results"
|
||||
@@ -2991,11 +2828,6 @@ msgstr "Ninguno"
|
||||
msgid "Norwegian"
|
||||
msgstr "Noruego"
|
||||
|
||||
#. js-lingui-id: v3W9iu
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
msgid "Not all columns matched"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0qBE9S
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx
|
||||
@@ -3291,11 +3123,6 @@ msgstr "Vista previa"
|
||||
msgid "Privacy Policy"
|
||||
msgstr "Política de privacidad"
|
||||
|
||||
#. js-lingui-id: k1ifdL
|
||||
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
|
||||
msgid "Processing..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vERlcd
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
@@ -3409,7 +3236,6 @@ msgstr "Recargar"
|
||||
|
||||
#. js-lingui-id: t/YqKh
|
||||
#: src/modules/ui/input/components/ImageInput.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Remove"
|
||||
msgstr "Eliminar"
|
||||
|
||||
@@ -3483,15 +3309,10 @@ msgid "Restore records"
|
||||
msgstr "Restaurar registros"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/command-menu/hooks/useCommandMenuSearchRecords.tsx
|
||||
#: src/modules/command-menu/hooks/useSearchRecords.tsx
|
||||
msgid "Results"
|
||||
msgstr "Resultados"
|
||||
|
||||
#. js-lingui-id: BohSvm
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Review your import"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 5dJK4M
|
||||
#: src/pages/settings/roles/SettingsRoles.tsx
|
||||
#: src/pages/settings/roles/SettingsRoles.tsx
|
||||
@@ -3532,7 +3353,6 @@ msgstr "Esquema"
|
||||
#. js-lingui-id: A1taO8
|
||||
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownWorkspacesListComponents.tsx
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentWorkspaceMemberPickerDropdown.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/navigation/components/MainNavigationDrawerItems.tsx
|
||||
#: src/modules/command-menu/hooks/useOpenRecordsSearchPageInCommandMenu.ts
|
||||
@@ -3580,7 +3400,6 @@ msgstr "Buscar un índice..."
|
||||
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupFieldsContent.tsx
|
||||
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx
|
||||
#: src/modules/object-record/advanced-filter/components/AdvancedFilterFieldSelectSearchInput.tsx
|
||||
msgid "Search fields"
|
||||
msgstr "Buscar campos"
|
||||
|
||||
@@ -3643,19 +3462,11 @@ msgstr "Ver workflows eliminados"
|
||||
#. js-lingui-id: OpPn5Z
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
msgid "See runs"
|
||||
msgstr "Ver ejecuciones"
|
||||
|
||||
#. js-lingui-id: gGEfj/
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
msgid "See version"
|
||||
msgstr "Ver versión"
|
||||
|
||||
#. js-lingui-id: EtyY4+
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
@@ -3668,52 +3479,12 @@ msgstr "Ver versiones"
|
||||
msgid "See versions history"
|
||||
msgstr "Ver historial de versiones"
|
||||
|
||||
#. js-lingui-id: qEKLJV
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
msgid "See workflow"
|
||||
msgstr "Ver flujo de trabajo"
|
||||
|
||||
#. js-lingui-id: XThiR2
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
|
||||
msgid "See workflows"
|
||||
msgstr "Ver flujos de trabajo"
|
||||
|
||||
#. js-lingui-id: WZvt/6
|
||||
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
|
||||
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
|
||||
msgid "Select Action"
|
||||
msgstr "Seleccionar acción"
|
||||
|
||||
#. js-lingui-id: hVPa4O
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/UnmatchColumn.tsx
|
||||
msgid "Select an option"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 21YIUv
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/TemplateColumn.tsx
|
||||
msgid "Select column..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: J6WI1B
|
||||
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
|
||||
msgid "Select file"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ljSvAs
|
||||
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
|
||||
msgid "Select header row"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mWHn81
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
msgid "Select the correct field for each column you'd like to import."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: pofGCP
|
||||
#: src/modules/settings/data-model/fields/forms/boolean/components/SettingsDataModelFieldBooleanForm.tsx
|
||||
msgid "Select the default value for this boolean field"
|
||||
@@ -3724,11 +3495,6 @@ msgstr "Selecciona el valor predeterminado para este campo booleano"
|
||||
msgid "Select the events you wish to send to this endpoint"
|
||||
msgstr "Selecciona los eventos que deseas enviar a este endpoint"
|
||||
|
||||
#. js-lingui-id: +xn1pe
|
||||
#: src/modules/spreadsheet-import/steps/components/SelectSheetStep/SelectSheetStep.tsx
|
||||
msgid "Select the sheet to use"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AXTJAW
|
||||
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
|
||||
msgid "Select your preferred language"
|
||||
@@ -3833,16 +3599,6 @@ msgstr "¿Debería cambiar también el nombre de la API al cambiar la etiqueta d
|
||||
msgid "Should changing an object's label also change the API?"
|
||||
msgstr "¿Debería cambiar también el nombre de la API al cambiar la etiqueta de un objeto?"
|
||||
|
||||
#. js-lingui-id: qi+g0a
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Show only rows with errors"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: MHlGJL
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Show unmatched columns"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: uVg8dY
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutOpenInContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
@@ -3901,11 +3657,6 @@ msgstr "Español"
|
||||
msgid "SSO"
|
||||
msgstr "SSO"
|
||||
|
||||
#. js-lingui-id: vlvAkg
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "SSO (SAML / OIDC)"
|
||||
msgstr "SSO (SAML / OIDC)"
|
||||
|
||||
#. js-lingui-id: ErU1td
|
||||
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
|
||||
msgid "Stages"
|
||||
@@ -3959,11 +3710,6 @@ msgstr "El asunto y los metadatos se compartirán con tu equipo."
|
||||
msgid "Subject, body and attachments will be shared with your team."
|
||||
msgstr "El asunto, el cuerpo y los archivos adjuntos se compartirán con tu equipo."
|
||||
|
||||
#. js-lingui-id: hQRttt
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Submit"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: B5jRKH
|
||||
#: src/pages/settings/SettingsBilling.tsx
|
||||
msgid "Subscription has been switched {to}"
|
||||
@@ -4000,11 +3746,6 @@ msgstr "Cambiar {to}"
|
||||
msgid "Switch billing {to}"
|
||||
msgstr "Cambiar facturación {to}"
|
||||
|
||||
#. js-lingui-id: lz+f/E
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "Switch to {alternatePlanName}"
|
||||
msgstr "Cambiar a {alternatePlanName}"
|
||||
|
||||
#. js-lingui-id: 5TRY4+
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
|
||||
msgid "Sync failed"
|
||||
@@ -4145,16 +3886,6 @@ msgstr "Tema"
|
||||
msgid "Theme "
|
||||
msgstr "Tema "
|
||||
|
||||
#. js-lingui-id: /cSDOy
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
msgid "There are required columns that are not matched or ignored. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: luL9RX
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ynfkhb
|
||||
#: src/pages/auth/PasswordReset.tsx
|
||||
msgid "There was an error while updating password."
|
||||
@@ -4298,7 +4029,6 @@ msgstr "Error desconocido"
|
||||
|
||||
#. js-lingui-id: GQCXQS
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "Unlimited contacts"
|
||||
msgstr "Contactos ilimitados"
|
||||
|
||||
@@ -4312,13 +4042,7 @@ msgstr "Actualizado"
|
||||
msgid "Upload"
|
||||
msgstr "Subir"
|
||||
|
||||
#. js-lingui-id: 7OP1Xi
|
||||
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
|
||||
msgid "Upload .xlsx, .xls or .csv file"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2IXDgU
|
||||
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
msgid "Upload file"
|
||||
msgstr "Subir archivo"
|
||||
@@ -4395,11 +4119,6 @@ msgstr "El usuario no ha iniciado sesión"
|
||||
#~ msgid "Users"
|
||||
#~ msgstr "Users"
|
||||
|
||||
#. js-lingui-id: MGeZsN
|
||||
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
|
||||
msgid "Validate data"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: fXVIZq
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
|
||||
@@ -4614,11 +4333,6 @@ msgstr "Escribe un secreto"
|
||||
msgid "yes"
|
||||
msgstr "sí"
|
||||
|
||||
#. js-lingui-id: qsAug0
|
||||
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
|
||||
msgid "You are already importing this column."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: MFDARJ
|
||||
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
|
||||
msgid "You are not allowed to create records for this object"
|
||||
|
||||
@@ -87,11 +87,6 @@ msgstr "{aggregateLabel} {fieldLabel} määrä"
|
||||
msgid "{apiKeyName} API Key"
|
||||
msgstr "{apiKeyName} API-avain"
|
||||
|
||||
#. js-lingui-id: zi5SHH
|
||||
#: src/modules/object-record/record-index/components/RecordIndexPageHeader.tsx
|
||||
msgid "{contextStoreNumberOfSelectedRecords} selected"
|
||||
msgstr "{contextStoreNumberOfSelectedRecords} valittuna"
|
||||
|
||||
#. js-lingui-id: 6j5rE1
|
||||
#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx
|
||||
#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx
|
||||
@@ -105,8 +100,8 @@ msgstr "{workspaceMemberName} poistetaan seuraavasta roolista:"
|
||||
|
||||
#. js-lingui-id: YT0WJ4
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#~ msgid "1 000 workflow node executions"
|
||||
#~ msgstr "1 000 workflow node executions"
|
||||
msgid "1 000 workflow node executions"
|
||||
msgstr "1 000 työnkulun solmun suoritusta"
|
||||
|
||||
#. js-lingui-id: vb5TwV
|
||||
#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldSelect.tsx
|
||||
@@ -119,11 +114,6 @@ msgstr "1. Valitse kenttätyyppi"
|
||||
msgid "1. Type"
|
||||
msgstr "1. Kirjoita"
|
||||
|
||||
#. js-lingui-id: AvXug3
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "10 000 workflow node executions"
|
||||
msgstr "10 000 työnkulun solmun suoritusta"
|
||||
|
||||
#. js-lingui-id: 4EdXYs
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "12h ({hour12Label})"
|
||||
@@ -140,11 +130,6 @@ msgstr "2. Määritä"
|
||||
msgid "2. Configure field"
|
||||
msgstr "2. Määritä kenttä"
|
||||
|
||||
#. js-lingui-id: kAtmAv
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "20 000 workflow node executions"
|
||||
msgstr "20 000 työnkulun solmun suoritusta"
|
||||
|
||||
#. js-lingui-id: QsMprd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "24h ({hour24Label})"
|
||||
@@ -201,11 +186,6 @@ msgstr "Tilin poistaminen"
|
||||
msgid "Accounts"
|
||||
msgstr "Tilit"
|
||||
|
||||
#. js-lingui-id: bwRvnp
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
msgid "Action"
|
||||
msgstr "Toiminto"
|
||||
|
||||
#. js-lingui-id: 7L01XJ
|
||||
#: src/modules/settings/roles/role-permissions/components/RolePermissionsSettingsTableHeader.tsx
|
||||
#: src/modules/settings/roles/role-permissions/components/RolePermissionsObjectsTableHeader.tsx
|
||||
@@ -252,7 +232,7 @@ msgid "Add Approved Access Domain"
|
||||
msgstr "Lisää Hyväksytty Pääsytunnusalue"
|
||||
|
||||
#. js-lingui-id: DpV70M
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionForm.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
|
||||
msgid "Add Field"
|
||||
msgstr "Lisää kenttä"
|
||||
@@ -453,7 +433,6 @@ msgstr "Rajapinta"
|
||||
|
||||
#. js-lingui-id: 0RqpZr
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "API & Webhooks"
|
||||
msgstr "API & Webhooks"
|
||||
|
||||
@@ -537,28 +516,13 @@ msgstr "Oletko varma, että haluat muuttaa laskutusväliäsi?"
|
||||
|
||||
#. js-lingui-id: 8Y3Jbl
|
||||
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
|
||||
#~ msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
#~ msgstr "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
|
||||
#. js-lingui-id: 2BZAqa
|
||||
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
|
||||
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu."
|
||||
msgstr "Haluatko varmasti poistaa nämä tietueet? Ne voidaan palauttaa Komento-valikosta."
|
||||
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
msgstr "Haluatko varmasti poistaa nämä tietueet? Ne voidaan palauttaa komento-valikosta ({osControlSymbol} + K)."
|
||||
|
||||
#. js-lingui-id: Se0vJw
|
||||
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
|
||||
#~ msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
#~ msgstr "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
|
||||
#. js-lingui-id: yb2hF4
|
||||
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
|
||||
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu."
|
||||
msgstr "Haluatko varmasti poistaa tämän tietueen? Se voidaan palauttaa komento-valikosta."
|
||||
|
||||
#. js-lingui-id: rnCqBK
|
||||
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
|
||||
msgid "Are you sure? Your current information will not be saved."
|
||||
msgstr ""
|
||||
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
msgstr "Haluatko varmasti poistaa tämän tietueen? Se voidaan palauttaa komento-valikosta ({osControlSymbol} + K)."
|
||||
|
||||
#. js-lingui-id: nYD/Cq
|
||||
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
|
||||
@@ -721,18 +685,10 @@ msgstr "Kalenterin synkronointi"
|
||||
msgid "Calendars"
|
||||
msgstr "Kalenterit"
|
||||
|
||||
#. js-lingui-id: msssZq
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Can't change API names for standard objects"
|
||||
msgstr "API-nimiä ei voi muuttaa vakio-objekteille"
|
||||
|
||||
#. js-lingui-id: dEgA5A
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
msgid "Cancel"
|
||||
msgstr "Peruuta"
|
||||
@@ -839,11 +795,6 @@ msgstr "Sulje"
|
||||
msgid "Close command menu"
|
||||
msgstr "Sulje komento-valikko"
|
||||
|
||||
#. js-lingui-id: EWPtMO
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
msgid "Code"
|
||||
msgstr "Koodi"
|
||||
|
||||
#. js-lingui-id: H86f9p
|
||||
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
|
||||
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
|
||||
@@ -856,11 +807,6 @@ msgstr "Sulje"
|
||||
msgid "Color code"
|
||||
msgstr "Värikoodi"
|
||||
|
||||
#. js-lingui-id: 93hd3e
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
msgid "Columns not matched:"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NM9bMd
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
msgid "Compact view"
|
||||
@@ -892,7 +838,6 @@ msgid "Configure your emails and calendar settings."
|
||||
msgstr "Määritä sähköpostisi ja kalenterin asetukset."
|
||||
|
||||
#. js-lingui-id: 7VpPHA
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentConfirmationModal.tsx
|
||||
msgid "Confirm"
|
||||
msgstr "Vahvista"
|
||||
@@ -938,8 +883,6 @@ msgstr "Yhteys"
|
||||
#: src/pages/onboarding/CreateWorkspace.tsx
|
||||
#: src/pages/onboarding/CreateProfile.tsx
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx
|
||||
msgid "Continue"
|
||||
msgstr "Jatka"
|
||||
@@ -1004,11 +947,6 @@ msgstr "Kopioi tämä avain, sillä se ei ole enää nähtävissä"
|
||||
msgid "Core"
|
||||
msgstr "Ydin"
|
||||
|
||||
#. js-lingui-id: w5Stxm
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Correct the issues and fill the missing data."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wBMjJ2
|
||||
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterMenuContent.tsx
|
||||
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx
|
||||
@@ -1130,7 +1068,6 @@ msgstr "Mukautettu verkkotunnus päivitetty"
|
||||
|
||||
#. js-lingui-id: 8skTDV
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "Custom objects"
|
||||
msgstr "Mukautetut objektit"
|
||||
|
||||
@@ -1443,11 +1380,6 @@ msgstr "N\\u00e4yt\\u00e4 suhteellisena p\\u00e4iv\\u00e4m\\u00e4\\u00e4r\\u00e4
|
||||
msgid "Display text on multiple lines"
|
||||
msgstr "Näytä teksti useammalla rivillä"
|
||||
|
||||
#. js-lingui-id: ji7sqw
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/TemplateColumn.tsx
|
||||
msgid "Do not import"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: U9q4zF
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid "Doesn't contain"
|
||||
@@ -1491,11 +1423,6 @@ msgstr "Älä synkronoi sähköposteja osoitteista team@ support@ noreply@..."
|
||||
msgid "Download file"
|
||||
msgstr "Lataa tiedosto"
|
||||
|
||||
#. js-lingui-id: 6D/BnN
|
||||
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
|
||||
msgid "Drop file here..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KIjvtr
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
msgid "Dutch"
|
||||
@@ -1553,7 +1480,6 @@ msgstr "Muokkaa alasivustosi nime\\u00e4 tai aseta mukautettu verkkotunnus."
|
||||
#: src/pages/settings/SettingsWorkspaceMembers.tsx
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/auth/PasswordReset.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentTableHeader.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
msgid "Email"
|
||||
@@ -1571,7 +1497,6 @@ msgstr "Sähköpostiosoite ei voi olla tyhjä"
|
||||
|
||||
#. js-lingui-id: lfQsvW
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "Email integration"
|
||||
msgstr "S\\u00e4hk\\u00f6posti-integraatio"
|
||||
|
||||
@@ -1781,21 +1706,11 @@ msgstr "Pois sulje seuraavat henkilöt ja verkkotunnukset sähköpostisynkronoin
|
||||
msgid "Existing objects"
|
||||
msgstr "Olemassa olevat objektit"
|
||||
|
||||
#. js-lingui-id: ydzS9x
|
||||
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
|
||||
msgid "Exit"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LFNXuj
|
||||
#: src/modules/ui/layout/fullscreen/components/FullScreenContainer.tsx
|
||||
msgid "Exit Full Screen"
|
||||
msgstr "Poistu koko näytöstä"
|
||||
|
||||
#. js-lingui-id: XB4onr
|
||||
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
|
||||
msgid "Exit import flow"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: IZ4o2e
|
||||
#: src/modules/navigation/components/AppNavigationDrawer.tsx
|
||||
msgid "Exit Settings"
|
||||
@@ -1981,11 +1896,6 @@ msgstr "Suodata"
|
||||
msgid "Filters"
|
||||
msgstr "Suodattimet"
|
||||
|
||||
#. js-lingui-id: SNdnlf
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Finish flow with errors"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: USZ2N6
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
msgid "Finnish"
|
||||
@@ -2034,7 +1944,6 @@ msgstr "vuosittaisesta kuukausittaiseen"
|
||||
|
||||
#. js-lingui-id: scmRyR
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "Full access"
|
||||
msgstr "Täysi pääsy"
|
||||
|
||||
@@ -2072,24 +1981,11 @@ msgstr "Hanki tilaus"
|
||||
msgid "Global"
|
||||
msgstr "Globaali"
|
||||
|
||||
#. js-lingui-id: iS69s6
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
msgid "Go to runs"
|
||||
msgstr "Siirry suorittamaan"
|
||||
|
||||
#. js-lingui-id: mT57+Q
|
||||
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
|
||||
msgid "Go to Settings"
|
||||
msgstr "Siirry asetuksiin"
|
||||
|
||||
#. js-lingui-id: A5WHZY
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
|
||||
msgid "Go to workflows"
|
||||
msgstr "Siirry työnkulkuihin"
|
||||
|
||||
#. js-lingui-id: hWp1MY
|
||||
#: src/pages/settings/SettingsWorkspace.tsx
|
||||
msgid "Grant Twenty support temporary access to your workspace so we can troubleshoot problems or recover content on your behalf. You can revoke access at any time."
|
||||
@@ -2149,34 +2045,6 @@ msgstr "Piilotetut kentät"
|
||||
msgid "Hide"
|
||||
msgstr "Piilota"
|
||||
|
||||
#. js-lingui-id: OlbYor
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
|
||||
msgid "Hide deleted"
|
||||
msgstr "Piilota poistetut"
|
||||
|
||||
#. js-lingui-id: FHhlye
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
|
||||
msgid "Hide deleted records"
|
||||
msgstr "Piilota poistetut tietueet"
|
||||
|
||||
#. js-lingui-id: 0dZtKR
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
msgid "Hide deleted runs"
|
||||
msgstr "Piilota poistetut suoritukset"
|
||||
|
||||
#. js-lingui-id: Jc6FrI
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
msgid "Hide deleted versions"
|
||||
msgstr "Piilota poistetut versiot"
|
||||
|
||||
#. js-lingui-id: aOZAIB
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
msgid "Hide deleted workflows"
|
||||
msgstr "Piilota poistetut työnkulut"
|
||||
|
||||
#. js-lingui-id: HS8BG/
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupsContent.tsx
|
||||
msgid "Hide empty groups"
|
||||
@@ -2584,8 +2452,8 @@ msgstr "Kirjaudu ulos"
|
||||
|
||||
#. js-lingui-id: nOhz3x
|
||||
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
|
||||
msgid "Logout"
|
||||
msgstr "Kirjaudu ulos"
|
||||
#~ msgid "Logout"
|
||||
#~ msgstr "Logout"
|
||||
|
||||
#. js-lingui-id: PTozs8
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
@@ -2629,16 +2497,6 @@ msgstr "Hallitse tilaustasi"
|
||||
msgid "Mark as done"
|
||||
msgstr "Merkitse tehdyksi"
|
||||
|
||||
#. js-lingui-id: 7h8ch8
|
||||
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
|
||||
msgid "Match columns"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gDLior
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
msgid "Match Columns"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: CK1KXz
|
||||
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
|
||||
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
|
||||
@@ -2867,12 +2725,6 @@ msgstr "Uusi SSO-tarjoaja"
|
||||
#~ msgid "New Webhook"
|
||||
#~ msgstr "New Webhook"
|
||||
|
||||
#. js-lingui-id: AxNmtI
|
||||
#: src/modules/spreadsheet-import/steps/components/SelectSheetStep/SelectSheetStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
msgid "Next Step"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OTe3RI
|
||||
#: src/pages/settings/workspace/SettingsDomain.tsx
|
||||
msgid "No change detected"
|
||||
@@ -2888,16 +2740,6 @@ msgstr "Ei yhdistettyä käyttäjätiliä"
|
||||
msgid "No country"
|
||||
msgstr "Ei maata"
|
||||
|
||||
#. js-lingui-id: pxvJ9B
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "No data containing errors"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: dihZwh
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "No data found"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UwvrGq
|
||||
#: src/pages/settings/SettingsWorkspaceMembers.tsx
|
||||
msgid "No members"
|
||||
@@ -2954,11 +2796,6 @@ msgstr "Ei tietueita löydetty"
|
||||
#~ msgid "No Result"
|
||||
#~ msgstr "No Result"
|
||||
|
||||
#. js-lingui-id: Ev2r9A
|
||||
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
|
||||
msgid "No results"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: MA3x23
|
||||
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentWorkspaceMemberPickerDropdownContent.tsx
|
||||
msgid "No Results"
|
||||
@@ -2991,11 +2828,6 @@ msgstr "Ei mitään"
|
||||
msgid "Norwegian"
|
||||
msgstr "Norja"
|
||||
|
||||
#. js-lingui-id: v3W9iu
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
msgid "Not all columns matched"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0qBE9S
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx
|
||||
@@ -3291,11 +3123,6 @@ msgstr "Esikatselu"
|
||||
msgid "Privacy Policy"
|
||||
msgstr "Tietosuojakäytäntö"
|
||||
|
||||
#. js-lingui-id: k1ifdL
|
||||
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
|
||||
msgid "Processing..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vERlcd
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
@@ -3409,7 +3236,6 @@ msgstr "Lataa uudelleen"
|
||||
|
||||
#. js-lingui-id: t/YqKh
|
||||
#: src/modules/ui/input/components/ImageInput.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Remove"
|
||||
msgstr "Poista"
|
||||
|
||||
@@ -3483,15 +3309,10 @@ msgid "Restore records"
|
||||
msgstr "Palauta tietueet"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/command-menu/hooks/useCommandMenuSearchRecords.tsx
|
||||
#: src/modules/command-menu/hooks/useSearchRecords.tsx
|
||||
msgid "Results"
|
||||
msgstr "Tulokset"
|
||||
|
||||
#. js-lingui-id: BohSvm
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Review your import"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 5dJK4M
|
||||
#: src/pages/settings/roles/SettingsRoles.tsx
|
||||
#: src/pages/settings/roles/SettingsRoles.tsx
|
||||
@@ -3532,7 +3353,6 @@ msgstr "Skeema"
|
||||
#. js-lingui-id: A1taO8
|
||||
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownWorkspacesListComponents.tsx
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentWorkspaceMemberPickerDropdown.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/navigation/components/MainNavigationDrawerItems.tsx
|
||||
#: src/modules/command-menu/hooks/useOpenRecordsSearchPageInCommandMenu.ts
|
||||
@@ -3580,7 +3400,6 @@ msgstr "Etsi indeksi..."
|
||||
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupFieldsContent.tsx
|
||||
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx
|
||||
#: src/modules/object-record/advanced-filter/components/AdvancedFilterFieldSelectSearchInput.tsx
|
||||
msgid "Search fields"
|
||||
msgstr "Etsi kenttiä"
|
||||
|
||||
@@ -3643,19 +3462,11 @@ msgstr "Näytä poistetut työnkulut"
|
||||
#. js-lingui-id: OpPn5Z
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
msgid "See runs"
|
||||
msgstr "Näytä suoritukset"
|
||||
|
||||
#. js-lingui-id: gGEfj/
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
msgid "See version"
|
||||
msgstr "Näytä versio"
|
||||
|
||||
#. js-lingui-id: EtyY4+
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
|
||||
@@ -3668,52 +3479,12 @@ msgstr "Näytä versiot"
|
||||
msgid "See versions history"
|
||||
msgstr "Näytä versiohistoria"
|
||||
|
||||
#. js-lingui-id: qEKLJV
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
msgid "See workflow"
|
||||
msgstr "Näytä työnkulku"
|
||||
|
||||
#. js-lingui-id: XThiR2
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
|
||||
msgid "See workflows"
|
||||
msgstr "Näytä työnkulut"
|
||||
|
||||
#. js-lingui-id: WZvt/6
|
||||
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
|
||||
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
|
||||
msgid "Select Action"
|
||||
msgstr "Valitse toiminto"
|
||||
|
||||
#. js-lingui-id: hVPa4O
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/UnmatchColumn.tsx
|
||||
msgid "Select an option"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 21YIUv
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/TemplateColumn.tsx
|
||||
msgid "Select column..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: J6WI1B
|
||||
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
|
||||
msgid "Select file"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ljSvAs
|
||||
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
|
||||
msgid "Select header row"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mWHn81
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
msgid "Select the correct field for each column you'd like to import."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: pofGCP
|
||||
#: src/modules/settings/data-model/fields/forms/boolean/components/SettingsDataModelFieldBooleanForm.tsx
|
||||
msgid "Select the default value for this boolean field"
|
||||
@@ -3724,11 +3495,6 @@ msgstr "Valitse tämän loogisen kentän oletusarvo"
|
||||
msgid "Select the events you wish to send to this endpoint"
|
||||
msgstr "Valitse tapahtumat, jotka haluat lähettää tähän päätepisteeseen"
|
||||
|
||||
#. js-lingui-id: +xn1pe
|
||||
#: src/modules/spreadsheet-import/steps/components/SelectSheetStep/SelectSheetStep.tsx
|
||||
msgid "Select the sheet to use"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AXTJAW
|
||||
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
|
||||
msgid "Select your preferred language"
|
||||
@@ -3833,16 +3599,6 @@ msgstr "Pitäisikö kentän nimen muutoksen vaikuttaa myös API-nimeen?"
|
||||
msgid "Should changing an object's label also change the API?"
|
||||
msgstr "Pitäisikö objektin nimilapun muuttaminen vaihtaa myös APIa?"
|
||||
|
||||
#. js-lingui-id: qi+g0a
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Show only rows with errors"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: MHlGJL
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Show unmatched columns"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: uVg8dY
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutOpenInContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
@@ -3901,11 +3657,6 @@ msgstr "Espanja"
|
||||
msgid "SSO"
|
||||
msgstr "Kertakirjautuminen"
|
||||
|
||||
#. js-lingui-id: vlvAkg
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "SSO (SAML / OIDC)"
|
||||
msgstr "SSO (SAML / OIDC)"
|
||||
|
||||
#. js-lingui-id: ErU1td
|
||||
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
|
||||
msgid "Stages"
|
||||
@@ -3959,11 +3710,6 @@ msgstr "Aihe ja metatiedot jaetaan tiimisi kanssa."
|
||||
msgid "Subject, body and attachments will be shared with your team."
|
||||
msgstr "Aihe, runko ja liitteet jaetaan tiimisi kanssa."
|
||||
|
||||
#. js-lingui-id: hQRttt
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Submit"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: B5jRKH
|
||||
#: src/pages/settings/SettingsBilling.tsx
|
||||
msgid "Subscription has been switched {to}"
|
||||
@@ -4000,11 +3746,6 @@ msgstr "Vaihda {to}"
|
||||
msgid "Switch billing {to}"
|
||||
msgstr "Vaihda laskutus {to}"
|
||||
|
||||
#. js-lingui-id: lz+f/E
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "Switch to {alternatePlanName}"
|
||||
msgstr "Vaihda {alternatePlanName}"
|
||||
|
||||
#. js-lingui-id: 5TRY4+
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
|
||||
msgid "Sync failed"
|
||||
@@ -4145,16 +3886,6 @@ msgstr "Teema"
|
||||
msgid "Theme "
|
||||
msgstr "Teema "
|
||||
|
||||
#. js-lingui-id: /cSDOy
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
msgid "There are required columns that are not matched or ignored. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: luL9RX
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ynfkhb
|
||||
#: src/pages/auth/PasswordReset.tsx
|
||||
msgid "There was an error while updating password."
|
||||
@@ -4298,7 +4029,6 @@ msgstr "Tuntematon virhe"
|
||||
|
||||
#. js-lingui-id: GQCXQS
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "Unlimited contacts"
|
||||
msgstr "Rajattomat yhteystiedot"
|
||||
|
||||
@@ -4312,13 +4042,7 @@ msgstr "Päivitetty"
|
||||
msgid "Upload"
|
||||
msgstr "Lataa"
|
||||
|
||||
#. js-lingui-id: 7OP1Xi
|
||||
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
|
||||
msgid "Upload .xlsx, .xls or .csv file"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2IXDgU
|
||||
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
msgid "Upload file"
|
||||
msgstr "Lataa tiedosto"
|
||||
@@ -4395,11 +4119,6 @@ msgstr "Käyttäjä ei ole kirjautunut sisään"
|
||||
#~ msgid "Users"
|
||||
#~ msgstr "Users"
|
||||
|
||||
#. js-lingui-id: MGeZsN
|
||||
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
|
||||
msgid "Validate data"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: fXVIZq
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
|
||||
@@ -4614,11 +4333,6 @@ msgstr "Kirjoita salaisuus"
|
||||
msgid "yes"
|
||||
msgstr "kyllä"
|
||||
|
||||
#. js-lingui-id: qsAug0
|
||||
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
|
||||
msgid "You are already importing this column."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: MFDARJ
|
||||
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
|
||||
msgid "You are not allowed to create records for this object"
|
||||
|
||||
@@ -87,11 +87,6 @@ msgstr "{aggregateLabel} de {fieldLabel}"
|
||||
msgid "{apiKeyName} API Key"
|
||||
msgstr "{apiKeyName} Clé API"
|
||||
|
||||
#. js-lingui-id: zi5SHH
|
||||
#: src/modules/object-record/record-index/components/RecordIndexPageHeader.tsx
|
||||
msgid "{contextStoreNumberOfSelectedRecords} selected"
|
||||
msgstr "{contextStoreNumberOfSelectedRecords} sélectionné(s)"
|
||||
|
||||
#. js-lingui-id: 6j5rE1
|
||||
#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx
|
||||
#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx
|
||||
@@ -105,8 +100,8 @@ msgstr "{workspaceMemberName} sera retiré du rôle suivant :"
|
||||
|
||||
#. js-lingui-id: YT0WJ4
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#~ msgid "1 000 workflow node executions"
|
||||
#~ msgstr "1 000 workflow node executions"
|
||||
msgid "1 000 workflow node executions"
|
||||
msgstr "1 000 exécutions de nœuds de workflow"
|
||||
|
||||
#. js-lingui-id: vb5TwV
|
||||
#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldSelect.tsx
|
||||
@@ -119,11 +114,6 @@ msgstr "1. Sélectionnez un type de champ"
|
||||
msgid "1. Type"
|
||||
msgstr "1. Type"
|
||||
|
||||
#. js-lingui-id: AvXug3
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "10 000 workflow node executions"
|
||||
msgstr "10 000 exécutions de nœuds de workflow"
|
||||
|
||||
#. js-lingui-id: 4EdXYs
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "12h ({hour12Label})"
|
||||
@@ -140,11 +130,6 @@ msgstr "2. Configurer"
|
||||
msgid "2. Configure field"
|
||||
msgstr "2. Configurer le champ"
|
||||
|
||||
#. js-lingui-id: kAtmAv
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "20 000 workflow node executions"
|
||||
msgstr "20 000 exécutions de nœuds de workflow"
|
||||
|
||||
#. js-lingui-id: QsMprd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "24h ({hour24Label})"
|
||||
@@ -201,11 +186,6 @@ msgstr "Suppression de compte"
|
||||
msgid "Accounts"
|
||||
msgstr "Comptes"
|
||||
|
||||
#. js-lingui-id: bwRvnp
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
msgid "Action"
|
||||
msgstr "Action"
|
||||
|
||||
#. js-lingui-id: 7L01XJ
|
||||
#: src/modules/settings/roles/role-permissions/components/RolePermissionsSettingsTableHeader.tsx
|
||||
#: src/modules/settings/roles/role-permissions/components/RolePermissionsObjectsTableHeader.tsx
|
||||
@@ -252,7 +232,7 @@ msgid "Add Approved Access Domain"
|
||||
msgstr "Ajouter un domaine d'accès approuvé"
|
||||
|
||||
#. js-lingui-id: DpV70M
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionForm.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
|
||||
msgid "Add Field"
|
||||
msgstr "Ajouter un champ"
|
||||
@@ -453,7 +433,6 @@ msgstr "API"
|
||||
|
||||
#. js-lingui-id: 0RqpZr
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
#: src/pages/onboarding/ChooseYourPlan.tsx
|
||||
msgid "API & Webhooks"
|
||||
msgstr "API & Webhooks"
|
||||
|
||||
@@ -537,28 +516,13 @@ msgstr "Êtes-vous sûr de vouloir modifier votre intervalle de facturation ?"
|
||||
|
||||
#. js-lingui-id: 8Y3Jbl
|
||||
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
|
||||
#~ msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
#~ msgstr "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
|
||||
#. js-lingui-id: 2BZAqa
|
||||
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
|
||||
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu."
|
||||
msgstr "Êtes-vous sûr de vouloir supprimer ces enregistrements ? Ils peuvent être récupérés depuis le menu Commande."
|
||||
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
msgstr "Êtes-vous sûr de vouloir supprimer ces enregistrements ? Ils peuvent être récupérés depuis le menu Commande ({osControlSymbol} + K)."
|
||||
|
||||
#. js-lingui-id: Se0vJw
|
||||
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
|
||||
#~ msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
#~ msgstr "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
|
||||
|
||||
#. js-lingui-id: yb2hF4
|
||||
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
|
||||
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu."
|
||||
msgstr "Êtes-vous sûr de vouloir supprimer cet enregistrement | ||||