Compare commits

..
5 Commits
Author SHA1 Message Date
Paul Rastoinandprastoin a771216f6e Fix field currency form settings (#11948)
# Introduction
Close #11947 

From my understanding this `singleQuote` manipulation is legacy due to
front preparing sql queries in some way.

We might wanna standardize this behavior for each `CURRENCIES` usage,
such as within the `ObjectFilterDropdownCurrencySelect` that does not
send nor expect singled quoted encapsulated currencies values.

Created core-team-issues tech issue
https://github.com/twentyhq/core-team-issues/issues/941


## Field creation variables
```json
{
  "input": {
    "field": {
      "defaultValue": {
        "amountMicros": null,
        "currencyCode": "'BYN'"
      },
      "description": "",
      "icon": "IconMoneybag",
      "label": "Maquito",
      "name": "maquito",
      "isLabelSyncedWithName": true,
      "objectMetadataId": "6ef5da20-cf03-49b5-81fe-73aa2c9856a9",
      "type": "CURRENCY"
    }
  }
}
```

## Filtering variables
```json
{
  "filter": {
    "test": {
      "currencyCode": {
        "in": [
          "ALL",
          "AED",
          "AFN",
          "ANG"
        ]
      }
    }
  },
  "orderBy": [
    {
      "position": "AscNullsFirst"
    }
  ]
}
```
2025-05-09 11:10:24 +02:00
Etienneandetiennejouan fe371eb4c4 fix on field relation preview (#11926)
To reproduce : 
Modify object destination to an object with a 'simple' field as
labelIdentifier from data model settings, during creation of a relation
field from an object which has a composite field as labelIdentifier +
Relation type 'has many'

Fix : 
fieldValue and fieldDefinition does not update at the same time (when
object destination is modified) in RelationToManyFieldDisplay component.
Need to better define recordId to be sure fieldValue doesn't point on
previous record.

Tested : 
Relation field creation from Person with switch on relationType and
objectDestination (company/workspaceMember)
Relation field creation from Company with switch on relationType and
objectDestination (pet/person)
closes https://github.com/twentyhq/twenty/issues/11826
2025-05-07 17:10:41 +02:00
Guillimandguillim 1db92ce662 Critical email sync bug (#11885)
Removing the upsert to avoid the ON CONFLICT
2025-05-06 11:22:09 +02:00
prastoin 6bb0212a70 fix(server): upgrade command 2025-05-05 16:48:10 +02:00
Etienneandetiennejouan 4a543a0e0a fix relation creation bug (#11848)
Context : In `RelationToOneFieldDisplay`, the `objectNameSingular` used
for the chip calculation was incorrect - it was using the value from the
opposite side of the relationship. Then, labelIdentifier based on
composite fields were causing errors (People and WorkspaceMembers with
name)


<img width="300" alt="Screenshot 2025-05-03 at 08 03 46"
src="https://github.com/user-attachments/assets/8d034700-5244-4b1b-978e-f77ae78b6ceb"
/>


Tested everywhere FieldDisplay is used. 
Tested for each both relation type. 

closes https://github.com/twentyhq/twenty/issues/11826
2025-05-03 08:57:53 +02:00
1858 changed files with 20418 additions and 49102 deletions
-33
View File
@@ -1,33 +0,0 @@
---
description: Guidelines and best practices for working with Nx in the Twenty workspace, including workspace architecture understanding, configuration management, and generator usage.
globs:
alwaysApply: false
---
// This file is automatically generated by Nx Console
You are in an nx workspace using Nx 18.3.3 and yarn as the package manager.
You have access to the Nx MCP server and the tools it provides. Use them. Follow these guidelines in order to best help the user:
# General Guidelines
- When answering questions, use the nx_workspace tool first to gain an understanding of the workspace architecture
- For questions around nx configuration, best practices or if you're unsure, use the nx_docs tool to get relevant, up-to-date docs!! Always use this instead of assuming things about nx configuration
- If the user needs help with an Nx configuration or project graph error, use the 'nx_workspace' tool to get any errors
- To help answer questions about the workspace structure or simply help with demonstrating how tasks depend on each other, use the 'nx_visualize_graph' tool
# Generation Guidelines
If the user wants to generate something, use the following flow:
- learn about the nx workspace and any specifics the user needs by using the 'nx_workspace' tool and the 'nx_project_details' tool if applicable
- get the available generators using the 'nx_generators' tool
- decide which generator to use. If no generators seem relevant, check the 'nx_available_plugins' tool to see if the user could install a plugin to help them
- get generator details using the 'nx_generator_schema' tool
- you may use the 'nx_docs' tool to learn more about a specific generator or technology if you're unsure
- decide which options to provide in order to best complete the user's request. Don't make any assumptions and keep the options minimalistic
- open the generator UI using the 'nx_open_generate_ui' tool
- wait for the user to finish the generator
- read the generator log file using the 'nx_read_generator_log' tool
- use the information provided in the log file to answer the user's question or continue with what they were doing
@@ -84,7 +84,7 @@ Twenty uses a combination of Recoil for global state and Apollo Client for serve
`;
export const GET_USER = gql`
query GetUser($id: UUID!) {
query GetUser($id: ID!) {
user(id: $id) {
...UserFields
}
+1 -1
View File
@@ -39,7 +39,7 @@ jobs:
run: npx nx build twenty-chrome-extension
ci-chrome-extension-status-check:
if: always() && !cancelled()
timeout-minutes: 5
timeout-minutes: 1
runs-on: ubuntu-latest
needs: [changed-files-check, chrome-extension-build]
steps:
+1 -1
View File
@@ -124,7 +124,7 @@ jobs:
retention-days: 30
ci-e2e-status-check:
if: always() && !cancelled()
timeout-minutes: 5
timeout-minutes: 1
runs-on: ubuntu-latest
needs: [changed-files-check, test]
steps:
+1 -1
View File
@@ -53,7 +53,7 @@ jobs:
kill $SERVER_PID
ci-emails-status-check:
if: always() && !cancelled()
timeout-minutes: 5
timeout-minutes: 1
runs-on: depot-ubuntu-24.04-8
needs: [changed-files-check, emails-test]
steps:
+1 -1
View File
@@ -189,7 +189,7 @@ jobs:
key: ${{ steps.restore-task-cache.outputs.cache-primary-key }}
ci-front-status-check:
if: always() && !cancelled()
timeout-minutes: 5
timeout-minutes: 1
runs-on: depot-ubuntu-24.04-8
needs:
[
+1 -1
View File
@@ -232,7 +232,7 @@ jobs:
path: reset-logs.log
ci-server-status-check:
if: always() && !cancelled()
timeout-minutes: 5
timeout-minutes: 1
runs-on: depot-ubuntu-24.04-8
needs: [changed-files-check, server-setup, server-test, server-integration-test]
steps:
+1 -1
View File
@@ -44,7 +44,7 @@ jobs:
tasks: ${{ matrix.task }}
ci-shared-status-check:
if: always() && !cancelled()
timeout-minutes: 5
timeout-minutes: 1
runs-on: ubuntu-latest
needs: [changed-files-check, shared-test]
steps:
@@ -84,7 +84,7 @@ jobs:
working-directory: ./packages/twenty-docker/
ci-test-docker-compose-status-check:
if: always() && !cancelled()
timeout-minutes: 5
timeout-minutes: 1
runs-on: ubuntu-latest
needs: [changed-files-check, test]
steps:
+1 -1
View File
@@ -62,7 +62,7 @@ jobs:
NEXT_PUBLIC_KEYSTATIC_GITHUB_APP_SLUG: xxx
ci-website-status-check:
if: always() && !cancelled()
timeout-minutes: 5
timeout-minutes: 10
runs-on: ubuntu-latest
needs: [changed-files-check, website-build]
steps:
+19 -12
View File
@@ -6,24 +6,31 @@ on:
# and not checking out or running any code from the external contributor's PR
pull_request_target:
types: [opened, synchronize, reopened, labeled]
paths:
- packages/twenty-docker/**
- packages/twenty-server/**
- packages/twenty-front/**
- .github/workflows/preview-env-dispatch.yaml
- .github/workflows/preview-env-keepalive.yaml
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: write
actions: write
pull-requests: read
jobs:
changed-files-check:
uses: ./.github/workflows/changed-files.yaml
with:
files: |
.github/workflows/preview-env-dispatch.yaml
.github/workflows/preview-env-keepalive.yaml
packages/twenty-docker/**
docker-compose.yml
packages/twenty-server/**
packages/twenty-front/**
trigger-preview:
permissions:
contents: write
actions: write
pull-requests: read
if: github.event.action == 'opened' || github.event.action == 'synchronize' || github.event.action == 'reopened' || (github.event.action == 'labeled' && github.event.label.name == 'preview-app')
needs: changed-files-check
if: needs.changed-files-check.outputs.any_changed == 'true' || contains(github.event.pull_request.labels.*.name, 'preview')
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
@@ -33,4 +40,4 @@ jobs:
token: ${{ secrets.GITHUB_TOKEN }}
repository: ${{ github.repository }}
event-type: preview-environment
client-payload: '{"pr_number": "${{ github.event.pull_request.number }}", "pr_head_sha": "${{ github.event.pull_request.head.sha }}", "repo_full_name": "${{ github.repository }}"}'
client-payload: '{"pr_number": "${{ github.event.pull_request.number }}", "pr_head_sha": "${{ github.event.pull_request.head.sha }}", "repo_full_name": "${{ github.repository }}"}'
+5 -14
View File
@@ -33,7 +33,9 @@ jobs:
echo "# === Randomly generated secrets ===" >> packages/twenty-docker/.env
echo "APP_SECRET=$(openssl rand -base64 32)" >> packages/twenty-docker/.env
echo "PG_DATABASE_PASSWORD=$(openssl rand -hex 16)" >> packages/twenty-docker/.env
echo "SIGN_IN_PREFILLED=true" >> packages/twenty-docker/.env
# Remove line below when true becomes the default value (soon)
echo "CONFIG_VARIABLES_IN_DB_ENABLED=true" >> packages/twenty-docker/.env
echo "Docker compose build..."
cd packages/twenty-docker/
docker compose build
@@ -78,18 +80,7 @@ jobs:
echo "All services are up and running!"
working-directory: ./
- name: Seed Dev Workspace
run: |
cd packages/twenty-docker/
echo "Seeding full dev workspace..."
if ! docker compose exec -T server yarn command:prod -- workspace:seed:dev; then
echo "❌ Seeding full dev workspace failed. Dumping server logs..."
docker compose logs server
exit 1
fi
working-directory: ./
- name: Output tunnel URL to logs
run: |
echo "✅ Preview Environment Ready!"
@@ -147,4 +138,4 @@ jobs:
run: |
cd packages/twenty-docker/
docker compose down -v
working-directory: ./
working-directory: ./
+5 -5
View File
@@ -1,12 +1,12 @@
postgres-on-docker:
docker run -d \
--name twenty_pg \
-e POSTGRES_USER=postgres \
-e POSTGRES_PASSWORD=postgres \
-e PGUSER_SUPERUSER=postgres \
-e PGPASSWORD_SUPERUSER=postgres \
-e ALLOW_NOSSL=true \
-v twenty_db_data:/var/lib/postgresql/data \
-v twenty_db_data:/home/postgres/pgdata \
-p 5432:5432 \
postgres:16
twentycrm/twenty-postgres-spilo:latest
@echo "Waiting for PostgreSQL to be ready..."
@until docker exec twenty_pg psql -U postgres -d postgres \
-c 'SELECT pg_is_in_recovery();' 2>/dev/null | grep -q 'f'; do \
@@ -20,4 +20,4 @@ redis-on-docker:
docker run -d --name twenty_redis -p 6379:6379 redis/redis-stack-server:latest
clickhouse-on-docker:
docker run -d --name twenty_clickhouse -p 8123:8123 -p 9000:9000 -e CLICKHOUSE_PASSWORD=clickhousePassword clickhouse/clickhouse-server:latest \
docker run -d --name twenty_clickhouse -p 8123:8123 -p 9000:9000 -e CLICKHOUSE_PASSWORD=devPassword clickhouse/clickhouse-server:latest
+3 -2
View File
@@ -1,6 +1,7 @@
{
"private": true,
"dependencies": {
"@air/react-drag-to-select": "^5.0.8",
"@apollo/client": "^3.7.17",
"@apollo/server": "^4.7.3",
"@aws-sdk/client-lambda": "^3.614.0",
@@ -93,7 +94,6 @@
"facepaint": "^1.2.1",
"file-type": "16.5.4",
"framer-motion": "^11.18.0",
"fuse.js": "^7.1.0",
"googleapis": "105",
"graphiql": "^3.1.1",
"graphql": "16.8.0",
@@ -191,6 +191,7 @@
"tsup": "^8.2.4",
"type-fest": "4.10.1",
"typescript": "5.3.3",
"use-context-selector": "^2.0.0",
"use-debounce": "^10.0.0",
"uuid": "^9.0.0",
"vite-tsconfig-paths": "^4.2.1",
@@ -338,7 +339,7 @@
"ts-node": "10.9.1",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.17.0",
"vite": "^6.3.5",
"vite": "^5.4.0",
"vite-plugin-checker": "^0.6.2",
"vite-plugin-dts": "3.8.1",
"vite-plugin-svgr": "^4.2.0",
+20 -4
View File
@@ -1,10 +1,22 @@
name: twenty
services:
change-vol-ownership:
image: ubuntu
user: root
volumes:
- server-local-data:/tmp/server-local-data
- docker-data:/tmp/docker-data
command: >
bash -c "
chown -R 1000:1000 /tmp/server-local-data
&& chown -R 1000:1000 /tmp/docker-data"
server:
image: twentycrm/twenty:${TAG:-latest}
volumes:
- server-local-data:/app/packages/twenty-server/.local-storage
- server-local-data:/app/packages/twenty-server/${STORAGE_LOCAL_PATH:-.local-storage}
- docker-data:/app/docker-data
ports:
- "3000:3000"
environment:
@@ -19,6 +31,7 @@ services:
STORAGE_S3_ENDPOINT: ${STORAGE_S3_ENDPOINT}
APP_SECRET: ${APP_SECRET:-replace_me_with_a_random_string}
# MESSAGING_PROVIDER_GMAIL_ENABLED: ${MESSAGING_PROVIDER_GMAIL_ENABLED}
# CALENDAR_PROVIDER_GOOGLE_ENABLED: ${CALENDAR_PROVIDER_GOOGLE_ENABLED}
# AUTH_GOOGLE_CLIENT_ID: ${AUTH_GOOGLE_CLIENT_ID}
@@ -44,13 +57,15 @@ services:
# EMAIL_SMTP_PASSWORD: ${EMAIL_SMTP_PASSWORD:-}
depends_on:
change-vol-ownership:
condition: service_completed_successfully
db:
condition: service_healthy
healthcheck:
test: curl --fail http://localhost:3000/healthz
interval: 5s
timeout: 5s
retries: 20
retries: 10
restart: always
worker:
@@ -70,6 +85,7 @@ services:
STORAGE_S3_ENDPOINT: ${STORAGE_S3_ENDPOINT}
APP_SECRET: ${APP_SECRET:-replace_me_with_a_random_string}
# MESSAGING_PROVIDER_GMAIL_ENABLED: ${MESSAGING_PROVIDER_GMAIL_ENABLED}
# CALENDAR_PROVIDER_GOOGLE_ENABLED: ${CALENDAR_PROVIDER_GOOGLE_ENABLED}
# AUTH_GOOGLE_CLIENT_ID: ${AUTH_GOOGLE_CLIENT_ID}
@@ -93,7 +109,7 @@ services:
# EMAIL_SMTP_PORT: ${EMAIL_SMTP_PORT:-465}
# EMAIL_SMTP_USER: ${EMAIL_SMTP_USER:-}
# EMAIL_SMTP_PASSWORD: ${EMAIL_SMTP_PASSWORD:-}
depends_on:
db:
condition: service_healthy
@@ -118,8 +134,8 @@ services:
redis:
image: redis
restart: always
command: ["--maxmemory-policy", "noeviction"]
volumes:
docker-data:
db-data:
server-local-data:
@@ -25,10 +25,9 @@ spec:
- name: redis
image: redis/redis-stack-server:latest
imagePullPolicy: Always
args: ["--maxmemory-policy", "noeviction"]
env:
- name: PORT
value: "6379"
value: 6379
ports:
- containerPort: 6379
name: redis
@@ -7,14 +7,13 @@ services:
environment:
POSTGRES_DB: twenty
POSTGRES_USER: twenty
POSTGRES_PASSWORD: ${PG_DATABASE_PASSWORD}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
volumes:
- twenty-db-data:/var/lib/postgresql/data:Z
redis:
container_name: twenty-redis
image: redis:latest
command: ["--maxmemory-policy", "noeviction"]
volumes:
- twenty-redis-data:/data:Z
@@ -24,7 +23,7 @@ services:
environment:
NODE_PORT: "3000"
SERVER_URL: ${SERVER_URL}
PG_DATABASE_URL: "postgresql://twenty:${PG_DATABASE_PASSWORD}@twenty-db:5432/twenty"
PG_DATABASE_URL: "postgresql://twenty:${POSTGRES_PASSWORD}@twenty-db:5432/twenty"
REDIS_URL: "redis://twenty-redis:6379"
APP_SECRET: ${APP_SECRET}
NODE_ENV: production
@@ -40,7 +39,7 @@ services:
command: yarn worker:prod
environment:
SERVER_URL: ${SERVER_URL}
PG_DATABASE_URL: "postgresql://twenty:${PG_DATABASE_PASSWORD}@twenty-db:5432/twenty"
PG_DATABASE_URL: "postgresql://twenty:${POSTGRES_PASSWORD}@twenty-db:5432/twenty"
REDIS_URL: "redis://twenty-redis:6379"
APP_SECRET: ${APP_SECRET}
DISABLE_DB_MIGRATIONS: "true"
+2 -2
View File
@@ -77,8 +77,8 @@ COPY --chown=1000 --from=twenty-front-build /app/packages/twenty-front/build /ap
LABEL org.opencontainers.image.source=https://github.com/twentyhq/twenty
LABEL org.opencontainers.image.description="This image provides a consistent and reproducible environment for the backend and frontend, ensuring it deploys faster and runs the same way regardless of the deployment environment."
RUN mkdir -p /app/.local-storage /app/packages/twenty-server/.local-storage && \
chown -R 1000:1000 /app
RUN mkdir /app/.local-storage
RUN chown -R 1000 /app
# Use non root user with uid 1000
USER 1000
+14 -20
View File
@@ -1,34 +1,28 @@
#!/bin/sh
set -e
setup_and_migrate_db() {
if [ "${DISABLE_DB_MIGRATIONS}" = "true" ]; then
echo "Database setup and migrations are disabled, skipping..."
return
fi
# Check if the initialization has already been done and that we enabled automatic migration
if [ "${DISABLE_DB_MIGRATIONS}" != "true" ] && [ ! -f /app/docker-data/db_status ]; then
echo "Running database setup and migrations..."
# Creating the database if it doesn't exist
PGUSER=$(echo $PG_DATABASE_URL | awk -F '//' '{print $2}' | awk -F ':' '{print $1}')
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}\""
# Creating the database if it doesn't exist
db_count=$(PGPASSWORD=${PGPASS} psql -h ${PGHOST} -p ${PGPORT} -U ${PGUSER} -d postgres -tAc "SELECT COUNT(*) FROM pg_database WHERE datname = '${PGDATABASE}'")
if [ "$db_count" = "0" ]; then
echo "Database ${PGDATABASE} does not exist, creating..."
PGPASSWORD=${PGPASS} psql -h ${PGHOST} -p ${PGPORT} -U ${PGUSER} -d postgres -c "CREATE DATABASE \"${PGDATABASE}\""
# Run setup and migration scripts
NODE_OPTIONS="--max-old-space-size=1500" tsx ./scripts/setup-db.ts
yarn database:migrate:prod
fi
# Run setup and migration scripts
NODE_OPTIONS="--max-old-space-size=1500" tsx ./scripts/setup-db.ts
yarn database:migrate:prod
yarn command:prod upgrade
echo "Successfully migrated DB!"
}
setup_and_migrate_db
# Mark initialization as done
echo "Successfuly migrated DB!"
touch /app/docker-data/db_status
fi
# Continue with the original Docker command
exec "$@"
+1 -1
View File
@@ -2,5 +2,5 @@
FRONTEND_BASE_URL=http://localhost:3001
BACKEND_BASE_URL=http://localhost:3000
DEFAULT_LOGIN=tim@apple.dev
DEFAULT_PASSWORD=tim@apple.dev
DEFAULT_PASSWORD=Applecar2025
WEBSITE_URL=https://twenty.com
@@ -19,7 +19,7 @@ export const deleteWorkflow = async ({
operationName: 'DeleteOneWorkflow',
variables: { idToDelete: workflowId },
query:
'mutation DeleteOneWorkflow($idToDelete: UUID!) {\n deleteWorkflow(id: $idToDelete) {\n __typename\n deletedAt\n id\n }\n}',
'mutation DeleteOneWorkflow($idToDelete: ID!) {\n deleteWorkflow(id: $idToDelete) {\n __typename\n deletedAt\n id\n }\n}',
},
});
};
@@ -19,7 +19,7 @@ export const destroyWorkflow = async ({
operationName: 'DestroyOneWorkflow',
variables: { idToDestroy: workflowId },
query:
'mutation DestroyOneWorkflow($idToDestroy: UUID!) {\n destroyWorkflow(id: $idToDestroy) {\n id\n __typename\n }\n}',
'mutation DestroyOneWorkflow($idToDestroy: ID!) {\n destroyWorkflow(id: $idToDestroy) {\n id\n __typename\n }\n}',
},
});
};
@@ -57,7 +57,8 @@ test('The workflow run visualizer shows the executed draft version without the l
);
});
test('Workflow Runs with a pending form step can be opened in the side panel and then in full screen', async ({
// FIXME: Documented bug. See https://github.com/twentyhq/core-team-issues/issues/921
test.fail('Workflow Runs with a pending form step can be opened in the side panel and then in full screen', async ({
workflowVisualizer,
page,
}) => {
@@ -7,7 +7,7 @@ const logoStyle = {
export const Logo = () => {
return (
<Img
src="https://app.twenty.com/images/icons/windows11/Square150x150Logo.scale-100.png"
src="https://app.twenty.com/icons/windows11/Square150x150Logo.scale-100.png"
alt="Twenty logo"
width="40"
height="40"
+1 -6
View File
@@ -7,7 +7,6 @@ import { useDarkMode } from 'storybook-dark-mode';
import { RootDecorator } from '../src/testing/decorators/RootDecorator';
import { mockedUserJWT } from '../src/testing/mock-data/jwt';
import { ClickOutsideListenerContext } from '@/ui/utilities/pointer-event/contexts/ClickOutsideListenerContext';
import 'react-loading-skeleton/dist/skeleton.css';
import 'twenty-ui/style.css';
import { THEME_DARK, THEME_LIGHT, ThemeContextProvider } from 'twenty-ui/theme';
@@ -47,11 +46,7 @@ const preview: Preview = {
return (
<ThemeProvider theme={theme}>
<ThemeContextProvider theme={theme}>
<ClickOutsideListenerContext.Provider
value={{ excludedClickOutsideId: undefined }}
>
<Story />
</ClickOutsideListenerContext.Provider>
<Story />
</ThemeContextProvider>
</ThemeProvider>
);
@@ -1,5 +1,3 @@
process.env.NODE_TLS_REJECT_UNAUTHORIZED = '0';
module.exports = {
schema:
(process.env.REACT_APP_SERVER_BASE_URL ?? 'http://localhost:3000') +
-2
View File
@@ -1,5 +1,3 @@
process.env.NODE_TLS_REJECT_UNAUTHORIZED = '0';
module.exports = {
schema:
(process.env.REACT_APP_SERVER_BASE_URL ?? 'http://localhost:3000') +
+4 -5
View File
@@ -3,9 +3,9 @@
"private": true,
"type": "module",
"scripts": {
"build": "VITE_DISABLE_TYPESCRIPT_CHECKER=true VITE_DISABLE_ESLINT_CHECKER=true NODE_OPTIONS=--max-old-space-size=8192 npx vite build && sh ./scripts/inject-runtime-env.sh",
"build:sourcemaps": "VITE_BUILD_SOURCEMAP=true VITE_DISABLE_TYPESCRIPT_CHECKER=true VITE_DISABLE_ESLINT_CHECKER=true NODE_OPTIONS=--max-old-space-size=8192 npx vite build && sh ./scripts/inject-runtime-env.sh",
"start:prod": "NODE_ENV=production npx serve -s build",
"build": "VITE_DISABLE_TYPESCRIPT_CHECKER=true VITE_DISABLE_ESLINT_CHECKER=true NODE_OPTIONS=--max-old-space-size=4500 npx vite build && sh ./scripts/inject-runtime-env.sh",
"build:sourcemaps": "VITE_BUILD_SOURCEMAP=true VITE_DISABLE_TYPESCRIPT_CHECKER=true VITE_DISABLE_ESLINT_CHECKER=true NODE_OPTIONS=--max-old-space-size=7000 npx vite build && sh ./scripts/inject-runtime-env.sh",
"start:prod": "NODE_ENV=production npx vite --host",
"tsup": "npx tsup"
},
"engines": {
@@ -82,7 +82,6 @@
"eslint-plugin-storybook": "^0.6.15",
"eslint-plugin-unicorn": "^51.0.1",
"eslint-plugin-unused-imports": "^3.0.0",
"optionator": "^0.9.1",
"rollup-plugin-visualizer": "^5.14.0"
"optionator": "^0.9.1"
}
}
@@ -309,7 +309,6 @@ export type ClientConfig = {
defaultSubdomain?: Maybe<Scalars['String']['output']>;
frontDomain: Scalars['String']['output'];
isAttachmentPreviewEnabled: Scalars['Boolean']['output'];
isConfigVariablesInDbEnabled: Scalars['Boolean']['output'];
isEmailVerificationRequired: Scalars['Boolean']['output'];
isGoogleCalendarEnabled: Scalars['Boolean']['output'];
isGoogleMessagingEnabled: Scalars['Boolean']['output'];
@@ -327,32 +326,14 @@ export type ComputeStepOutputSchemaInput = {
step: Scalars['JSON']['input'];
};
export enum ConfigSource {
DATABASE = 'DATABASE',
DEFAULT = 'DEFAULT',
ENVIRONMENT = 'ENVIRONMENT'
}
export type ConfigVariable = {
__typename?: 'ConfigVariable';
description: Scalars['String']['output'];
isEnvOnly: Scalars['Boolean']['output'];
isSensitive: Scalars['Boolean']['output'];
name: Scalars['String']['output'];
options?: Maybe<Scalars['JSON']['output']>;
source: ConfigSource;
type: ConfigVariableType;
value?: Maybe<Scalars['JSON']['output']>;
value: Scalars['String']['output'];
};
export enum ConfigVariableType {
ARRAY = 'ARRAY',
BOOLEAN = 'BOOLEAN',
ENUM = 'ENUM',
NUMBER = 'NUMBER',
STRING = 'STRING'
}
export enum ConfigVariablesGroup {
AnalyticsConfig = 'AnalyticsConfig',
BillingConfig = 'BillingConfig',
@@ -591,15 +572,6 @@ export type DeleteWorkflowVersionStepInput = {
workflowVersionId: Scalars['String']['input'];
};
export type DeletedWorkspaceMember = {
__typename?: 'DeletedWorkspaceMember';
avatarUrl?: Maybe<Scalars['String']['output']>;
id: Scalars['UUID']['output'];
name: FullName;
userEmail: Scalars['String']['output'];
userWorkspaceId?: Maybe<Scalars['String']['output']>;
};
/** Schema update on a table */
export enum DistantTableUpdate {
COLUMNS_ADDED = 'COLUMNS_ADDED',
@@ -653,9 +625,13 @@ export type FeatureFlagDto = {
export enum FeatureFlagKey {
IsAirtableIntegrationEnabled = 'IsAirtableIntegrationEnabled',
IsAnalyticsV2Enabled = 'IsAnalyticsV2Enabled',
IsApprovedAccessDomainsEnabled = 'IsApprovedAccessDomainsEnabled',
IsCopilotEnabled = 'IsCopilotEnabled',
IsCustomDomainEnabled = 'IsCustomDomainEnabled',
IsEventObjectEnabled = 'IsEventObjectEnabled',
IsJsonFilterEnabled = 'IsJsonFilterEnabled',
IsNewRelationEnabled = 'IsNewRelationEnabled',
IsPermissionsV2Enabled = 'IsPermissionsV2Enabled',
IsPostgreSQLIntegrationEnabled = 'IsPostgreSQLIntegrationEnabled',
IsStripeIntegrationEnabled = 'IsStripeIntegrationEnabled',
@@ -812,6 +788,17 @@ export enum HealthIndicatorId {
worker = 'worker'
}
export type IdFilter = {
eq?: InputMaybe<Scalars['ID']['input']>;
gt?: InputMaybe<Scalars['ID']['input']>;
gte?: InputMaybe<Scalars['ID']['input']>;
in?: InputMaybe<Array<Scalars['ID']['input']>>;
is?: InputMaybe<FilterIs>;
lt?: InputMaybe<Scalars['ID']['input']>;
lte?: InputMaybe<Scalars['ID']['input']>;
neq?: InputMaybe<Scalars['ID']['input']>;
};
export enum IdentityProviderType {
OIDC = 'OIDC',
SAML = 'SAML'
@@ -957,10 +944,8 @@ export type Mutation = {
checkoutSession: BillingSessionOutput;
computeStepOutputSchema: Scalars['JSON']['output'];
createApprovedAccessDomain: ApprovedAccessDomain;
createDatabaseConfigVariable: Scalars['Boolean']['output'];
createDraftFromWorkflowVersion: WorkflowVersion;
createOIDCIdentityProvider: SetupSsoOutput;
createObjectEvent: Analytics;
createOneAppToken: AppToken;
createOneField: Field;
createOneObject: Object;
@@ -973,7 +958,6 @@ export type Mutation = {
deactivateWorkflowVersion: Scalars['Boolean']['output'];
deleteApprovedAccessDomain: Scalars['Boolean']['output'];
deleteCurrentWorkspace: Workspace;
deleteDatabaseConfigVariable: Scalars['Boolean']['output'];
deleteOneField: Field;
deleteOneObject: Object;
deleteOneRelation: RelationMetadata;
@@ -1010,9 +994,9 @@ export type Mutation = {
switchToYearlyInterval: BillingUpdateOutput;
syncRemoteTable: RemoteTable;
syncRemoteTableSchemaChanges: RemoteTable;
track: Analytics;
trackAnalytics: Analytics;
unsyncRemoteTable: RemoteTable;
updateDatabaseConfigVariable: Scalars['Boolean']['output'];
updateLabPublicFeatureFlag: FeatureFlagDto;
updateOneField: Field;
updateOneObject: Object;
@@ -1025,10 +1009,10 @@ export type Mutation = {
updateWorkspace: Workspace;
updateWorkspaceFeatureFlag: Scalars['Boolean']['output'];
updateWorkspaceMemberRole: WorkspaceMember;
uploadFile: SignedFileDto;
uploadImage: SignedFileDto;
uploadProfilePicture: SignedFileDto;
uploadWorkspaceLogo: SignedFileDto;
uploadFile: Scalars['String']['output'];
uploadImage: Scalars['String']['output'];
uploadProfilePicture: Scalars['String']['output'];
uploadWorkspaceLogo: Scalars['String']['output'];
upsertObjectPermissions: Array<ObjectPermission>;
upsertSettingPermissions: Array<SettingPermission>;
userLookupAdminPanel: UserLookup;
@@ -1071,12 +1055,6 @@ export type MutationCreateApprovedAccessDomainArgs = {
};
export type MutationCreateDatabaseConfigVariableArgs = {
key: Scalars['String']['input'];
value: Scalars['JSON']['input'];
};
export type MutationCreateDraftFromWorkflowVersionArgs = {
input: CreateDraftFromWorkflowVersionInput;
};
@@ -1087,14 +1065,6 @@ export type MutationCreateOidcIdentityProviderArgs = {
};
export type MutationCreateObjectEventArgs = {
event: Scalars['String']['input'];
objectMetadataId: Scalars['String']['input'];
properties?: InputMaybe<Scalars['JSON']['input']>;
recordId: Scalars['String']['input'];
};
export type MutationCreateOneAppTokenArgs = {
input: CreateOneAppTokenInput;
};
@@ -1150,11 +1120,6 @@ export type MutationDeleteApprovedAccessDomainArgs = {
};
export type MutationDeleteDatabaseConfigVariableArgs = {
key: Scalars['String']['input'];
};
export type MutationDeleteOneFieldArgs = {
input: DeleteOneFieldInput;
};
@@ -1224,7 +1189,6 @@ export type MutationGenerateApiKeyTokenArgs = {
export type MutationGetAuthTokensFromLoginTokenArgs = {
loginToken: Scalars['String']['input'];
origin: Scalars['String']['input'];
};
@@ -1236,16 +1200,13 @@ export type MutationGetAuthorizationUrlForSsoArgs = {
export type MutationGetLoginTokenFromCredentialsArgs = {
captchaToken?: InputMaybe<Scalars['String']['input']>;
email: Scalars['String']['input'];
origin: Scalars['String']['input'];
password: Scalars['String']['input'];
};
export type MutationGetLoginTokenFromEmailVerificationTokenArgs = {
captchaToken?: InputMaybe<Scalars['String']['input']>;
email: Scalars['String']['input'];
emailVerificationToken: Scalars['String']['input'];
origin: Scalars['String']['input'];
};
@@ -1267,7 +1228,6 @@ export type MutationRenewTokenArgs = {
export type MutationResendEmailVerificationTokenArgs = {
email: Scalars['String']['input'];
origin: Scalars['String']['input'];
};
@@ -1312,6 +1272,12 @@ export type MutationSyncRemoteTableSchemaChangesArgs = {
};
export type MutationTrackArgs = {
action: Scalars['String']['input'];
payload: Scalars['JSON']['input'];
};
export type MutationTrackAnalyticsArgs = {
event?: InputMaybe<Scalars['String']['input']>;
name?: InputMaybe<Scalars['String']['input']>;
@@ -1325,12 +1291,6 @@ export type MutationUnsyncRemoteTableArgs = {
};
export type MutationUpdateDatabaseConfigVariableArgs = {
key: Scalars['String']['input'];
value: Scalars['JSON']['input'];
};
export type MutationUpdateLabPublicFeatureFlagArgs = {
input: UpdateLabPublicFeatureFlagInput;
};
@@ -1542,7 +1502,7 @@ export type ObjectRecordFilterInput = {
and?: InputMaybe<Array<ObjectRecordFilterInput>>;
createdAt?: InputMaybe<DateFilter>;
deletedAt?: InputMaybe<DateFilter>;
id?: InputMaybe<UuidFilter>;
id?: InputMaybe<IdFilter>;
not?: InputMaybe<ObjectRecordFilterInput>;
or?: InputMaybe<Array<ObjectRecordFilterInput>>;
updatedAt?: InputMaybe<DateFilter>;
@@ -1662,7 +1622,6 @@ export type Query = {
getApprovedAccessDomains: Array<ApprovedAccessDomain>;
getAvailablePackages: Scalars['JSON']['output'];
getConfigVariablesGrouped: ConfigVariablesOutput;
getDatabaseConfigVariable: ConfigVariable;
getIndicatorHealthStatus: AdminPanelHealthServiceData;
getMeteredProductsUsage: Array<BillingMeteredProductUsageOutput>;
getPostgresCredentials?: Maybe<PostgresCredentials>;
@@ -1682,7 +1641,7 @@ export type Query = {
objects: ObjectConnection;
plans: Array<BillingPlanOutput>;
relationMetadata: RelationMetadataConnection;
search: SearchResultConnection;
search: Array<SearchRecord>;
validatePasswordResetToken: ValidatePasswordResetToken;
versionInfo: VersionInfo;
};
@@ -1745,21 +1704,11 @@ export type QueryGetAvailablePackagesArgs = {
};
export type QueryGetDatabaseConfigVariableArgs = {
key: Scalars['String']['input'];
};
export type QueryGetIndicatorHealthStatusArgs = {
indicatorId: HealthIndicatorId;
};
export type QueryGetPublicWorkspaceDataByDomainArgs = {
origin: Scalars['String']['input'];
};
export type QueryGetQueueMetricsArgs = {
queueName: Scalars['String']['input'];
timeRange?: InputMaybe<QueueMetricsTimeRange>;
@@ -1827,7 +1776,6 @@ export type QueryRelationMetadataArgs = {
export type QuerySearchArgs = {
after?: InputMaybe<Scalars['String']['input']>;
excludedObjectNameSingulars?: InputMaybe<Array<Scalars['String']['input']>>;
filter?: InputMaybe<ObjectRecordFilterInput>;
includedObjectNameSingulars?: InputMaybe<Array<Scalars['String']['input']>>;
@@ -2046,24 +1994,6 @@ export type SearchRecord = {
tsRankCD: Scalars['Float']['output'];
};
export type SearchResultConnection = {
__typename?: 'SearchResultConnection';
edges: Array<SearchResultEdge>;
pageInfo: SearchResultPageInfo;
};
export type SearchResultEdge = {
__typename?: 'SearchResultEdge';
cursor: Scalars['String']['output'];
node: SearchRecord;
};
export type SearchResultPageInfo = {
__typename?: 'SearchResultPageInfo';
endCursor?: Maybe<Scalars['String']['output']>;
hasNextPage: Scalars['Boolean']['output'];
};
export type SendInvitationsOutput = {
__typename?: 'SendInvitationsOutput';
errors: Array<Scalars['String']['output']>;
@@ -2175,12 +2105,6 @@ export type SignUpOutput = {
workspace: WorkspaceUrlsAndId;
};
export type SignedFileDto = {
__typename?: 'SignedFileDTO';
path: Scalars['String']['output'];
token: Scalars['String']['output'];
};
export type StandardOverrides = {
__typename?: 'StandardOverrides';
description?: Maybe<Scalars['String']['output']>;
@@ -2313,17 +2237,6 @@ export type TransientToken = {
transientToken: AuthToken;
};
export type UuidFilter = {
eq?: InputMaybe<Scalars['UUID']['input']>;
gt?: InputMaybe<Scalars['UUID']['input']>;
gte?: InputMaybe<Scalars['UUID']['input']>;
in?: InputMaybe<Array<Scalars['UUID']['input']>>;
is?: InputMaybe<FilterIs>;
lt?: InputMaybe<Scalars['UUID']['input']>;
lte?: InputMaybe<Scalars['UUID']['input']>;
neq?: InputMaybe<Scalars['UUID']['input']>;
};
export type UuidFilterComparison = {
eq?: InputMaybe<Scalars['UUID']['input']>;
gt?: InputMaybe<Scalars['UUID']['input']>;
@@ -2469,7 +2382,6 @@ export type User = {
currentWorkspace?: Maybe<Workspace>;
defaultAvatarUrl?: Maybe<Scalars['String']['output']>;
deletedAt?: Maybe<Scalars['DateTime']['output']>;
deletedWorkspaceMembers?: Maybe<Array<DeletedWorkspaceMember>>;
disabled?: Maybe<Scalars['Boolean']['output']>;
email: Scalars['String']['output'];
firstName: Scalars['String']['output'];
@@ -2585,7 +2497,6 @@ export type WorkflowAction = {
__typename?: 'WorkflowAction';
id: Scalars['UUID']['output'];
name: Scalars['String']['output'];
nextStepIds?: Maybe<Array<Scalars['UUID']['output']>>;
settings: Scalars['JSON']['output'];
type: Scalars['String']['output'];
valid: Scalars['Boolean']['output'];
+98 -156
View File
@@ -522,15 +522,6 @@ export type DeleteWorkflowVersionStepInput = {
workflowVersionId: Scalars['String'];
};
export type DeletedWorkspaceMember = {
__typename?: 'DeletedWorkspaceMember';
avatarUrl?: Maybe<Scalars['String']>;
id: Scalars['UUID'];
name: FullName;
userEmail: Scalars['String'];
userWorkspaceId?: Maybe<Scalars['String']>;
};
/** Schema update on a table */
export enum DistantTableUpdate {
COLUMNS_ADDED = 'COLUMNS_ADDED',
@@ -584,9 +575,13 @@ export type FeatureFlagDto = {
export enum FeatureFlagKey {
IsAirtableIntegrationEnabled = 'IsAirtableIntegrationEnabled',
IsAnalyticsV2Enabled = 'IsAnalyticsV2Enabled',
IsApprovedAccessDomainsEnabled = 'IsApprovedAccessDomainsEnabled',
IsCopilotEnabled = 'IsCopilotEnabled',
IsCustomDomainEnabled = 'IsCustomDomainEnabled',
IsEventObjectEnabled = 'IsEventObjectEnabled',
IsJsonFilterEnabled = 'IsJsonFilterEnabled',
IsNewRelationEnabled = 'IsNewRelationEnabled',
IsPermissionsV2Enabled = 'IsPermissionsV2Enabled',
IsPostgreSQLIntegrationEnabled = 'IsPostgreSQLIntegrationEnabled',
IsStripeIntegrationEnabled = 'IsStripeIntegrationEnabled',
@@ -736,6 +731,17 @@ export enum HealthIndicatorId {
worker = 'worker'
}
export type IdFilter = {
eq?: InputMaybe<Scalars['ID']>;
gt?: InputMaybe<Scalars['ID']>;
gte?: InputMaybe<Scalars['ID']>;
in?: InputMaybe<Array<Scalars['ID']>>;
is?: InputMaybe<FilterIs>;
lt?: InputMaybe<Scalars['ID']>;
lte?: InputMaybe<Scalars['ID']>;
neq?: InputMaybe<Scalars['ID']>;
};
export enum IdentityProviderType {
OIDC = 'OIDC',
SAML = 'SAML'
@@ -884,7 +890,6 @@ export type Mutation = {
createDatabaseConfigVariable: Scalars['Boolean'];
createDraftFromWorkflowVersion: WorkflowVersion;
createOIDCIdentityProvider: SetupSsoOutput;
createObjectEvent: Analytics;
createOneAppToken: AppToken;
createOneField: Field;
createOneObject: Object;
@@ -928,6 +933,7 @@ export type Mutation = {
skipSyncEmailOnboardingStep: OnboardingStepSuccess;
submitFormStep: Scalars['Boolean'];
switchToYearlyInterval: BillingUpdateOutput;
track: Analytics;
trackAnalytics: Analytics;
updateDatabaseConfigVariable: Scalars['Boolean'];
updateLabPublicFeatureFlag: FeatureFlagDto;
@@ -941,10 +947,10 @@ export type Mutation = {
updateWorkspace: Workspace;
updateWorkspaceFeatureFlag: Scalars['Boolean'];
updateWorkspaceMemberRole: WorkspaceMember;
uploadFile: SignedFileDto;
uploadImage: SignedFileDto;
uploadProfilePicture: SignedFileDto;
uploadWorkspaceLogo: SignedFileDto;
uploadFile: Scalars['String'];
uploadImage: Scalars['String'];
uploadProfilePicture: Scalars['String'];
uploadWorkspaceLogo: Scalars['String'];
upsertObjectPermissions: Array<ObjectPermission>;
upsertSettingPermissions: Array<SettingPermission>;
userLookupAdminPanel: UserLookup;
@@ -1003,14 +1009,6 @@ export type MutationCreateOidcIdentityProviderArgs = {
};
export type MutationCreateObjectEventArgs = {
event: Scalars['String'];
objectMetadataId: Scalars['String'];
properties?: InputMaybe<Scalars['JSON']>;
recordId: Scalars['String'];
};
export type MutationCreateOneFieldArgs = {
input: CreateOneFieldMetadataInput;
};
@@ -1110,7 +1108,6 @@ export type MutationGenerateApiKeyTokenArgs = {
export type MutationGetAuthTokensFromLoginTokenArgs = {
loginToken: Scalars['String'];
origin: Scalars['String'];
};
@@ -1122,16 +1119,13 @@ export type MutationGetAuthorizationUrlForSsoArgs = {
export type MutationGetLoginTokenFromCredentialsArgs = {
captchaToken?: InputMaybe<Scalars['String']>;
email: Scalars['String'];
origin: Scalars['String'];
password: Scalars['String'];
};
export type MutationGetLoginTokenFromEmailVerificationTokenArgs = {
captchaToken?: InputMaybe<Scalars['String']>;
email: Scalars['String'];
emailVerificationToken: Scalars['String'];
origin: Scalars['String'];
};
@@ -1153,7 +1147,6 @@ export type MutationRenewTokenArgs = {
export type MutationResendEmailVerificationTokenArgs = {
email: Scalars['String'];
origin: Scalars['String'];
};
@@ -1188,6 +1181,12 @@ export type MutationSubmitFormStepArgs = {
};
export type MutationTrackArgs = {
action: Scalars['String'];
payload: Scalars['JSON'];
};
export type MutationTrackAnalyticsArgs = {
event?: InputMaybe<Scalars['String']>;
name?: InputMaybe<Scalars['String']>;
@@ -1408,7 +1407,7 @@ export type ObjectRecordFilterInput = {
and?: InputMaybe<Array<ObjectRecordFilterInput>>;
createdAt?: InputMaybe<DateFilter>;
deletedAt?: InputMaybe<DateFilter>;
id?: InputMaybe<UuidFilter>;
id?: InputMaybe<IdFilter>;
not?: InputMaybe<ObjectRecordFilterInput>;
or?: InputMaybe<Array<ObjectRecordFilterInput>>;
updatedAt?: InputMaybe<DateFilter>;
@@ -1544,7 +1543,7 @@ export type Query = {
object: Object;
objects: ObjectConnection;
plans: Array<BillingPlanOutput>;
search: SearchResultConnection;
search: Array<SearchRecord>;
validatePasswordResetToken: ValidatePasswordResetToken;
versionInfo: VersionInfo;
};
@@ -1591,11 +1590,6 @@ export type QueryGetIndicatorHealthStatusArgs = {
};
export type QueryGetPublicWorkspaceDataByDomainArgs = {
origin: Scalars['String'];
};
export type QueryGetQueueMetricsArgs = {
queueName: Scalars['String'];
timeRange?: InputMaybe<QueueMetricsTimeRange>;
@@ -1636,7 +1630,6 @@ export type QueryGetTimelineThreadsFromPersonIdArgs = {
export type QuerySearchArgs = {
after?: InputMaybe<Scalars['String']>;
excludedObjectNameSingulars?: InputMaybe<Array<Scalars['String']>>;
filter?: InputMaybe<ObjectRecordFilterInput>;
includedObjectNameSingulars?: InputMaybe<Array<Scalars['String']>>;
@@ -1841,24 +1834,6 @@ export type SearchRecord = {
tsRankCD: Scalars['Float'];
};
export type SearchResultConnection = {
__typename?: 'SearchResultConnection';
edges: Array<SearchResultEdge>;
pageInfo: SearchResultPageInfo;
};
export type SearchResultEdge = {
__typename?: 'SearchResultEdge';
cursor: Scalars['String'];
node: SearchRecord;
};
export type SearchResultPageInfo = {
__typename?: 'SearchResultPageInfo';
endCursor?: Maybe<Scalars['String']>;
hasNextPage: Scalars['Boolean'];
};
export type SendInvitationsOutput = {
__typename?: 'SendInvitationsOutput';
errors: Array<Scalars['String']>;
@@ -1970,12 +1945,6 @@ export type SignUpOutput = {
workspace: WorkspaceUrlsAndId;
};
export type SignedFileDto = {
__typename?: 'SignedFileDTO';
path: Scalars['String'];
token: Scalars['String'];
};
export type StandardOverrides = {
__typename?: 'StandardOverrides';
description?: Maybe<Scalars['String']>;
@@ -2108,17 +2077,6 @@ export type TransientToken = {
transientToken: AuthToken;
};
export type UuidFilter = {
eq?: InputMaybe<Scalars['UUID']>;
gt?: InputMaybe<Scalars['UUID']>;
gte?: InputMaybe<Scalars['UUID']>;
in?: InputMaybe<Array<Scalars['UUID']>>;
is?: InputMaybe<FilterIs>;
lt?: InputMaybe<Scalars['UUID']>;
lte?: InputMaybe<Scalars['UUID']>;
neq?: InputMaybe<Scalars['UUID']>;
};
export type UuidFilterComparison = {
eq?: InputMaybe<Scalars['UUID']>;
gt?: InputMaybe<Scalars['UUID']>;
@@ -2256,7 +2214,6 @@ export type User = {
currentWorkspace?: Maybe<Workspace>;
defaultAvatarUrl?: Maybe<Scalars['String']>;
deletedAt?: Maybe<Scalars['DateTime']>;
deletedWorkspaceMembers?: Maybe<Array<DeletedWorkspaceMember>>;
disabled?: Maybe<Scalars['Boolean']>;
email: Scalars['String'];
firstName: Scalars['String'];
@@ -2554,13 +2511,21 @@ export type TrackAnalyticsMutationVariables = Exact<{
export type TrackAnalyticsMutation = { __typename?: 'Mutation', trackAnalytics: { __typename?: 'Analytics', success: boolean } };
export type TrackMutationVariables = Exact<{
action: Scalars['String'];
payload: Scalars['JSON'];
}>;
export type TrackMutation = { __typename?: 'Mutation', track: { __typename?: 'Analytics', success: boolean } };
export type UploadFileMutationVariables = Exact<{
file: Scalars['Upload'];
fileFolder?: InputMaybe<FileFolder>;
}>;
export type UploadFileMutation = { __typename?: 'Mutation', uploadFile: { __typename?: 'SignedFileDTO', path: string, token: string } };
export type UploadFileMutation = { __typename?: 'Mutation', uploadFile: string };
export type UploadImageMutationVariables = Exact<{
file: Scalars['Upload'];
@@ -2568,7 +2533,7 @@ export type UploadImageMutationVariables = Exact<{
}>;
export type UploadImageMutation = { __typename?: 'Mutation', uploadImage: { __typename?: 'SignedFileDTO', path: string, token: string } };
export type UploadImageMutation = { __typename?: 'Mutation', uploadImage: string };
export type AuthTokenFragmentFragment = { __typename?: 'AuthToken', token: string, expiresAt: string };
@@ -2608,7 +2573,6 @@ export type GenerateTransientTokenMutation = { __typename?: 'Mutation', generate
export type GetAuthTokensFromLoginTokenMutationVariables = Exact<{
loginToken: Scalars['String'];
origin: Scalars['String'];
}>;
@@ -2625,7 +2589,6 @@ export type GetLoginTokenFromCredentialsMutationVariables = Exact<{
email: Scalars['String'];
password: Scalars['String'];
captchaToken?: InputMaybe<Scalars['String']>;
origin: Scalars['String'];
}>;
@@ -2633,9 +2596,7 @@ export type GetLoginTokenFromCredentialsMutation = { __typename?: 'Mutation', ge
export type GetLoginTokenFromEmailVerificationTokenMutationVariables = Exact<{
emailVerificationToken: Scalars['String'];
email: Scalars['String'];
captchaToken?: InputMaybe<Scalars['String']>;
origin: Scalars['String'];
}>;
@@ -2658,7 +2619,6 @@ export type RenewTokenMutation = { __typename?: 'Mutation', renewToken: { __type
export type ResendEmailVerificationTokenMutationVariables = Exact<{
email: Scalars['String'];
origin: Scalars['String'];
}>;
@@ -2698,9 +2658,7 @@ export type CheckUserExistsQueryVariables = Exact<{
export type CheckUserExistsQuery = { __typename?: 'Query', checkUserExists: { __typename: 'UserExists', exists: boolean, isEmailVerified: boolean, availableWorkspaces: Array<{ __typename?: 'AvailableWorkspaceOutput', id: string, displayName?: string | null, logo?: string | null, workspaceUrls: { __typename?: 'WorkspaceUrls', subdomainUrl: string, customUrl?: string | null }, sso: Array<{ __typename?: 'SSOConnection', type: IdentityProviderType, id: string, issuer: string, name: string, status: SsoIdentityProviderStatus }> }> } | { __typename: 'UserNotExists', exists: boolean } };
export type GetPublicWorkspaceDataByDomainQueryVariables = Exact<{
origin: Scalars['String'];
}>;
export type GetPublicWorkspaceDataByDomainQueryVariables = Exact<{ [key: string]: never; }>;
export type GetPublicWorkspaceDataByDomainQuery = { __typename?: 'Query', getPublicWorkspaceDataByDomain: { __typename?: 'PublicWorkspaceDataOutput', id: string, logo?: string | null, displayName?: string | null, workspaceUrls: { __typename?: 'WorkspaceUrls', subdomainUrl: string, customUrl?: string | null }, authProviders: { __typename?: 'AuthProviders', google: boolean, magicLink: boolean, password: boolean, microsoft: boolean, sso: Array<{ __typename?: 'SSOIdentityProvider', id: string, name: string, type: IdentityProviderType, status: SsoIdentityProviderStatus, issuer: string }> } } };
@@ -2757,14 +2715,13 @@ export type GetClientConfigQuery = { __typename?: 'Query', clientConfig: { __typ
export type SearchQueryVariables = Exact<{
searchInput: Scalars['String'];
limit: Scalars['Int'];
after?: InputMaybe<Scalars['String']>;
excludedObjectNameSingulars?: InputMaybe<Array<Scalars['String']> | Scalars['String']>;
includedObjectNameSingulars?: InputMaybe<Array<Scalars['String']> | Scalars['String']>;
filter?: InputMaybe<ObjectRecordFilterInput>;
}>;
export type SearchQuery = { __typename?: 'Query', search: { __typename?: 'SearchResultConnection', edges: Array<{ __typename?: 'SearchResultEdge', cursor: string, node: { __typename?: 'SearchRecord', recordId: string, objectNameSingular: string, label: string, imageUrl?: string | null, tsRankCD: number, tsRank: number } }>, pageInfo: { __typename?: 'SearchResultPageInfo', hasNextPage: boolean, endCursor?: string | null } } };
export type SearchQuery = { __typename?: 'Query', search: Array<{ __typename?: 'SearchRecord', recordId: string, objectNameSingular: string, label: string, imageUrl?: string | null, tsRankCD: number, tsRank: number }> };
export type SkipSyncEmailOnboardingStepMutationVariables = Exact<{ [key: string]: never; }>;
@@ -2967,7 +2924,7 @@ export type OnDbEventSubscriptionVariables = Exact<{
export type OnDbEventSubscription = { __typename?: 'Subscription', onDbEvent: { __typename?: 'OnDbEventDTO', eventDate: string, action: DatabaseEventAction, objectNameSingular: string, updatedFields?: Array<string> | null, record: any } };
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, deletedWorkspaceMembers?: Array<{ __typename?: 'DeletedWorkspaceMember', id: any, avatarUrl?: string | null, userEmail: string, 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?: 'FeatureFlagDTO', key: FeatureFlagKey, value: boolean }> | null, currentBillingSubscription?: { __typename?: 'BillingSubscription', id: any, status: SubscriptionStatus, interval?: SubscriptionInterval | null, billingSubscriptionItems?: Array<{ __typename?: 'BillingSubscriptionItem', id: any, hasReachedCurrentPeriodCap: boolean, billingProduct?: { __typename?: 'BillingProduct', name: string, description: string, metadata: { __typename?: 'BillingProductMetadata', planKey: BillingPlanKey, priceUsageBased: BillingUsageType, productKey: BillingProductKey } } | null }> | 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, 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?: 'FeatureFlagDTO', key: FeatureFlagKey, value: boolean }> | null, currentBillingSubscription?: { __typename?: 'BillingSubscription', id: any, status: SubscriptionStatus, interval?: SubscriptionInterval | null, billingSubscriptionItems?: Array<{ __typename?: 'BillingSubscriptionItem', id: any, hasReachedCurrentPeriodCap: boolean, billingProduct?: { __typename?: 'BillingProduct', name: string, description: string, metadata: { __typename?: 'BillingProductMetadata', planKey: BillingPlanKey, priceUsageBased: BillingUsageType, productKey: BillingProductKey } } | null }> | 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; }>;
@@ -2979,12 +2936,12 @@ export type UploadProfilePictureMutationVariables = Exact<{
}>;
export type UploadProfilePictureMutation = { __typename?: 'Mutation', uploadProfilePicture: { __typename?: 'SignedFileDTO', path: string, token: string } };
export type UploadProfilePictureMutation = { __typename?: 'Mutation', uploadProfilePicture: string };
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, deletedWorkspaceMembers?: Array<{ __typename?: 'DeletedWorkspaceMember', id: any, avatarUrl?: string | null, userEmail: string, 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?: 'FeatureFlagDTO', key: FeatureFlagKey, value: boolean }> | null, currentBillingSubscription?: { __typename?: 'BillingSubscription', id: any, status: SubscriptionStatus, interval?: SubscriptionInterval | null, billingSubscriptionItems?: Array<{ __typename?: 'BillingSubscriptionItem', id: any, hasReachedCurrentPeriodCap: boolean, billingProduct?: { __typename?: 'BillingProduct', name: string, description: string, metadata: { __typename?: 'BillingProductMetadata', planKey: BillingPlanKey, priceUsageBased: BillingUsageType, productKey: BillingProductKey } } | null }> | 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, 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?: 'FeatureFlagDTO', key: FeatureFlagKey, value: boolean }> | null, currentBillingSubscription?: { __typename?: 'BillingSubscription', id: any, status: SubscriptionStatus, interval?: SubscriptionInterval | null, billingSubscriptionItems?: Array<{ __typename?: 'BillingSubscriptionItem', id: any, hasReachedCurrentPeriodCap: boolean, billingProduct?: { __typename?: 'BillingProduct', name: string, description: string, metadata: { __typename?: 'BillingProductMetadata', planKey: BillingPlanKey, priceUsageBased: BillingUsageType, productKey: BillingProductKey } } | null }> | 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'];
@@ -3082,8 +3039,6 @@ export type GetWorkspaceInvitationsQueryVariables = Exact<{ [key: string]: never
export type GetWorkspaceInvitationsQuery = { __typename?: 'Query', findWorkspaceInvitations: Array<{ __typename?: 'WorkspaceInvitation', id: any, email: string, expiresAt: string }> };
export type DeletedWorkspaceMemberQueryFragmentFragment = { __typename?: 'DeletedWorkspaceMember', id: any, avatarUrl?: string | null, userEmail: string, name: { __typename?: 'FullName', firstName: string, lastName: string } };
export type WorkspaceMemberQueryFragmentFragment = { __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 } };
export type ActivateWorkspaceMutationVariables = Exact<{
@@ -3110,7 +3065,7 @@ export type UploadWorkspaceLogoMutationVariables = Exact<{
}>;
export type UploadWorkspaceLogoMutation = { __typename?: 'Mutation', uploadWorkspaceLogo: { __typename?: 'SignedFileDTO', path: string, token: string } };
export type UploadWorkspaceLogoMutation = { __typename?: 'Mutation', uploadWorkspaceLogo: string };
export type CheckCustomDomainValidRecordsMutationVariables = Exact<{ [key: string]: never; }>;
@@ -3257,17 +3212,6 @@ export const WorkspaceMemberQueryFragmentFragmentDoc = gql`
timeFormat
}
`;
export const DeletedWorkspaceMemberQueryFragmentFragmentDoc = gql`
fragment DeletedWorkspaceMemberQueryFragment on DeletedWorkspaceMember {
id
name {
firstName
lastName
}
avatarUrl
userEmail
}
`;
export const RoleFragmentFragmentDoc = gql`
fragment RoleFragment on Role {
id
@@ -3298,9 +3242,6 @@ export const UserQueryFragmentFragmentDoc = gql`
workspaceMembers {
...WorkspaceMemberQueryFragment
}
deletedWorkspaceMembers {
...DeletedWorkspaceMemberQueryFragment
}
currentUserWorkspace {
settingsPermissions
objectRecordsPermissions
@@ -3372,7 +3313,6 @@ export const UserQueryFragmentFragmentDoc = gql`
userVars
}
${WorkspaceMemberQueryFragmentFragmentDoc}
${DeletedWorkspaceMemberQueryFragmentFragmentDoc}
${RoleFragmentFragmentDoc}`;
export const GetTimelineCalendarEventsFromCompanyIdDocument = gql`
query GetTimelineCalendarEventsFromCompanyId($companyId: UUID!, $page: Int!, $pageSize: Int!) {
@@ -3574,12 +3514,43 @@ export function useTrackAnalyticsMutation(baseOptions?: Apollo.MutationHookOptio
export type TrackAnalyticsMutationHookResult = ReturnType<typeof useTrackAnalyticsMutation>;
export type TrackAnalyticsMutationResult = Apollo.MutationResult<TrackAnalyticsMutation>;
export type TrackAnalyticsMutationOptions = Apollo.BaseMutationOptions<TrackAnalyticsMutation, TrackAnalyticsMutationVariables>;
export const TrackDocument = gql`
mutation Track($action: String!, $payload: JSON!) {
track(action: $action, payload: $payload) {
success
}
}
`;
export type TrackMutationFn = Apollo.MutationFunction<TrackMutation, TrackMutationVariables>;
/**
* __useTrackMutation__
*
* To run a mutation, you first call `useTrackMutation` within a React component and pass it any options that fit your needs.
* When your component renders, `useTrackMutation` 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 [trackMutation, { data, loading, error }] = useTrackMutation({
* variables: {
* action: // value for 'action'
* payload: // value for 'payload'
* },
* });
*/
export function useTrackMutation(baseOptions?: Apollo.MutationHookOptions<TrackMutation, TrackMutationVariables>) {
const options = {...defaultOptions, ...baseOptions}
return Apollo.useMutation<TrackMutation, TrackMutationVariables>(TrackDocument, options);
}
export type TrackMutationHookResult = ReturnType<typeof useTrackMutation>;
export type TrackMutationResult = Apollo.MutationResult<TrackMutation>;
export type TrackMutationOptions = Apollo.BaseMutationOptions<TrackMutation, TrackMutationVariables>;
export const UploadFileDocument = gql`
mutation uploadFile($file: Upload!, $fileFolder: FileFolder) {
uploadFile(file: $file, fileFolder: $fileFolder) {
path
token
}
uploadFile(file: $file, fileFolder: $fileFolder)
}
`;
export type UploadFileMutationFn = Apollo.MutationFunction<UploadFileMutation, UploadFileMutationVariables>;
@@ -3611,10 +3582,7 @@ export type UploadFileMutationResult = Apollo.MutationResult<UploadFileMutation>
export type UploadFileMutationOptions = Apollo.BaseMutationOptions<UploadFileMutation, UploadFileMutationVariables>;
export const UploadImageDocument = gql`
mutation uploadImage($file: Upload!, $fileFolder: FileFolder) {
uploadImage(file: $file, fileFolder: $fileFolder) {
path
token
}
uploadImage(file: $file, fileFolder: $fileFolder)
}
`;
export type UploadImageMutationFn = Apollo.MutationFunction<UploadImageMutation, UploadImageMutationVariables>;
@@ -3786,8 +3754,8 @@ export type GenerateTransientTokenMutationHookResult = ReturnType<typeof useGene
export type GenerateTransientTokenMutationResult = Apollo.MutationResult<GenerateTransientTokenMutation>;
export type GenerateTransientTokenMutationOptions = Apollo.BaseMutationOptions<GenerateTransientTokenMutation, GenerateTransientTokenMutationVariables>;
export const GetAuthTokensFromLoginTokenDocument = gql`
mutation GetAuthTokensFromLoginToken($loginToken: String!, $origin: String!) {
getAuthTokensFromLoginToken(loginToken: $loginToken, origin: $origin) {
mutation GetAuthTokensFromLoginToken($loginToken: String!) {
getAuthTokensFromLoginToken(loginToken: $loginToken) {
tokens {
...AuthTokensFragment
}
@@ -3810,7 +3778,6 @@ export type GetAuthTokensFromLoginTokenMutationFn = Apollo.MutationFunction<GetA
* const [getAuthTokensFromLoginTokenMutation, { data, loading, error }] = useGetAuthTokensFromLoginTokenMutation({
* variables: {
* loginToken: // value for 'loginToken'
* origin: // value for 'origin'
* },
* });
*/
@@ -3857,12 +3824,11 @@ export type GetAuthorizationUrlForSsoMutationHookResult = ReturnType<typeof useG
export type GetAuthorizationUrlForSsoMutationResult = Apollo.MutationResult<GetAuthorizationUrlForSsoMutation>;
export type GetAuthorizationUrlForSsoMutationOptions = Apollo.BaseMutationOptions<GetAuthorizationUrlForSsoMutation, GetAuthorizationUrlForSsoMutationVariables>;
export const GetLoginTokenFromCredentialsDocument = gql`
mutation GetLoginTokenFromCredentials($email: String!, $password: String!, $captchaToken: String, $origin: String!) {
mutation GetLoginTokenFromCredentials($email: String!, $password: String!, $captchaToken: String) {
getLoginTokenFromCredentials(
email: $email
password: $password
captchaToken: $captchaToken
origin: $origin
) {
loginToken {
...AuthTokenFragment
@@ -3888,7 +3854,6 @@ export type GetLoginTokenFromCredentialsMutationFn = Apollo.MutationFunction<Get
* email: // value for 'email'
* password: // value for 'password'
* captchaToken: // value for 'captchaToken'
* origin: // value for 'origin'
* },
* });
*/
@@ -3900,12 +3865,10 @@ export type GetLoginTokenFromCredentialsMutationHookResult = ReturnType<typeof u
export type GetLoginTokenFromCredentialsMutationResult = Apollo.MutationResult<GetLoginTokenFromCredentialsMutation>;
export type GetLoginTokenFromCredentialsMutationOptions = Apollo.BaseMutationOptions<GetLoginTokenFromCredentialsMutation, GetLoginTokenFromCredentialsMutationVariables>;
export const GetLoginTokenFromEmailVerificationTokenDocument = gql`
mutation GetLoginTokenFromEmailVerificationToken($emailVerificationToken: String!, $email: String!, $captchaToken: String, $origin: String!) {
mutation GetLoginTokenFromEmailVerificationToken($emailVerificationToken: String!, $captchaToken: String) {
getLoginTokenFromEmailVerificationToken(
emailVerificationToken: $emailVerificationToken
email: $email
captchaToken: $captchaToken
origin: $origin
) {
loginToken {
...AuthTokenFragment
@@ -3933,9 +3896,7 @@ export type GetLoginTokenFromEmailVerificationTokenMutationFn = Apollo.MutationF
* const [getLoginTokenFromEmailVerificationTokenMutation, { data, loading, error }] = useGetLoginTokenFromEmailVerificationTokenMutation({
* variables: {
* emailVerificationToken: // value for 'emailVerificationToken'
* email: // value for 'email'
* captchaToken: // value for 'captchaToken'
* origin: // value for 'origin'
* },
* });
*/
@@ -4025,8 +3986,8 @@ export type RenewTokenMutationHookResult = ReturnType<typeof useRenewTokenMutati
export type RenewTokenMutationResult = Apollo.MutationResult<RenewTokenMutation>;
export type RenewTokenMutationOptions = Apollo.BaseMutationOptions<RenewTokenMutation, RenewTokenMutationVariables>;
export const ResendEmailVerificationTokenDocument = gql`
mutation ResendEmailVerificationToken($email: String!, $origin: String!) {
resendEmailVerificationToken(email: $email, origin: $origin) {
mutation ResendEmailVerificationToken($email: String!) {
resendEmailVerificationToken(email: $email) {
success
}
}
@@ -4047,7 +4008,6 @@ export type ResendEmailVerificationTokenMutationFn = Apollo.MutationFunction<Res
* const [resendEmailVerificationTokenMutation, { data, loading, error }] = useResendEmailVerificationTokenMutation({
* variables: {
* email: // value for 'email'
* origin: // value for 'origin'
* },
* });
*/
@@ -4252,8 +4212,8 @@ export type CheckUserExistsQueryHookResult = ReturnType<typeof useCheckUserExist
export type CheckUserExistsLazyQueryHookResult = ReturnType<typeof useCheckUserExistsLazyQuery>;
export type CheckUserExistsQueryResult = Apollo.QueryResult<CheckUserExistsQuery, CheckUserExistsQueryVariables>;
export const GetPublicWorkspaceDataByDomainDocument = gql`
query GetPublicWorkspaceDataByDomain($origin: String!) {
getPublicWorkspaceDataByDomain(origin: $origin) {
query GetPublicWorkspaceDataByDomain {
getPublicWorkspaceDataByDomain {
id
logo
displayName
@@ -4290,11 +4250,10 @@ export const GetPublicWorkspaceDataByDomainDocument = gql`
* @example
* const { data, loading, error } = useGetPublicWorkspaceDataByDomainQuery({
* variables: {
* origin: // value for 'origin'
* },
* });
*/
export function useGetPublicWorkspaceDataByDomainQuery(baseOptions: Apollo.QueryHookOptions<GetPublicWorkspaceDataByDomainQuery, GetPublicWorkspaceDataByDomainQueryVariables>) {
export function useGetPublicWorkspaceDataByDomainQuery(baseOptions?: Apollo.QueryHookOptions<GetPublicWorkspaceDataByDomainQuery, GetPublicWorkspaceDataByDomainQueryVariables>) {
const options = {...defaultOptions, ...baseOptions}
return Apollo.useQuery<GetPublicWorkspaceDataByDomainQuery, GetPublicWorkspaceDataByDomainQueryVariables>(GetPublicWorkspaceDataByDomainDocument, options);
}
@@ -4658,30 +4617,20 @@ export type GetClientConfigQueryHookResult = ReturnType<typeof useGetClientConfi
export type GetClientConfigLazyQueryHookResult = ReturnType<typeof useGetClientConfigLazyQuery>;
export type GetClientConfigQueryResult = Apollo.QueryResult<GetClientConfigQuery, GetClientConfigQueryVariables>;
export const SearchDocument = gql`
query Search($searchInput: String!, $limit: Int!, $after: String, $excludedObjectNameSingulars: [String!], $includedObjectNameSingulars: [String!], $filter: ObjectRecordFilterInput) {
query Search($searchInput: String!, $limit: Int!, $excludedObjectNameSingulars: [String!], $includedObjectNameSingulars: [String!], $filter: ObjectRecordFilterInput) {
search(
searchInput: $searchInput
limit: $limit
after: $after
excludedObjectNameSingulars: $excludedObjectNameSingulars
includedObjectNameSingulars: $includedObjectNameSingulars
filter: $filter
) {
edges {
node {
recordId
objectNameSingular
label
imageUrl
tsRankCD
tsRank
}
cursor
}
pageInfo {
hasNextPage
endCursor
}
recordId
objectNameSingular
label
imageUrl
tsRankCD
tsRank
}
}
`;
@@ -4700,7 +4649,6 @@ export const SearchDocument = gql`
* variables: {
* searchInput: // value for 'searchInput'
* limit: // value for 'limit'
* after: // value for 'after'
* excludedObjectNameSingulars: // value for 'excludedObjectNameSingulars'
* includedObjectNameSingulars: // value for 'includedObjectNameSingulars'
* filter: // value for 'filter'
@@ -5845,10 +5793,7 @@ export type DeleteUserAccountMutationResult = Apollo.MutationResult<DeleteUserAc
export type DeleteUserAccountMutationOptions = Apollo.BaseMutationOptions<DeleteUserAccountMutation, DeleteUserAccountMutationVariables>;
export const UploadProfilePictureDocument = gql`
mutation UploadProfilePicture($file: Upload!) {
uploadProfilePicture(file: $file) {
path
token
}
uploadProfilePicture(file: $file)
}
`;
export type UploadProfilePictureMutationFn = Apollo.MutationFunction<UploadProfilePictureMutation, UploadProfilePictureMutationVariables>;
@@ -6514,10 +6459,7 @@ export type UpdateWorkspaceMutationResult = Apollo.MutationResult<UpdateWorkspac
export type UpdateWorkspaceMutationOptions = Apollo.BaseMutationOptions<UpdateWorkspaceMutation, UpdateWorkspaceMutationVariables>;
export const UploadWorkspaceLogoDocument = gql`
mutation UploadWorkspaceLogo($file: Upload!) {
uploadWorkspaceLogo(file: $file) {
path
token
}
uploadWorkspaceLogo(file: $file)
}
`;
export type UploadWorkspaceLogoMutationFn = Apollo.MutationFunction<UploadWorkspaceLogoMutation, UploadWorkspaceLogoMutationVariables>;
@@ -0,0 +1,74 @@
import { renderHook } from '@testing-library/react';
import { useIsMatchingLocation } from '../useIsMatchingLocation';
import { MemoryRouter } from 'react-router-dom';
import { AppBasePath } from '@/types/AppBasePath';
const Wrapper =
(initialIndex = 0) =>
({ children }: { children: React.ReactNode }) => (
<MemoryRouter
initialEntries={['/example', '/other', `${AppBasePath.Settings}/example`]}
initialIndex={initialIndex}
>
{children}
</MemoryRouter>
);
describe('useIsMatchingLocation', () => {
it('returns true when paths match with no basePath', () => {
const { result } = renderHook(() => useIsMatchingLocation(), {
wrapper: Wrapper(),
});
expect(result.current.isMatchingLocation('/example')).toBe(true);
});
it('returns false when paths do not match with no basePath', () => {
const { result } = renderHook(() => useIsMatchingLocation(), {
wrapper: Wrapper(),
});
expect(result.current.isMatchingLocation('/non-match')).toBe(false);
});
it('returns true when paths match with basePath', () => {
const { result } = renderHook(() => useIsMatchingLocation(), {
wrapper: Wrapper(2),
});
expect(
result.current.isMatchingLocation('example', AppBasePath.Settings),
).toBe(true);
});
it('returns false when paths do not match with basePath', () => {
const { result } = renderHook(() => useIsMatchingLocation(), {
wrapper: Wrapper(),
});
expect(
result.current.isMatchingLocation('non-match', AppBasePath.Settings),
).toBe(false);
});
it('handles trailing slashes in basePath correctly', () => {
const { result } = renderHook(() => useIsMatchingLocation(), {
wrapper: Wrapper(2),
});
expect(
result.current.isMatchingLocation(
'example',
(AppBasePath.Settings + '/') as AppBasePath,
),
).toBe(true);
});
it('handles without basePath correctly', () => {
const { result } = renderHook(() => useIsMatchingLocation(), {
wrapper: Wrapper(),
});
expect(result.current.isMatchingLocation('example')).toBe(true);
});
});
@@ -8,9 +8,9 @@ import { useRecoilValue } from 'recoil';
import { OnboardingStatus } from '~/generated/graphql';
import { useIsMatchingLocation } from '~/hooks/useIsMatchingLocation';
import { usePageChangeEffectNavigateLocation } from '~/hooks/usePageChangeEffectNavigateLocation';
import { UNTESTED_APP_PATHS } from '~/testing/constants/UntestedAppPaths';
import { isMatchingLocation } from '~/utils/isMatchingLocation';
jest.mock('@/onboarding/hooks/useOnboardingStatus');
const setupMockOnboardingStatus = (
@@ -28,13 +28,13 @@ const setupMockIsWorkspaceActivationStatusEqualsTo = (
.mockReturnValueOnce(isWorkspaceSuspended);
};
jest.mock('~/utils/isMatchingLocation');
const mockIsMatchingLocation = jest.mocked(isMatchingLocation);
jest.mock('~/hooks/useIsMatchingLocation');
const mockUseIsMatchingLocation = jest.mocked(useIsMatchingLocation);
const setupMockIsMatchingLocation = (pathname: string) => {
mockIsMatchingLocation.mockImplementation(
(_location, path) => path === pathname,
);
mockUseIsMatchingLocation.mockReturnValueOnce({
isMatchingLocation: (path: string) => path === pathname,
});
};
jest.mock('@/auth/hooks/useIsLogged');
@@ -98,7 +98,7 @@ const testCases: {
{ loc: AppPath.Invite, isLoggedIn: true, isWorkspaceSuspended: false, onboardingStatus: OnboardingStatus.PROFILE_CREATION, res: '/create/profile' },
{ loc: AppPath.Invite, isLoggedIn: true, isWorkspaceSuspended: false, onboardingStatus: OnboardingStatus.SYNC_EMAIL, res: '/sync/emails' },
{ loc: AppPath.Invite, isLoggedIn: true, isWorkspaceSuspended: false, onboardingStatus: OnboardingStatus.INVITE_TEAM, res: '/invite-team' },
{ loc: AppPath.Invite, isLoggedIn: true, isWorkspaceSuspended: false, onboardingStatus: OnboardingStatus.COMPLETED, res: defaultHomePagePath },
{ loc: AppPath.Invite, isLoggedIn: true, isWorkspaceSuspended: false, onboardingStatus: OnboardingStatus.COMPLETED, res: '/objects/companies' },
{ loc: AppPath.ResetPassword, isLoggedIn: true, isWorkspaceSuspended: false, onboardingStatus: OnboardingStatus.PLAN_REQUIRED, res: '/plan-required' },
{ loc: AppPath.ResetPassword, isLoggedIn: true, isWorkspaceSuspended: true, onboardingStatus: OnboardingStatus.COMPLETED, res: '/settings/billing' },
@@ -107,7 +107,7 @@ const testCases: {
{ loc: AppPath.ResetPassword, isLoggedIn: true, isWorkspaceSuspended: false, onboardingStatus: OnboardingStatus.PROFILE_CREATION, res: '/create/profile' },
{ loc: AppPath.ResetPassword, isLoggedIn: true, isWorkspaceSuspended: false, onboardingStatus: OnboardingStatus.SYNC_EMAIL, res: '/sync/emails' },
{ loc: AppPath.ResetPassword, isLoggedIn: true, isWorkspaceSuspended: false, onboardingStatus: OnboardingStatus.INVITE_TEAM, res: '/invite-team' },
{ loc: AppPath.ResetPassword, isLoggedIn: true, isWorkspaceSuspended: false, onboardingStatus: OnboardingStatus.COMPLETED, res: undefined },
{ loc: AppPath.ResetPassword, isLoggedIn: true, isWorkspaceSuspended: false, onboardingStatus: OnboardingStatus.COMPLETED, res: '/objects/companies' },
{ loc: AppPath.VerifyEmail, isLoggedIn: true, isWorkspaceSuspended: false, onboardingStatus: OnboardingStatus.PLAN_REQUIRED, res: AppPath.PlanRequired },
{ loc: AppPath.VerifyEmail, isLoggedIn: true, isWorkspaceSuspended: true, onboardingStatus: OnboardingStatus.COMPLETED, res: '/settings/billing' },
@@ -266,27 +266,21 @@ const testCases: {
];
describe('usePageChangeEffectNavigateLocation', () => {
it.each(testCases)(
'with location $loc and onboardingStatus $onboardingStatus and isWorkspaceSuspended $isWorkspaceSuspended should return $res`',
({
loc,
onboardingStatus,
isWorkspaceSuspended,
isLoggedIn,
objectNamePluralFromParams,
objectNamePluralFromMetadata,
res,
}) => {
setupMockIsMatchingLocation(loc);
setupMockOnboardingStatus(onboardingStatus);
setupMockIsWorkspaceActivationStatusEqualsTo(isWorkspaceSuspended);
setupMockIsLogged(isLoggedIn);
setupMockUseParams(objectNamePluralFromParams);
setupMockRecoil(objectNamePluralFromMetadata);
testCases.forEach((testCase) => {
it(`with location ${testCase.loc} and onboardingStatus ${testCase.onboardingStatus} and isWorkspaceSuspended ${testCase.isWorkspaceSuspended} should return ${testCase.res}`, () => {
setupMockIsMatchingLocation(testCase.loc);
setupMockOnboardingStatus(testCase.onboardingStatus);
setupMockIsWorkspaceActivationStatusEqualsTo(
testCase.isWorkspaceSuspended,
);
setupMockIsLogged(testCase.isLoggedIn);
setupMockUseParams(testCase.objectNamePluralFromParams);
setupMockRecoil(testCase.objectNamePluralFromMetadata);
expect(usePageChangeEffectNavigateLocation()).toEqual(testCase.res);
});
});
expect(usePageChangeEffectNavigateLocation()).toEqual(res);
},
);
describe('tests should be exhaustive', () => {
it('all location, onboarding status and suspended/not suspended workspace activation status should be tested', () => {
expect(testCases.length).toEqual(
@@ -12,9 +12,7 @@ export const useHotkeyScopeOnMount = (hotkeyScope: string) => {
} = usePreviousHotkeyScope();
useEffect(() => {
setHotkeyScopeAndMemorizePreviousScope({
scope: hotkeyScope,
});
setHotkeyScopeAndMemorizePreviousScope(hotkeyScope);
return () => {
goBackToPreviousHotkeyScope();
};
@@ -0,0 +1,34 @@
import { matchPath, useLocation } from 'react-router-dom';
import { AppBasePath } from '@/types/AppBasePath';
import { isNonEmptyString } from '@sniptt/guards';
import { useCallback } from 'react';
import { isDefined } from 'twenty-shared/utils';
const addTrailingSlash = (path: string) =>
path.endsWith('/') ? path : path + '/';
const getConstructedPath = (path: string, basePath?: AppBasePath) => {
if (!isNonEmptyString(basePath)) return path;
return addTrailingSlash(basePath) + path;
};
export const useIsMatchingLocation = () => {
const location = useLocation();
const isMatchingLocation = useCallback(
(path: string, basePath?: AppBasePath) => {
const match = matchPath(
getConstructedPath(path, basePath),
location.pathname,
);
return isDefined(match);
},
[location.pathname],
);
return {
isMatchingLocation,
};
};
@@ -5,38 +5,41 @@ import { useOnboardingStatus } from '@/onboarding/hooks/useOnboardingStatus';
import { AppPath } from '@/types/AppPath';
import { SettingsPath } from '@/types/SettingsPath';
import { useIsWorkspaceActivationStatusEqualsTo } from '@/workspace/hooks/useIsWorkspaceActivationStatusEqualsTo';
import { useLocation, useParams } from 'react-router-dom';
import { useParams } from 'react-router-dom';
import { useRecoilValue } from 'recoil';
import { isDefined } from 'twenty-shared/utils';
import { WorkspaceActivationStatus } from 'twenty-shared/workspace';
import { OnboardingStatus } from '~/generated/graphql';
import { isMatchingLocation } from '~/utils/isMatchingLocation';
import { useIsMatchingLocation } from '~/hooks/useIsMatchingLocation';
export const usePageChangeEffectNavigateLocation = () => {
const { isMatchingLocation } = useIsMatchingLocation();
const isLoggedIn = useIsLogged();
const onboardingStatus = useOnboardingStatus();
const isWorkspaceSuspended = useIsWorkspaceActivationStatusEqualsTo(
WorkspaceActivationStatus.SUSPENDED,
);
const { defaultHomePagePath } = useDefaultHomePagePath();
const location = useLocation();
const someMatchingLocationOf = (appPaths: AppPath[]): boolean =>
appPaths.some((appPath) => isMatchingLocation(location, appPath));
const onGoingUserCreationPaths = [
AppPath.Invite,
AppPath.SignInUp,
AppPath.VerifyEmail,
AppPath.Verify,
];
const onboardingPaths = [
AppPath.CreateWorkspace,
AppPath.CreateProfile,
AppPath.SyncEmails,
AppPath.InviteTeam,
AppPath.PlanRequired,
AppPath.PlanRequiredSuccess,
];
const { defaultHomePagePath } = useDefaultHomePagePath();
const isMatchingOpenRoute =
isMatchingLocation(AppPath.Invite) ||
isMatchingLocation(AppPath.ResetPassword);
const isMatchingOngoingUserCreationRoute =
isMatchingOpenRoute ||
isMatchingLocation(AppPath.SignInUp) ||
isMatchingLocation(AppPath.VerifyEmail) ||
isMatchingLocation(AppPath.Verify);
const isMatchingOnboardingRoute =
isMatchingOngoingUserCreationRoute ||
isMatchingLocation(AppPath.CreateWorkspace) ||
isMatchingLocation(AppPath.CreateProfile) ||
isMatchingLocation(AppPath.SyncEmails) ||
isMatchingLocation(AppPath.InviteTeam) ||
isMatchingLocation(AppPath.PlanRequired) ||
isMatchingLocation(AppPath.PlanRequiredSuccess);
const objectNamePlural = useParams().objectNamePlural ?? '';
const objectMetadataItems = useRecoilValue(objectMetadataItemsState);
@@ -44,27 +47,19 @@ export const usePageChangeEffectNavigateLocation = () => {
(objectMetadataItem) => objectMetadataItem.namePlural === objectNamePlural,
);
if (
!isLoggedIn &&
!someMatchingLocationOf([
...onGoingUserCreationPaths,
AppPath.ResetPassword,
])
) {
if (!isLoggedIn && !isMatchingOngoingUserCreationRoute) {
return AppPath.SignInUp;
}
if (
onboardingStatus === OnboardingStatus.PLAN_REQUIRED &&
!someMatchingLocationOf([AppPath.PlanRequired, AppPath.PlanRequiredSuccess])
!isMatchingLocation(AppPath.PlanRequired) &&
!isMatchingLocation(AppPath.PlanRequiredSuccess)
) {
return AppPath.PlanRequired;
}
if (
isWorkspaceSuspended &&
!isMatchingLocation(location, AppPath.SettingsCatchAll)
) {
if (isWorkspaceSuspended && !isMatchingLocation(AppPath.SettingsCatchAll)) {
return `${AppPath.SettingsCatchAll.replace('/*', '')}/${
SettingsPath.Billing
}`;
@@ -72,50 +67,47 @@ export const usePageChangeEffectNavigateLocation = () => {
if (
onboardingStatus === OnboardingStatus.WORKSPACE_ACTIVATION &&
!someMatchingLocationOf([
AppPath.CreateWorkspace,
AppPath.PlanRequiredSuccess,
])
!isMatchingLocation(AppPath.CreateWorkspace) &&
!isMatchingLocation(AppPath.PlanRequiredSuccess)
) {
return AppPath.CreateWorkspace;
}
if (
onboardingStatus === OnboardingStatus.PROFILE_CREATION &&
!isMatchingLocation(location, AppPath.CreateProfile)
!isMatchingLocation(AppPath.CreateProfile)
) {
return AppPath.CreateProfile;
}
if (
onboardingStatus === OnboardingStatus.SYNC_EMAIL &&
!isMatchingLocation(location, AppPath.SyncEmails)
!isMatchingLocation(AppPath.SyncEmails)
) {
return AppPath.SyncEmails;
}
if (
onboardingStatus === OnboardingStatus.INVITE_TEAM &&
!isMatchingLocation(location, AppPath.InviteTeam)
!isMatchingLocation(AppPath.InviteTeam)
) {
return AppPath.InviteTeam;
}
if (
onboardingStatus === OnboardingStatus.COMPLETED &&
someMatchingLocationOf([...onboardingPaths, ...onGoingUserCreationPaths]) &&
!isMatchingLocation(location, AppPath.ResetPassword) &&
isMatchingOnboardingRoute &&
isLoggedIn
) {
return defaultHomePagePath;
}
if (isMatchingLocation(location, AppPath.Index) && isLoggedIn) {
if (isMatchingLocation(AppPath.Index) && isLoggedIn) {
return defaultHomePagePath;
}
if (
isMatchingLocation(location, AppPath.RecordIndexPage) &&
isMatchingLocation(AppPath.RecordIndexPage) &&
!isDefined(objectMetadataItem)
) {
return AppPath.NotFound;
+9 -172
View File
@@ -93,11 +93,6 @@ msgstr "{apiKeyName} API-sleutel"
msgid "{contextStoreNumberOfSelectedRecords} selected"
msgstr "{contextStoreNumberOfSelectedRecords} geselekteer"
#. js-lingui-id: wapGcj
#: src/modules/auth/components/VerifyEmailEffect.tsx
msgid "{message}"
msgstr ""
#. js-lingui-id: 6j5rE1
#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowRecordAgnosticActions.tsx
#: src/modules/action-menu/actions/record-actions/run-workflow-actions/hooks/useRunWorkflowRecordActions.tsx
@@ -109,11 +104,6 @@ msgstr "{name}"
msgid "{workspaceMemberName} will be unassigned from the following role:"
msgstr "{workspaceMemberName} sal ontkoppel word van die volgende rol:"
#. js-lingui-id: NNQszp
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "⚠️ Please verify the auto mapping of the columns. You can also ignore or change the mapping of the columns."
msgstr ""
#. js-lingui-id: YT0WJ4
#: src/pages/onboarding/ChooseYourPlan.tsx
#~ msgid "1 000 workflow node executions"
@@ -627,7 +617,7 @@ msgid "Are you sure you want to delete this record? It can be recovered from the
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/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Are you sure? Your current information will not be saved."
msgstr ""
@@ -808,7 +798,7 @@ msgstr "Kan nie API-name vir standaardobjekte verander nie"
#: 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/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
msgid "Cancel"
msgstr "Kanselleer"
@@ -1257,11 +1247,6 @@ msgstr "Skep jou werksruimte"
msgid "Created"
msgstr "Geskep"
#. js-lingui-id: R3PLzn
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
msgid "currencies"
msgstr ""
#. js-lingui-id: 6YzXhC
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
msgid "Current value from server environment. Set a custom value to override."
@@ -1498,11 +1483,6 @@ msgstr "Verwyder rekening en al die geassosieerde data"
msgid "Delete API key"
msgstr "Verwyder API-sleutel"
#. js-lingui-id: x2p4/4
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
msgid "Delete field"
msgstr ""
#. js-lingui-id: 4dpwsE
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
#~ msgid "Delete record"
@@ -1736,7 +1716,6 @@ msgstr "Vroegste datum"
#: src/modules/views/view-picker/components/ViewPickerOptionDropdown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Edit"
msgstr "Redigeer"
@@ -1819,8 +1798,8 @@ msgstr "E-pos verifikasie"
#. js-lingui-id: TBv/iZ
#: src/modules/auth/components/VerifyEmailEffect.tsx
#~ msgid "Email verification failed."
#~ msgstr "E-posverifikasie het misluk."
msgid "Email verification failed."
msgstr "E-posverifikasie het misluk."
#. js-lingui-id: svTijF
#: src/modules/auth/sign-in-up/hooks/useHandleResendEmailVerificationToken.ts
@@ -1968,11 +1947,6 @@ msgstr "Fout met die verwydering van SSO Identiteitsverskaffer"
msgid "Error editing SSO Identity Provider"
msgstr "Fout met die redigering van SSO Identiteitsverskaffer"
#. js-lingui-id: 2GvilU
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Error loading message"
msgstr ""
#. js-lingui-id: bj7nh3
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error regenerating api key: {err}"
@@ -2046,7 +2020,7 @@ msgid "Existing objects"
msgstr "Bestaande voorwerpe"
#. js-lingui-id: ydzS9x
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit"
msgstr ""
@@ -2056,7 +2030,7 @@ msgstr ""
#~ msgstr "Verlaat Volskerm"
#. js-lingui-id: XB4onr
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit import flow"
msgstr ""
@@ -2358,11 +2332,6 @@ msgstr "Globaal"
msgid "Go to Companies"
msgstr ""
#. js-lingui-id: dHvI9O
#: src/modules/workflow/components/OverrideWorkflowDraftConfirmationModal.tsx
msgid "Go to Draft"
msgstr ""
#. js-lingui-id: BQE4ob
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Go to Notes"
@@ -2386,9 +2355,7 @@ msgid "Go to runs"
msgstr "Gaan na uitvoerings"
#. js-lingui-id: mT57+Q
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Go to Settings"
msgstr "Gaan na instellings"
@@ -2471,7 +2438,6 @@ msgstr "Verborge velde"
#. js-lingui-id: vLyv1R
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Hide"
msgstr "Steek weg"
@@ -2557,11 +2523,6 @@ msgstr "Identiteitsverskaffer"
msgid "Identity Provider Metadata XML"
msgstr "Identiteitsverskaffer Metadata XML"
#. js-lingui-id: ZfP/Ap
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
msgid "If this is unexpected, please verify your settings."
msgstr ""
#. js-lingui-id: j843N3
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "If youve lost this key, you can regenerate it, but be aware that any script using this key will need to be updated. Please type\"{confirmationValue}\" to confirm."
@@ -2788,11 +2749,6 @@ msgstr "Italiaans"
msgid "Japanese"
msgstr "Japanees"
#. js-lingui-id: VIK/N0
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
msgid "JSON keys cannot contain spaces"
msgstr ""
#. js-lingui-id: OGXtL8
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -2862,16 +2818,6 @@ msgstr "Laaste 7 Dae (oudste → nuutste)"
msgid "Last Name"
msgstr "Van"
#. js-lingui-id: s0kiVA
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
msgid "Last payment failed. Please contact your admin."
msgstr ""
#. js-lingui-id: 3u/3zO
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
msgid "Last payment failed. Please update your billing details."
msgstr ""
#. js-lingui-id: wL3cK8
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
msgid "Latest"
@@ -2924,11 +2870,6 @@ msgstr "Skakel na knipbord gekopieer"
msgid "Listings"
msgstr "Lyste"
#. js-lingui-id: Nx262D
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Loading csv ... "
msgstr ""
#. js-lingui-id: s1MstR
#: src/modules/settings/admin-panel/health-status/components/WorkerMetricsGraph.tsx
msgid "Loading metrics data..."
@@ -2936,7 +2877,6 @@ msgstr "Laai maatstawedata..."
#. js-lingui-id: Z3FXyt
#: src/modules/settings/admin-panel/components/SettingsAdminVersionDisplay.tsx
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Loading..."
msgstr ""
@@ -3032,11 +2972,6 @@ msgstr "Maks"
msgid "Members"
msgstr "Lede"
#. js-lingui-id: U15XwX
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Message not found"
msgstr ""
#. js-lingui-id: elpx6r
#: src/modules/settings/admin-panel/health-status/components/ConnectedAccountHealthStatus.tsx
msgid "Message Sync"
@@ -3090,13 +3025,11 @@ msgstr "Meer opsies"
#. js-lingui-id: iSLA/r
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Move left"
msgstr "Skuif links"
#. js-lingui-id: Ubl2by
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Move right"
msgstr "Skuif regs"
@@ -3284,11 +3217,6 @@ msgstr "Geen gekoppelde rekening"
msgid "No country"
msgstr "Geen land nie"
#. js-lingui-id: 7tCnBa
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
msgid "No Data Available for Remote Table"
msgstr ""
#. js-lingui-id: pxvJ9B
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data containing errors"
@@ -3304,11 +3232,6 @@ msgstr ""
msgid "No free workflow executions left. End trial period and activate your billing to continue."
msgstr ""
#. js-lingui-id: pxYUeX
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
msgid "No free workflow executions left. Please contact your admin."
msgstr ""
#. js-lingui-id: OcMef3
#: src/modules/settings/admin-panel/components/SettingsAdminVersionContainer.tsx
msgid "No latest version found"
@@ -3387,7 +3310,6 @@ msgstr "Geen rekords gevind nie"
#. js-lingui-id: Ev2r9A
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCountrySelect.tsx
msgid "No results"
msgstr ""
@@ -3460,16 +3382,6 @@ msgstr "Nie leeg nie"
msgid "Not Found"
msgstr "Nie Gevind Nie"
#. js-lingui-id: 51G4/+
#: src/modules/activities/calendar/components/CalendarEventNotSharedContent.tsx
msgid "Not shared"
msgstr ""
#. js-lingui-id: uzFo/5
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessageBodyNotShared.tsx
msgid "Not shared by {notSharedByFullName}"
msgstr ""
#. js-lingui-id: hZWthZ
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Not synced"
@@ -3844,8 +3756,6 @@ msgstr "Rekord beeld"
#. js-lingui-id: K6/7kH
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
msgid "Record label"
msgstr "Rekord etiket"
@@ -3940,11 +3850,6 @@ msgstr "Verwyder uit gunstelinge"
msgid "Remove option"
msgstr "Verwyder opsie"
#. js-lingui-id: Ee8JBW
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
msgid "Reorder field"
msgstr ""
#. js-lingui-id: OfhWJH
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/modules/views/components/ViewBarDetails.tsx
@@ -4116,22 +4021,16 @@ msgstr "Soek 'n indeks..."
msgid "Search config variables"
msgstr ""
#. js-lingui-id: WLfEv1
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCountrySelect.tsx
msgid "Search country"
msgstr ""
#. js-lingui-id: sSARNY
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
msgid "Search currency"
msgstr ""
#. js-lingui-id: 7taA9j
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: 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/ObjectFilterDropdownFieldSelect.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterFieldSelectSearchInput.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterDropdownFieldSelectMenu.tsx
msgid "Search fields"
msgstr "Soek velde"
@@ -4281,8 +4180,8 @@ 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 ""
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
@@ -4555,11 +4454,6 @@ msgstr "Onderwerp en metadata"
msgid "Subject and metadata will be shared with your team."
msgstr "Onderwerp en metadata sal met jou span gedeel word."
#. js-lingui-id: DvSvG9
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessageForbidden.tsx
msgid "Subject not shared"
msgstr ""
#. js-lingui-id: J9ylmk
#: src/modules/settings/accounts/components/SettingsAccountsMessageVisibilityCard.tsx
msgid "Subject, body and attachments will be shared with your team."
@@ -4570,11 +4464,6 @@ msgstr "Onderwerp, liggaam en aanhangsels sal met jou span gedeel word."
msgid "Submit"
msgstr ""
#. js-lingui-id: EDl9kS
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Subscribe"
msgstr ""
#. js-lingui-id: uvY7Wk
#: src/modules/billing/hooks/useEndSubscriptionTrialPeriod.ts
msgid "Subscription activated."
@@ -4905,7 +4794,6 @@ msgstr "Tydstempel en deelnemers sal met jou span gedeel word."
#. js-lingui-id: ecUA8p
#: src/modules/settings/admin-panel/health-status/constants/WorkerQueueMetricsSelectOptions.ts
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Today"
msgstr "Vandag"
@@ -4914,11 +4802,6 @@ msgstr "Vandag"
msgid "Toggle all object permissions"
msgstr ""
#. js-lingui-id: BRMXj0
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Tomorrow"
msgstr ""
#. js-lingui-id: vb0Q0/
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
#~ msgid "Total Users"
@@ -4929,16 +4812,6 @@ msgstr ""
msgid "Track your monthly workflow credit consumption."
msgstr ""
#. js-lingui-id: wN0jHF
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Trial expired. Please contact your admin"
msgstr ""
#. js-lingui-id: y985qL
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Trial expired. Please update your billing details."
msgstr ""
#. js-lingui-id: PiUt3N
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
@@ -5005,12 +4878,6 @@ msgstr "Onbekende fout"
msgid "Unlimited contacts"
msgstr "Onbeperkte kontakte"
#. js-lingui-id: EkH9pt
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Update"
msgstr ""
#. js-lingui-id: +b7T3G
#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx
msgid "Updated"
@@ -5203,21 +5070,6 @@ msgstr "Sigbare groepe"
msgid "Visualize"
msgstr "Visualiseer"
#. js-lingui-id: zFSQY3
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was created by"
msgstr ""
#. js-lingui-id: uHpu1c
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was deleted by"
msgstr ""
#. js-lingui-id: S0enzB
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was restored by"
msgstr ""
#. js-lingui-id: id6ein
#: src/modules/ui/input/components/ImageInput.tsx
msgid "We support your square PNGs, JPEGs and GIFs under 10MB"
@@ -5365,11 +5217,6 @@ msgstr "Skryf 'n geheim"
msgid "yes"
msgstr "ja"
#. js-lingui-id: y/0uwd
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Yesterday"
msgstr ""
#. js-lingui-id: qsAug0
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
#~ msgid "You are already importing this column."
@@ -5430,16 +5277,6 @@ msgstr "Jou naam soos dit op die app vertoon sal word"
msgid "Your Workspace"
msgstr "Jou Werkruimte"
#. js-lingui-id: oC6WBs
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Your workspace doesn't have an active subscription."
msgstr ""
#. js-lingui-id: QBTEtW
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Your workspace doesn't have an active subscription. Please contact your admin."
msgstr ""
#. js-lingui-id: RhNbPE
#: src/pages/settings/SettingsBilling.tsx
msgid "Your workspace will be disabled"
+9 -172
View File
@@ -93,11 +93,6 @@ msgstr "مفتاح واجهة برمجة التطبيقات {apiKeyName}"
msgid "{contextStoreNumberOfSelectedRecords} selected"
msgstr "{contextStoreNumberOfSelectedRecords} مُختار"
#. js-lingui-id: wapGcj
#: src/modules/auth/components/VerifyEmailEffect.tsx
msgid "{message}"
msgstr ""
#. js-lingui-id: 6j5rE1
#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowRecordAgnosticActions.tsx
#: src/modules/action-menu/actions/record-actions/run-workflow-actions/hooks/useRunWorkflowRecordActions.tsx
@@ -109,11 +104,6 @@ msgstr "{name}"
msgid "{workspaceMemberName} will be unassigned from the following role:"
msgstr "{workspaceMemberName} سيتم إلغاء تعيينه من الدور التالي:"
#. js-lingui-id: NNQszp
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "⚠️ Please verify the auto mapping of the columns. You can also ignore or change the mapping of the columns."
msgstr ""
#. js-lingui-id: YT0WJ4
#: src/pages/onboarding/ChooseYourPlan.tsx
#~ msgid "1 000 workflow node executions"
@@ -627,7 +617,7 @@ msgid "Are you sure you want to delete this record? It can be recovered from the
msgstr "هل أنت متأكد أنك تريد حذف هذا السجل؟ يمكن استرجاعه من قائمة الأوامر."
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Are you sure? Your current information will not be saved."
msgstr ""
@@ -808,7 +798,7 @@ msgstr "لا يمكن تغيير أسماء API للكائنات القياسي
#: 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/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
msgid "Cancel"
msgstr "إلغاء"
@@ -1257,11 +1247,6 @@ msgstr "إنشاء مساحة العمل الخاصة بك"
msgid "Created"
msgstr "أنشئ"
#. js-lingui-id: R3PLzn
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
msgid "currencies"
msgstr ""
#. js-lingui-id: 6YzXhC
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
msgid "Current value from server environment. Set a custom value to override."
@@ -1498,11 +1483,6 @@ msgstr "حذف الحساب وكل البيانات المرتبطة به"
msgid "Delete API key"
msgstr "حذف مفتاح API"
#. js-lingui-id: x2p4/4
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
msgid "Delete field"
msgstr ""
#. js-lingui-id: 4dpwsE
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
#~ msgid "Delete record"
@@ -1736,7 +1716,6 @@ msgstr "أقدم تاريخ"
#: src/modules/views/view-picker/components/ViewPickerOptionDropdown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Edit"
msgstr "تحرير"
@@ -1819,8 +1798,8 @@ msgstr "التحقق من البريد الإلكتروني"
#. js-lingui-id: TBv/iZ
#: src/modules/auth/components/VerifyEmailEffect.tsx
#~ msgid "Email verification failed."
#~ msgstr "فشلت عملية التحقق من البريد الإلكتروني."
msgid "Email verification failed."
msgstr "فشلت عملية التحقق من البريد الإلكتروني."
#. js-lingui-id: svTijF
#: src/modules/auth/sign-in-up/hooks/useHandleResendEmailVerificationToken.ts
@@ -1968,11 +1947,6 @@ msgstr "خطأ في حذف موفر هوية الدخول الأحادي SSO"
msgid "Error editing SSO Identity Provider"
msgstr "خطأ في تحرير موفر هوية الدخول الأحادي SSO"
#. js-lingui-id: 2GvilU
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Error loading message"
msgstr ""
#. js-lingui-id: bj7nh3
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error regenerating api key: {err}"
@@ -2046,7 +2020,7 @@ msgid "Existing objects"
msgstr "الكائنات الحالية"
#. js-lingui-id: ydzS9x
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit"
msgstr ""
@@ -2056,7 +2030,7 @@ msgstr ""
#~ msgstr "خروج من وضع ملء الشاشة"
#. js-lingui-id: XB4onr
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit import flow"
msgstr ""
@@ -2358,11 +2332,6 @@ msgstr "عالمي"
msgid "Go to Companies"
msgstr ""
#. js-lingui-id: dHvI9O
#: src/modules/workflow/components/OverrideWorkflowDraftConfirmationModal.tsx
msgid "Go to Draft"
msgstr ""
#. js-lingui-id: BQE4ob
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Go to Notes"
@@ -2386,9 +2355,7 @@ msgid "Go to runs"
msgstr "انتقل إلى العمليات"
#. js-lingui-id: mT57+Q
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Go to Settings"
msgstr "انتقل إلى الإعدادات"
@@ -2471,7 +2438,6 @@ msgstr "الحقول المخفية"
#. js-lingui-id: vLyv1R
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Hide"
msgstr "إخفاء"
@@ -2557,11 +2523,6 @@ msgstr "موفر الهوية"
msgid "Identity Provider Metadata XML"
msgstr "بيانات تعريف موفر الهوية XML"
#. js-lingui-id: ZfP/Ap
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
msgid "If this is unexpected, please verify your settings."
msgstr ""
#. js-lingui-id: j843N3
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "If youve lost this key, you can regenerate it, but be aware that any script using this key will need to be updated. Please type\"{confirmationValue}\" to confirm."
@@ -2788,11 +2749,6 @@ msgstr "الإيطالية"
msgid "Japanese"
msgstr "اليابانية"
#. js-lingui-id: VIK/N0
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
msgid "JSON keys cannot contain spaces"
msgstr ""
#. js-lingui-id: OGXtL8
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -2862,16 +2818,6 @@ msgstr "آخر 7 أيام (الأقدم ← الأحدث)"
msgid "Last Name"
msgstr "الاسم الأخير"
#. js-lingui-id: s0kiVA
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
msgid "Last payment failed. Please contact your admin."
msgstr ""
#. js-lingui-id: 3u/3zO
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
msgid "Last payment failed. Please update your billing details."
msgstr ""
#. js-lingui-id: wL3cK8
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
msgid "Latest"
@@ -2924,11 +2870,6 @@ msgstr "تم نسخ الرابط إلى الحافظة"
msgid "Listings"
msgstr "قوائم"
#. js-lingui-id: Nx262D
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Loading csv ... "
msgstr ""
#. js-lingui-id: s1MstR
#: src/modules/settings/admin-panel/health-status/components/WorkerMetricsGraph.tsx
msgid "Loading metrics data..."
@@ -2936,7 +2877,6 @@ msgstr "جارٍ تحميل بيانات القياسات..."
#. js-lingui-id: Z3FXyt
#: src/modules/settings/admin-panel/components/SettingsAdminVersionDisplay.tsx
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Loading..."
msgstr ""
@@ -3032,11 +2972,6 @@ msgstr "الأقصى"
msgid "Members"
msgstr "الأعضاء"
#. js-lingui-id: U15XwX
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Message not found"
msgstr ""
#. js-lingui-id: elpx6r
#: src/modules/settings/admin-panel/health-status/components/ConnectedAccountHealthStatus.tsx
msgid "Message Sync"
@@ -3090,13 +3025,11 @@ msgstr "مزيد من الخيارات"
#. js-lingui-id: iSLA/r
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Move left"
msgstr "نقل إلى اليسار"
#. js-lingui-id: Ubl2by
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Move right"
msgstr "نقل إلى اليمين"
@@ -3284,11 +3217,6 @@ msgstr "لا يوجد حساب متصل"
msgid "No country"
msgstr "لا دولة"
#. js-lingui-id: 7tCnBa
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
msgid "No Data Available for Remote Table"
msgstr ""
#. js-lingui-id: pxvJ9B
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data containing errors"
@@ -3304,11 +3232,6 @@ msgstr ""
msgid "No free workflow executions left. End trial period and activate your billing to continue."
msgstr ""
#. js-lingui-id: pxYUeX
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
msgid "No free workflow executions left. Please contact your admin."
msgstr ""
#. js-lingui-id: OcMef3
#: src/modules/settings/admin-panel/components/SettingsAdminVersionContainer.tsx
msgid "No latest version found"
@@ -3387,7 +3310,6 @@ msgstr "لم يتم العثور على سجلات"
#. js-lingui-id: Ev2r9A
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCountrySelect.tsx
msgid "No results"
msgstr ""
@@ -3460,16 +3382,6 @@ msgstr "ليس فارغاً"
msgid "Not Found"
msgstr "غير موجود"
#. js-lingui-id: 51G4/+
#: src/modules/activities/calendar/components/CalendarEventNotSharedContent.tsx
msgid "Not shared"
msgstr ""
#. js-lingui-id: uzFo/5
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessageBodyNotShared.tsx
msgid "Not shared by {notSharedByFullName}"
msgstr ""
#. js-lingui-id: hZWthZ
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Not synced"
@@ -3844,8 +3756,6 @@ msgstr "صورة سجل"
#. js-lingui-id: K6/7kH
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
msgid "Record label"
msgstr "ملصق السجل"
@@ -3940,11 +3850,6 @@ msgstr "\\\\"
msgid "Remove option"
msgstr "إزالة الخيار"
#. js-lingui-id: Ee8JBW
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
msgid "Reorder field"
msgstr ""
#. js-lingui-id: OfhWJH
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/modules/views/components/ViewBarDetails.tsx
@@ -4116,22 +4021,16 @@ msgstr "ابحث عن فهرس..."
msgid "Search config variables"
msgstr ""
#. js-lingui-id: WLfEv1
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCountrySelect.tsx
msgid "Search country"
msgstr ""
#. js-lingui-id: sSARNY
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
msgid "Search currency"
msgstr ""
#. js-lingui-id: 7taA9j
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: 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/ObjectFilterDropdownFieldSelect.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterFieldSelectSearchInput.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterDropdownFieldSelectMenu.tsx
msgid "Search fields"
msgstr "\\\\"
@@ -4281,8 +4180,8 @@ 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 ""
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
@@ -4555,11 +4454,6 @@ msgstr "الموضوع والبيانات الوصفية"
msgid "Subject and metadata will be shared with your team."
msgstr "سيتم مشاركة الموضوع والبيانات الوصفية مع فريقك."
#. js-lingui-id: DvSvG9
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessageForbidden.tsx
msgid "Subject not shared"
msgstr ""
#. js-lingui-id: J9ylmk
#: src/modules/settings/accounts/components/SettingsAccountsMessageVisibilityCard.tsx
msgid "Subject, body and attachments will be shared with your team."
@@ -4570,11 +4464,6 @@ msgstr "سيتم مشاركة الموضوع والمحتوى والمرفقات
msgid "Submit"
msgstr ""
#. js-lingui-id: EDl9kS
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Subscribe"
msgstr ""
#. js-lingui-id: uvY7Wk
#: src/modules/billing/hooks/useEndSubscriptionTrialPeriod.ts
msgid "Subscription activated."
@@ -4905,7 +4794,6 @@ msgstr "سيتم مشاركة الطابع الزمني والمشاركين م
#. js-lingui-id: ecUA8p
#: src/modules/settings/admin-panel/health-status/constants/WorkerQueueMetricsSelectOptions.ts
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Today"
msgstr "اليوم"
@@ -4914,11 +4802,6 @@ msgstr "اليوم"
msgid "Toggle all object permissions"
msgstr ""
#. js-lingui-id: BRMXj0
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Tomorrow"
msgstr ""
#. js-lingui-id: vb0Q0/
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
#~ msgid "Total Users"
@@ -4929,16 +4812,6 @@ msgstr ""
msgid "Track your monthly workflow credit consumption."
msgstr ""
#. js-lingui-id: wN0jHF
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Trial expired. Please contact your admin"
msgstr ""
#. js-lingui-id: y985qL
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Trial expired. Please update your billing details."
msgstr ""
#. js-lingui-id: PiUt3N
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
@@ -5005,12 +4878,6 @@ msgstr "خطأ غير معروف"
msgid "Unlimited contacts"
msgstr "جهات اتصال غير محدودة"
#. js-lingui-id: EkH9pt
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Update"
msgstr ""
#. js-lingui-id: +b7T3G
#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx
msgid "Updated"
@@ -5203,21 +5070,6 @@ msgstr "المجموعات المرئية"
msgid "Visualize"
msgstr "تصور"
#. js-lingui-id: zFSQY3
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was created by"
msgstr ""
#. js-lingui-id: uHpu1c
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was deleted by"
msgstr ""
#. js-lingui-id: S0enzB
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was restored by"
msgstr ""
#. js-lingui-id: id6ein
#: src/modules/ui/input/components/ImageInput.tsx
msgid "We support your square PNGs, JPEGs and GIFs under 10MB"
@@ -5365,11 +5217,6 @@ msgstr "اكتب سرًا"
msgid "yes"
msgstr "نعم"
#. js-lingui-id: y/0uwd
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Yesterday"
msgstr ""
#. js-lingui-id: qsAug0
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
#~ msgid "You are already importing this column."
@@ -5430,16 +5277,6 @@ msgstr "اسمك كما سيتم عرضه على التطبيق"
msgid "Your Workspace"
msgstr "مساحة عملك"
#. js-lingui-id: oC6WBs
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Your workspace doesn't have an active subscription."
msgstr ""
#. js-lingui-id: QBTEtW
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Your workspace doesn't have an active subscription. Please contact your admin."
msgstr ""
#. js-lingui-id: RhNbPE
#: src/pages/settings/SettingsBilling.tsx
msgid "Your workspace will be disabled"
+9 -172
View File
@@ -93,11 +93,6 @@ msgstr "Clau d'API de {apiKeyName}"
msgid "{contextStoreNumberOfSelectedRecords} selected"
msgstr "{contextStoreNumberOfSelectedRecords} seleccionats"
#. js-lingui-id: wapGcj
#: src/modules/auth/components/VerifyEmailEffect.tsx
msgid "{message}"
msgstr ""
#. js-lingui-id: 6j5rE1
#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowRecordAgnosticActions.tsx
#: src/modules/action-menu/actions/record-actions/run-workflow-actions/hooks/useRunWorkflowRecordActions.tsx
@@ -109,11 +104,6 @@ msgstr "{name}"
msgid "{workspaceMemberName} will be unassigned from the following role:"
msgstr "{workspaceMemberName} serà desassignat del següent rol:"
#. js-lingui-id: NNQszp
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "⚠️ Please verify the auto mapping of the columns. You can also ignore or change the mapping of the columns."
msgstr ""
#. js-lingui-id: YT0WJ4
#: src/pages/onboarding/ChooseYourPlan.tsx
#~ msgid "1 000 workflow node executions"
@@ -627,7 +617,7 @@ msgid "Are you sure you want to delete this record? It can be recovered from the
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/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Are you sure? Your current information will not be saved."
msgstr ""
@@ -808,7 +798,7 @@ msgstr "No es poden canviar els noms de les API per a objectes estàndard"
#: 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/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
msgid "Cancel"
msgstr "Cancel·la"
@@ -1257,11 +1247,6 @@ msgstr "Crea el teu espai de treball"
msgid "Created"
msgstr "Creat"
#. js-lingui-id: R3PLzn
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
msgid "currencies"
msgstr ""
#. js-lingui-id: 6YzXhC
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
msgid "Current value from server environment. Set a custom value to override."
@@ -1498,11 +1483,6 @@ msgstr "Suprimeix el compte i totes les dades associades"
msgid "Delete API key"
msgstr "Suprimeix la clau d'API"
#. js-lingui-id: x2p4/4
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
msgid "Delete field"
msgstr ""
#. js-lingui-id: 4dpwsE
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
#~ msgid "Delete record"
@@ -1736,7 +1716,6 @@ msgstr "Data més aviat possible"
#: src/modules/views/view-picker/components/ViewPickerOptionDropdown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Edit"
msgstr "Edita"
@@ -1819,8 +1798,8 @@ msgstr "Verificació de correu electrònic"
#. js-lingui-id: TBv/iZ
#: src/modules/auth/components/VerifyEmailEffect.tsx
#~ msgid "Email verification failed."
#~ msgstr "Error en la verificació del correu electrònic."
msgid "Email verification failed."
msgstr "Error en la verificació del correu electrònic."
#. js-lingui-id: svTijF
#: src/modules/auth/sign-in-up/hooks/useHandleResendEmailVerificationToken.ts
@@ -1968,11 +1947,6 @@ msgstr "Error en eliminar el Proveïdor d'Identitats SSO"
msgid "Error editing SSO Identity Provider"
msgstr "Error en editar el Proveïdor d'Identitats SSO"
#. js-lingui-id: 2GvilU
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Error loading message"
msgstr ""
#. js-lingui-id: bj7nh3
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error regenerating api key: {err}"
@@ -2046,7 +2020,7 @@ msgid "Existing objects"
msgstr "Objectes existents"
#. js-lingui-id: ydzS9x
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit"
msgstr ""
@@ -2056,7 +2030,7 @@ msgstr ""
#~ msgstr "Sortir de la pantalla completa"
#. js-lingui-id: XB4onr
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit import flow"
msgstr ""
@@ -2358,11 +2332,6 @@ msgstr "Global"
msgid "Go to Companies"
msgstr ""
#. js-lingui-id: dHvI9O
#: src/modules/workflow/components/OverrideWorkflowDraftConfirmationModal.tsx
msgid "Go to Draft"
msgstr ""
#. js-lingui-id: BQE4ob
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Go to Notes"
@@ -2386,9 +2355,7 @@ msgid "Go to runs"
msgstr "Anar a les execucions"
#. js-lingui-id: mT57+Q
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Go to Settings"
msgstr "Anar a Configuració"
@@ -2471,7 +2438,6 @@ msgstr "Camps ocults"
#. js-lingui-id: vLyv1R
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Hide"
msgstr "Amagar"
@@ -2557,11 +2523,6 @@ msgstr "Proveïdor d'identitat"
msgid "Identity Provider Metadata XML"
msgstr "Metadades XML del Proveïdor d'Identitat"
#. js-lingui-id: ZfP/Ap
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
msgid "If this is unexpected, please verify your settings."
msgstr ""
#. js-lingui-id: j843N3
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "If youve lost this key, you can regenerate it, but be aware that any script using this key will need to be updated. Please type\"{confirmationValue}\" to confirm."
@@ -2788,11 +2749,6 @@ msgstr "Italià"
msgid "Japanese"
msgstr "Japonès"
#. js-lingui-id: VIK/N0
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
msgid "JSON keys cannot contain spaces"
msgstr ""
#. js-lingui-id: OGXtL8
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -2862,16 +2818,6 @@ msgstr "Darrers 7 Dies (més antic → més nou)"
msgid "Last Name"
msgstr "Cognom"
#. js-lingui-id: s0kiVA
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
msgid "Last payment failed. Please contact your admin."
msgstr ""
#. js-lingui-id: 3u/3zO
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
msgid "Last payment failed. Please update your billing details."
msgstr ""
#. js-lingui-id: wL3cK8
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
msgid "Latest"
@@ -2924,11 +2870,6 @@ msgstr "Enllaç copiat al porta-retalls"
msgid "Listings"
msgstr "Llistats"
#. js-lingui-id: Nx262D
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Loading csv ... "
msgstr ""
#. js-lingui-id: s1MstR
#: src/modules/settings/admin-panel/health-status/components/WorkerMetricsGraph.tsx
msgid "Loading metrics data..."
@@ -2936,7 +2877,6 @@ msgstr "S'estan carregant les dades de mètriques..."
#. js-lingui-id: Z3FXyt
#: src/modules/settings/admin-panel/components/SettingsAdminVersionDisplay.tsx
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Loading..."
msgstr ""
@@ -3032,11 +2972,6 @@ msgstr "Màxim"
msgid "Members"
msgstr "Membres"
#. js-lingui-id: U15XwX
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Message not found"
msgstr ""
#. js-lingui-id: elpx6r
#: src/modules/settings/admin-panel/health-status/components/ConnectedAccountHealthStatus.tsx
msgid "Message Sync"
@@ -3090,13 +3025,11 @@ msgstr "Més opcions"
#. js-lingui-id: iSLA/r
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Move left"
msgstr "Moure a l'esquerra"
#. js-lingui-id: Ubl2by
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Move right"
msgstr "Moure a la dreta"
@@ -3284,11 +3217,6 @@ msgstr "Cap compte connectat"
msgid "No country"
msgstr "Sense país"
#. js-lingui-id: 7tCnBa
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
msgid "No Data Available for Remote Table"
msgstr ""
#. js-lingui-id: pxvJ9B
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data containing errors"
@@ -3304,11 +3232,6 @@ msgstr ""
msgid "No free workflow executions left. End trial period and activate your billing to continue."
msgstr ""
#. js-lingui-id: pxYUeX
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
msgid "No free workflow executions left. Please contact your admin."
msgstr ""
#. js-lingui-id: OcMef3
#: src/modules/settings/admin-panel/components/SettingsAdminVersionContainer.tsx
msgid "No latest version found"
@@ -3387,7 +3310,6 @@ msgstr "No s'han trobat registres"
#. js-lingui-id: Ev2r9A
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCountrySelect.tsx
msgid "No results"
msgstr ""
@@ -3460,16 +3382,6 @@ msgstr "No buit"
msgid "Not Found"
msgstr "No Trobat"
#. js-lingui-id: 51G4/+
#: src/modules/activities/calendar/components/CalendarEventNotSharedContent.tsx
msgid "Not shared"
msgstr ""
#. js-lingui-id: uzFo/5
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessageBodyNotShared.tsx
msgid "Not shared by {notSharedByFullName}"
msgstr ""
#. js-lingui-id: hZWthZ
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Not synced"
@@ -3844,8 +3756,6 @@ msgstr "Imatge de registre"
#. js-lingui-id: K6/7kH
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
msgid "Record label"
msgstr "Etiqueta de registre"
@@ -3940,11 +3850,6 @@ msgstr "Elimina dels preferits"
msgid "Remove option"
msgstr "Elimina opció"
#. js-lingui-id: Ee8JBW
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
msgid "Reorder field"
msgstr ""
#. js-lingui-id: OfhWJH
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/modules/views/components/ViewBarDetails.tsx
@@ -4116,22 +4021,16 @@ msgstr "Cerca un índex..."
msgid "Search config variables"
msgstr ""
#. js-lingui-id: WLfEv1
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCountrySelect.tsx
msgid "Search country"
msgstr ""
#. js-lingui-id: sSARNY
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
msgid "Search currency"
msgstr ""
#. js-lingui-id: 7taA9j
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: 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/ObjectFilterDropdownFieldSelect.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterFieldSelectSearchInput.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterDropdownFieldSelectMenu.tsx
msgid "Search fields"
msgstr "Cerca camps"
@@ -4281,8 +4180,8 @@ 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 ""
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
@@ -4555,11 +4454,6 @@ msgstr "Assignatura i metadades"
msgid "Subject and metadata will be shared with your team."
msgstr "Assignatura i metadades seran compartides amb el teu equip."
#. js-lingui-id: DvSvG9
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessageForbidden.tsx
msgid "Subject not shared"
msgstr ""
#. js-lingui-id: J9ylmk
#: src/modules/settings/accounts/components/SettingsAccountsMessageVisibilityCard.tsx
msgid "Subject, body and attachments will be shared with your team."
@@ -4570,11 +4464,6 @@ msgstr "Assignatura, cos i adjunts seran compartits amb el teu equip."
msgid "Submit"
msgstr ""
#. js-lingui-id: EDl9kS
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Subscribe"
msgstr ""
#. js-lingui-id: uvY7Wk
#: src/modules/billing/hooks/useEndSubscriptionTrialPeriod.ts
msgid "Subscription activated."
@@ -4905,7 +4794,6 @@ msgstr "La marca de temps i els participants seran compartits amb el teu equip."
#. js-lingui-id: ecUA8p
#: src/modules/settings/admin-panel/health-status/constants/WorkerQueueMetricsSelectOptions.ts
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Today"
msgstr "Avui"
@@ -4914,11 +4802,6 @@ msgstr "Avui"
msgid "Toggle all object permissions"
msgstr ""
#. js-lingui-id: BRMXj0
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Tomorrow"
msgstr ""
#. js-lingui-id: vb0Q0/
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
#~ msgid "Total Users"
@@ -4929,16 +4812,6 @@ msgstr ""
msgid "Track your monthly workflow credit consumption."
msgstr ""
#. js-lingui-id: wN0jHF
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Trial expired. Please contact your admin"
msgstr ""
#. js-lingui-id: y985qL
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Trial expired. Please update your billing details."
msgstr ""
#. js-lingui-id: PiUt3N
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
@@ -5005,12 +4878,6 @@ msgstr "Error desconegut"
msgid "Unlimited contacts"
msgstr "Contactes il·limitats"
#. js-lingui-id: EkH9pt
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Update"
msgstr ""
#. js-lingui-id: +b7T3G
#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx
msgid "Updated"
@@ -5203,21 +5070,6 @@ msgstr "Grups visibles"
msgid "Visualize"
msgstr "Visualitzar"
#. js-lingui-id: zFSQY3
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was created by"
msgstr ""
#. js-lingui-id: uHpu1c
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was deleted by"
msgstr ""
#. js-lingui-id: S0enzB
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was restored by"
msgstr ""
#. js-lingui-id: id6ein
#: src/modules/ui/input/components/ImageInput.tsx
msgid "We support your square PNGs, JPEGs and GIFs under 10MB"
@@ -5365,11 +5217,6 @@ msgstr "Escriu un secret"
msgid "yes"
msgstr "sí"
#. js-lingui-id: y/0uwd
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Yesterday"
msgstr ""
#. js-lingui-id: qsAug0
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
#~ msgid "You are already importing this column."
@@ -5430,16 +5277,6 @@ msgstr "El vostre nom tal com serà mostrat a l'aplicació"
msgid "Your Workspace"
msgstr "El vostre Espai de Treball"
#. js-lingui-id: oC6WBs
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Your workspace doesn't have an active subscription."
msgstr ""
#. js-lingui-id: QBTEtW
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Your workspace doesn't have an active subscription. Please contact your admin."
msgstr ""
#. js-lingui-id: RhNbPE
#: src/pages/settings/SettingsBilling.tsx
msgid "Your workspace will be disabled"
+9 -172
View File
@@ -93,11 +93,6 @@ msgstr "{apiKeyName} API klíč"
msgid "{contextStoreNumberOfSelectedRecords} selected"
msgstr "{contextStoreNumberOfSelectedRecords} vybrané"
#. js-lingui-id: wapGcj
#: src/modules/auth/components/VerifyEmailEffect.tsx
msgid "{message}"
msgstr ""
#. js-lingui-id: 6j5rE1
#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowRecordAgnosticActions.tsx
#: src/modules/action-menu/actions/record-actions/run-workflow-actions/hooks/useRunWorkflowRecordActions.tsx
@@ -109,11 +104,6 @@ msgstr "{name}"
msgid "{workspaceMemberName} will be unassigned from the following role:"
msgstr "{workspaceMemberName} bude odebrán z následující role:"
#. js-lingui-id: NNQszp
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "⚠️ Please verify the auto mapping of the columns. You can also ignore or change the mapping of the columns."
msgstr ""
#. js-lingui-id: YT0WJ4
#: src/pages/onboarding/ChooseYourPlan.tsx
#~ msgid "1 000 workflow node executions"
@@ -627,7 +617,7 @@ msgid "Are you sure you want to delete this record? It can be recovered from the
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/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Are you sure? Your current information will not be saved."
msgstr ""
@@ -808,7 +798,7 @@ msgstr "Nelze změnit názvy API pro standardní objekty"
#: 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/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
msgid "Cancel"
msgstr "Storno"
@@ -1257,11 +1247,6 @@ msgstr "Vytvořte svůj pracovní prostor"
msgid "Created"
msgstr "Vytvořeno"
#. js-lingui-id: R3PLzn
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
msgid "currencies"
msgstr ""
#. js-lingui-id: 6YzXhC
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
msgid "Current value from server environment. Set a custom value to override."
@@ -1498,11 +1483,6 @@ msgstr "Smazat účet a veškerá související data"
msgid "Delete API key"
msgstr "Smazat API klíč"
#. js-lingui-id: x2p4/4
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
msgid "Delete field"
msgstr ""
#. js-lingui-id: 4dpwsE
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
#~ msgid "Delete record"
@@ -1736,7 +1716,6 @@ msgstr "Nejstarší datum"
#: src/modules/views/view-picker/components/ViewPickerOptionDropdown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Edit"
msgstr "Upravit"
@@ -1819,8 +1798,8 @@ msgstr "Ověření e-mailu"
#. js-lingui-id: TBv/iZ
#: src/modules/auth/components/VerifyEmailEffect.tsx
#~ msgid "Email verification failed."
#~ msgstr "Ověření e-mailu selhalo."
msgid "Email verification failed."
msgstr "Ověření e-mailu selhalo."
#. js-lingui-id: svTijF
#: src/modules/auth/sign-in-up/hooks/useHandleResendEmailVerificationToken.ts
@@ -1968,11 +1947,6 @@ msgstr "Chyba při mazání poskytovatele identity SSO"
msgid "Error editing SSO Identity Provider"
msgstr "Chyba při úpravě poskytovatele identity SSO"
#. js-lingui-id: 2GvilU
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Error loading message"
msgstr ""
#. js-lingui-id: bj7nh3
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error regenerating api key: {err}"
@@ -2046,7 +2020,7 @@ msgid "Existing objects"
msgstr "Stávající objekty"
#. js-lingui-id: ydzS9x
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit"
msgstr ""
@@ -2056,7 +2030,7 @@ msgstr ""
#~ msgstr "Ukončit režim celé obrazovky"
#. js-lingui-id: XB4onr
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit import flow"
msgstr ""
@@ -2358,11 +2332,6 @@ msgstr "Globální"
msgid "Go to Companies"
msgstr ""
#. js-lingui-id: dHvI9O
#: src/modules/workflow/components/OverrideWorkflowDraftConfirmationModal.tsx
msgid "Go to Draft"
msgstr ""
#. js-lingui-id: BQE4ob
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Go to Notes"
@@ -2386,9 +2355,7 @@ msgid "Go to runs"
msgstr "Přejít na spuštění"
#. js-lingui-id: mT57+Q
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Go to Settings"
msgstr "Přejít do nastavení"
@@ -2471,7 +2438,6 @@ msgstr "Skrytá pole"
#. js-lingui-id: vLyv1R
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Hide"
msgstr "Skrýt"
@@ -2557,11 +2523,6 @@ msgstr "Poskytovatel identity"
msgid "Identity Provider Metadata XML"
msgstr "Metadata XML poskytovatele identity"
#. js-lingui-id: ZfP/Ap
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
msgid "If this is unexpected, please verify your settings."
msgstr ""
#. js-lingui-id: j843N3
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "If youve lost this key, you can regenerate it, but be aware that any script using this key will need to be updated. Please type\"{confirmationValue}\" to confirm."
@@ -2788,11 +2749,6 @@ msgstr "Italština"
msgid "Japanese"
msgstr "Japonština"
#. js-lingui-id: VIK/N0
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
msgid "JSON keys cannot contain spaces"
msgstr ""
#. js-lingui-id: OGXtL8
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -2862,16 +2818,6 @@ msgstr "Posledních 7 dní (od nejstarších → k nejnovějším)"
msgid "Last Name"
msgstr "Příjmení"
#. js-lingui-id: s0kiVA
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
msgid "Last payment failed. Please contact your admin."
msgstr ""
#. js-lingui-id: 3u/3zO
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
msgid "Last payment failed. Please update your billing details."
msgstr ""
#. js-lingui-id: wL3cK8
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
msgid "Latest"
@@ -2924,11 +2870,6 @@ msgstr "Odkaz byl zkopírován do schránky"
msgid "Listings"
msgstr "Výpisy"
#. js-lingui-id: Nx262D
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Loading csv ... "
msgstr ""
#. js-lingui-id: s1MstR
#: src/modules/settings/admin-panel/health-status/components/WorkerMetricsGraph.tsx
msgid "Loading metrics data..."
@@ -2936,7 +2877,6 @@ msgstr "Načítání dat metrik..."
#. js-lingui-id: Z3FXyt
#: src/modules/settings/admin-panel/components/SettingsAdminVersionDisplay.tsx
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Loading..."
msgstr ""
@@ -3032,11 +2972,6 @@ msgstr "Maximální"
msgid "Members"
msgstr "Členové"
#. js-lingui-id: U15XwX
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Message not found"
msgstr ""
#. js-lingui-id: elpx6r
#: src/modules/settings/admin-panel/health-status/components/ConnectedAccountHealthStatus.tsx
msgid "Message Sync"
@@ -3090,13 +3025,11 @@ msgstr "Více možností"
#. js-lingui-id: iSLA/r
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Move left"
msgstr "Posunout doleva"
#. js-lingui-id: Ubl2by
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Move right"
msgstr "Posunout doprava"
@@ -3284,11 +3217,6 @@ msgstr "Žádný propojený účet"
msgid "No country"
msgstr "Žádná země"
#. js-lingui-id: 7tCnBa
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
msgid "No Data Available for Remote Table"
msgstr ""
#. js-lingui-id: pxvJ9B
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data containing errors"
@@ -3304,11 +3232,6 @@ msgstr ""
msgid "No free workflow executions left. End trial period and activate your billing to continue."
msgstr ""
#. js-lingui-id: pxYUeX
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
msgid "No free workflow executions left. Please contact your admin."
msgstr ""
#. js-lingui-id: OcMef3
#: src/modules/settings/admin-panel/components/SettingsAdminVersionContainer.tsx
msgid "No latest version found"
@@ -3387,7 +3310,6 @@ msgstr "Žádné záznamy nenalezeny"
#. js-lingui-id: Ev2r9A
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCountrySelect.tsx
msgid "No results"
msgstr ""
@@ -3460,16 +3382,6 @@ msgstr "Není prázdný"
msgid "Not Found"
msgstr "Nenalezeno"
#. js-lingui-id: 51G4/+
#: src/modules/activities/calendar/components/CalendarEventNotSharedContent.tsx
msgid "Not shared"
msgstr ""
#. js-lingui-id: uzFo/5
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessageBodyNotShared.tsx
msgid "Not shared by {notSharedByFullName}"
msgstr ""
#. js-lingui-id: hZWthZ
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Not synced"
@@ -3844,8 +3756,6 @@ msgstr "Záznamový obrázek"
#. js-lingui-id: K6/7kH
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
msgid "Record label"
msgstr "Záznamový popisek"
@@ -3940,11 +3850,6 @@ msgstr "Odebrat z oblíbených"
msgid "Remove option"
msgstr "Odstranit možnost"
#. js-lingui-id: Ee8JBW
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
msgid "Reorder field"
msgstr ""
#. js-lingui-id: OfhWJH
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/modules/views/components/ViewBarDetails.tsx
@@ -4116,22 +4021,16 @@ msgstr "Hledat v indexu..."
msgid "Search config variables"
msgstr ""
#. js-lingui-id: WLfEv1
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCountrySelect.tsx
msgid "Search country"
msgstr ""
#. js-lingui-id: sSARNY
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
msgid "Search currency"
msgstr ""
#. js-lingui-id: 7taA9j
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: 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/ObjectFilterDropdownFieldSelect.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterFieldSelectSearchInput.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterDropdownFieldSelectMenu.tsx
msgid "Search fields"
msgstr "Hledání ve sloupcích"
@@ -4281,8 +4180,8 @@ 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 ""
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
@@ -4555,11 +4454,6 @@ msgstr "Předmět a metadata"
msgid "Subject and metadata will be shared with your team."
msgstr "Předmět a metadata budou sdíleny s vaším týmem."
#. js-lingui-id: DvSvG9
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessageForbidden.tsx
msgid "Subject not shared"
msgstr ""
#. js-lingui-id: J9ylmk
#: src/modules/settings/accounts/components/SettingsAccountsMessageVisibilityCard.tsx
msgid "Subject, body and attachments will be shared with your team."
@@ -4570,11 +4464,6 @@ msgstr "Předmět, obsah a přílohy budou sdíleny s vaším týmem."
msgid "Submit"
msgstr ""
#. js-lingui-id: EDl9kS
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Subscribe"
msgstr ""
#. js-lingui-id: uvY7Wk
#: src/modules/billing/hooks/useEndSubscriptionTrialPeriod.ts
msgid "Subscription activated."
@@ -4905,7 +4794,6 @@ msgstr "Časové razítko a účastníci budou sdíleni s vaším týmem."
#. js-lingui-id: ecUA8p
#: src/modules/settings/admin-panel/health-status/constants/WorkerQueueMetricsSelectOptions.ts
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Today"
msgstr "Dnes"
@@ -4914,11 +4802,6 @@ msgstr "Dnes"
msgid "Toggle all object permissions"
msgstr ""
#. js-lingui-id: BRMXj0
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Tomorrow"
msgstr ""
#. js-lingui-id: vb0Q0/
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
#~ msgid "Total Users"
@@ -4929,16 +4812,6 @@ msgstr ""
msgid "Track your monthly workflow credit consumption."
msgstr ""
#. js-lingui-id: wN0jHF
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Trial expired. Please contact your admin"
msgstr ""
#. js-lingui-id: y985qL
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Trial expired. Please update your billing details."
msgstr ""
#. js-lingui-id: PiUt3N
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
@@ -5005,12 +4878,6 @@ msgstr "Neznámá chyba"
msgid "Unlimited contacts"
msgstr "Neomezený počet kontaktů"
#. js-lingui-id: EkH9pt
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Update"
msgstr ""
#. js-lingui-id: +b7T3G
#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx
msgid "Updated"
@@ -5203,21 +5070,6 @@ msgstr "Viditelné skupiny"
msgid "Visualize"
msgstr "Vizualizovat"
#. js-lingui-id: zFSQY3
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was created by"
msgstr ""
#. js-lingui-id: uHpu1c
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was deleted by"
msgstr ""
#. js-lingui-id: S0enzB
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was restored by"
msgstr ""
#. js-lingui-id: id6ein
#: src/modules/ui/input/components/ImageInput.tsx
msgid "We support your square PNGs, JPEGs and GIFs under 10MB"
@@ -5365,11 +5217,6 @@ msgstr "Napište tajemství"
msgid "yes"
msgstr "ano"
#. js-lingui-id: y/0uwd
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Yesterday"
msgstr ""
#. js-lingui-id: qsAug0
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
#~ msgid "You are already importing this column."
@@ -5430,16 +5277,6 @@ msgstr "Vaše jméno, jak bude zobrazeno v aplikaci"
msgid "Your Workspace"
msgstr "Váš pracovní prostor"
#. js-lingui-id: oC6WBs
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Your workspace doesn't have an active subscription."
msgstr ""
#. js-lingui-id: QBTEtW
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Your workspace doesn't have an active subscription. Please contact your admin."
msgstr ""
#. js-lingui-id: RhNbPE
#: src/pages/settings/SettingsBilling.tsx
msgid "Your workspace will be disabled"
+9 -172
View File
@@ -93,11 +93,6 @@ msgstr "{apiKeyName} API-nøgle"
msgid "{contextStoreNumberOfSelectedRecords} selected"
msgstr "{contextStoreNumberOfSelectedRecords} valgt"
#. js-lingui-id: wapGcj
#: src/modules/auth/components/VerifyEmailEffect.tsx
msgid "{message}"
msgstr ""
#. js-lingui-id: 6j5rE1
#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowRecordAgnosticActions.tsx
#: src/modules/action-menu/actions/record-actions/run-workflow-actions/hooks/useRunWorkflowRecordActions.tsx
@@ -109,11 +104,6 @@ msgstr "{name}"
msgid "{workspaceMemberName} will be unassigned from the following role:"
msgstr "{workspaceMemberName} vil blive fjernet fra f\\u00f8lgende rolle:"
#. js-lingui-id: NNQszp
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "⚠️ Please verify the auto mapping of the columns. You can also ignore or change the mapping of the columns."
msgstr ""
#. js-lingui-id: YT0WJ4
#: src/pages/onboarding/ChooseYourPlan.tsx
#~ msgid "1 000 workflow node executions"
@@ -627,7 +617,7 @@ msgid "Are you sure you want to delete this record? It can be recovered from the
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/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Are you sure? Your current information will not be saved."
msgstr ""
@@ -808,7 +798,7 @@ msgstr "Kan ikke ændre API-navne for standardobjekter"
#: 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/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
msgid "Cancel"
msgstr "Annuller"
@@ -1257,11 +1247,6 @@ msgstr "Opret dit arbejdsområde"
msgid "Created"
msgstr "Oprettet"
#. js-lingui-id: R3PLzn
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
msgid "currencies"
msgstr ""
#. js-lingui-id: 6YzXhC
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
msgid "Current value from server environment. Set a custom value to override."
@@ -1498,11 +1483,6 @@ msgstr "Slet konto og alle de tilknyttede data"
msgid "Delete API key"
msgstr "Slet API nøgle"
#. js-lingui-id: x2p4/4
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
msgid "Delete field"
msgstr ""
#. js-lingui-id: 4dpwsE
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
#~ msgid "Delete record"
@@ -1736,7 +1716,6 @@ msgstr "Tidligste dato"
#: src/modules/views/view-picker/components/ViewPickerOptionDropdown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Edit"
msgstr "Rediger"
@@ -1819,8 +1798,8 @@ msgstr "E-mail-verifikation"
#. js-lingui-id: TBv/iZ
#: src/modules/auth/components/VerifyEmailEffect.tsx
#~ msgid "Email verification failed."
#~ msgstr "E-mailgodkendelse mislykkedes."
msgid "Email verification failed."
msgstr "E-mailgodkendelse mislykkedes."
#. js-lingui-id: svTijF
#: src/modules/auth/sign-in-up/hooks/useHandleResendEmailVerificationToken.ts
@@ -1968,11 +1947,6 @@ msgstr "Fejl ved sletning af SSO Identitetsudbyder"
msgid "Error editing SSO Identity Provider"
msgstr "Fejl ved redigering af SSO Identitetsudbyder"
#. js-lingui-id: 2GvilU
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Error loading message"
msgstr ""
#. js-lingui-id: bj7nh3
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error regenerating api key: {err}"
@@ -2046,7 +2020,7 @@ msgid "Existing objects"
msgstr "Eksisterende objekter"
#. js-lingui-id: ydzS9x
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit"
msgstr ""
@@ -2056,7 +2030,7 @@ msgstr ""
#~ msgstr "Afslut fuld skærm"
#. js-lingui-id: XB4onr
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit import flow"
msgstr ""
@@ -2358,11 +2332,6 @@ msgstr "Globalt"
msgid "Go to Companies"
msgstr ""
#. js-lingui-id: dHvI9O
#: src/modules/workflow/components/OverrideWorkflowDraftConfirmationModal.tsx
msgid "Go to Draft"
msgstr ""
#. js-lingui-id: BQE4ob
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Go to Notes"
@@ -2386,9 +2355,7 @@ msgid "Go to runs"
msgstr "Gå til kørsler"
#. js-lingui-id: mT57+Q
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Go to Settings"
msgstr "Gå til indstillinger"
@@ -2471,7 +2438,6 @@ msgstr "Skjulte felter"
#. js-lingui-id: vLyv1R
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Hide"
msgstr "Skjul"
@@ -2557,11 +2523,6 @@ msgstr "Identitetsudbyder"
msgid "Identity Provider Metadata XML"
msgstr "Identitetsudbyder Metadata XML"
#. js-lingui-id: ZfP/Ap
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
msgid "If this is unexpected, please verify your settings."
msgstr ""
#. js-lingui-id: j843N3
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "If youve lost this key, you can regenerate it, but be aware that any script using this key will need to be updated. Please type\"{confirmationValue}\" to confirm."
@@ -2788,11 +2749,6 @@ msgstr "Italiensk"
msgid "Japanese"
msgstr "Japansk"
#. js-lingui-id: VIK/N0
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
msgid "JSON keys cannot contain spaces"
msgstr ""
#. js-lingui-id: OGXtL8
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -2862,16 +2818,6 @@ msgstr "Sidste 7 dage (ældste → nyeste)"
msgid "Last Name"
msgstr "Efternavn"
#. js-lingui-id: s0kiVA
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
msgid "Last payment failed. Please contact your admin."
msgstr ""
#. js-lingui-id: 3u/3zO
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
msgid "Last payment failed. Please update your billing details."
msgstr ""
#. js-lingui-id: wL3cK8
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
msgid "Latest"
@@ -2924,11 +2870,6 @@ msgstr "Link kopieret til udklipsholder"
msgid "Listings"
msgstr "Oversigter"
#. js-lingui-id: Nx262D
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Loading csv ... "
msgstr ""
#. js-lingui-id: s1MstR
#: src/modules/settings/admin-panel/health-status/components/WorkerMetricsGraph.tsx
msgid "Loading metrics data..."
@@ -2936,7 +2877,6 @@ msgstr "Indlæser metrikdata..."
#. js-lingui-id: Z3FXyt
#: src/modules/settings/admin-panel/components/SettingsAdminVersionDisplay.tsx
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Loading..."
msgstr ""
@@ -3032,11 +2972,6 @@ msgstr "Maks"
msgid "Members"
msgstr "Medlemmer"
#. js-lingui-id: U15XwX
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Message not found"
msgstr ""
#. js-lingui-id: elpx6r
#: src/modules/settings/admin-panel/health-status/components/ConnectedAccountHealthStatus.tsx
msgid "Message Sync"
@@ -3090,13 +3025,11 @@ msgstr "Flere muligheder"
#. js-lingui-id: iSLA/r
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Move left"
msgstr "Flyt til venstre"
#. js-lingui-id: Ubl2by
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Move right"
msgstr "Flyt til højre"
@@ -3284,11 +3217,6 @@ msgstr "Ingen tilknyttet konto"
msgid "No country"
msgstr "Intet land"
#. js-lingui-id: 7tCnBa
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
msgid "No Data Available for Remote Table"
msgstr ""
#. js-lingui-id: pxvJ9B
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data containing errors"
@@ -3304,11 +3232,6 @@ msgstr ""
msgid "No free workflow executions left. End trial period and activate your billing to continue."
msgstr ""
#. js-lingui-id: pxYUeX
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
msgid "No free workflow executions left. Please contact your admin."
msgstr ""
#. js-lingui-id: OcMef3
#: src/modules/settings/admin-panel/components/SettingsAdminVersionContainer.tsx
msgid "No latest version found"
@@ -3387,7 +3310,6 @@ msgstr "Ingen poster fundet"
#. js-lingui-id: Ev2r9A
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCountrySelect.tsx
msgid "No results"
msgstr ""
@@ -3460,16 +3382,6 @@ msgstr "Ikke tom"
msgid "Not Found"
msgstr "Ikke fundet"
#. js-lingui-id: 51G4/+
#: src/modules/activities/calendar/components/CalendarEventNotSharedContent.tsx
msgid "Not shared"
msgstr ""
#. js-lingui-id: uzFo/5
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessageBodyNotShared.tsx
msgid "Not shared by {notSharedByFullName}"
msgstr ""
#. js-lingui-id: hZWthZ
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Not synced"
@@ -3844,8 +3756,6 @@ msgstr "Optag billede"
#. js-lingui-id: K6/7kH
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
msgid "Record label"
msgstr "Optag label"
@@ -3940,11 +3850,6 @@ msgstr "Fjern fra favoritter"
msgid "Remove option"
msgstr "Fjern mulighed"
#. js-lingui-id: Ee8JBW
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
msgid "Reorder field"
msgstr ""
#. js-lingui-id: OfhWJH
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/modules/views/components/ViewBarDetails.tsx
@@ -4116,22 +4021,16 @@ msgstr "Søg i et indeks..."
msgid "Search config variables"
msgstr ""
#. js-lingui-id: WLfEv1
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCountrySelect.tsx
msgid "Search country"
msgstr ""
#. js-lingui-id: sSARNY
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
msgid "Search currency"
msgstr ""
#. js-lingui-id: 7taA9j
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: 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/ObjectFilterDropdownFieldSelect.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterFieldSelectSearchInput.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterDropdownFieldSelectMenu.tsx
msgid "Search fields"
msgstr "Søg felter"
@@ -4281,8 +4180,8 @@ 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 ""
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
@@ -4555,11 +4454,6 @@ msgstr "Emne og metadata"
msgid "Subject and metadata will be shared with your team."
msgstr "Emne og metadata vil blive delt med dit team."
#. js-lingui-id: DvSvG9
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessageForbidden.tsx
msgid "Subject not shared"
msgstr ""
#. js-lingui-id: J9ylmk
#: src/modules/settings/accounts/components/SettingsAccountsMessageVisibilityCard.tsx
msgid "Subject, body and attachments will be shared with your team."
@@ -4570,11 +4464,6 @@ msgstr "Emne, krop og vedhæftede filer vil blive delt med dit team."
msgid "Submit"
msgstr ""
#. js-lingui-id: EDl9kS
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Subscribe"
msgstr ""
#. js-lingui-id: uvY7Wk
#: src/modules/billing/hooks/useEndSubscriptionTrialPeriod.ts
msgid "Subscription activated."
@@ -4905,7 +4794,6 @@ msgstr "Tidsstempel og deltagere vil blive delt med dit team."
#. js-lingui-id: ecUA8p
#: src/modules/settings/admin-panel/health-status/constants/WorkerQueueMetricsSelectOptions.ts
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Today"
msgstr "I dag"
@@ -4914,11 +4802,6 @@ msgstr "I dag"
msgid "Toggle all object permissions"
msgstr ""
#. js-lingui-id: BRMXj0
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Tomorrow"
msgstr ""
#. js-lingui-id: vb0Q0/
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
#~ msgid "Total Users"
@@ -4929,16 +4812,6 @@ msgstr ""
msgid "Track your monthly workflow credit consumption."
msgstr ""
#. js-lingui-id: wN0jHF
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Trial expired. Please contact your admin"
msgstr ""
#. js-lingui-id: y985qL
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Trial expired. Please update your billing details."
msgstr ""
#. js-lingui-id: PiUt3N
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
@@ -5005,12 +4878,6 @@ msgstr "Ukendt fejl"
msgid "Unlimited contacts"
msgstr "Ubegrænsede kontakter"
#. js-lingui-id: EkH9pt
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Update"
msgstr ""
#. js-lingui-id: +b7T3G
#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx
msgid "Updated"
@@ -5203,21 +5070,6 @@ msgstr "Synlige grupper"
msgid "Visualize"
msgstr "Visualiser"
#. js-lingui-id: zFSQY3
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was created by"
msgstr ""
#. js-lingui-id: uHpu1c
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was deleted by"
msgstr ""
#. js-lingui-id: S0enzB
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was restored by"
msgstr ""
#. js-lingui-id: id6ein
#: src/modules/ui/input/components/ImageInput.tsx
msgid "We support your square PNGs, JPEGs and GIFs under 10MB"
@@ -5365,11 +5217,6 @@ msgstr "Skriv en hemmelighed"
msgid "yes"
msgstr "ja"
#. js-lingui-id: y/0uwd
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Yesterday"
msgstr ""
#. js-lingui-id: qsAug0
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
#~ msgid "You are already importing this column."
@@ -5430,16 +5277,6 @@ msgstr "Dit navn som det vil blive vist i appen"
msgid "Your Workspace"
msgstr "Dit arbejdsområde"
#. js-lingui-id: oC6WBs
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Your workspace doesn't have an active subscription."
msgstr ""
#. js-lingui-id: QBTEtW
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Your workspace doesn't have an active subscription. Please contact your admin."
msgstr ""
#. js-lingui-id: RhNbPE
#: src/pages/settings/SettingsBilling.tsx
msgid "Your workspace will be disabled"
+9 -172
View File
@@ -93,11 +93,6 @@ msgstr "{apiKeyName} API-Schlüssel"
msgid "{contextStoreNumberOfSelectedRecords} selected"
msgstr "{contextStoreNumberOfSelectedRecords} ausgewählt"
#. js-lingui-id: wapGcj
#: src/modules/auth/components/VerifyEmailEffect.tsx
msgid "{message}"
msgstr ""
#. js-lingui-id: 6j5rE1
#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowRecordAgnosticActions.tsx
#: src/modules/action-menu/actions/record-actions/run-workflow-actions/hooks/useRunWorkflowRecordActions.tsx
@@ -109,11 +104,6 @@ msgstr "{name}"
msgid "{workspaceMemberName} will be unassigned from the following role:"
msgstr "{workspaceMemberName} wird von folgender Rolle abgezogen:"
#. js-lingui-id: NNQszp
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "⚠️ Please verify the auto mapping of the columns. You can also ignore or change the mapping of the columns."
msgstr ""
#. js-lingui-id: YT0WJ4
#: src/pages/onboarding/ChooseYourPlan.tsx
#~ msgid "1 000 workflow node executions"
@@ -627,7 +617,7 @@ msgid "Are you sure you want to delete this record? It can be recovered from the
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/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Are you sure? Your current information will not be saved."
msgstr ""
@@ -808,7 +798,7 @@ msgstr "API-Namen für Standardobjekte können nicht geändert werden"
#: 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/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
msgid "Cancel"
msgstr "Abbrechen"
@@ -1257,11 +1247,6 @@ msgstr "Ihren Arbeitsbereich erstellen"
msgid "Created"
msgstr "Erstellt"
#. js-lingui-id: R3PLzn
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
msgid "currencies"
msgstr ""
#. js-lingui-id: 6YzXhC
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
msgid "Current value from server environment. Set a custom value to override."
@@ -1498,11 +1483,6 @@ msgstr "Konto und alle zugehörigen Daten löschen"
msgid "Delete API key"
msgstr "API-Schlüssel löschen"
#. js-lingui-id: x2p4/4
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
msgid "Delete field"
msgstr ""
#. js-lingui-id: 4dpwsE
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
#~ msgid "Delete record"
@@ -1736,7 +1716,6 @@ msgstr "Frühestes Datum"
#: src/modules/views/view-picker/components/ViewPickerOptionDropdown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Edit"
msgstr "Bearbeiten"
@@ -1819,8 +1798,8 @@ msgstr "E-Mail-Verifizierung"
#. js-lingui-id: TBv/iZ
#: src/modules/auth/components/VerifyEmailEffect.tsx
#~ msgid "Email verification failed."
#~ msgstr "E-Mail-Verifizierung fehlgeschlagen."
msgid "Email verification failed."
msgstr "E-Mail-Verifizierung fehlgeschlagen."
#. js-lingui-id: svTijF
#: src/modules/auth/sign-in-up/hooks/useHandleResendEmailVerificationToken.ts
@@ -1968,11 +1947,6 @@ msgstr "Fehler beim Löschen des SSO-Identitätsanbieters"
msgid "Error editing SSO Identity Provider"
msgstr "Fehler beim Bearbeiten des SSO-Identitätsanbieters"
#. js-lingui-id: 2GvilU
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Error loading message"
msgstr ""
#. js-lingui-id: bj7nh3
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error regenerating api key: {err}"
@@ -2046,7 +2020,7 @@ msgid "Existing objects"
msgstr "Vorhandene Objekte"
#. js-lingui-id: ydzS9x
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit"
msgstr ""
@@ -2056,7 +2030,7 @@ msgstr ""
#~ msgstr "Vollbildmodus beenden"
#. js-lingui-id: XB4onr
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit import flow"
msgstr ""
@@ -2358,11 +2332,6 @@ msgstr "Global"
msgid "Go to Companies"
msgstr ""
#. js-lingui-id: dHvI9O
#: src/modules/workflow/components/OverrideWorkflowDraftConfirmationModal.tsx
msgid "Go to Draft"
msgstr ""
#. js-lingui-id: BQE4ob
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Go to Notes"
@@ -2386,9 +2355,7 @@ msgid "Go to runs"
msgstr "Zu den Läufen gehen"
#. js-lingui-id: mT57+Q
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Go to Settings"
msgstr "Zu den Einstellungen gehen"
@@ -2471,7 +2438,6 @@ msgstr "Versteckte Felder"
#. js-lingui-id: vLyv1R
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Hide"
msgstr "Ausblenden"
@@ -2557,11 +2523,6 @@ msgstr "Identitätsanbieter"
msgid "Identity Provider Metadata XML"
msgstr "Identitätsanbieter-Metadaten XML"
#. js-lingui-id: ZfP/Ap
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
msgid "If this is unexpected, please verify your settings."
msgstr ""
#. js-lingui-id: j843N3
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "If youve lost this key, you can regenerate it, but be aware that any script using this key will need to be updated. Please type\"{confirmationValue}\" to confirm."
@@ -2788,11 +2749,6 @@ msgstr "Italienisch"
msgid "Japanese"
msgstr "Japanisch"
#. js-lingui-id: VIK/N0
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
msgid "JSON keys cannot contain spaces"
msgstr ""
#. js-lingui-id: OGXtL8
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -2862,16 +2818,6 @@ msgstr "Letzte 7 Tage (älteste → neueste)"
msgid "Last Name"
msgstr "Nachname"
#. js-lingui-id: s0kiVA
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
msgid "Last payment failed. Please contact your admin."
msgstr ""
#. js-lingui-id: 3u/3zO
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
msgid "Last payment failed. Please update your billing details."
msgstr ""
#. js-lingui-id: wL3cK8
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
msgid "Latest"
@@ -2924,11 +2870,6 @@ msgstr "Link in die Zwischenablage kopiert"
msgid "Listings"
msgstr "Auflistungen"
#. js-lingui-id: Nx262D
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Loading csv ... "
msgstr ""
#. js-lingui-id: s1MstR
#: src/modules/settings/admin-panel/health-status/components/WorkerMetricsGraph.tsx
msgid "Loading metrics data..."
@@ -2936,7 +2877,6 @@ msgstr "Lade Metrik-Daten..."
#. js-lingui-id: Z3FXyt
#: src/modules/settings/admin-panel/components/SettingsAdminVersionDisplay.tsx
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Loading..."
msgstr ""
@@ -3032,11 +2972,6 @@ msgstr "Max"
msgid "Members"
msgstr "Mitglieder"
#. js-lingui-id: U15XwX
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Message not found"
msgstr ""
#. js-lingui-id: elpx6r
#: src/modules/settings/admin-panel/health-status/components/ConnectedAccountHealthStatus.tsx
msgid "Message Sync"
@@ -3090,13 +3025,11 @@ msgstr "Mehr Optionen"
#. js-lingui-id: iSLA/r
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Move left"
msgstr "Nach links verschieben"
#. js-lingui-id: Ubl2by
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Move right"
msgstr "Nach rechts verschieben"
@@ -3284,11 +3217,6 @@ msgstr "Kein verbundenes Konto"
msgid "No country"
msgstr "Kein Land"
#. js-lingui-id: 7tCnBa
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
msgid "No Data Available for Remote Table"
msgstr ""
#. js-lingui-id: pxvJ9B
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data containing errors"
@@ -3304,11 +3232,6 @@ msgstr ""
msgid "No free workflow executions left. End trial period and activate your billing to continue."
msgstr ""
#. js-lingui-id: pxYUeX
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
msgid "No free workflow executions left. Please contact your admin."
msgstr ""
#. js-lingui-id: OcMef3
#: src/modules/settings/admin-panel/components/SettingsAdminVersionContainer.tsx
msgid "No latest version found"
@@ -3387,7 +3310,6 @@ msgstr "Keine Einträge gefunden"
#. js-lingui-id: Ev2r9A
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCountrySelect.tsx
msgid "No results"
msgstr ""
@@ -3460,16 +3382,6 @@ msgstr "Nicht leer"
msgid "Not Found"
msgstr "Nicht gefunden"
#. js-lingui-id: 51G4/+
#: src/modules/activities/calendar/components/CalendarEventNotSharedContent.tsx
msgid "Not shared"
msgstr ""
#. js-lingui-id: uzFo/5
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessageBodyNotShared.tsx
msgid "Not shared by {notSharedByFullName}"
msgstr ""
#. js-lingui-id: hZWthZ
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Not synced"
@@ -3844,8 +3756,6 @@ msgstr "Bild aufzeichnen"
#. js-lingui-id: K6/7kH
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
msgid "Record label"
msgstr "Bezeichnung aufzeichnen"
@@ -3940,11 +3850,6 @@ msgstr "Aus Favoriten entfernen"
msgid "Remove option"
msgstr "Option entfernen"
#. js-lingui-id: Ee8JBW
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
msgid "Reorder field"
msgstr ""
#. js-lingui-id: OfhWJH
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/modules/views/components/ViewBarDetails.tsx
@@ -4116,22 +4021,16 @@ msgstr "Index suchen..."
msgid "Search config variables"
msgstr ""
#. js-lingui-id: WLfEv1
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCountrySelect.tsx
msgid "Search country"
msgstr ""
#. js-lingui-id: sSARNY
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
msgid "Search currency"
msgstr ""
#. js-lingui-id: 7taA9j
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: 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/ObjectFilterDropdownFieldSelect.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterFieldSelectSearchInput.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterDropdownFieldSelectMenu.tsx
msgid "Search fields"
msgstr "Felder suchen"
@@ -4281,8 +4180,8 @@ 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 ""
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
@@ -4555,11 +4454,6 @@ msgstr "Betreff und Metadaten"
msgid "Subject and metadata will be shared with your team."
msgstr "Betreff und Metadaten werden mit Ihrem Team geteilt."
#. js-lingui-id: DvSvG9
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessageForbidden.tsx
msgid "Subject not shared"
msgstr ""
#. js-lingui-id: J9ylmk
#: src/modules/settings/accounts/components/SettingsAccountsMessageVisibilityCard.tsx
msgid "Subject, body and attachments will be shared with your team."
@@ -4570,11 +4464,6 @@ msgstr "Betreff, Text und Anlagen werden mit Ihrem Team geteilt."
msgid "Submit"
msgstr ""
#. js-lingui-id: EDl9kS
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Subscribe"
msgstr ""
#. js-lingui-id: uvY7Wk
#: src/modules/billing/hooks/useEndSubscriptionTrialPeriod.ts
msgid "Subscription activated."
@@ -4905,7 +4794,6 @@ msgstr "Zeitstempel und Teilnehmer werden mit Ihrem Team geteilt."
#. js-lingui-id: ecUA8p
#: src/modules/settings/admin-panel/health-status/constants/WorkerQueueMetricsSelectOptions.ts
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Today"
msgstr "Heute"
@@ -4914,11 +4802,6 @@ msgstr "Heute"
msgid "Toggle all object permissions"
msgstr ""
#. js-lingui-id: BRMXj0
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Tomorrow"
msgstr ""
#. js-lingui-id: vb0Q0/
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
#~ msgid "Total Users"
@@ -4929,16 +4812,6 @@ msgstr ""
msgid "Track your monthly workflow credit consumption."
msgstr ""
#. js-lingui-id: wN0jHF
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Trial expired. Please contact your admin"
msgstr ""
#. js-lingui-id: y985qL
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Trial expired. Please update your billing details."
msgstr ""
#. js-lingui-id: PiUt3N
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
@@ -5005,12 +4878,6 @@ msgstr "Unbekannter Fehler"
msgid "Unlimited contacts"
msgstr "Unbegrenzte Kontakte"
#. js-lingui-id: EkH9pt
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Update"
msgstr ""
#. js-lingui-id: +b7T3G
#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx
msgid "Updated"
@@ -5203,21 +5070,6 @@ msgstr "Sichtbare Gruppen"
msgid "Visualize"
msgstr "Visualisieren"
#. js-lingui-id: zFSQY3
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was created by"
msgstr ""
#. js-lingui-id: uHpu1c
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was deleted by"
msgstr ""
#. js-lingui-id: S0enzB
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was restored by"
msgstr ""
#. js-lingui-id: id6ein
#: src/modules/ui/input/components/ImageInput.tsx
msgid "We support your square PNGs, JPEGs and GIFs under 10MB"
@@ -5365,11 +5217,6 @@ msgstr "Ein Geheimnis schreiben"
msgid "yes"
msgstr "ja"
#. js-lingui-id: y/0uwd
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Yesterday"
msgstr ""
#. js-lingui-id: qsAug0
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
#~ msgid "You are already importing this column."
@@ -5430,16 +5277,6 @@ msgstr "Ihr Name, wie er in der App angezeigt wird"
msgid "Your Workspace"
msgstr "Ihr Arbeitsbereich"
#. js-lingui-id: oC6WBs
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Your workspace doesn't have an active subscription."
msgstr ""
#. js-lingui-id: QBTEtW
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Your workspace doesn't have an active subscription. Please contact your admin."
msgstr ""
#. js-lingui-id: RhNbPE
#: src/pages/settings/SettingsBilling.tsx
msgid "Your workspace will be disabled"
+9 -172
View File
@@ -93,11 +93,6 @@ msgstr "API Key {apiKeyName}"
msgid "{contextStoreNumberOfSelectedRecords} selected"
msgstr "{contextStoreNumberOfSelectedRecords} επιλεγμένα"
#. js-lingui-id: wapGcj
#: src/modules/auth/components/VerifyEmailEffect.tsx
msgid "{message}"
msgstr ""
#. js-lingui-id: 6j5rE1
#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowRecordAgnosticActions.tsx
#: src/modules/action-menu/actions/record-actions/run-workflow-actions/hooks/useRunWorkflowRecordActions.tsx
@@ -109,11 +104,6 @@ msgstr "{name}"
msgid "{workspaceMemberName} will be unassigned from the following role:"
msgstr "Ο χρήστης {workspaceMemberName} θα αποδεσμευτεί από τον ακόλουθο ρόλο:"
#. js-lingui-id: NNQszp
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "⚠️ Please verify the auto mapping of the columns. You can also ignore or change the mapping of the columns."
msgstr ""
#. js-lingui-id: YT0WJ4
#: src/pages/onboarding/ChooseYourPlan.tsx
#~ msgid "1 000 workflow node executions"
@@ -627,7 +617,7 @@ msgid "Are you sure you want to delete this record? It can be recovered from the
msgstr "Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτήν την εγγραφή; Μπορεί να αποκατασταθεί από το μενού Εντολών."
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Are you sure? Your current information will not be saved."
msgstr ""
@@ -808,7 +798,7 @@ msgstr "Δεν είναι δυνατή η αλλαγή των ονομάτων A
#: 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/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
msgid "Cancel"
msgstr "Ακύρωση"
@@ -1257,11 +1247,6 @@ msgstr "Δημιουργήστε το χώρο εργασίας σας"
msgid "Created"
msgstr "Δημιουργήθηκε"
#. js-lingui-id: R3PLzn
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
msgid "currencies"
msgstr ""
#. js-lingui-id: 6YzXhC
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
msgid "Current value from server environment. Set a custom value to override."
@@ -1498,11 +1483,6 @@ msgstr "Διαγραφή λογαριασμού και όλων των συσχ
msgid "Delete API key"
msgstr "Διαγραφή κλειδιού API"
#. js-lingui-id: x2p4/4
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
msgid "Delete field"
msgstr ""
#. js-lingui-id: 4dpwsE
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
#~ msgid "Delete record"
@@ -1736,7 +1716,6 @@ msgstr "Νωρίτερη ημερομηνία"
#: src/modules/views/view-picker/components/ViewPickerOptionDropdown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Edit"
msgstr "Επεξεργασία"
@@ -1819,8 +1798,8 @@ msgstr "Επαλήθευση e-mail"
#. js-lingui-id: TBv/iZ
#: src/modules/auth/components/VerifyEmailEffect.tsx
#~ msgid "Email verification failed."
#~ msgstr "Απέτυχε η επαλήθευση email."
msgid "Email verification failed."
msgstr "Απέτυχε η επαλήθευση email."
#. js-lingui-id: svTijF
#: src/modules/auth/sign-in-up/hooks/useHandleResendEmailVerificationToken.ts
@@ -1968,11 +1947,6 @@ msgstr "Σφάλμα κατά τη διαγραφή του παρόχου ταυ
msgid "Error editing SSO Identity Provider"
msgstr "Σφάλμα κατά την επεξεργασία του παρόχου ταυτότητας SSO"
#. js-lingui-id: 2GvilU
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Error loading message"
msgstr ""
#. js-lingui-id: bj7nh3
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error regenerating api key: {err}"
@@ -2046,7 +2020,7 @@ msgid "Existing objects"
msgstr "Υπάρχοντα αντικείμενα"
#. js-lingui-id: ydzS9x
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit"
msgstr ""
@@ -2056,7 +2030,7 @@ msgstr ""
#~ msgstr "Έξοδος από την Πλήρη Οθόνη"
#. js-lingui-id: XB4onr
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit import flow"
msgstr ""
@@ -2358,11 +2332,6 @@ msgstr "Παγκόσμιο"
msgid "Go to Companies"
msgstr ""
#. js-lingui-id: dHvI9O
#: src/modules/workflow/components/OverrideWorkflowDraftConfirmationModal.tsx
msgid "Go to Draft"
msgstr ""
#. js-lingui-id: BQE4ob
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Go to Notes"
@@ -2386,9 +2355,7 @@ msgid "Go to runs"
msgstr "Πήγαινε στις εκτελέσεις"
#. js-lingui-id: mT57+Q
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Go to Settings"
msgstr "Μετάβαση στις Ρυθμίσεις"
@@ -2471,7 +2438,6 @@ msgstr "Κρυφά Πεδία"
#. js-lingui-id: vLyv1R
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Hide"
msgstr "Απόκρυψη"
@@ -2557,11 +2523,6 @@ msgstr "Πάροχος Ταυτότητας"
msgid "Identity Provider Metadata XML"
msgstr "Μεταδεδομένα XML Παρόχου Ταυτότητας"
#. js-lingui-id: ZfP/Ap
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
msgid "If this is unexpected, please verify your settings."
msgstr ""
#. js-lingui-id: j843N3
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "If youve lost this key, you can regenerate it, but be aware that any script using this key will need to be updated. Please type\"{confirmationValue}\" to confirm."
@@ -2788,11 +2749,6 @@ msgstr "Ιταλικά"
msgid "Japanese"
msgstr "Ιαπωνικά"
#. js-lingui-id: VIK/N0
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
msgid "JSON keys cannot contain spaces"
msgstr ""
#. js-lingui-id: OGXtL8
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -2862,16 +2818,6 @@ msgstr "Τελευταίες 7 Ημέρες (παλιότερα → νεότερ
msgid "Last Name"
msgstr "Επώνυμο"
#. js-lingui-id: s0kiVA
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
msgid "Last payment failed. Please contact your admin."
msgstr ""
#. js-lingui-id: 3u/3zO
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
msgid "Last payment failed. Please update your billing details."
msgstr ""
#. js-lingui-id: wL3cK8
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
msgid "Latest"
@@ -2924,11 +2870,6 @@ msgstr "Ο σύνδεσμος αντιγράφηκε στο πρόχειρο"
msgid "Listings"
msgstr "Καταχωρήσεις"
#. js-lingui-id: Nx262D
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Loading csv ... "
msgstr ""
#. js-lingui-id: s1MstR
#: src/modules/settings/admin-panel/health-status/components/WorkerMetricsGraph.tsx
msgid "Loading metrics data..."
@@ -2936,7 +2877,6 @@ msgstr "Φόρτωση δεδομένων μετρήσεων..."
#. js-lingui-id: Z3FXyt
#: src/modules/settings/admin-panel/components/SettingsAdminVersionDisplay.tsx
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Loading..."
msgstr ""
@@ -3032,11 +2972,6 @@ msgstr "Μέγιστο"
msgid "Members"
msgstr "Μέλη"
#. js-lingui-id: U15XwX
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Message not found"
msgstr ""
#. js-lingui-id: elpx6r
#: src/modules/settings/admin-panel/health-status/components/ConnectedAccountHealthStatus.tsx
msgid "Message Sync"
@@ -3090,13 +3025,11 @@ msgstr "Περισσότερες επιλογές"
#. js-lingui-id: iSLA/r
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Move left"
msgstr "Μετακίνηση αριστερά"
#. js-lingui-id: Ubl2by
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Move right"
msgstr "Μετακίνηση δεξιά"
@@ -3284,11 +3217,6 @@ msgstr "Κανένας συνδεδεμένος λογαριασμός"
msgid "No country"
msgstr "Χωρίς χώρα"
#. js-lingui-id: 7tCnBa
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
msgid "No Data Available for Remote Table"
msgstr ""
#. js-lingui-id: pxvJ9B
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data containing errors"
@@ -3304,11 +3232,6 @@ msgstr ""
msgid "No free workflow executions left. End trial period and activate your billing to continue."
msgstr ""
#. js-lingui-id: pxYUeX
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
msgid "No free workflow executions left. Please contact your admin."
msgstr ""
#. js-lingui-id: OcMef3
#: src/modules/settings/admin-panel/components/SettingsAdminVersionContainer.tsx
msgid "No latest version found"
@@ -3387,7 +3310,6 @@ msgstr "Δεν βρέθηκαν εγγραφές"
#. js-lingui-id: Ev2r9A
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCountrySelect.tsx
msgid "No results"
msgstr ""
@@ -3460,16 +3382,6 @@ msgstr "Όχι άδειο"
msgid "Not Found"
msgstr "Δεν Βρέθηκε"
#. js-lingui-id: 51G4/+
#: src/modules/activities/calendar/components/CalendarEventNotSharedContent.tsx
msgid "Not shared"
msgstr ""
#. js-lingui-id: uzFo/5
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessageBodyNotShared.tsx
msgid "Not shared by {notSharedByFullName}"
msgstr ""
#. js-lingui-id: hZWthZ
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Not synced"
@@ -3844,8 +3756,6 @@ msgstr "Εγγραφή εικόνας"
#. js-lingui-id: K6/7kH
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
msgid "Record label"
msgstr "Ετικέτα εγγραφής"
@@ -3940,11 +3850,6 @@ msgstr "Αφαίρεση από τα αγαπημένα"
msgid "Remove option"
msgstr "Αφαίρεση επιλογής"
#. js-lingui-id: Ee8JBW
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
msgid "Reorder field"
msgstr ""
#. js-lingui-id: OfhWJH
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/modules/views/components/ViewBarDetails.tsx
@@ -4116,22 +4021,16 @@ msgstr "Αναζήτηση ευρετηρίου..."
msgid "Search config variables"
msgstr ""
#. js-lingui-id: WLfEv1
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCountrySelect.tsx
msgid "Search country"
msgstr ""
#. js-lingui-id: sSARNY
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
msgid "Search currency"
msgstr ""
#. js-lingui-id: 7taA9j
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: 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/ObjectFilterDropdownFieldSelect.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterFieldSelectSearchInput.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterDropdownFieldSelectMenu.tsx
msgid "Search fields"
msgstr "Αναζήτηση πεδίων"
@@ -4281,8 +4180,8 @@ 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 ""
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
@@ -4555,11 +4454,6 @@ msgstr "Θέμα και μεταδεδομένα"
msgid "Subject and metadata will be shared with your team."
msgstr "Το θέμα και τα μεταδεδομένα θα μοιραστούν με την ομάδα σας."
#. js-lingui-id: DvSvG9
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessageForbidden.tsx
msgid "Subject not shared"
msgstr ""
#. js-lingui-id: J9ylmk
#: src/modules/settings/accounts/components/SettingsAccountsMessageVisibilityCard.tsx
msgid "Subject, body and attachments will be shared with your team."
@@ -4570,11 +4464,6 @@ msgstr "Το θέμα, το σώμα και τα συνημμένα θα μοι
msgid "Submit"
msgstr ""
#. js-lingui-id: EDl9kS
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Subscribe"
msgstr ""
#. js-lingui-id: uvY7Wk
#: src/modules/billing/hooks/useEndSubscriptionTrialPeriod.ts
msgid "Subscription activated."
@@ -4905,7 +4794,6 @@ msgstr "Η χρονική σήμανση και οι συμμετέχοντες
#. js-lingui-id: ecUA8p
#: src/modules/settings/admin-panel/health-status/constants/WorkerQueueMetricsSelectOptions.ts
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Today"
msgstr "Σήμερα"
@@ -4914,11 +4802,6 @@ msgstr "Σήμερα"
msgid "Toggle all object permissions"
msgstr ""
#. js-lingui-id: BRMXj0
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Tomorrow"
msgstr ""
#. js-lingui-id: vb0Q0/
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
#~ msgid "Total Users"
@@ -4929,16 +4812,6 @@ msgstr ""
msgid "Track your monthly workflow credit consumption."
msgstr ""
#. js-lingui-id: wN0jHF
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Trial expired. Please contact your admin"
msgstr ""
#. js-lingui-id: y985qL
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Trial expired. Please update your billing details."
msgstr ""
#. js-lingui-id: PiUt3N
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
@@ -5005,12 +4878,6 @@ msgstr "Άγνωστο σφάλμα"
msgid "Unlimited contacts"
msgstr "Απεριόριστες επαφές"
#. js-lingui-id: EkH9pt
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Update"
msgstr ""
#. js-lingui-id: +b7T3G
#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx
msgid "Updated"
@@ -5203,21 +5070,6 @@ msgstr "Ορατές ομάδες"
msgid "Visualize"
msgstr "Απεικόνιση"
#. js-lingui-id: zFSQY3
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was created by"
msgstr ""
#. js-lingui-id: uHpu1c
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was deleted by"
msgstr ""
#. js-lingui-id: S0enzB
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was restored by"
msgstr ""
#. js-lingui-id: id6ein
#: src/modules/ui/input/components/ImageInput.tsx
msgid "We support your square PNGs, JPEGs and GIFs under 10MB"
@@ -5365,11 +5217,6 @@ msgstr "Γράψτε ένα μυστικό"
msgid "yes"
msgstr "ναι"
#. js-lingui-id: y/0uwd
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Yesterday"
msgstr ""
#. js-lingui-id: qsAug0
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
#~ msgid "You are already importing this column."
@@ -5430,16 +5277,6 @@ msgstr "Το όνομά σας όπως θα εμφανίζεται στην ε
msgid "Your Workspace"
msgstr "Ο χώρος εργασίας σας"
#. js-lingui-id: oC6WBs
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Your workspace doesn't have an active subscription."
msgstr ""
#. js-lingui-id: QBTEtW
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Your workspace doesn't have an active subscription. Please contact your admin."
msgstr ""
#. js-lingui-id: RhNbPE
#: src/pages/settings/SettingsBilling.tsx
msgid "Your workspace will be disabled"
+9 -172
View File
@@ -88,11 +88,6 @@ msgstr "{apiKeyName} API Key"
msgid "{contextStoreNumberOfSelectedRecords} selected"
msgstr "{contextStoreNumberOfSelectedRecords} selected"
#. js-lingui-id: wapGcj
#: src/modules/auth/components/VerifyEmailEffect.tsx
msgid "{message}"
msgstr "{message}"
#. js-lingui-id: 6j5rE1
#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowRecordAgnosticActions.tsx
#: src/modules/action-menu/actions/record-actions/run-workflow-actions/hooks/useRunWorkflowRecordActions.tsx
@@ -104,11 +99,6 @@ msgstr "{name}"
msgid "{workspaceMemberName} will be unassigned from the following role:"
msgstr "{workspaceMemberName} will be unassigned from the following role:"
#. js-lingui-id: NNQszp
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "⚠️ Please verify the auto mapping of the columns. You can also ignore or change the mapping of the columns."
msgstr "⚠️ Please verify the auto mapping of the columns. You can also ignore or change the mapping of the columns."
#. js-lingui-id: YT0WJ4
#: src/pages/onboarding/ChooseYourPlan.tsx
#~ msgid "1 000 workflow node executions"
@@ -622,7 +612,7 @@ msgid "Are you sure you want to delete this record? It can be recovered from the
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/SpreadSheetImportModalCloseButton.tsx
#: 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."
@@ -803,7 +793,7 @@ msgstr "Can't change API names for standard objects"
#: 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/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
msgid "Cancel"
msgstr "Cancel"
@@ -1252,11 +1242,6 @@ msgstr "Create your workspace"
msgid "Created"
msgstr "Created"
#. js-lingui-id: R3PLzn
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
msgid "currencies"
msgstr "currencies"
#. js-lingui-id: 6YzXhC
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
msgid "Current value from server environment. Set a custom value to override."
@@ -1493,11 +1478,6 @@ msgstr "Delete account and all the associated data"
msgid "Delete API key"
msgstr "Delete API key"
#. js-lingui-id: x2p4/4
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
msgid "Delete field"
msgstr "Delete field"
#. js-lingui-id: 4dpwsE
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
#~ msgid "Delete record"
@@ -1731,7 +1711,6 @@ msgstr "Earliest date"
#: src/modules/views/view-picker/components/ViewPickerOptionDropdown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Edit"
msgstr "Edit"
@@ -1814,8 +1793,8 @@ msgstr "Email verification"
#. js-lingui-id: TBv/iZ
#: src/modules/auth/components/VerifyEmailEffect.tsx
#~ msgid "Email verification failed."
#~ msgstr "Email verification failed."
msgid "Email verification failed."
msgstr "Email verification failed."
#. js-lingui-id: svTijF
#: src/modules/auth/sign-in-up/hooks/useHandleResendEmailVerificationToken.ts
@@ -1963,11 +1942,6 @@ msgstr "Error deleting SSO Identity Provider"
msgid "Error editing SSO Identity Provider"
msgstr "Error editing SSO Identity Provider"
#. js-lingui-id: 2GvilU
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Error loading message"
msgstr "Error loading message"
#. js-lingui-id: bj7nh3
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error regenerating api key: {err}"
@@ -2041,7 +2015,7 @@ msgid "Existing objects"
msgstr "Existing objects"
#. js-lingui-id: ydzS9x
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit"
msgstr "Exit"
@@ -2051,7 +2025,7 @@ msgstr "Exit"
#~ msgstr "Exit Full Screen"
#. js-lingui-id: XB4onr
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit import flow"
msgstr "Exit import flow"
@@ -2353,11 +2327,6 @@ msgstr "Global"
msgid "Go to Companies"
msgstr "Go to Companies"
#. js-lingui-id: dHvI9O
#: src/modules/workflow/components/OverrideWorkflowDraftConfirmationModal.tsx
msgid "Go to Draft"
msgstr "Go to Draft"
#. js-lingui-id: BQE4ob
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Go to Notes"
@@ -2381,9 +2350,7 @@ msgid "Go to runs"
msgstr "Go to runs"
#. js-lingui-id: mT57+Q
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Go to Settings"
msgstr "Go to Settings"
@@ -2466,7 +2433,6 @@ msgstr "Hidden Fields"
#. js-lingui-id: vLyv1R
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Hide"
msgstr "Hide"
@@ -2552,11 +2518,6 @@ msgstr "Identity Provider"
msgid "Identity Provider Metadata XML"
msgstr "Identity Provider Metadata XML"
#. js-lingui-id: ZfP/Ap
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
msgid "If this is unexpected, please verify your settings."
msgstr "If this is unexpected, please verify your settings."
#. js-lingui-id: j843N3
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "If youve lost this key, you can regenerate it, but be aware that any script using this key will need to be updated. Please type\"{confirmationValue}\" to confirm."
@@ -2783,11 +2744,6 @@ msgstr "Italian"
msgid "Japanese"
msgstr "Japanese"
#. js-lingui-id: VIK/N0
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
msgid "JSON keys cannot contain spaces"
msgstr "JSON keys cannot contain spaces"
#. js-lingui-id: OGXtL8
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -2857,16 +2813,6 @@ msgstr "Last 7 Days (oldest → newest)"
msgid "Last Name"
msgstr "Last Name"
#. js-lingui-id: s0kiVA
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
msgid "Last payment failed. Please contact your admin."
msgstr "Last payment failed. Please contact your admin."
#. js-lingui-id: 3u/3zO
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
msgid "Last payment failed. Please update your billing details."
msgstr "Last payment failed. Please update your billing details."
#. js-lingui-id: wL3cK8
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
msgid "Latest"
@@ -2919,11 +2865,6 @@ msgstr "Link copied to clipboard"
msgid "Listings"
msgstr "Listings"
#. js-lingui-id: Nx262D
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Loading csv ... "
msgstr "Loading csv ... "
#. js-lingui-id: s1MstR
#: src/modules/settings/admin-panel/health-status/components/WorkerMetricsGraph.tsx
msgid "Loading metrics data..."
@@ -2931,7 +2872,6 @@ msgstr "Loading metrics data..."
#. js-lingui-id: Z3FXyt
#: src/modules/settings/admin-panel/components/SettingsAdminVersionDisplay.tsx
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Loading..."
msgstr "Loading..."
@@ -3027,11 +2967,6 @@ msgstr "Max"
msgid "Members"
msgstr "Members"
#. js-lingui-id: U15XwX
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Message not found"
msgstr "Message not found"
#. js-lingui-id: elpx6r
#: src/modules/settings/admin-panel/health-status/components/ConnectedAccountHealthStatus.tsx
msgid "Message Sync"
@@ -3085,13 +3020,11 @@ msgstr "More options"
#. js-lingui-id: iSLA/r
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Move left"
msgstr "Move left"
#. js-lingui-id: Ubl2by
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Move right"
msgstr "Move right"
@@ -3279,11 +3212,6 @@ msgstr "No connected account"
msgid "No country"
msgstr "No country"
#. js-lingui-id: 7tCnBa
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
msgid "No Data Available for Remote Table"
msgstr "No Data Available for Remote Table"
#. js-lingui-id: pxvJ9B
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data containing errors"
@@ -3299,11 +3227,6 @@ msgstr "No data found"
msgid "No free workflow executions left. End trial period and activate your billing to continue."
msgstr "No free workflow executions left. End trial period and activate your billing to continue."
#. js-lingui-id: pxYUeX
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
msgid "No free workflow executions left. Please contact your admin."
msgstr "No free workflow executions left. Please contact your admin."
#. js-lingui-id: OcMef3
#: src/modules/settings/admin-panel/components/SettingsAdminVersionContainer.tsx
msgid "No latest version found"
@@ -3382,7 +3305,6 @@ msgstr "No records found"
#. js-lingui-id: Ev2r9A
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCountrySelect.tsx
msgid "No results"
msgstr "No results"
@@ -3455,16 +3377,6 @@ msgstr "Not empty"
msgid "Not Found"
msgstr "Not Found"
#. js-lingui-id: 51G4/+
#: src/modules/activities/calendar/components/CalendarEventNotSharedContent.tsx
msgid "Not shared"
msgstr "Not shared"
#. js-lingui-id: uzFo/5
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessageBodyNotShared.tsx
msgid "Not shared by {notSharedByFullName}"
msgstr "Not shared by {notSharedByFullName}"
#. js-lingui-id: hZWthZ
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Not synced"
@@ -3839,8 +3751,6 @@ msgstr "Record image"
#. js-lingui-id: K6/7kH
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
msgid "Record label"
msgstr "Record label"
@@ -3935,11 +3845,6 @@ msgstr "Remove from favorites"
msgid "Remove option"
msgstr "Remove option"
#. js-lingui-id: Ee8JBW
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
msgid "Reorder field"
msgstr "Reorder field"
#. js-lingui-id: OfhWJH
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/modules/views/components/ViewBarDetails.tsx
@@ -4111,22 +4016,16 @@ msgstr "Search an index..."
msgid "Search config variables"
msgstr "Search config variables"
#. js-lingui-id: WLfEv1
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCountrySelect.tsx
msgid "Search country"
msgstr "Search country"
#. js-lingui-id: sSARNY
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
msgid "Search currency"
msgstr "Search currency"
#. js-lingui-id: 7taA9j
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: 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/ObjectFilterDropdownFieldSelect.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterFieldSelectSearchInput.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterDropdownFieldSelectMenu.tsx
msgid "Search fields"
msgstr "Search fields"
@@ -4276,8 +4175,8 @@ msgstr "Select Source"
#. 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."
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
@@ -4550,11 +4449,6 @@ msgstr "Subject and metadata"
msgid "Subject and metadata will be shared with your team."
msgstr "Subject and metadata will be shared with your team."
#. js-lingui-id: DvSvG9
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessageForbidden.tsx
msgid "Subject not shared"
msgstr "Subject not shared"
#. js-lingui-id: J9ylmk
#: src/modules/settings/accounts/components/SettingsAccountsMessageVisibilityCard.tsx
msgid "Subject, body and attachments will be shared with your team."
@@ -4565,11 +4459,6 @@ msgstr "Subject, body and attachments will be shared with your team."
msgid "Submit"
msgstr "Submit"
#. js-lingui-id: EDl9kS
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Subscribe"
msgstr "Subscribe"
#. js-lingui-id: uvY7Wk
#: src/modules/billing/hooks/useEndSubscriptionTrialPeriod.ts
msgid "Subscription activated."
@@ -4900,7 +4789,6 @@ msgstr "Timestamp and participants will be shared with your team."
#. js-lingui-id: ecUA8p
#: src/modules/settings/admin-panel/health-status/constants/WorkerQueueMetricsSelectOptions.ts
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Today"
msgstr "Today"
@@ -4909,11 +4797,6 @@ msgstr "Today"
msgid "Toggle all object permissions"
msgstr "Toggle all object permissions"
#. js-lingui-id: BRMXj0
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Tomorrow"
msgstr "Tomorrow"
#. js-lingui-id: vb0Q0/
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
#~ msgid "Total Users"
@@ -4924,16 +4807,6 @@ msgstr "Tomorrow"
msgid "Track your monthly workflow credit consumption."
msgstr "Track your monthly workflow credit consumption."
#. js-lingui-id: wN0jHF
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Trial expired. Please contact your admin"
msgstr "Trial expired. Please contact your admin"
#. js-lingui-id: y985qL
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Trial expired. Please update your billing details."
msgstr "Trial expired. Please update your billing details."
#. js-lingui-id: PiUt3N
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
@@ -5000,12 +4873,6 @@ msgstr "Unknown error"
msgid "Unlimited contacts"
msgstr "Unlimited contacts"
#. js-lingui-id: EkH9pt
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Update"
msgstr "Update"
#. js-lingui-id: +b7T3G
#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx
msgid "Updated"
@@ -5198,21 +5065,6 @@ msgstr "Visible groups"
msgid "Visualize"
msgstr "Visualize"
#. js-lingui-id: zFSQY3
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was created by"
msgstr "was created by"
#. js-lingui-id: uHpu1c
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was deleted by"
msgstr "was deleted by"
#. js-lingui-id: S0enzB
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was restored by"
msgstr "was restored by"
#. js-lingui-id: id6ein
#: src/modules/ui/input/components/ImageInput.tsx
msgid "We support your square PNGs, JPEGs and GIFs under 10MB"
@@ -5360,11 +5212,6 @@ msgstr "Write a secret"
msgid "yes"
msgstr "yes"
#. js-lingui-id: y/0uwd
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Yesterday"
msgstr "Yesterday"
#. js-lingui-id: qsAug0
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
#~ msgid "You are already importing this column."
@@ -5425,16 +5272,6 @@ msgstr "Your name as it will be displayed on the app"
msgid "Your Workspace"
msgstr "Your Workspace"
#. js-lingui-id: oC6WBs
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Your workspace doesn't have an active subscription."
msgstr "Your workspace doesn't have an active subscription."
#. js-lingui-id: QBTEtW
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Your workspace doesn't have an active subscription. Please contact your admin."
msgstr "Your workspace doesn't have an active subscription. Please contact your admin."
#. js-lingui-id: RhNbPE
#: src/pages/settings/SettingsBilling.tsx
msgid "Your workspace will be disabled"
+9 -172
View File
@@ -93,11 +93,6 @@ msgstr "Clave API {apiKeyName}"
msgid "{contextStoreNumberOfSelectedRecords} selected"
msgstr "{contextStoreNumberOfSelectedRecords} seleccionados"
#. js-lingui-id: wapGcj
#: src/modules/auth/components/VerifyEmailEffect.tsx
msgid "{message}"
msgstr ""
#. js-lingui-id: 6j5rE1
#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowRecordAgnosticActions.tsx
#: src/modules/action-menu/actions/record-actions/run-workflow-actions/hooks/useRunWorkflowRecordActions.tsx
@@ -109,11 +104,6 @@ msgstr "{name}"
msgid "{workspaceMemberName} will be unassigned from the following role:"
msgstr "{workspaceMemberName} dejará de estar asignado al siguiente rol:"
#. js-lingui-id: NNQszp
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "⚠️ Please verify the auto mapping of the columns. You can also ignore or change the mapping of the columns."
msgstr ""
#. js-lingui-id: YT0WJ4
#: src/pages/onboarding/ChooseYourPlan.tsx
#~ msgid "1 000 workflow node executions"
@@ -627,7 +617,7 @@ msgid "Are you sure you want to delete this record? It can be recovered from the
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/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Are you sure? Your current information will not be saved."
msgstr ""
@@ -808,7 +798,7 @@ msgstr "No se pueden cambiar los nombres de la API para los objetos estándar"
#: 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/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
msgid "Cancel"
msgstr "Cancelar"
@@ -1257,11 +1247,6 @@ msgstr "Crea tu espacio de trabajo"
msgid "Created"
msgstr "Creado"
#. js-lingui-id: R3PLzn
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
msgid "currencies"
msgstr ""
#. js-lingui-id: 6YzXhC
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
msgid "Current value from server environment. Set a custom value to override."
@@ -1498,11 +1483,6 @@ msgstr "Eliminar la cuenta y todos los datos asociados"
msgid "Delete API key"
msgstr "Eliminar clave API"
#. js-lingui-id: x2p4/4
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
msgid "Delete field"
msgstr ""
#. js-lingui-id: 4dpwsE
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
#~ msgid "Delete record"
@@ -1736,7 +1716,6 @@ msgstr "Fecha más temprana"
#: src/modules/views/view-picker/components/ViewPickerOptionDropdown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Edit"
msgstr "Editar"
@@ -1819,8 +1798,8 @@ msgstr "Verificación de correo electrónico"
#. js-lingui-id: TBv/iZ
#: src/modules/auth/components/VerifyEmailEffect.tsx
#~ msgid "Email verification failed."
#~ msgstr "La verificación de correo electrónico falló."
msgid "Email verification failed."
msgstr "La verificación de correo electrónico falló."
#. js-lingui-id: svTijF
#: src/modules/auth/sign-in-up/hooks/useHandleResendEmailVerificationToken.ts
@@ -1968,11 +1947,6 @@ msgstr "Error al eliminar el Proveedor de Identidad SSO"
msgid "Error editing SSO Identity Provider"
msgstr "Error al editar el Proveedor de Identidad SSO"
#. js-lingui-id: 2GvilU
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Error loading message"
msgstr ""
#. js-lingui-id: bj7nh3
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error regenerating api key: {err}"
@@ -2046,7 +2020,7 @@ msgid "Existing objects"
msgstr "Objetos existentes"
#. js-lingui-id: ydzS9x
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit"
msgstr ""
@@ -2056,7 +2030,7 @@ msgstr ""
#~ msgstr "Salir de pantalla completa"
#. js-lingui-id: XB4onr
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit import flow"
msgstr ""
@@ -2358,11 +2332,6 @@ msgstr "Global"
msgid "Go to Companies"
msgstr ""
#. js-lingui-id: dHvI9O
#: src/modules/workflow/components/OverrideWorkflowDraftConfirmationModal.tsx
msgid "Go to Draft"
msgstr ""
#. js-lingui-id: BQE4ob
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Go to Notes"
@@ -2386,9 +2355,7 @@ msgid "Go to runs"
msgstr "Ir a ejecuciones"
#. js-lingui-id: mT57+Q
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Go to Settings"
msgstr "Ir a Configuración"
@@ -2471,7 +2438,6 @@ msgstr "Campos Ocultos"
#. js-lingui-id: vLyv1R
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Hide"
msgstr "Ocultar"
@@ -2557,11 +2523,6 @@ msgstr "Proveedor de Identidad"
msgid "Identity Provider Metadata XML"
msgstr "XML de Metadatos del Proveedor de Identidad"
#. js-lingui-id: ZfP/Ap
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
msgid "If this is unexpected, please verify your settings."
msgstr ""
#. js-lingui-id: j843N3
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "If youve lost this key, you can regenerate it, but be aware that any script using this key will need to be updated. Please type\"{confirmationValue}\" to confirm."
@@ -2788,11 +2749,6 @@ msgstr "Italiano"
msgid "Japanese"
msgstr "Japonés"
#. js-lingui-id: VIK/N0
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
msgid "JSON keys cannot contain spaces"
msgstr ""
#. js-lingui-id: OGXtL8
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -2862,16 +2818,6 @@ msgstr "Últimos 7 Días (del más antiguo → al más nuevo)"
msgid "Last Name"
msgstr "Apellidos"
#. js-lingui-id: s0kiVA
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
msgid "Last payment failed. Please contact your admin."
msgstr ""
#. js-lingui-id: 3u/3zO
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
msgid "Last payment failed. Please update your billing details."
msgstr ""
#. js-lingui-id: wL3cK8
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
msgid "Latest"
@@ -2924,11 +2870,6 @@ msgstr "Enlace copiado al portapapeles"
msgid "Listings"
msgstr "Listados"
#. js-lingui-id: Nx262D
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Loading csv ... "
msgstr ""
#. js-lingui-id: s1MstR
#: src/modules/settings/admin-panel/health-status/components/WorkerMetricsGraph.tsx
msgid "Loading metrics data..."
@@ -2936,7 +2877,6 @@ msgstr "Cargando datos de métricas..."
#. js-lingui-id: Z3FXyt
#: src/modules/settings/admin-panel/components/SettingsAdminVersionDisplay.tsx
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Loading..."
msgstr ""
@@ -3032,11 +2972,6 @@ msgstr "Máx"
msgid "Members"
msgstr "Miembros"
#. js-lingui-id: U15XwX
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Message not found"
msgstr ""
#. js-lingui-id: elpx6r
#: src/modules/settings/admin-panel/health-status/components/ConnectedAccountHealthStatus.tsx
msgid "Message Sync"
@@ -3090,13 +3025,11 @@ msgstr "Más opciones"
#. js-lingui-id: iSLA/r
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Move left"
msgstr "Mover a la izquierda"
#. js-lingui-id: Ubl2by
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Move right"
msgstr "Mover a la derecha"
@@ -3284,11 +3217,6 @@ msgstr "No hay cuenta conectada"
msgid "No country"
msgstr "Sin país"
#. js-lingui-id: 7tCnBa
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
msgid "No Data Available for Remote Table"
msgstr ""
#. js-lingui-id: pxvJ9B
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data containing errors"
@@ -3304,11 +3232,6 @@ msgstr ""
msgid "No free workflow executions left. End trial period and activate your billing to continue."
msgstr ""
#. js-lingui-id: pxYUeX
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
msgid "No free workflow executions left. Please contact your admin."
msgstr ""
#. js-lingui-id: OcMef3
#: src/modules/settings/admin-panel/components/SettingsAdminVersionContainer.tsx
msgid "No latest version found"
@@ -3387,7 +3310,6 @@ msgstr "No se encontraron registros"
#. js-lingui-id: Ev2r9A
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCountrySelect.tsx
msgid "No results"
msgstr ""
@@ -3460,16 +3382,6 @@ msgstr "No vacío"
msgid "Not Found"
msgstr "No encontrado"
#. js-lingui-id: 51G4/+
#: src/modules/activities/calendar/components/CalendarEventNotSharedContent.tsx
msgid "Not shared"
msgstr ""
#. js-lingui-id: uzFo/5
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessageBodyNotShared.tsx
msgid "Not shared by {notSharedByFullName}"
msgstr ""
#. js-lingui-id: hZWthZ
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Not synced"
@@ -3844,8 +3756,6 @@ msgstr "Imagen de registro"
#. js-lingui-id: K6/7kH
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
msgid "Record label"
msgstr "Etiqueta de registro"
@@ -3940,11 +3850,6 @@ msgstr "Quitar de favoritos"
msgid "Remove option"
msgstr "Quitar opción"
#. js-lingui-id: Ee8JBW
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
msgid "Reorder field"
msgstr ""
#. js-lingui-id: OfhWJH
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/modules/views/components/ViewBarDetails.tsx
@@ -4116,22 +4021,16 @@ msgstr "Buscar un índice..."
msgid "Search config variables"
msgstr ""
#. js-lingui-id: WLfEv1
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCountrySelect.tsx
msgid "Search country"
msgstr ""
#. js-lingui-id: sSARNY
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
msgid "Search currency"
msgstr ""
#. js-lingui-id: 7taA9j
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: 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/ObjectFilterDropdownFieldSelect.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterFieldSelectSearchInput.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterDropdownFieldSelectMenu.tsx
msgid "Search fields"
msgstr "Buscar campos"
@@ -4281,8 +4180,8 @@ 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 ""
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
@@ -4555,11 +4454,6 @@ msgstr "Asunto y metadatos"
msgid "Subject and metadata will be shared with your team."
msgstr "El asunto y los metadatos se compartirán con tu equipo."
#. js-lingui-id: DvSvG9
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessageForbidden.tsx
msgid "Subject not shared"
msgstr ""
#. js-lingui-id: J9ylmk
#: src/modules/settings/accounts/components/SettingsAccountsMessageVisibilityCard.tsx
msgid "Subject, body and attachments will be shared with your team."
@@ -4570,11 +4464,6 @@ msgstr "El asunto, el cuerpo y los archivos adjuntos se compartirán con tu equi
msgid "Submit"
msgstr ""
#. js-lingui-id: EDl9kS
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Subscribe"
msgstr ""
#. js-lingui-id: uvY7Wk
#: src/modules/billing/hooks/useEndSubscriptionTrialPeriod.ts
msgid "Subscription activated."
@@ -4905,7 +4794,6 @@ msgstr "La marca de tiempo y los participantes se compartirán con tu equipo."
#. js-lingui-id: ecUA8p
#: src/modules/settings/admin-panel/health-status/constants/WorkerQueueMetricsSelectOptions.ts
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Today"
msgstr "Hoy"
@@ -4914,11 +4802,6 @@ msgstr "Hoy"
msgid "Toggle all object permissions"
msgstr ""
#. js-lingui-id: BRMXj0
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Tomorrow"
msgstr ""
#. js-lingui-id: vb0Q0/
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
#~ msgid "Total Users"
@@ -4929,16 +4812,6 @@ msgstr ""
msgid "Track your monthly workflow credit consumption."
msgstr ""
#. js-lingui-id: wN0jHF
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Trial expired. Please contact your admin"
msgstr ""
#. js-lingui-id: y985qL
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Trial expired. Please update your billing details."
msgstr ""
#. js-lingui-id: PiUt3N
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
@@ -5005,12 +4878,6 @@ msgstr "Error desconocido"
msgid "Unlimited contacts"
msgstr "Contactos ilimitados"
#. js-lingui-id: EkH9pt
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Update"
msgstr ""
#. js-lingui-id: +b7T3G
#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx
msgid "Updated"
@@ -5203,21 +5070,6 @@ msgstr "Grupos visibles"
msgid "Visualize"
msgstr "Visualizar"
#. js-lingui-id: zFSQY3
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was created by"
msgstr ""
#. js-lingui-id: uHpu1c
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was deleted by"
msgstr ""
#. js-lingui-id: S0enzB
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was restored by"
msgstr ""
#. js-lingui-id: id6ein
#: src/modules/ui/input/components/ImageInput.tsx
msgid "We support your square PNGs, JPEGs and GIFs under 10MB"
@@ -5365,11 +5217,6 @@ msgstr "Escribe un secreto"
msgid "yes"
msgstr "sí"
#. js-lingui-id: y/0uwd
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Yesterday"
msgstr ""
#. js-lingui-id: qsAug0
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
#~ msgid "You are already importing this column."
@@ -5430,16 +5277,6 @@ msgstr "Tu nombre tal y como será mostrado en la aplicación"
msgid "Your Workspace"
msgstr "Tu espacio de trabajo"
#. js-lingui-id: oC6WBs
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Your workspace doesn't have an active subscription."
msgstr ""
#. js-lingui-id: QBTEtW
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Your workspace doesn't have an active subscription. Please contact your admin."
msgstr ""
#. js-lingui-id: RhNbPE
#: src/pages/settings/SettingsBilling.tsx
msgid "Your workspace will be disabled"
+9 -172
View File
@@ -93,11 +93,6 @@ msgstr "{apiKeyName} API-avain"
msgid "{contextStoreNumberOfSelectedRecords} selected"
msgstr "{contextStoreNumberOfSelectedRecords} valittuna"
#. js-lingui-id: wapGcj
#: src/modules/auth/components/VerifyEmailEffect.tsx
msgid "{message}"
msgstr ""
#. js-lingui-id: 6j5rE1
#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowRecordAgnosticActions.tsx
#: src/modules/action-menu/actions/record-actions/run-workflow-actions/hooks/useRunWorkflowRecordActions.tsx
@@ -109,11 +104,6 @@ msgstr "{name}"
msgid "{workspaceMemberName} will be unassigned from the following role:"
msgstr "{workspaceMemberName} poistetaan seuraavasta roolista:"
#. js-lingui-id: NNQszp
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "⚠️ Please verify the auto mapping of the columns. You can also ignore or change the mapping of the columns."
msgstr ""
#. js-lingui-id: YT0WJ4
#: src/pages/onboarding/ChooseYourPlan.tsx
#~ msgid "1 000 workflow node executions"
@@ -627,7 +617,7 @@ msgid "Are you sure you want to delete this record? It can be recovered from the
msgstr "Haluatko varmasti poistaa tämän tietueen? Se voidaan palauttaa komento-valikosta."
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Are you sure? Your current information will not be saved."
msgstr ""
@@ -808,7 +798,7 @@ msgstr "API-nimiä ei voi muuttaa vakio-objekteille"
#: 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/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
msgid "Cancel"
msgstr "Peruuta"
@@ -1257,11 +1247,6 @@ msgstr "Luo työtilasi"
msgid "Created"
msgstr "Luotu"
#. js-lingui-id: R3PLzn
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
msgid "currencies"
msgstr ""
#. js-lingui-id: 6YzXhC
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
msgid "Current value from server environment. Set a custom value to override."
@@ -1498,11 +1483,6 @@ msgstr "Poista tili ja kaikki siihen liittyvät tiedot"
msgid "Delete API key"
msgstr "Poista API-avain"
#. js-lingui-id: x2p4/4
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
msgid "Delete field"
msgstr ""
#. js-lingui-id: 4dpwsE
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
#~ msgid "Delete record"
@@ -1736,7 +1716,6 @@ msgstr "Aikaisin p\\u00e4iv\\u00e4m\\u00e4\\u00e4r\\u00e4"
#: src/modules/views/view-picker/components/ViewPickerOptionDropdown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Edit"
msgstr "Muokkaa"
@@ -1819,8 +1798,8 @@ msgstr "Sähköpostin varmistus"
#. js-lingui-id: TBv/iZ
#: src/modules/auth/components/VerifyEmailEffect.tsx
#~ msgid "Email verification failed."
#~ msgstr "Sähköpostivarmennus epäonnistui."
msgid "Email verification failed."
msgstr "Sähköpostivarmennus epäonnistui."
#. js-lingui-id: svTijF
#: src/modules/auth/sign-in-up/hooks/useHandleResendEmailVerificationToken.ts
@@ -1968,11 +1947,6 @@ msgstr "Virhe SSO-identiteetintarjoajan poistamisessa"
msgid "Error editing SSO Identity Provider"
msgstr "Virhe SSO-identiteetintarjoajan muokkaamisessa"
#. js-lingui-id: 2GvilU
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Error loading message"
msgstr ""
#. js-lingui-id: bj7nh3
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error regenerating api key: {err}"
@@ -2046,7 +2020,7 @@ msgid "Existing objects"
msgstr "Olemassa olevat objektit"
#. js-lingui-id: ydzS9x
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit"
msgstr ""
@@ -2056,7 +2030,7 @@ msgstr ""
#~ msgstr "Poistu koko näytöstä"
#. js-lingui-id: XB4onr
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit import flow"
msgstr ""
@@ -2358,11 +2332,6 @@ msgstr "Globaali"
msgid "Go to Companies"
msgstr ""
#. js-lingui-id: dHvI9O
#: src/modules/workflow/components/OverrideWorkflowDraftConfirmationModal.tsx
msgid "Go to Draft"
msgstr ""
#. js-lingui-id: BQE4ob
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Go to Notes"
@@ -2386,9 +2355,7 @@ msgid "Go to runs"
msgstr "Siirry suorittamaan"
#. js-lingui-id: mT57+Q
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Go to Settings"
msgstr "Siirry asetuksiin"
@@ -2471,7 +2438,6 @@ msgstr "Piilotetut kentät"
#. js-lingui-id: vLyv1R
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Hide"
msgstr "Piilota"
@@ -2557,11 +2523,6 @@ msgstr "Identiteetintarjoaja"
msgid "Identity Provider Metadata XML"
msgstr "Identiteetintarjoajan Metadata XML"
#. js-lingui-id: ZfP/Ap
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
msgid "If this is unexpected, please verify your settings."
msgstr ""
#. js-lingui-id: j843N3
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "If youve lost this key, you can regenerate it, but be aware that any script using this key will need to be updated. Please type\"{confirmationValue}\" to confirm."
@@ -2788,11 +2749,6 @@ msgstr "Italia"
msgid "Japanese"
msgstr "Japani"
#. js-lingui-id: VIK/N0
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
msgid "JSON keys cannot contain spaces"
msgstr ""
#. js-lingui-id: OGXtL8
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -2862,16 +2818,6 @@ msgstr "Viimeiset 7 päivää (vanhin → uusin)"
msgid "Last Name"
msgstr "Sukunimi"
#. js-lingui-id: s0kiVA
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
msgid "Last payment failed. Please contact your admin."
msgstr ""
#. js-lingui-id: 3u/3zO
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
msgid "Last payment failed. Please update your billing details."
msgstr ""
#. js-lingui-id: wL3cK8
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
msgid "Latest"
@@ -2924,11 +2870,6 @@ msgstr "Linkki kopioitu leikepöydälle"
msgid "Listings"
msgstr "Luettelot"
#. js-lingui-id: Nx262D
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Loading csv ... "
msgstr ""
#. js-lingui-id: s1MstR
#: src/modules/settings/admin-panel/health-status/components/WorkerMetricsGraph.tsx
msgid "Loading metrics data..."
@@ -2936,7 +2877,6 @@ msgstr "Ladataan metriikkatietoja..."
#. js-lingui-id: Z3FXyt
#: src/modules/settings/admin-panel/components/SettingsAdminVersionDisplay.tsx
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Loading..."
msgstr ""
@@ -3032,11 +2972,6 @@ msgstr "Suurin"
msgid "Members"
msgstr "Jäsenet"
#. js-lingui-id: U15XwX
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Message not found"
msgstr ""
#. js-lingui-id: elpx6r
#: src/modules/settings/admin-panel/health-status/components/ConnectedAccountHealthStatus.tsx
msgid "Message Sync"
@@ -3090,13 +3025,11 @@ msgstr "Lisää valintoja"
#. js-lingui-id: iSLA/r
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Move left"
msgstr "Siirrä vasemmalle"
#. js-lingui-id: Ubl2by
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Move right"
msgstr "Siirrä oikealle"
@@ -3284,11 +3217,6 @@ msgstr "Ei yhdistettyä käyttäjätiliä"
msgid "No country"
msgstr "Ei maata"
#. js-lingui-id: 7tCnBa
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
msgid "No Data Available for Remote Table"
msgstr ""
#. js-lingui-id: pxvJ9B
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data containing errors"
@@ -3304,11 +3232,6 @@ msgstr ""
msgid "No free workflow executions left. End trial period and activate your billing to continue."
msgstr ""
#. js-lingui-id: pxYUeX
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
msgid "No free workflow executions left. Please contact your admin."
msgstr ""
#. js-lingui-id: OcMef3
#: src/modules/settings/admin-panel/components/SettingsAdminVersionContainer.tsx
msgid "No latest version found"
@@ -3387,7 +3310,6 @@ msgstr "Ei tietueita löydetty"
#. js-lingui-id: Ev2r9A
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCountrySelect.tsx
msgid "No results"
msgstr ""
@@ -3460,16 +3382,6 @@ msgstr "Ei tyhjä"
msgid "Not Found"
msgstr "Ei löytynyt"
#. js-lingui-id: 51G4/+
#: src/modules/activities/calendar/components/CalendarEventNotSharedContent.tsx
msgid "Not shared"
msgstr ""
#. js-lingui-id: uzFo/5
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessageBodyNotShared.tsx
msgid "Not shared by {notSharedByFullName}"
msgstr ""
#. js-lingui-id: hZWthZ
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Not synced"
@@ -3844,8 +3756,6 @@ msgstr "Tietueen kuva"
#. js-lingui-id: K6/7kH
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
msgid "Record label"
msgstr "Tietueen otsikko"
@@ -3940,11 +3850,6 @@ msgstr "Poista suosikeista"
msgid "Remove option"
msgstr "Poista vaihtoehto"
#. js-lingui-id: Ee8JBW
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
msgid "Reorder field"
msgstr ""
#. js-lingui-id: OfhWJH
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/modules/views/components/ViewBarDetails.tsx
@@ -4116,22 +4021,16 @@ msgstr "Etsi indeksi..."
msgid "Search config variables"
msgstr ""
#. js-lingui-id: WLfEv1
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCountrySelect.tsx
msgid "Search country"
msgstr ""
#. js-lingui-id: sSARNY
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
msgid "Search currency"
msgstr ""
#. js-lingui-id: 7taA9j
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: 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/ObjectFilterDropdownFieldSelect.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterFieldSelectSearchInput.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterDropdownFieldSelectMenu.tsx
msgid "Search fields"
msgstr "Etsi kenttiä"
@@ -4281,8 +4180,8 @@ 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 ""
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
@@ -4555,11 +4454,6 @@ msgstr "Aihe ja metatiedot"
msgid "Subject and metadata will be shared with your team."
msgstr "Aihe ja metatiedot jaetaan tiimisi kanssa."
#. js-lingui-id: DvSvG9
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessageForbidden.tsx
msgid "Subject not shared"
msgstr ""
#. js-lingui-id: J9ylmk
#: src/modules/settings/accounts/components/SettingsAccountsMessageVisibilityCard.tsx
msgid "Subject, body and attachments will be shared with your team."
@@ -4570,11 +4464,6 @@ msgstr "Aihe, runko ja liitteet jaetaan tiimisi kanssa."
msgid "Submit"
msgstr ""
#. js-lingui-id: EDl9kS
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Subscribe"
msgstr ""
#. js-lingui-id: uvY7Wk
#: src/modules/billing/hooks/useEndSubscriptionTrialPeriod.ts
msgid "Subscription activated."
@@ -4905,7 +4794,6 @@ msgstr "Aikaleima ja osallistujat jaetaan tiimisi kanssa."
#. js-lingui-id: ecUA8p
#: src/modules/settings/admin-panel/health-status/constants/WorkerQueueMetricsSelectOptions.ts
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Today"
msgstr "Tänään"
@@ -4914,11 +4802,6 @@ msgstr "Tänään"
msgid "Toggle all object permissions"
msgstr ""
#. js-lingui-id: BRMXj0
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Tomorrow"
msgstr ""
#. js-lingui-id: vb0Q0/
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
#~ msgid "Total Users"
@@ -4929,16 +4812,6 @@ msgstr ""
msgid "Track your monthly workflow credit consumption."
msgstr ""
#. js-lingui-id: wN0jHF
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Trial expired. Please contact your admin"
msgstr ""
#. js-lingui-id: y985qL
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Trial expired. Please update your billing details."
msgstr ""
#. js-lingui-id: PiUt3N
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
@@ -5005,12 +4878,6 @@ msgstr "Tuntematon virhe"
msgid "Unlimited contacts"
msgstr "Rajattomat yhteystiedot"
#. js-lingui-id: EkH9pt
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Update"
msgstr ""
#. js-lingui-id: +b7T3G
#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx
msgid "Updated"
@@ -5203,21 +5070,6 @@ msgstr "Näkyvät ryhmät"
msgid "Visualize"
msgstr "Visualisoi"
#. js-lingui-id: zFSQY3
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was created by"
msgstr ""
#. js-lingui-id: uHpu1c
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was deleted by"
msgstr ""
#. js-lingui-id: S0enzB
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was restored by"
msgstr ""
#. js-lingui-id: id6ein
#: src/modules/ui/input/components/ImageInput.tsx
msgid "We support your square PNGs, JPEGs and GIFs under 10MB"
@@ -5365,11 +5217,6 @@ msgstr "Kirjoita salaisuus"
msgid "yes"
msgstr "kyllä"
#. js-lingui-id: y/0uwd
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Yesterday"
msgstr ""
#. js-lingui-id: qsAug0
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
#~ msgid "You are already importing this column."
@@ -5430,16 +5277,6 @@ msgstr "Nimesi, niin kuin se näytetään sovelluksessa"
msgid "Your Workspace"
msgstr "Työtilasi"
#. js-lingui-id: oC6WBs
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Your workspace doesn't have an active subscription."
msgstr ""
#. js-lingui-id: QBTEtW
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Your workspace doesn't have an active subscription. Please contact your admin."
msgstr ""
#. js-lingui-id: RhNbPE
#: src/pages/settings/SettingsBilling.tsx
msgid "Your workspace will be disabled"
+9 -172
View File
@@ -93,11 +93,6 @@ msgstr "{apiKeyName} Clé API"
msgid "{contextStoreNumberOfSelectedRecords} selected"
msgstr "{contextStoreNumberOfSelectedRecords} sélectionné(s)"
#. js-lingui-id: wapGcj
#: src/modules/auth/components/VerifyEmailEffect.tsx
msgid "{message}"
msgstr ""
#. js-lingui-id: 6j5rE1
#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowRecordAgnosticActions.tsx
#: src/modules/action-menu/actions/record-actions/run-workflow-actions/hooks/useRunWorkflowRecordActions.tsx
@@ -109,11 +104,6 @@ msgstr "{name}"
msgid "{workspaceMemberName} will be unassigned from the following role:"
msgstr "{workspaceMemberName} sera retiré du rôle suivant :"
#. js-lingui-id: NNQszp
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "⚠️ Please verify the auto mapping of the columns. You can also ignore or change the mapping of the columns."
msgstr ""
#. js-lingui-id: YT0WJ4
#: src/pages/onboarding/ChooseYourPlan.tsx
#~ msgid "1 000 workflow node executions"
@@ -627,7 +617,7 @@ msgid "Are you sure you want to delete this record? It can be recovered from the
msgstr "Êtes-vous sûr de vouloir supprimer cet enregistrementa0? Il peut être récupéré depuis le menu Commande."
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Are you sure? Your current information will not be saved."
msgstr ""
@@ -808,7 +798,7 @@ msgstr "Impossible de modifier les noms d'API pour les objets standard"
#: 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/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
msgid "Cancel"
msgstr "Annuler"
@@ -1257,11 +1247,6 @@ msgstr "Créez votre espace de travail"
msgid "Created"
msgstr "Créé"
#. js-lingui-id: R3PLzn
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
msgid "currencies"
msgstr ""
#. js-lingui-id: 6YzXhC
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
msgid "Current value from server environment. Set a custom value to override."
@@ -1498,11 +1483,6 @@ msgstr "Supprimer le compte et toutes les données associées"
msgid "Delete API key"
msgstr "Supprimer la clé API"
#. js-lingui-id: x2p4/4
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
msgid "Delete field"
msgstr ""
#. js-lingui-id: 4dpwsE
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
#~ msgid "Delete record"
@@ -1736,7 +1716,6 @@ msgstr "Date la plus ancienne"
#: src/modules/views/view-picker/components/ViewPickerOptionDropdown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Edit"
msgstr "Éditer"
@@ -1819,8 +1798,8 @@ msgstr "Vérification de l'email"
#. js-lingui-id: TBv/iZ
#: src/modules/auth/components/VerifyEmailEffect.tsx
#~ msgid "Email verification failed."
#~ msgstr "Échec de la vérification de l'email."
msgid "Email verification failed."
msgstr "Échec de la vérification de l'email."
#. js-lingui-id: svTijF
#: src/modules/auth/sign-in-up/hooks/useHandleResendEmailVerificationToken.ts
@@ -1968,11 +1947,6 @@ msgstr "Erreur lors de la suppression du fournisseur d'identité SSO"
msgid "Error editing SSO Identity Provider"
msgstr "Erreur lors de la modification du fournisseur d'identité SSO"
#. js-lingui-id: 2GvilU
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Error loading message"
msgstr ""
#. js-lingui-id: bj7nh3
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error regenerating api key: {err}"
@@ -2046,7 +2020,7 @@ msgid "Existing objects"
msgstr "Objets existants"
#. js-lingui-id: ydzS9x
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit"
msgstr ""
@@ -2056,7 +2030,7 @@ msgstr ""
#~ msgstr "Quitter le plein écran"
#. js-lingui-id: XB4onr
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit import flow"
msgstr ""
@@ -2358,11 +2332,6 @@ msgstr "Global"
msgid "Go to Companies"
msgstr ""
#. js-lingui-id: dHvI9O
#: src/modules/workflow/components/OverrideWorkflowDraftConfirmationModal.tsx
msgid "Go to Draft"
msgstr ""
#. js-lingui-id: BQE4ob
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Go to Notes"
@@ -2386,9 +2355,7 @@ msgid "Go to runs"
msgstr "Aller aux exécutions"
#. js-lingui-id: mT57+Q
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Go to Settings"
msgstr "Aller aux paramètres"
@@ -2471,7 +2438,6 @@ msgstr "Champs cachés"
#. js-lingui-id: vLyv1R
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Hide"
msgstr "Cacher"
@@ -2557,11 +2523,6 @@ msgstr "Fournisseur d'identité"
msgid "Identity Provider Metadata XML"
msgstr "Fichier XML des métadonnées du fournisseur d'identité"
#. js-lingui-id: ZfP/Ap
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
msgid "If this is unexpected, please verify your settings."
msgstr ""
#. js-lingui-id: j843N3
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "If youve lost this key, you can regenerate it, but be aware that any script using this key will need to be updated. Please type\"{confirmationValue}\" to confirm."
@@ -2788,11 +2749,6 @@ msgstr "Italien"
msgid "Japanese"
msgstr "Japonais"
#. js-lingui-id: VIK/N0
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
msgid "JSON keys cannot contain spaces"
msgstr ""
#. js-lingui-id: OGXtL8
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -2862,16 +2818,6 @@ msgstr "Derniers 7 jours (du plus ancien au plus récent)"
msgid "Last Name"
msgstr "Nom de famille"
#. js-lingui-id: s0kiVA
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
msgid "Last payment failed. Please contact your admin."
msgstr ""
#. js-lingui-id: 3u/3zO
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
msgid "Last payment failed. Please update your billing details."
msgstr ""
#. js-lingui-id: wL3cK8
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
msgid "Latest"
@@ -2924,11 +2870,6 @@ msgstr "Lien copié dans le presse-papiers"
msgid "Listings"
msgstr "Annonces"
#. js-lingui-id: Nx262D
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Loading csv ... "
msgstr ""
#. js-lingui-id: s1MstR
#: src/modules/settings/admin-panel/health-status/components/WorkerMetricsGraph.tsx
msgid "Loading metrics data..."
@@ -2936,7 +2877,6 @@ msgstr "Chargement des données de métriques..."
#. js-lingui-id: Z3FXyt
#: src/modules/settings/admin-panel/components/SettingsAdminVersionDisplay.tsx
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Loading..."
msgstr ""
@@ -3032,11 +2972,6 @@ msgstr "Max"
msgid "Members"
msgstr "Membres"
#. js-lingui-id: U15XwX
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Message not found"
msgstr ""
#. js-lingui-id: elpx6r
#: src/modules/settings/admin-panel/health-status/components/ConnectedAccountHealthStatus.tsx
msgid "Message Sync"
@@ -3090,13 +3025,11 @@ msgstr "Plus d'options"
#. js-lingui-id: iSLA/r
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Move left"
msgstr "Déplacer à gauche"
#. js-lingui-id: Ubl2by
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Move right"
msgstr "Déplacer à droite"
@@ -3284,11 +3217,6 @@ msgstr "Aucun compte connecté"
msgid "No country"
msgstr "Aucun pays"
#. js-lingui-id: 7tCnBa
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
msgid "No Data Available for Remote Table"
msgstr ""
#. js-lingui-id: pxvJ9B
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data containing errors"
@@ -3304,11 +3232,6 @@ msgstr ""
msgid "No free workflow executions left. End trial period and activate your billing to continue."
msgstr ""
#. js-lingui-id: pxYUeX
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
msgid "No free workflow executions left. Please contact your admin."
msgstr ""
#. js-lingui-id: OcMef3
#: src/modules/settings/admin-panel/components/SettingsAdminVersionContainer.tsx
msgid "No latest version found"
@@ -3387,7 +3310,6 @@ msgstr "Aucun enregistrement trouvé"
#. js-lingui-id: Ev2r9A
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCountrySelect.tsx
msgid "No results"
msgstr ""
@@ -3460,16 +3382,6 @@ msgstr "Non vide"
msgid "Not Found"
msgstr "Introuvable"
#. js-lingui-id: 51G4/+
#: src/modules/activities/calendar/components/CalendarEventNotSharedContent.tsx
msgid "Not shared"
msgstr ""
#. js-lingui-id: uzFo/5
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessageBodyNotShared.tsx
msgid "Not shared by {notSharedByFullName}"
msgstr ""
#. js-lingui-id: hZWthZ
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Not synced"
@@ -3844,8 +3756,6 @@ msgstr "Enregistrer l'image"
#. js-lingui-id: K6/7kH
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
msgid "Record label"
msgstr "Étiquette d'enregistrement"
@@ -3940,11 +3850,6 @@ msgstr "Retirer des favoris"
msgid "Remove option"
msgstr "Supprimer l'option"
#. js-lingui-id: Ee8JBW
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
msgid "Reorder field"
msgstr ""
#. js-lingui-id: OfhWJH
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/modules/views/components/ViewBarDetails.tsx
@@ -4116,22 +4021,16 @@ msgstr "Rechercher un index..."
msgid "Search config variables"
msgstr ""
#. js-lingui-id: WLfEv1
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCountrySelect.tsx
msgid "Search country"
msgstr ""
#. js-lingui-id: sSARNY
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
msgid "Search currency"
msgstr ""
#. js-lingui-id: 7taA9j
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: 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/ObjectFilterDropdownFieldSelect.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterFieldSelectSearchInput.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterDropdownFieldSelectMenu.tsx
msgid "Search fields"
msgstr "Champs de recherche"
@@ -4281,8 +4180,8 @@ 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 ""
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
@@ -4555,11 +4454,6 @@ msgstr "Sujet et métadonnées"
msgid "Subject and metadata will be shared with your team."
msgstr "Le sujet et les métadonnées seront partagés avec votre équipe."
#. js-lingui-id: DvSvG9
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessageForbidden.tsx
msgid "Subject not shared"
msgstr ""
#. js-lingui-id: J9ylmk
#: src/modules/settings/accounts/components/SettingsAccountsMessageVisibilityCard.tsx
msgid "Subject, body and attachments will be shared with your team."
@@ -4570,11 +4464,6 @@ msgstr "Le sujet, le corps et les pièces jointes seront partagés avec votre é
msgid "Submit"
msgstr ""
#. js-lingui-id: EDl9kS
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Subscribe"
msgstr ""
#. js-lingui-id: uvY7Wk
#: src/modules/billing/hooks/useEndSubscriptionTrialPeriod.ts
msgid "Subscription activated."
@@ -4905,7 +4794,6 @@ msgstr "L'horodatage et les participants seront partagés avec votre équipe."
#. js-lingui-id: ecUA8p
#: src/modules/settings/admin-panel/health-status/constants/WorkerQueueMetricsSelectOptions.ts
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Today"
msgstr "Aujourd'hui"
@@ -4914,11 +4802,6 @@ msgstr "Aujourd'hui"
msgid "Toggle all object permissions"
msgstr ""
#. js-lingui-id: BRMXj0
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Tomorrow"
msgstr ""
#. js-lingui-id: vb0Q0/
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
#~ msgid "Total Users"
@@ -4929,16 +4812,6 @@ msgstr ""
msgid "Track your monthly workflow credit consumption."
msgstr ""
#. js-lingui-id: wN0jHF
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Trial expired. Please contact your admin"
msgstr ""
#. js-lingui-id: y985qL
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Trial expired. Please update your billing details."
msgstr ""
#. js-lingui-id: PiUt3N
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
@@ -5005,12 +4878,6 @@ msgstr "Erreur inconnue"
msgid "Unlimited contacts"
msgstr "Contacts illimités"
#. js-lingui-id: EkH9pt
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Update"
msgstr ""
#. js-lingui-id: +b7T3G
#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx
msgid "Updated"
@@ -5203,21 +5070,6 @@ msgstr "Groupes visibles"
msgid "Visualize"
msgstr "Visualiser"
#. js-lingui-id: zFSQY3
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was created by"
msgstr ""
#. js-lingui-id: uHpu1c
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was deleted by"
msgstr ""
#. js-lingui-id: S0enzB
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was restored by"
msgstr ""
#. js-lingui-id: id6ein
#: src/modules/ui/input/components/ImageInput.tsx
msgid "We support your square PNGs, JPEGs and GIFs under 10MB"
@@ -5365,11 +5217,6 @@ msgstr "Écrire un secret"
msgid "yes"
msgstr "oui"
#. js-lingui-id: y/0uwd
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Yesterday"
msgstr ""
#. js-lingui-id: qsAug0
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
#~ msgid "You are already importing this column."
@@ -5430,16 +5277,6 @@ msgstr "Votre nom tel qu'il sera affiché sur l'application"
msgid "Your Workspace"
msgstr "Votre espace de travail"
#. js-lingui-id: oC6WBs
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Your workspace doesn't have an active subscription."
msgstr ""
#. js-lingui-id: QBTEtW
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Your workspace doesn't have an active subscription. Please contact your admin."
msgstr ""
#. js-lingui-id: RhNbPE
#: src/pages/settings/SettingsBilling.tsx
msgid "Your workspace will be disabled"
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+9 -172
View File
@@ -93,11 +93,6 @@ msgstr "מפתח API של {apiKeyName}"
msgid "{contextStoreNumberOfSelectedRecords} selected"
msgstr "{contextStoreNumberOfSelectedRecords} נבחר"
#. js-lingui-id: wapGcj
#: src/modules/auth/components/VerifyEmailEffect.tsx
msgid "{message}"
msgstr ""
#. js-lingui-id: 6j5rE1
#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowRecordAgnosticActions.tsx
#: src/modules/action-menu/actions/record-actions/run-workflow-actions/hooks/useRunWorkflowRecordActions.tsx
@@ -109,11 +104,6 @@ msgstr "{name}"
msgid "{workspaceMemberName} will be unassigned from the following role:"
msgstr "{workspaceMemberName} יוסר מהתפקיד הבא:"
#. js-lingui-id: NNQszp
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "⚠️ Please verify the auto mapping of the columns. You can also ignore or change the mapping of the columns."
msgstr ""
#. js-lingui-id: YT0WJ4
#: src/pages/onboarding/ChooseYourPlan.tsx
#~ msgid "1 000 workflow node executions"
@@ -627,7 +617,7 @@ msgid "Are you sure you want to delete this record? It can be recovered from the
msgstr "האם אתה בטוח שברצונך למחוק את הרשומה הזו? ניתן לשחזר אותה מתפריט Command."
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Are you sure? Your current information will not be saved."
msgstr ""
@@ -808,7 +798,7 @@ msgstr "לא ניתן לשנות שמות API עבור עצמים סטנדרטי
#: 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/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
msgid "Cancel"
msgstr "בטל"
@@ -1257,11 +1247,6 @@ msgstr "צור את המרחב שלך"
msgid "Created"
msgstr "נוצר"
#. js-lingui-id: R3PLzn
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
msgid "currencies"
msgstr ""
#. js-lingui-id: 6YzXhC
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
msgid "Current value from server environment. Set a custom value to override."
@@ -1498,11 +1483,6 @@ msgstr "מחק חשבון ואת כל הנתונים הקשורים בו"
msgid "Delete API key"
msgstr "מחק מפתח API"
#. js-lingui-id: x2p4/4
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
msgid "Delete field"
msgstr ""
#. js-lingui-id: 4dpwsE
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
#~ msgid "Delete record"
@@ -1736,7 +1716,6 @@ msgstr "התאריך המוקדם ביותר"
#: src/modules/views/view-picker/components/ViewPickerOptionDropdown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Edit"
msgstr "ערוך"
@@ -1819,8 +1798,8 @@ msgstr "אימות דואר אלקטרוני"
#. js-lingui-id: TBv/iZ
#: src/modules/auth/components/VerifyEmailEffect.tsx
#~ msgid "Email verification failed."
#~ msgstr "אימות הדוא\"ל נכשל."
msgid "Email verification failed."
msgstr "אימות הדוא\"ל נכשל."
#. js-lingui-id: svTijF
#: src/modules/auth/sign-in-up/hooks/useHandleResendEmailVerificationToken.ts
@@ -1968,11 +1947,6 @@ msgstr "שגיאה במחיקת ספק זיהוי SSO"
msgid "Error editing SSO Identity Provider"
msgstr "שגיאה בעריכת ספק זיהוי SSO"
#. js-lingui-id: 2GvilU
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Error loading message"
msgstr ""
#. js-lingui-id: bj7nh3
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error regenerating api key: {err}"
@@ -2046,7 +2020,7 @@ msgid "Existing objects"
msgstr "אובייקטים קיימים"
#. js-lingui-id: ydzS9x
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit"
msgstr ""
@@ -2056,7 +2030,7 @@ msgstr ""
#~ msgstr "צא ממסך מלא"
#. js-lingui-id: XB4onr
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit import flow"
msgstr ""
@@ -2358,11 +2332,6 @@ msgstr "גלובלי"
msgid "Go to Companies"
msgstr ""
#. js-lingui-id: dHvI9O
#: src/modules/workflow/components/OverrideWorkflowDraftConfirmationModal.tsx
msgid "Go to Draft"
msgstr ""
#. js-lingui-id: BQE4ob
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Go to Notes"
@@ -2386,9 +2355,7 @@ msgid "Go to runs"
msgstr "עבור להרצות"
#. js-lingui-id: mT57+Q
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Go to Settings"
msgstr "עבור להגדרות"
@@ -2471,7 +2438,6 @@ msgstr "שדות מוסתרים"
#. js-lingui-id: vLyv1R
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Hide"
msgstr "הסתרה"
@@ -2557,11 +2523,6 @@ msgstr "ספק זיהוי"
msgid "Identity Provider Metadata XML"
msgstr "XML של נתוני ספק זיהוי"
#. js-lingui-id: ZfP/Ap
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
msgid "If this is unexpected, please verify your settings."
msgstr ""
#. js-lingui-id: j843N3
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "If youve lost this key, you can regenerate it, but be aware that any script using this key will need to be updated. Please type\"{confirmationValue}\" to confirm."
@@ -2788,11 +2749,6 @@ msgstr "איטלקית"
msgid "Japanese"
msgstr "יפנית"
#. js-lingui-id: VIK/N0
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
msgid "JSON keys cannot contain spaces"
msgstr ""
#. js-lingui-id: OGXtL8
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -2862,16 +2818,6 @@ msgstr "7 הימים האחרונים (ישן → חדש)"
msgid "Last Name"
msgstr "שם משפחה"
#. js-lingui-id: s0kiVA
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
msgid "Last payment failed. Please contact your admin."
msgstr ""
#. js-lingui-id: 3u/3zO
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
msgid "Last payment failed. Please update your billing details."
msgstr ""
#. js-lingui-id: wL3cK8
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
msgid "Latest"
@@ -2924,11 +2870,6 @@ msgstr "הקישור הועתק ללוח הגזירים"
msgid "Listings"
msgstr "רשימות"
#. js-lingui-id: Nx262D
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Loading csv ... "
msgstr ""
#. js-lingui-id: s1MstR
#: src/modules/settings/admin-panel/health-status/components/WorkerMetricsGraph.tsx
msgid "Loading metrics data..."
@@ -2936,7 +2877,6 @@ msgstr "טוען נתוני מדדים..."
#. js-lingui-id: Z3FXyt
#: src/modules/settings/admin-panel/components/SettingsAdminVersionDisplay.tsx
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Loading..."
msgstr ""
@@ -3032,11 +2972,6 @@ msgstr "מקס"
msgid "Members"
msgstr "חברים"
#. js-lingui-id: U15XwX
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Message not found"
msgstr ""
#. js-lingui-id: elpx6r
#: src/modules/settings/admin-panel/health-status/components/ConnectedAccountHealthStatus.tsx
msgid "Message Sync"
@@ -3090,13 +3025,11 @@ msgstr "אופציות נוספות"
#. js-lingui-id: iSLA/r
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Move left"
msgstr "הזזה שמאלה"
#. js-lingui-id: Ubl2by
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Move right"
msgstr "הזזה ימינה"
@@ -3284,11 +3217,6 @@ msgstr "אין חשבון מחובר"
msgid "No country"
msgstr "אין מדינה"
#. js-lingui-id: 7tCnBa
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
msgid "No Data Available for Remote Table"
msgstr ""
#. js-lingui-id: pxvJ9B
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data containing errors"
@@ -3304,11 +3232,6 @@ msgstr ""
msgid "No free workflow executions left. End trial period and activate your billing to continue."
msgstr ""
#. js-lingui-id: pxYUeX
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
msgid "No free workflow executions left. Please contact your admin."
msgstr ""
#. js-lingui-id: OcMef3
#: src/modules/settings/admin-panel/components/SettingsAdminVersionContainer.tsx
msgid "No latest version found"
@@ -3387,7 +3310,6 @@ msgstr "לא נמצאו רשומות"
#. js-lingui-id: Ev2r9A
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCountrySelect.tsx
msgid "No results"
msgstr ""
@@ -3460,16 +3382,6 @@ msgstr "לא ריק"
msgid "Not Found"
msgstr "לא נמצא"
#. js-lingui-id: 51G4/+
#: src/modules/activities/calendar/components/CalendarEventNotSharedContent.tsx
msgid "Not shared"
msgstr ""
#. js-lingui-id: uzFo/5
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessageBodyNotShared.tsx
msgid "Not shared by {notSharedByFullName}"
msgstr ""
#. js-lingui-id: hZWthZ
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Not synced"
@@ -3844,8 +3756,6 @@ msgstr "תמונה של רישום"
#. js-lingui-id: K6/7kH
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
msgid "Record label"
msgstr "תווית של רישום"
@@ -3940,11 +3850,6 @@ msgstr "\\"
msgid "Remove option"
msgstr "הסר אפשרות"
#. js-lingui-id: Ee8JBW
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
msgid "Reorder field"
msgstr ""
#. js-lingui-id: OfhWJH
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/modules/views/components/ViewBarDetails.tsx
@@ -4116,22 +4021,16 @@ msgstr "חפש אינדקס..."
msgid "Search config variables"
msgstr ""
#. js-lingui-id: WLfEv1
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCountrySelect.tsx
msgid "Search country"
msgstr ""
#. js-lingui-id: sSARNY
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
msgid "Search currency"
msgstr ""
#. js-lingui-id: 7taA9j
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: 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/ObjectFilterDropdownFieldSelect.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterFieldSelectSearchInput.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterDropdownFieldSelectMenu.tsx
msgid "Search fields"
msgstr "\\"
@@ -4281,8 +4180,8 @@ 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 ""
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
@@ -4555,11 +4454,6 @@ msgstr "נושא ומטא-נתונים"
msgid "Subject and metadata will be shared with your team."
msgstr "נושא ומטא-נתונים ישותפו עם הצוות שלך."
#. js-lingui-id: DvSvG9
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessageForbidden.tsx
msgid "Subject not shared"
msgstr ""
#. js-lingui-id: J9ylmk
#: src/modules/settings/accounts/components/SettingsAccountsMessageVisibilityCard.tsx
msgid "Subject, body and attachments will be shared with your team."
@@ -4570,11 +4464,6 @@ msgstr "נושא, גוף וקבצים מצורפים ישותפו עם הצוו
msgid "Submit"
msgstr ""
#. js-lingui-id: EDl9kS
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Subscribe"
msgstr ""
#. js-lingui-id: uvY7Wk
#: src/modules/billing/hooks/useEndSubscriptionTrialPeriod.ts
msgid "Subscription activated."
@@ -4905,7 +4794,6 @@ msgstr "חותמת הזמן והמשתתפים ישותפו עם הצוות של
#. js-lingui-id: ecUA8p
#: src/modules/settings/admin-panel/health-status/constants/WorkerQueueMetricsSelectOptions.ts
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Today"
msgstr "היום"
@@ -4914,11 +4802,6 @@ msgstr "היום"
msgid "Toggle all object permissions"
msgstr ""
#. js-lingui-id: BRMXj0
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Tomorrow"
msgstr ""
#. js-lingui-id: vb0Q0/
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
#~ msgid "Total Users"
@@ -4929,16 +4812,6 @@ msgstr ""
msgid "Track your monthly workflow credit consumption."
msgstr ""
#. js-lingui-id: wN0jHF
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Trial expired. Please contact your admin"
msgstr ""
#. js-lingui-id: y985qL
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Trial expired. Please update your billing details."
msgstr ""
#. js-lingui-id: PiUt3N
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
@@ -5005,12 +4878,6 @@ msgstr "שגיאה לא ידועה"
msgid "Unlimited contacts"
msgstr "אין מגבלה על מספר אנשי הקשר"
#. js-lingui-id: EkH9pt
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Update"
msgstr ""
#. js-lingui-id: +b7T3G
#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx
msgid "Updated"
@@ -5203,21 +5070,6 @@ msgstr "קבוצות נראות"
msgid "Visualize"
msgstr "המחשה"
#. js-lingui-id: zFSQY3
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was created by"
msgstr ""
#. js-lingui-id: uHpu1c
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was deleted by"
msgstr ""
#. js-lingui-id: S0enzB
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was restored by"
msgstr ""
#. js-lingui-id: id6ein
#: src/modules/ui/input/components/ImageInput.tsx
msgid "We support your square PNGs, JPEGs and GIFs under 10MB"
@@ -5365,11 +5217,6 @@ msgstr "כתוב סוד"
msgid "yes"
msgstr "כן"
#. js-lingui-id: y/0uwd
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Yesterday"
msgstr ""
#. js-lingui-id: qsAug0
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
#~ msgid "You are already importing this column."
@@ -5430,16 +5277,6 @@ msgstr "השם שלך כפי שיהיה מוצג באפליקציה"
msgid "Your Workspace"
msgstr "המרחב האישי שלך"
#. js-lingui-id: oC6WBs
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Your workspace doesn't have an active subscription."
msgstr ""
#. js-lingui-id: QBTEtW
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Your workspace doesn't have an active subscription. Please contact your admin."
msgstr ""
#. js-lingui-id: RhNbPE
#: src/pages/settings/SettingsBilling.tsx
msgid "Your workspace will be disabled"
+9 -172
View File
@@ -93,11 +93,6 @@ msgstr "{apiKeyName} API kulcs"
msgid "{contextStoreNumberOfSelectedRecords} selected"
msgstr "{contextStoreNumberOfSelectedRecords} kiválasztva"
#. js-lingui-id: wapGcj
#: src/modules/auth/components/VerifyEmailEffect.tsx
msgid "{message}"
msgstr ""
#. js-lingui-id: 6j5rE1
#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowRecordAgnosticActions.tsx
#: src/modules/action-menu/actions/record-actions/run-workflow-actions/hooks/useRunWorkflowRecordActions.tsx
@@ -109,11 +104,6 @@ msgstr "{name}"
msgid "{workspaceMemberName} will be unassigned from the following role:"
msgstr "{workspaceMemberName} a következő szerepkörből lesz kivezetve:"
#. js-lingui-id: NNQszp
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "⚠️ Please verify the auto mapping of the columns. You can also ignore or change the mapping of the columns."
msgstr ""
#. js-lingui-id: YT0WJ4
#: src/pages/onboarding/ChooseYourPlan.tsx
#~ msgid "1 000 workflow node executions"
@@ -627,7 +617,7 @@ msgid "Are you sure you want to delete this record? It can be recovered from the
msgstr "Biztosan törölni szeretné ezt a rekordot? Visszaállítható a Parancs menüből."
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Are you sure? Your current information will not be saved."
msgstr ""
@@ -808,7 +798,7 @@ msgstr "Nem változtathatók meg a szabványos objektumok API-nevei"
#: 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/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
msgid "Cancel"
msgstr "Mégse"
@@ -1257,11 +1247,6 @@ msgstr "Hozza létre munkaterületét"
msgid "Created"
msgstr "Létrehozva"
#. js-lingui-id: R3PLzn
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
msgid "currencies"
msgstr ""
#. js-lingui-id: 6YzXhC
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
msgid "Current value from server environment. Set a custom value to override."
@@ -1498,11 +1483,6 @@ msgstr "Fiók és az összes hozzá kapcsolódó adat törlése"
msgid "Delete API key"
msgstr "API kulcs törlése"
#. js-lingui-id: x2p4/4
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
msgid "Delete field"
msgstr ""
#. js-lingui-id: 4dpwsE
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
#~ msgid "Delete record"
@@ -1736,7 +1716,6 @@ msgstr "Legkor\\u00e1bbi d\\u00e1tum"
#: src/modules/views/view-picker/components/ViewPickerOptionDropdown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Edit"
msgstr "Szerkesztés"
@@ -1819,8 +1798,8 @@ msgstr "Email hitelesítés"
#. js-lingui-id: TBv/iZ
#: src/modules/auth/components/VerifyEmailEffect.tsx
#~ msgid "Email verification failed."
#~ msgstr "Az email hitelesítése sikertelen."
msgid "Email verification failed."
msgstr "Az email hitelesítése sikertelen."
#. js-lingui-id: svTijF
#: src/modules/auth/sign-in-up/hooks/useHandleResendEmailVerificationToken.ts
@@ -1968,11 +1947,6 @@ msgstr "Hiba az SSO identitásszolgáltató törlése közben"
msgid "Error editing SSO Identity Provider"
msgstr "Hiba az SSO identitásszolgáltató szerkesztése közben"
#. js-lingui-id: 2GvilU
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Error loading message"
msgstr ""
#. js-lingui-id: bj7nh3
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error regenerating api key: {err}"
@@ -2046,7 +2020,7 @@ msgid "Existing objects"
msgstr "Meglévő objektumok"
#. js-lingui-id: ydzS9x
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit"
msgstr ""
@@ -2056,7 +2030,7 @@ msgstr ""
#~ msgstr "Kilépés teljes képernyőből"
#. js-lingui-id: XB4onr
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit import flow"
msgstr ""
@@ -2358,11 +2332,6 @@ msgstr "Globális"
msgid "Go to Companies"
msgstr ""
#. js-lingui-id: dHvI9O
#: src/modules/workflow/components/OverrideWorkflowDraftConfirmationModal.tsx
msgid "Go to Draft"
msgstr ""
#. js-lingui-id: BQE4ob
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Go to Notes"
@@ -2386,9 +2355,7 @@ msgid "Go to runs"
msgstr "Ugrás a futásokhoz"
#. js-lingui-id: mT57+Q
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Go to Settings"
msgstr "Ugrás a beállításokhoz"
@@ -2471,7 +2438,6 @@ msgstr "Rejtett mezők"
#. js-lingui-id: vLyv1R
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Hide"
msgstr "Elrejtés"
@@ -2557,11 +2523,6 @@ msgstr "Identitásszolgáltató"
msgid "Identity Provider Metadata XML"
msgstr "Identitásszolgáltató metadat XML"
#. js-lingui-id: ZfP/Ap
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
msgid "If this is unexpected, please verify your settings."
msgstr ""
#. js-lingui-id: j843N3
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "If youve lost this key, you can regenerate it, but be aware that any script using this key will need to be updated. Please type\"{confirmationValue}\" to confirm."
@@ -2788,11 +2749,6 @@ msgstr "Olasz"
msgid "Japanese"
msgstr "Japán"
#. js-lingui-id: VIK/N0
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
msgid "JSON keys cannot contain spaces"
msgstr ""
#. js-lingui-id: OGXtL8
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -2862,16 +2818,6 @@ msgstr "Elmúlt 7 nap (legrégebbi → legújabb)"
msgid "Last Name"
msgstr "Vezetéknév"
#. js-lingui-id: s0kiVA
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
msgid "Last payment failed. Please contact your admin."
msgstr ""
#. js-lingui-id: 3u/3zO
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
msgid "Last payment failed. Please update your billing details."
msgstr ""
#. js-lingui-id: wL3cK8
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
msgid "Latest"
@@ -2924,11 +2870,6 @@ msgstr "A link vágólapra másolva"
msgid "Listings"
msgstr "Listázások"
#. js-lingui-id: Nx262D
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Loading csv ... "
msgstr ""
#. js-lingui-id: s1MstR
#: src/modules/settings/admin-panel/health-status/components/WorkerMetricsGraph.tsx
msgid "Loading metrics data..."
@@ -2936,7 +2877,6 @@ msgstr "Metrikai adatok betöltése..."
#. js-lingui-id: Z3FXyt
#: src/modules/settings/admin-panel/components/SettingsAdminVersionDisplay.tsx
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Loading..."
msgstr ""
@@ -3032,11 +2972,6 @@ msgstr "Max"
msgid "Members"
msgstr "Tagok"
#. js-lingui-id: U15XwX
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Message not found"
msgstr ""
#. js-lingui-id: elpx6r
#: src/modules/settings/admin-panel/health-status/components/ConnectedAccountHealthStatus.tsx
msgid "Message Sync"
@@ -3090,13 +3025,11 @@ msgstr "További opciók"
#. js-lingui-id: iSLA/r
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Move left"
msgstr "Mozgatás balra"
#. js-lingui-id: Ubl2by
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Move right"
msgstr "Mozgatás jobbra"
@@ -3284,11 +3217,6 @@ msgstr "Nincs csatlakoztatott fiók"
msgid "No country"
msgstr "Nincs ország"
#. js-lingui-id: 7tCnBa
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
msgid "No Data Available for Remote Table"
msgstr ""
#. js-lingui-id: pxvJ9B
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data containing errors"
@@ -3304,11 +3232,6 @@ msgstr ""
msgid "No free workflow executions left. End trial period and activate your billing to continue."
msgstr ""
#. js-lingui-id: pxYUeX
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
msgid "No free workflow executions left. Please contact your admin."
msgstr ""
#. js-lingui-id: OcMef3
#: src/modules/settings/admin-panel/components/SettingsAdminVersionContainer.tsx
msgid "No latest version found"
@@ -3387,7 +3310,6 @@ msgstr "Nincs találat"
#. js-lingui-id: Ev2r9A
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCountrySelect.tsx
msgid "No results"
msgstr ""
@@ -3460,16 +3382,6 @@ msgstr "Nem üres"
msgid "Not Found"
msgstr "Nem található"
#. js-lingui-id: 51G4/+
#: src/modules/activities/calendar/components/CalendarEventNotSharedContent.tsx
msgid "Not shared"
msgstr ""
#. js-lingui-id: uzFo/5
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessageBodyNotShared.tsx
msgid "Not shared by {notSharedByFullName}"
msgstr ""
#. js-lingui-id: hZWthZ
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Not synced"
@@ -3844,8 +3756,6 @@ msgstr "Felvétel képe"
#. js-lingui-id: K6/7kH
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
msgid "Record label"
msgstr "Felvétel címkéje"
@@ -3940,11 +3850,6 @@ msgstr "Eltávolítás a kedvencek közül"
msgid "Remove option"
msgstr "Opció eltávolítása"
#. js-lingui-id: Ee8JBW
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
msgid "Reorder field"
msgstr ""
#. js-lingui-id: OfhWJH
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/modules/views/components/ViewBarDetails.tsx
@@ -4116,22 +4021,16 @@ msgstr "Index keresése..."
msgid "Search config variables"
msgstr ""
#. js-lingui-id: WLfEv1
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCountrySelect.tsx
msgid "Search country"
msgstr ""
#. js-lingui-id: sSARNY
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
msgid "Search currency"
msgstr ""
#. js-lingui-id: 7taA9j
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: 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/ObjectFilterDropdownFieldSelect.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterFieldSelectSearchInput.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterDropdownFieldSelectMenu.tsx
msgid "Search fields"
msgstr "Mezők keresése"
@@ -4281,8 +4180,8 @@ 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 ""
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
@@ -4555,11 +4454,6 @@ msgstr "Téma és metaadatok"
msgid "Subject and metadata will be shared with your team."
msgstr "A téma és metaadatok meg lesznek osztva a csapatával."
#. js-lingui-id: DvSvG9
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessageForbidden.tsx
msgid "Subject not shared"
msgstr ""
#. js-lingui-id: J9ylmk
#: src/modules/settings/accounts/components/SettingsAccountsMessageVisibilityCard.tsx
msgid "Subject, body and attachments will be shared with your team."
@@ -4570,11 +4464,6 @@ msgstr "A téma, a test és a mellékletek meg lesznek osztva a csapatával."
msgid "Submit"
msgstr ""
#. js-lingui-id: EDl9kS
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Subscribe"
msgstr ""
#. js-lingui-id: uvY7Wk
#: src/modules/billing/hooks/useEndSubscriptionTrialPeriod.ts
msgid "Subscription activated."
@@ -4905,7 +4794,6 @@ msgstr "Időbélyeg és résztvevők meg lesznek osztva a csapatával."
#. js-lingui-id: ecUA8p
#: src/modules/settings/admin-panel/health-status/constants/WorkerQueueMetricsSelectOptions.ts
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Today"
msgstr "Ma"
@@ -4914,11 +4802,6 @@ msgstr "Ma"
msgid "Toggle all object permissions"
msgstr ""
#. js-lingui-id: BRMXj0
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Tomorrow"
msgstr ""
#. js-lingui-id: vb0Q0/
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
#~ msgid "Total Users"
@@ -4929,16 +4812,6 @@ msgstr ""
msgid "Track your monthly workflow credit consumption."
msgstr ""
#. js-lingui-id: wN0jHF
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Trial expired. Please contact your admin"
msgstr ""
#. js-lingui-id: y985qL
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Trial expired. Please update your billing details."
msgstr ""
#. js-lingui-id: PiUt3N
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
@@ -5005,12 +4878,6 @@ msgstr "Ismeretlen hiba"
msgid "Unlimited contacts"
msgstr "Korlátlan névjegyek"
#. js-lingui-id: EkH9pt
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Update"
msgstr ""
#. js-lingui-id: +b7T3G
#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx
msgid "Updated"
@@ -5203,21 +5070,6 @@ msgstr "Látható csoportok"
msgid "Visualize"
msgstr "Vizualizál"
#. js-lingui-id: zFSQY3
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was created by"
msgstr ""
#. js-lingui-id: uHpu1c
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was deleted by"
msgstr ""
#. js-lingui-id: S0enzB
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was restored by"
msgstr ""
#. js-lingui-id: id6ein
#: src/modules/ui/input/components/ImageInput.tsx
msgid "We support your square PNGs, JPEGs and GIFs under 10MB"
@@ -5365,11 +5217,6 @@ msgstr "Írjon titkot"
msgid "yes"
msgstr "igen"
#. js-lingui-id: y/0uwd
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Yesterday"
msgstr ""
#. js-lingui-id: qsAug0
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
#~ msgid "You are already importing this column."
@@ -5430,16 +5277,6 @@ msgstr "Az Ön neve, ahogy az alkalmazáson megjelenik"
msgid "Your Workspace"
msgstr "Az Ön munkaterülete"
#. js-lingui-id: oC6WBs
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Your workspace doesn't have an active subscription."
msgstr ""
#. js-lingui-id: QBTEtW
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Your workspace doesn't have an active subscription. Please contact your admin."
msgstr ""
#. js-lingui-id: RhNbPE
#: src/pages/settings/SettingsBilling.tsx
msgid "Your workspace will be disabled"
+9 -172
View File
@@ -93,11 +93,6 @@ msgstr "Chiave API {apiKeyName}"
msgid "{contextStoreNumberOfSelectedRecords} selected"
msgstr "{contextStoreNumberOfSelectedRecords} selezionati"
#. js-lingui-id: wapGcj
#: src/modules/auth/components/VerifyEmailEffect.tsx
msgid "{message}"
msgstr ""
#. js-lingui-id: 6j5rE1
#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowRecordAgnosticActions.tsx
#: src/modules/action-menu/actions/record-actions/run-workflow-actions/hooks/useRunWorkflowRecordActions.tsx
@@ -109,11 +104,6 @@ msgstr "{name}"
msgid "{workspaceMemberName} will be unassigned from the following role:"
msgstr "{workspaceMemberName} verrà rimosso dal seguente ruolo:"
#. js-lingui-id: NNQszp
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "⚠️ Please verify the auto mapping of the columns. You can also ignore or change the mapping of the columns."
msgstr ""
#. js-lingui-id: YT0WJ4
#: src/pages/onboarding/ChooseYourPlan.tsx
#~ msgid "1 000 workflow node executions"
@@ -627,7 +617,7 @@ msgid "Are you sure you want to delete this record? It can be recovered from the
msgstr "Sei sicuro di voler eliminare questo record? Può essere recuperato dal menu Comando."
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Are you sure? Your current information will not be saved."
msgstr ""
@@ -808,7 +798,7 @@ msgstr "Impossibile modificare i nomi API per gli oggetti standard"
#: 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/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
msgid "Cancel"
msgstr "Annulla"
@@ -1257,11 +1247,6 @@ msgstr "Crea il tuo spazio di lavoro"
msgid "Created"
msgstr "Creato"
#. js-lingui-id: R3PLzn
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
msgid "currencies"
msgstr ""
#. js-lingui-id: 6YzXhC
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
msgid "Current value from server environment. Set a custom value to override."
@@ -1498,11 +1483,6 @@ msgstr "Elimina l'account e tutti i dati associati"
msgid "Delete API key"
msgstr "Elimina chiave API"
#. js-lingui-id: x2p4/4
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
msgid "Delete field"
msgstr ""
#. js-lingui-id: 4dpwsE
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
#~ msgid "Delete record"
@@ -1736,7 +1716,6 @@ msgstr "Data più antica"
#: src/modules/views/view-picker/components/ViewPickerOptionDropdown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Edit"
msgstr "Modifica"
@@ -1819,8 +1798,8 @@ msgstr "Verifica email"
#. js-lingui-id: TBv/iZ
#: src/modules/auth/components/VerifyEmailEffect.tsx
#~ msgid "Email verification failed."
#~ msgstr "Verifica dell'email fallita."
msgid "Email verification failed."
msgstr "Verifica dell'email fallita."
#. js-lingui-id: svTijF
#: src/modules/auth/sign-in-up/hooks/useHandleResendEmailVerificationToken.ts
@@ -1968,11 +1947,6 @@ msgstr "Errore nell'eliminazione del provider di identità SSO"
msgid "Error editing SSO Identity Provider"
msgstr "Errore nella modifica del provider di identità SSO"
#. js-lingui-id: 2GvilU
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Error loading message"
msgstr ""
#. js-lingui-id: bj7nh3
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error regenerating api key: {err}"
@@ -2046,7 +2020,7 @@ msgid "Existing objects"
msgstr "Oggetti esistenti"
#. js-lingui-id: ydzS9x
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit"
msgstr ""
@@ -2056,7 +2030,7 @@ msgstr ""
#~ msgstr "Esci dalla modalità a schermo intero"
#. js-lingui-id: XB4onr
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit import flow"
msgstr ""
@@ -2358,11 +2332,6 @@ msgstr "Globale"
msgid "Go to Companies"
msgstr ""
#. js-lingui-id: dHvI9O
#: src/modules/workflow/components/OverrideWorkflowDraftConfirmationModal.tsx
msgid "Go to Draft"
msgstr ""
#. js-lingui-id: BQE4ob
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Go to Notes"
@@ -2386,9 +2355,7 @@ msgid "Go to runs"
msgstr "Vai ai risultati"
#. js-lingui-id: mT57+Q
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Go to Settings"
msgstr "Vai su Impostazioni"
@@ -2471,7 +2438,6 @@ msgstr "Campi nascosti"
#. js-lingui-id: vLyv1R
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Hide"
msgstr "Nascondi"
@@ -2557,11 +2523,6 @@ msgstr "Provider di identità"
msgid "Identity Provider Metadata XML"
msgstr "Provider di identità Metadata XML"
#. js-lingui-id: ZfP/Ap
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
msgid "If this is unexpected, please verify your settings."
msgstr ""
#. js-lingui-id: j843N3
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "If youve lost this key, you can regenerate it, but be aware that any script using this key will need to be updated. Please type\"{confirmationValue}\" to confirm."
@@ -2788,11 +2749,6 @@ msgstr "Italiano"
msgid "Japanese"
msgstr "Giapponese"
#. js-lingui-id: VIK/N0
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
msgid "JSON keys cannot contain spaces"
msgstr ""
#. js-lingui-id: OGXtL8
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -2862,16 +2818,6 @@ msgstr "Ultimi 7 giorni (più vecchio → più nuovo)"
msgid "Last Name"
msgstr "Cognome"
#. js-lingui-id: s0kiVA
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
msgid "Last payment failed. Please contact your admin."
msgstr ""
#. js-lingui-id: 3u/3zO
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
msgid "Last payment failed. Please update your billing details."
msgstr ""
#. js-lingui-id: wL3cK8
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
msgid "Latest"
@@ -2924,11 +2870,6 @@ msgstr "Link copiato negli appunti"
msgid "Listings"
msgstr "Annunci"
#. js-lingui-id: Nx262D
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Loading csv ... "
msgstr ""
#. js-lingui-id: s1MstR
#: src/modules/settings/admin-panel/health-status/components/WorkerMetricsGraph.tsx
msgid "Loading metrics data..."
@@ -2936,7 +2877,6 @@ msgstr "Caricamento dei dati metrici..."
#. js-lingui-id: Z3FXyt
#: src/modules/settings/admin-panel/components/SettingsAdminVersionDisplay.tsx
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Loading..."
msgstr ""
@@ -3032,11 +2972,6 @@ msgstr "Massimo"
msgid "Members"
msgstr "Membri"
#. js-lingui-id: U15XwX
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Message not found"
msgstr ""
#. js-lingui-id: elpx6r
#: src/modules/settings/admin-panel/health-status/components/ConnectedAccountHealthStatus.tsx
msgid "Message Sync"
@@ -3090,13 +3025,11 @@ msgstr "Altre opzioni"
#. js-lingui-id: iSLA/r
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Move left"
msgstr "Sposta a sinistra"
#. js-lingui-id: Ubl2by
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Move right"
msgstr "Sposta a destra"
@@ -3284,11 +3217,6 @@ msgstr "Nessun account collegato"
msgid "No country"
msgstr "Nessun paese"
#. js-lingui-id: 7tCnBa
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
msgid "No Data Available for Remote Table"
msgstr ""
#. js-lingui-id: pxvJ9B
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data containing errors"
@@ -3304,11 +3232,6 @@ msgstr ""
msgid "No free workflow executions left. End trial period and activate your billing to continue."
msgstr ""
#. js-lingui-id: pxYUeX
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
msgid "No free workflow executions left. Please contact your admin."
msgstr ""
#. js-lingui-id: OcMef3
#: src/modules/settings/admin-panel/components/SettingsAdminVersionContainer.tsx
msgid "No latest version found"
@@ -3387,7 +3310,6 @@ msgstr "Nessun record trovato"
#. js-lingui-id: Ev2r9A
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCountrySelect.tsx
msgid "No results"
msgstr ""
@@ -3460,16 +3382,6 @@ msgstr "Non vuoto"
msgid "Not Found"
msgstr "Non trovato"
#. js-lingui-id: 51G4/+
#: src/modules/activities/calendar/components/CalendarEventNotSharedContent.tsx
msgid "Not shared"
msgstr ""
#. js-lingui-id: uzFo/5
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessageBodyNotShared.tsx
msgid "Not shared by {notSharedByFullName}"
msgstr ""
#. js-lingui-id: hZWthZ
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Not synced"
@@ -3844,8 +3756,6 @@ msgstr "Immagine del record"
#. js-lingui-id: K6/7kH
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
msgid "Record label"
msgstr "Etichetta del record"
@@ -3940,11 +3850,6 @@ msgstr "Rimuovi dai preferiti"
msgid "Remove option"
msgstr "Rimuovi opzione"
#. js-lingui-id: Ee8JBW
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
msgid "Reorder field"
msgstr ""
#. js-lingui-id: OfhWJH
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/modules/views/components/ViewBarDetails.tsx
@@ -4116,22 +4021,16 @@ msgstr "Cerca un indice..."
msgid "Search config variables"
msgstr ""
#. js-lingui-id: WLfEv1
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCountrySelect.tsx
msgid "Search country"
msgstr ""
#. js-lingui-id: sSARNY
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
msgid "Search currency"
msgstr ""
#. js-lingui-id: 7taA9j
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: 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/ObjectFilterDropdownFieldSelect.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterFieldSelectSearchInput.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterDropdownFieldSelectMenu.tsx
msgid "Search fields"
msgstr "Cerca campi"
@@ -4281,8 +4180,8 @@ 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 ""
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
@@ -4555,11 +4454,6 @@ msgstr "Oggetto e metadati"
msgid "Subject and metadata will be shared with your team."
msgstr "L'oggetto e i metadati verranno condivisi con il tuo team."
#. js-lingui-id: DvSvG9
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessageForbidden.tsx
msgid "Subject not shared"
msgstr ""
#. js-lingui-id: J9ylmk
#: src/modules/settings/accounts/components/SettingsAccountsMessageVisibilityCard.tsx
msgid "Subject, body and attachments will be shared with your team."
@@ -4570,11 +4464,6 @@ msgstr "L'oggetto, il corpo e gli allegati verranno condivisi con il tuo team."
msgid "Submit"
msgstr ""
#. js-lingui-id: EDl9kS
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Subscribe"
msgstr ""
#. js-lingui-id: uvY7Wk
#: src/modules/billing/hooks/useEndSubscriptionTrialPeriod.ts
msgid "Subscription activated."
@@ -4905,7 +4794,6 @@ msgstr "Il timestamp e i partecipanti verranno condivisi con il tuo team."
#. js-lingui-id: ecUA8p
#: src/modules/settings/admin-panel/health-status/constants/WorkerQueueMetricsSelectOptions.ts
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Today"
msgstr "Oggi"
@@ -4914,11 +4802,6 @@ msgstr "Oggi"
msgid "Toggle all object permissions"
msgstr ""
#. js-lingui-id: BRMXj0
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Tomorrow"
msgstr ""
#. js-lingui-id: vb0Q0/
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
#~ msgid "Total Users"
@@ -4929,16 +4812,6 @@ msgstr ""
msgid "Track your monthly workflow credit consumption."
msgstr ""
#. js-lingui-id: wN0jHF
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Trial expired. Please contact your admin"
msgstr ""
#. js-lingui-id: y985qL
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Trial expired. Please update your billing details."
msgstr ""
#. js-lingui-id: PiUt3N
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
@@ -5005,12 +4878,6 @@ msgstr "Errore sconosciuto"
msgid "Unlimited contacts"
msgstr "Contatti illimitati"
#. js-lingui-id: EkH9pt
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Update"
msgstr ""
#. js-lingui-id: +b7T3G
#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx
msgid "Updated"
@@ -5203,21 +5070,6 @@ msgstr "Gruppi visibili"
msgid "Visualize"
msgstr "Visualizza"
#. js-lingui-id: zFSQY3
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was created by"
msgstr ""
#. js-lingui-id: uHpu1c
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was deleted by"
msgstr ""
#. js-lingui-id: S0enzB
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was restored by"
msgstr ""
#. js-lingui-id: id6ein
#: src/modules/ui/input/components/ImageInput.tsx
msgid "We support your square PNGs, JPEGs and GIFs under 10MB"
@@ -5365,11 +5217,6 @@ msgstr "Scrivi un segreto"
msgid "yes"
msgstr "sì"
#. js-lingui-id: y/0uwd
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Yesterday"
msgstr ""
#. js-lingui-id: qsAug0
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
#~ msgid "You are already importing this column."
@@ -5430,16 +5277,6 @@ msgstr "Il tuo nome come sarà visualizzato sull'app"
msgid "Your Workspace"
msgstr "Il tuo spazio di lavoro"
#. js-lingui-id: oC6WBs
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Your workspace doesn't have an active subscription."
msgstr ""
#. js-lingui-id: QBTEtW
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Your workspace doesn't have an active subscription. Please contact your admin."
msgstr ""
#. js-lingui-id: RhNbPE
#: src/pages/settings/SettingsBilling.tsx
msgid "Your workspace will be disabled"
+9 -172
View File
@@ -93,11 +93,6 @@ msgstr "{apiKeyName} APIキー"
msgid "{contextStoreNumberOfSelectedRecords} selected"
msgstr "{contextStoreNumberOfSelectedRecords} が選択されました"
#. js-lingui-id: wapGcj
#: src/modules/auth/components/VerifyEmailEffect.tsx
msgid "{message}"
msgstr ""
#. js-lingui-id: 6j5rE1
#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowRecordAgnosticActions.tsx
#: src/modules/action-menu/actions/record-actions/run-workflow-actions/hooks/useRunWorkflowRecordActions.tsx
@@ -109,11 +104,6 @@ msgstr "{name}"
msgid "{workspaceMemberName} will be unassigned from the following role:"
msgstr "{workspaceMemberName}が次の役割から割り当て解除されます:"
#. js-lingui-id: NNQszp
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "⚠️ Please verify the auto mapping of the columns. You can also ignore or change the mapping of the columns."
msgstr ""
#. js-lingui-id: YT0WJ4
#: src/pages/onboarding/ChooseYourPlan.tsx
#~ msgid "1 000 workflow node executions"
@@ -627,7 +617,7 @@ msgid "Are you sure you want to delete this record? It can be recovered from the
msgstr "このレコードを本当に削除しますか? コマンドメニューから復元できます。"
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Are you sure? Your current information will not be saved."
msgstr ""
@@ -808,7 +798,7 @@ msgstr "標準オブジェクトのAPI名は変更できません"
#: 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/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
msgid "Cancel"
msgstr "キャンセル"
@@ -1257,11 +1247,6 @@ msgstr "ワークスペースの作成"
msgid "Created"
msgstr "作成済み"
#. js-lingui-id: R3PLzn
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
msgid "currencies"
msgstr ""
#. js-lingui-id: 6YzXhC
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
msgid "Current value from server environment. Set a custom value to override."
@@ -1498,11 +1483,6 @@ msgstr "アカウントと関連データをすべて削除"
msgid "Delete API key"
msgstr "APIキーを削除"
#. js-lingui-id: x2p4/4
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
msgid "Delete field"
msgstr ""
#. js-lingui-id: 4dpwsE
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
#~ msgid "Delete record"
@@ -1736,7 +1716,6 @@ msgstr "最も早い日付"
#: src/modules/views/view-picker/components/ViewPickerOptionDropdown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Edit"
msgstr "編集"
@@ -1819,8 +1798,8 @@ msgstr "メール認証"
#. js-lingui-id: TBv/iZ
#: src/modules/auth/components/VerifyEmailEffect.tsx
#~ msgid "Email verification failed."
#~ msgstr "メール認証に失敗しました。"
msgid "Email verification failed."
msgstr "メール認証に失敗しました。"
#. js-lingui-id: svTijF
#: src/modules/auth/sign-in-up/hooks/useHandleResendEmailVerificationToken.ts
@@ -1968,11 +1947,6 @@ msgstr "SSOアイデンティティプロバイダーの削除エラー"
msgid "Error editing SSO Identity Provider"
msgstr "SSOアイデンティティプロバイダーの編集エラー"
#. js-lingui-id: 2GvilU
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Error loading message"
msgstr ""
#. js-lingui-id: bj7nh3
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error regenerating api key: {err}"
@@ -2046,7 +2020,7 @@ msgid "Existing objects"
msgstr "既存のオブジェクト"
#. js-lingui-id: ydzS9x
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit"
msgstr ""
@@ -2056,7 +2030,7 @@ msgstr ""
#~ msgstr "フルスクリーンを終了"
#. js-lingui-id: XB4onr
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit import flow"
msgstr ""
@@ -2358,11 +2332,6 @@ msgstr "グローバル"
msgid "Go to Companies"
msgstr ""
#. js-lingui-id: dHvI9O
#: src/modules/workflow/components/OverrideWorkflowDraftConfirmationModal.tsx
msgid "Go to Draft"
msgstr ""
#. js-lingui-id: BQE4ob
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Go to Notes"
@@ -2386,9 +2355,7 @@ msgid "Go to runs"
msgstr "ランに移動"
#. js-lingui-id: mT57+Q
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Go to Settings"
msgstr "設定に移動"
@@ -2471,7 +2438,6 @@ msgstr "非表示フィールド"
#. js-lingui-id: vLyv1R
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Hide"
msgstr "非表示"
@@ -2557,11 +2523,6 @@ msgstr "アイデンティティプロバイダー"
msgid "Identity Provider Metadata XML"
msgstr "アイデンティティプロバイダーメタデータXML"
#. js-lingui-id: ZfP/Ap
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
msgid "If this is unexpected, please verify your settings."
msgstr ""
#. js-lingui-id: j843N3
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "If youve lost this key, you can regenerate it, but be aware that any script using this key will need to be updated. Please type\"{confirmationValue}\" to confirm."
@@ -2788,11 +2749,6 @@ msgstr "イタリア語"
msgid "Japanese"
msgstr "日本語"
#. js-lingui-id: VIK/N0
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
msgid "JSON keys cannot contain spaces"
msgstr ""
#. js-lingui-id: OGXtL8
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -2862,16 +2818,6 @@ msgstr "直近7日間(古い順 → 新しい順)"
msgid "Last Name"
msgstr "姓"
#. js-lingui-id: s0kiVA
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
msgid "Last payment failed. Please contact your admin."
msgstr ""
#. js-lingui-id: 3u/3zO
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
msgid "Last payment failed. Please update your billing details."
msgstr ""
#. js-lingui-id: wL3cK8
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
msgid "Latest"
@@ -2924,11 +2870,6 @@ msgstr "リンクがクリップボードにコピーされました"
msgid "Listings"
msgstr "\\\\u30ea\\\\u30b9\\\\u30c8"
#. js-lingui-id: Nx262D
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Loading csv ... "
msgstr ""
#. js-lingui-id: s1MstR
#: src/modules/settings/admin-panel/health-status/components/WorkerMetricsGraph.tsx
msgid "Loading metrics data..."
@@ -2936,7 +2877,6 @@ msgstr "メトリックスデータを読み込み中…"
#. js-lingui-id: Z3FXyt
#: src/modules/settings/admin-panel/components/SettingsAdminVersionDisplay.tsx
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Loading..."
msgstr ""
@@ -3032,11 +2972,6 @@ msgstr "最大"
msgid "Members"
msgstr "メンバー"
#. js-lingui-id: U15XwX
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Message not found"
msgstr ""
#. js-lingui-id: elpx6r
#: src/modules/settings/admin-panel/health-status/components/ConnectedAccountHealthStatus.tsx
msgid "Message Sync"
@@ -3090,13 +3025,11 @@ msgstr "その他のオプション"
#. js-lingui-id: iSLA/r
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Move left"
msgstr "左に移動"
#. js-lingui-id: Ubl2by
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Move right"
msgstr "右に移動"
@@ -3284,11 +3217,6 @@ msgstr "接続されたアカウントがありません"
msgid "No country"
msgstr "国なし"
#. js-lingui-id: 7tCnBa
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
msgid "No Data Available for Remote Table"
msgstr ""
#. js-lingui-id: pxvJ9B
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data containing errors"
@@ -3304,11 +3232,6 @@ msgstr ""
msgid "No free workflow executions left. End trial period and activate your billing to continue."
msgstr ""
#. js-lingui-id: pxYUeX
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
msgid "No free workflow executions left. Please contact your admin."
msgstr ""
#. js-lingui-id: OcMef3
#: src/modules/settings/admin-panel/components/SettingsAdminVersionContainer.tsx
msgid "No latest version found"
@@ -3387,7 +3310,6 @@ msgstr "レコードが見つかりません"
#. js-lingui-id: Ev2r9A
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCountrySelect.tsx
msgid "No results"
msgstr ""
@@ -3460,16 +3382,6 @@ msgstr "空ではない"
msgid "Not Found"
msgstr "見つかりません"
#. js-lingui-id: 51G4/+
#: src/modules/activities/calendar/components/CalendarEventNotSharedContent.tsx
msgid "Not shared"
msgstr ""
#. js-lingui-id: uzFo/5
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessageBodyNotShared.tsx
msgid "Not shared by {notSharedByFullName}"
msgstr ""
#. js-lingui-id: hZWthZ
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Not synced"
@@ -3844,8 +3756,6 @@ msgstr "レコード画像"
#. js-lingui-id: K6/7kH
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
msgid "Record label"
msgstr "レコードラベル"
@@ -3940,11 +3850,6 @@ msgstr "お気に入りから削除"
msgid "Remove option"
msgstr "オプションを削除"
#. js-lingui-id: Ee8JBW
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
msgid "Reorder field"
msgstr ""
#. js-lingui-id: OfhWJH
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/modules/views/components/ViewBarDetails.tsx
@@ -4116,22 +4021,16 @@ msgstr "インデックスを検索..."
msgid "Search config variables"
msgstr ""
#. js-lingui-id: WLfEv1
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCountrySelect.tsx
msgid "Search country"
msgstr ""
#. js-lingui-id: sSARNY
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
msgid "Search currency"
msgstr ""
#. js-lingui-id: 7taA9j
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: 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/ObjectFilterDropdownFieldSelect.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterFieldSelectSearchInput.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterDropdownFieldSelectMenu.tsx
msgid "Search fields"
msgstr "フィールドを検索"
@@ -4281,8 +4180,8 @@ 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 ""
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
@@ -4555,11 +4454,6 @@ msgstr "件名とメタデータ"
msgid "Subject and metadata will be shared with your team."
msgstr "件名とメタデータがチームと共有されます。"
#. js-lingui-id: DvSvG9
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessageForbidden.tsx
msgid "Subject not shared"
msgstr ""
#. js-lingui-id: J9ylmk
#: src/modules/settings/accounts/components/SettingsAccountsMessageVisibilityCard.tsx
msgid "Subject, body and attachments will be shared with your team."
@@ -4570,11 +4464,6 @@ msgstr "件名、本文、添付ファイルがチームと共有されます。
msgid "Submit"
msgstr ""
#. js-lingui-id: EDl9kS
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Subscribe"
msgstr ""
#. js-lingui-id: uvY7Wk
#: src/modules/billing/hooks/useEndSubscriptionTrialPeriod.ts
msgid "Subscription activated."
@@ -4905,7 +4794,6 @@ msgstr "タイムスタンプと参加者がチームと共有されます。"
#. js-lingui-id: ecUA8p
#: src/modules/settings/admin-panel/health-status/constants/WorkerQueueMetricsSelectOptions.ts
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Today"
msgstr "今日"
@@ -4914,11 +4802,6 @@ msgstr "今日"
msgid "Toggle all object permissions"
msgstr ""
#. js-lingui-id: BRMXj0
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Tomorrow"
msgstr ""
#. js-lingui-id: vb0Q0/
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
#~ msgid "Total Users"
@@ -4929,16 +4812,6 @@ msgstr ""
msgid "Track your monthly workflow credit consumption."
msgstr ""
#. js-lingui-id: wN0jHF
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Trial expired. Please contact your admin"
msgstr ""
#. js-lingui-id: y985qL
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Trial expired. Please update your billing details."
msgstr ""
#. js-lingui-id: PiUt3N
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
@@ -5005,12 +4878,6 @@ msgstr "不明なエラー"
msgid "Unlimited contacts"
msgstr "連絡先無制限"
#. js-lingui-id: EkH9pt
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Update"
msgstr ""
#. js-lingui-id: +b7T3G
#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx
msgid "Updated"
@@ -5203,21 +5070,6 @@ msgstr "表示グループ"
msgid "Visualize"
msgstr "可視化"
#. js-lingui-id: zFSQY3
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was created by"
msgstr ""
#. js-lingui-id: uHpu1c
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was deleted by"
msgstr ""
#. js-lingui-id: S0enzB
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was restored by"
msgstr ""
#. js-lingui-id: id6ein
#: src/modules/ui/input/components/ImageInput.tsx
msgid "We support your square PNGs, JPEGs and GIFs under 10MB"
@@ -5365,11 +5217,6 @@ msgstr "秘密を書きます"
msgid "yes"
msgstr "はい"
#. js-lingui-id: y/0uwd
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Yesterday"
msgstr ""
#. js-lingui-id: qsAug0
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
#~ msgid "You are already importing this column."
@@ -5430,16 +5277,6 @@ msgstr "アプリ上での表示名"
msgid "Your Workspace"
msgstr "あなたのワークスペース"
#. js-lingui-id: oC6WBs
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Your workspace doesn't have an active subscription."
msgstr ""
#. js-lingui-id: QBTEtW
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Your workspace doesn't have an active subscription. Please contact your admin."
msgstr ""
#. js-lingui-id: RhNbPE
#: src/pages/settings/SettingsBilling.tsx
msgid "Your workspace will be disabled"
+9 -172
View File
@@ -93,11 +93,6 @@ msgstr "{apiKeyName} API 키"
msgid "{contextStoreNumberOfSelectedRecords} selected"
msgstr "{contextStoreNumberOfSelectedRecords} 선택됨"
#. js-lingui-id: wapGcj
#: src/modules/auth/components/VerifyEmailEffect.tsx
msgid "{message}"
msgstr ""
#. js-lingui-id: 6j5rE1
#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowRecordAgnosticActions.tsx
#: src/modules/action-menu/actions/record-actions/run-workflow-actions/hooks/useRunWorkflowRecordActions.tsx
@@ -109,11 +104,6 @@ msgstr "{name}"
msgid "{workspaceMemberName} will be unassigned from the following role:"
msgstr "{workspaceMemberName}님이 다음 역할에서 재할당 해제됩니다:"
#. js-lingui-id: NNQszp
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "⚠️ Please verify the auto mapping of the columns. You can also ignore or change the mapping of the columns."
msgstr ""
#. js-lingui-id: YT0WJ4
#: src/pages/onboarding/ChooseYourPlan.tsx
#~ msgid "1 000 workflow node executions"
@@ -627,7 +617,7 @@ msgid "Are you sure you want to delete this record? It can be recovered from the
msgstr "이 기록을 삭제하시겠습니까? Command 메뉴에서 복구할 수 있습니다."
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Are you sure? Your current information will not be saved."
msgstr ""
@@ -808,7 +798,7 @@ msgstr "표준 객체에 대한 API 이름을 변경할 수 없습니다."
#: 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/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
msgid "Cancel"
msgstr "취소"
@@ -1257,11 +1247,6 @@ msgstr "워크스페이스 만들기"
msgid "Created"
msgstr "생성됨"
#. js-lingui-id: R3PLzn
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
msgid "currencies"
msgstr ""
#. js-lingui-id: 6YzXhC
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
msgid "Current value from server environment. Set a custom value to override."
@@ -1498,11 +1483,6 @@ msgstr "계정 및 모든 관련 데이터 삭제"
msgid "Delete API key"
msgstr "API 키 삭제"
#. js-lingui-id: x2p4/4
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
msgid "Delete field"
msgstr ""
#. js-lingui-id: 4dpwsE
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
#~ msgid "Delete record"
@@ -1736,7 +1716,6 @@ msgstr "가장 빠른 날짜"
#: src/modules/views/view-picker/components/ViewPickerOptionDropdown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Edit"
msgstr "편집"
@@ -1819,8 +1798,8 @@ msgstr "이메일 인증"
#. js-lingui-id: TBv/iZ
#: src/modules/auth/components/VerifyEmailEffect.tsx
#~ msgid "Email verification failed."
#~ msgstr "이메일 인증 실패."
msgid "Email verification failed."
msgstr "이메일 인증 실패."
#. js-lingui-id: svTijF
#: src/modules/auth/sign-in-up/hooks/useHandleResendEmailVerificationToken.ts
@@ -1968,11 +1947,6 @@ msgstr "SSO ID 공급자 삭제 오류"
msgid "Error editing SSO Identity Provider"
msgstr "SSO ID 공급자 편집 오류"
#. js-lingui-id: 2GvilU
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Error loading message"
msgstr ""
#. js-lingui-id: bj7nh3
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error regenerating api key: {err}"
@@ -2046,7 +2020,7 @@ msgid "Existing objects"
msgstr "기존 개체"
#. js-lingui-id: ydzS9x
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit"
msgstr ""
@@ -2056,7 +2030,7 @@ msgstr ""
#~ msgstr "전체 화면 종료"
#. js-lingui-id: XB4onr
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit import flow"
msgstr ""
@@ -2358,11 +2332,6 @@ msgstr "글로벌"
msgid "Go to Companies"
msgstr ""
#. js-lingui-id: dHvI9O
#: src/modules/workflow/components/OverrideWorkflowDraftConfirmationModal.tsx
msgid "Go to Draft"
msgstr ""
#. js-lingui-id: BQE4ob
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Go to Notes"
@@ -2386,9 +2355,7 @@ msgid "Go to runs"
msgstr "실행으로 이동"
#. js-lingui-id: mT57+Q
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Go to Settings"
msgstr "설정으로 이동"
@@ -2471,7 +2438,6 @@ msgstr "숨겨진 필드"
#. js-lingui-id: vLyv1R
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Hide"
msgstr "숨기기"
@@ -2557,11 +2523,6 @@ msgstr "ID 공급자"
msgid "Identity Provider Metadata XML"
msgstr "ID 공급자 메타데이터 XML"
#. js-lingui-id: ZfP/Ap
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
msgid "If this is unexpected, please verify your settings."
msgstr ""
#. js-lingui-id: j843N3
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "If youve lost this key, you can regenerate it, but be aware that any script using this key will need to be updated. Please type\"{confirmationValue}\" to confirm."
@@ -2788,11 +2749,6 @@ msgstr "이탈리아어"
msgid "Japanese"
msgstr "일본어"
#. js-lingui-id: VIK/N0
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
msgid "JSON keys cannot contain spaces"
msgstr ""
#. js-lingui-id: OGXtL8
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -2862,16 +2818,6 @@ msgstr "지난 7일 (오래된 순 → 최신 순)"
msgid "Last Name"
msgstr "성"
#. js-lingui-id: s0kiVA
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
msgid "Last payment failed. Please contact your admin."
msgstr ""
#. js-lingui-id: 3u/3zO
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
msgid "Last payment failed. Please update your billing details."
msgstr ""
#. js-lingui-id: wL3cK8
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
msgid "Latest"
@@ -2924,11 +2870,6 @@ msgstr "링크가 클립보드에 복사되었습니다"
msgid "Listings"
msgstr "목록"
#. js-lingui-id: Nx262D
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Loading csv ... "
msgstr ""
#. js-lingui-id: s1MstR
#: src/modules/settings/admin-panel/health-status/components/WorkerMetricsGraph.tsx
msgid "Loading metrics data..."
@@ -2936,7 +2877,6 @@ msgstr "메트릭스 데이터 로딩 중..."
#. js-lingui-id: Z3FXyt
#: src/modules/settings/admin-panel/components/SettingsAdminVersionDisplay.tsx
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Loading..."
msgstr ""
@@ -3032,11 +2972,6 @@ msgstr "최대"
msgid "Members"
msgstr "회원"
#. js-lingui-id: U15XwX
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Message not found"
msgstr ""
#. js-lingui-id: elpx6r
#: src/modules/settings/admin-panel/health-status/components/ConnectedAccountHealthStatus.tsx
msgid "Message Sync"
@@ -3090,13 +3025,11 @@ msgstr "추가 옵션"
#. js-lingui-id: iSLA/r
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Move left"
msgstr "왼쪽으로 이동"
#. js-lingui-id: Ubl2by
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Move right"
msgstr "오른쪽으로 이동"
@@ -3284,11 +3217,6 @@ msgstr "연결된 계정 없음"
msgid "No country"
msgstr "국가 없음"
#. js-lingui-id: 7tCnBa
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
msgid "No Data Available for Remote Table"
msgstr ""
#. js-lingui-id: pxvJ9B
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data containing errors"
@@ -3304,11 +3232,6 @@ msgstr ""
msgid "No free workflow executions left. End trial period and activate your billing to continue."
msgstr ""
#. js-lingui-id: pxYUeX
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
msgid "No free workflow executions left. Please contact your admin."
msgstr ""
#. js-lingui-id: OcMef3
#: src/modules/settings/admin-panel/components/SettingsAdminVersionContainer.tsx
msgid "No latest version found"
@@ -3387,7 +3310,6 @@ msgstr "기록을 찾을 수 없습니다"
#. js-lingui-id: Ev2r9A
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCountrySelect.tsx
msgid "No results"
msgstr ""
@@ -3460,16 +3382,6 @@ msgstr "비어 있지 않음"
msgid "Not Found"
msgstr "찾을 수 없음"
#. js-lingui-id: 51G4/+
#: src/modules/activities/calendar/components/CalendarEventNotSharedContent.tsx
msgid "Not shared"
msgstr ""
#. js-lingui-id: uzFo/5
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessageBodyNotShared.tsx
msgid "Not shared by {notSharedByFullName}"
msgstr ""
#. js-lingui-id: hZWthZ
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Not synced"
@@ -3844,8 +3756,6 @@ msgstr "레코드 이미지"
#. js-lingui-id: K6/7kH
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
msgid "Record label"
msgstr "레코드 레이블"
@@ -3940,11 +3850,6 @@ msgstr "즐겨찾기에서 제거"
msgid "Remove option"
msgstr "옵션 제거"
#. js-lingui-id: Ee8JBW
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
msgid "Reorder field"
msgstr ""
#. js-lingui-id: OfhWJH
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/modules/views/components/ViewBarDetails.tsx
@@ -4116,22 +4021,16 @@ msgstr "색인 검색..."
msgid "Search config variables"
msgstr ""
#. js-lingui-id: WLfEv1
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCountrySelect.tsx
msgid "Search country"
msgstr ""
#. js-lingui-id: sSARNY
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
msgid "Search currency"
msgstr ""
#. js-lingui-id: 7taA9j
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: 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/ObjectFilterDropdownFieldSelect.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterFieldSelectSearchInput.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterDropdownFieldSelectMenu.tsx
msgid "Search fields"
msgstr "필드 검색"
@@ -4281,8 +4180,8 @@ 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 ""
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
@@ -4555,11 +4454,6 @@ msgstr "주제와 메타데이터"
msgid "Subject and metadata will be shared with your team."
msgstr "주제와 메타데이터가 팀과 공유됩니다."
#. js-lingui-id: DvSvG9
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessageForbidden.tsx
msgid "Subject not shared"
msgstr ""
#. js-lingui-id: J9ylmk
#: src/modules/settings/accounts/components/SettingsAccountsMessageVisibilityCard.tsx
msgid "Subject, body and attachments will be shared with your team."
@@ -4570,11 +4464,6 @@ msgstr "주제, 본문, 첨부 파일이 팀과 공유됩니다."
msgid "Submit"
msgstr ""
#. js-lingui-id: EDl9kS
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Subscribe"
msgstr ""
#. js-lingui-id: uvY7Wk
#: src/modules/billing/hooks/useEndSubscriptionTrialPeriod.ts
msgid "Subscription activated."
@@ -4905,7 +4794,6 @@ msgstr "타임스탬프와 참가자가 팀과 공유됩니다."
#. js-lingui-id: ecUA8p
#: src/modules/settings/admin-panel/health-status/constants/WorkerQueueMetricsSelectOptions.ts
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Today"
msgstr "오늘"
@@ -4914,11 +4802,6 @@ msgstr "오늘"
msgid "Toggle all object permissions"
msgstr ""
#. js-lingui-id: BRMXj0
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Tomorrow"
msgstr ""
#. js-lingui-id: vb0Q0/
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
#~ msgid "Total Users"
@@ -4929,16 +4812,6 @@ msgstr ""
msgid "Track your monthly workflow credit consumption."
msgstr ""
#. js-lingui-id: wN0jHF
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Trial expired. Please contact your admin"
msgstr ""
#. js-lingui-id: y985qL
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Trial expired. Please update your billing details."
msgstr ""
#. js-lingui-id: PiUt3N
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
@@ -5005,12 +4878,6 @@ msgstr "알 수 없는 오류"
msgid "Unlimited contacts"
msgstr "무제한 연락처"
#. js-lingui-id: EkH9pt
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Update"
msgstr ""
#. js-lingui-id: +b7T3G
#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx
msgid "Updated"
@@ -5203,21 +5070,6 @@ msgstr "표시 그룹"
msgid "Visualize"
msgstr "시각화"
#. js-lingui-id: zFSQY3
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was created by"
msgstr ""
#. js-lingui-id: uHpu1c
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was deleted by"
msgstr ""
#. js-lingui-id: S0enzB
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was restored by"
msgstr ""
#. js-lingui-id: id6ein
#: src/modules/ui/input/components/ImageInput.tsx
msgid "We support your square PNGs, JPEGs and GIFs under 10MB"
@@ -5365,11 +5217,6 @@ msgstr "비밀 작성"
msgid "yes"
msgstr "예"
#. js-lingui-id: y/0uwd
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Yesterday"
msgstr ""
#. js-lingui-id: qsAug0
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
#~ msgid "You are already importing this column."
@@ -5430,16 +5277,6 @@ msgstr "앱에 디스플레이될 귀하의 이름"
msgid "Your Workspace"
msgstr "귀하의 워크스페이스"
#. js-lingui-id: oC6WBs
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Your workspace doesn't have an active subscription."
msgstr ""
#. js-lingui-id: QBTEtW
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Your workspace doesn't have an active subscription. Please contact your admin."
msgstr ""
#. js-lingui-id: RhNbPE
#: src/pages/settings/SettingsBilling.tsx
msgid "Your workspace will be disabled"
+9 -172
View File
@@ -93,11 +93,6 @@ msgstr "{apiKeyName} API-sleutel"
msgid "{contextStoreNumberOfSelectedRecords} selected"
msgstr "{contextStoreNumberOfSelectedRecords} geselecteerd"
#. js-lingui-id: wapGcj
#: src/modules/auth/components/VerifyEmailEffect.tsx
msgid "{message}"
msgstr ""
#. js-lingui-id: 6j5rE1
#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowRecordAgnosticActions.tsx
#: src/modules/action-menu/actions/record-actions/run-workflow-actions/hooks/useRunWorkflowRecordActions.tsx
@@ -109,11 +104,6 @@ msgstr "{name}"
msgid "{workspaceMemberName} will be unassigned from the following role:"
msgstr "{workspaceMemberName} zal ontheven worden van de volgende rol:"
#. js-lingui-id: NNQszp
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "⚠️ Please verify the auto mapping of the columns. You can also ignore or change the mapping of the columns."
msgstr ""
#. js-lingui-id: YT0WJ4
#: src/pages/onboarding/ChooseYourPlan.tsx
#~ msgid "1 000 workflow node executions"
@@ -627,7 +617,7 @@ msgid "Are you sure you want to delete this record? It can be recovered from the
msgstr "Weet je zeker dat je dit record wilt verwijderen? Het kan worden hersteld vanuit het Commandemenu."
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Are you sure? Your current information will not be saved."
msgstr ""
@@ -808,7 +798,7 @@ msgstr "Kan API-namen niet wijzigen voor standaardobjecten"
#: 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/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
msgid "Cancel"
msgstr "Annuleren"
@@ -1257,11 +1247,6 @@ msgstr "Maak je werkruimte"
msgid "Created"
msgstr "Gemaakt"
#. js-lingui-id: R3PLzn
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
msgid "currencies"
msgstr ""
#. js-lingui-id: 6YzXhC
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
msgid "Current value from server environment. Set a custom value to override."
@@ -1498,11 +1483,6 @@ msgstr "Account en alle bijbehorende gegevens verwijderen"
msgid "Delete API key"
msgstr "API-sleutel verwijderen"
#. js-lingui-id: x2p4/4
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
msgid "Delete field"
msgstr ""
#. js-lingui-id: 4dpwsE
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
#~ msgid "Delete record"
@@ -1736,7 +1716,6 @@ msgstr "Vroegste datum"
#: src/modules/views/view-picker/components/ViewPickerOptionDropdown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Edit"
msgstr "Bewerken"
@@ -1819,8 +1798,8 @@ msgstr "E-mailverificatie"
#. js-lingui-id: TBv/iZ
#: src/modules/auth/components/VerifyEmailEffect.tsx
#~ msgid "Email verification failed."
#~ msgstr "E-mailverificatie mislukt."
msgid "Email verification failed."
msgstr "E-mailverificatie mislukt."
#. js-lingui-id: svTijF
#: src/modules/auth/sign-in-up/hooks/useHandleResendEmailVerificationToken.ts
@@ -1968,11 +1947,6 @@ msgstr "Fout bij verwijderen van SSO-identiteitsprovider"
msgid "Error editing SSO Identity Provider"
msgstr "Fout bij bewerken van SSO-identiteitsprovider"
#. js-lingui-id: 2GvilU
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Error loading message"
msgstr ""
#. js-lingui-id: bj7nh3
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error regenerating api key: {err}"
@@ -2046,7 +2020,7 @@ msgid "Existing objects"
msgstr "Bestaande objecten"
#. js-lingui-id: ydzS9x
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit"
msgstr ""
@@ -2056,7 +2030,7 @@ msgstr ""
#~ msgstr "Volledig scherm afsluiten"
#. js-lingui-id: XB4onr
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit import flow"
msgstr ""
@@ -2358,11 +2332,6 @@ msgstr "Globaal"
msgid "Go to Companies"
msgstr ""
#. js-lingui-id: dHvI9O
#: src/modules/workflow/components/OverrideWorkflowDraftConfirmationModal.tsx
msgid "Go to Draft"
msgstr ""
#. js-lingui-id: BQE4ob
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Go to Notes"
@@ -2386,9 +2355,7 @@ msgid "Go to runs"
msgstr "Ga naar runs"
#. js-lingui-id: mT57+Q
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Go to Settings"
msgstr "Ga naar Instellingen"
@@ -2471,7 +2438,6 @@ msgstr "Verborgen velden"
#. js-lingui-id: vLyv1R
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Hide"
msgstr "Verbergen"
@@ -2557,11 +2523,6 @@ msgstr "Identiteitsprovider"
msgid "Identity Provider Metadata XML"
msgstr "Identiteitsprovider-metadata XML"
#. js-lingui-id: ZfP/Ap
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
msgid "If this is unexpected, please verify your settings."
msgstr ""
#. js-lingui-id: j843N3
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "If youve lost this key, you can regenerate it, but be aware that any script using this key will need to be updated. Please type\"{confirmationValue}\" to confirm."
@@ -2788,11 +2749,6 @@ msgstr "Italiaans"
msgid "Japanese"
msgstr "Japans"
#. js-lingui-id: VIK/N0
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
msgid "JSON keys cannot contain spaces"
msgstr ""
#. js-lingui-id: OGXtL8
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -2862,16 +2818,6 @@ msgstr "Laatste 7 dagen (oudste → nieuwste)"
msgid "Last Name"
msgstr "Achternaam"
#. js-lingui-id: s0kiVA
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
msgid "Last payment failed. Please contact your admin."
msgstr ""
#. js-lingui-id: 3u/3zO
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
msgid "Last payment failed. Please update your billing details."
msgstr ""
#. js-lingui-id: wL3cK8
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
msgid "Latest"
@@ -2924,11 +2870,6 @@ msgstr "Link gekopieerd naar klembord"
msgid "Listings"
msgstr "Lijsten"
#. js-lingui-id: Nx262D
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Loading csv ... "
msgstr ""
#. js-lingui-id: s1MstR
#: src/modules/settings/admin-panel/health-status/components/WorkerMetricsGraph.tsx
msgid "Loading metrics data..."
@@ -2936,7 +2877,6 @@ msgstr "Bezig met laden van metrische gegevens..."
#. js-lingui-id: Z3FXyt
#: src/modules/settings/admin-panel/components/SettingsAdminVersionDisplay.tsx
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Loading..."
msgstr ""
@@ -3032,11 +2972,6 @@ msgstr "Max"
msgid "Members"
msgstr "Leden"
#. js-lingui-id: U15XwX
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Message not found"
msgstr ""
#. js-lingui-id: elpx6r
#: src/modules/settings/admin-panel/health-status/components/ConnectedAccountHealthStatus.tsx
msgid "Message Sync"
@@ -3090,13 +3025,11 @@ msgstr "Meer opties"
#. js-lingui-id: iSLA/r
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Move left"
msgstr "Verplaats naar links"
#. js-lingui-id: Ubl2by
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Move right"
msgstr "Verplaats naar rechts"
@@ -3284,11 +3217,6 @@ msgstr "Geen verbonden account"
msgid "No country"
msgstr "Geen land"
#. js-lingui-id: 7tCnBa
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
msgid "No Data Available for Remote Table"
msgstr ""
#. js-lingui-id: pxvJ9B
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data containing errors"
@@ -3304,11 +3232,6 @@ msgstr ""
msgid "No free workflow executions left. End trial period and activate your billing to continue."
msgstr ""
#. js-lingui-id: pxYUeX
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
msgid "No free workflow executions left. Please contact your admin."
msgstr ""
#. js-lingui-id: OcMef3
#: src/modules/settings/admin-panel/components/SettingsAdminVersionContainer.tsx
msgid "No latest version found"
@@ -3387,7 +3310,6 @@ msgstr "Geen gegevens gevonden"
#. js-lingui-id: Ev2r9A
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCountrySelect.tsx
msgid "No results"
msgstr ""
@@ -3460,16 +3382,6 @@ msgstr "Niet leeg"
msgid "Not Found"
msgstr "Niet gevonden"
#. js-lingui-id: 51G4/+
#: src/modules/activities/calendar/components/CalendarEventNotSharedContent.tsx
msgid "Not shared"
msgstr ""
#. js-lingui-id: uzFo/5
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessageBodyNotShared.tsx
msgid "Not shared by {notSharedByFullName}"
msgstr ""
#. js-lingui-id: hZWthZ
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Not synced"
@@ -3844,8 +3756,6 @@ msgstr "Afbeelding vastleggen"
#. js-lingui-id: K6/7kH
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
msgid "Record label"
msgstr "Label vastleggen"
@@ -3940,11 +3850,6 @@ msgstr "Verwijderen uit favorieten"
msgid "Remove option"
msgstr "Optie verwijderen"
#. js-lingui-id: Ee8JBW
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
msgid "Reorder field"
msgstr ""
#. js-lingui-id: OfhWJH
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/modules/views/components/ViewBarDetails.tsx
@@ -4116,22 +4021,16 @@ msgstr "Zoek een index..."
msgid "Search config variables"
msgstr ""
#. js-lingui-id: WLfEv1
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCountrySelect.tsx
msgid "Search country"
msgstr ""
#. js-lingui-id: sSARNY
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
msgid "Search currency"
msgstr ""
#. js-lingui-id: 7taA9j
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: 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/ObjectFilterDropdownFieldSelect.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterFieldSelectSearchInput.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterDropdownFieldSelectMenu.tsx
msgid "Search fields"
msgstr "Velden zoeken"
@@ -4281,8 +4180,8 @@ 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 ""
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
@@ -4555,11 +4454,6 @@ msgstr "Onderwerp en metadata"
msgid "Subject and metadata will be shared with your team."
msgstr "Onderwerp en metadata worden gedeeld met uw team."
#. js-lingui-id: DvSvG9
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessageForbidden.tsx
msgid "Subject not shared"
msgstr ""
#. js-lingui-id: J9ylmk
#: src/modules/settings/accounts/components/SettingsAccountsMessageVisibilityCard.tsx
msgid "Subject, body and attachments will be shared with your team."
@@ -4570,11 +4464,6 @@ msgstr "Onderwerp, inhoud en bijlagen worden gedeeld met uw team."
msgid "Submit"
msgstr ""
#. js-lingui-id: EDl9kS
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Subscribe"
msgstr ""
#. js-lingui-id: uvY7Wk
#: src/modules/billing/hooks/useEndSubscriptionTrialPeriod.ts
msgid "Subscription activated."
@@ -4905,7 +4794,6 @@ msgstr "Tijdstempel en deelnemers worden gedeeld met uw team."
#. js-lingui-id: ecUA8p
#: src/modules/settings/admin-panel/health-status/constants/WorkerQueueMetricsSelectOptions.ts
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Today"
msgstr "Vandaag"
@@ -4914,11 +4802,6 @@ msgstr "Vandaag"
msgid "Toggle all object permissions"
msgstr ""
#. js-lingui-id: BRMXj0
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Tomorrow"
msgstr ""
#. js-lingui-id: vb0Q0/
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
#~ msgid "Total Users"
@@ -4929,16 +4812,6 @@ msgstr ""
msgid "Track your monthly workflow credit consumption."
msgstr ""
#. js-lingui-id: wN0jHF
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Trial expired. Please contact your admin"
msgstr ""
#. js-lingui-id: y985qL
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Trial expired. Please update your billing details."
msgstr ""
#. js-lingui-id: PiUt3N
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
@@ -5005,12 +4878,6 @@ msgstr "Onbekende fout"
msgid "Unlimited contacts"
msgstr "Onbeperkte contacten"
#. js-lingui-id: EkH9pt
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Update"
msgstr ""
#. js-lingui-id: +b7T3G
#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx
msgid "Updated"
@@ -5203,21 +5070,6 @@ msgstr "Zichtbare groepen"
msgid "Visualize"
msgstr "Visualiseren"
#. js-lingui-id: zFSQY3
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was created by"
msgstr ""
#. js-lingui-id: uHpu1c
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was deleted by"
msgstr ""
#. js-lingui-id: S0enzB
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was restored by"
msgstr ""
#. js-lingui-id: id6ein
#: src/modules/ui/input/components/ImageInput.tsx
msgid "We support your square PNGs, JPEGs and GIFs under 10MB"
@@ -5365,11 +5217,6 @@ msgstr "Schrijf een geheim"
msgid "yes"
msgstr "ja"
#. js-lingui-id: y/0uwd
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Yesterday"
msgstr ""
#. js-lingui-id: qsAug0
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
#~ msgid "You are already importing this column."
@@ -5430,16 +5277,6 @@ msgstr "Uw naam zoals deze in de app zal worden weergegeven"
msgid "Your Workspace"
msgstr "Uw werkruimte"
#. js-lingui-id: oC6WBs
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Your workspace doesn't have an active subscription."
msgstr ""
#. js-lingui-id: QBTEtW
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Your workspace doesn't have an active subscription. Please contact your admin."
msgstr ""
#. js-lingui-id: RhNbPE
#: src/pages/settings/SettingsBilling.tsx
msgid "Your workspace will be disabled"
+9 -172
View File
@@ -93,11 +93,6 @@ msgstr "{apiKeyName} API-nøkkel"
msgid "{contextStoreNumberOfSelectedRecords} selected"
msgstr "{contextStoreNumberOfSelectedRecords} valgt"
#. js-lingui-id: wapGcj
#: src/modules/auth/components/VerifyEmailEffect.tsx
msgid "{message}"
msgstr ""
#. js-lingui-id: 6j5rE1
#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowRecordAgnosticActions.tsx
#: src/modules/action-menu/actions/record-actions/run-workflow-actions/hooks/useRunWorkflowRecordActions.tsx
@@ -109,11 +104,6 @@ msgstr "{name}"
msgid "{workspaceMemberName} will be unassigned from the following role:"
msgstr "{workspaceMemberName} vil ikke lengre være tilordnet følgende rolle:"
#. js-lingui-id: NNQszp
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "⚠️ Please verify the auto mapping of the columns. You can also ignore or change the mapping of the columns."
msgstr ""
#. js-lingui-id: YT0WJ4
#: src/pages/onboarding/ChooseYourPlan.tsx
#~ msgid "1 000 workflow node executions"
@@ -627,7 +617,7 @@ msgid "Are you sure you want to delete this record? It can be recovered from the
msgstr "Er du sikker på at du vil slette denne posten? Den kan gjenopprettes fra Kommandomenyen."
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Are you sure? Your current information will not be saved."
msgstr ""
@@ -808,7 +798,7 @@ msgstr "Kan ikke endre API-navn for standardobjekter"
#: 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/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
msgid "Cancel"
msgstr "Avbryt"
@@ -1257,11 +1247,6 @@ msgstr "Opprett arbeidsomr\\fdet ditt"
msgid "Created"
msgstr "Opprettet"
#. js-lingui-id: R3PLzn
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
msgid "currencies"
msgstr ""
#. js-lingui-id: 6YzXhC
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
msgid "Current value from server environment. Set a custom value to override."
@@ -1498,11 +1483,6 @@ msgstr "Slett kontoen og all tilknyttet data"
msgid "Delete API key"
msgstr "Slett API-n\\fkkel"
#. js-lingui-id: x2p4/4
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
msgid "Delete field"
msgstr ""
#. js-lingui-id: 4dpwsE
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
#~ msgid "Delete record"
@@ -1736,7 +1716,6 @@ msgstr "Tidligste dato"
#: src/modules/views/view-picker/components/ViewPickerOptionDropdown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Edit"
msgstr "Rediger"
@@ -1819,8 +1798,8 @@ msgstr "E-postbekreftelse"
#. js-lingui-id: TBv/iZ
#: src/modules/auth/components/VerifyEmailEffect.tsx
#~ msgid "Email verification failed."
#~ msgstr "E-postbekreftelse mislyktes."
msgid "Email verification failed."
msgstr "E-postbekreftelse mislyktes."
#. js-lingui-id: svTijF
#: src/modules/auth/sign-in-up/hooks/useHandleResendEmailVerificationToken.ts
@@ -1968,11 +1947,6 @@ msgstr "Feil ved sletting av SSO-identitetsleverandør"
msgid "Error editing SSO Identity Provider"
msgstr "Feil ved redigering av SSO-identitetsleverandør"
#. js-lingui-id: 2GvilU
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Error loading message"
msgstr ""
#. js-lingui-id: bj7nh3
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error regenerating api key: {err}"
@@ -2046,7 +2020,7 @@ msgid "Existing objects"
msgstr "Eksisterende objekter"
#. js-lingui-id: ydzS9x
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit"
msgstr ""
@@ -2056,7 +2030,7 @@ msgstr ""
#~ msgstr "Avslutt fullskjerm"
#. js-lingui-id: XB4onr
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit import flow"
msgstr ""
@@ -2358,11 +2332,6 @@ msgstr "Global"
msgid "Go to Companies"
msgstr ""
#. js-lingui-id: dHvI9O
#: src/modules/workflow/components/OverrideWorkflowDraftConfirmationModal.tsx
msgid "Go to Draft"
msgstr ""
#. js-lingui-id: BQE4ob
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Go to Notes"
@@ -2386,9 +2355,7 @@ msgid "Go to runs"
msgstr "Gå til kjøringer"
#. js-lingui-id: mT57+Q
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Go to Settings"
msgstr "Gå til innstillinger"
@@ -2471,7 +2438,6 @@ msgstr "Skjulte felt"
#. js-lingui-id: vLyv1R
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Hide"
msgstr "Skjul"
@@ -2557,11 +2523,6 @@ msgstr "Identitetsleverandør"
msgid "Identity Provider Metadata XML"
msgstr "Identitetsleverandør Metadata XML"
#. js-lingui-id: ZfP/Ap
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
msgid "If this is unexpected, please verify your settings."
msgstr ""
#. js-lingui-id: j843N3
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "If youve lost this key, you can regenerate it, but be aware that any script using this key will need to be updated. Please type\"{confirmationValue}\" to confirm."
@@ -2788,11 +2749,6 @@ msgstr "Italiensk"
msgid "Japanese"
msgstr "Japansk"
#. js-lingui-id: VIK/N0
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
msgid "JSON keys cannot contain spaces"
msgstr ""
#. js-lingui-id: OGXtL8
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -2862,16 +2818,6 @@ msgstr "Siste 7 dager (eldst → nyest)"
msgid "Last Name"
msgstr "Etternavn"
#. js-lingui-id: s0kiVA
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
msgid "Last payment failed. Please contact your admin."
msgstr ""
#. js-lingui-id: 3u/3zO
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
msgid "Last payment failed. Please update your billing details."
msgstr ""
#. js-lingui-id: wL3cK8
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
msgid "Latest"
@@ -2924,11 +2870,6 @@ msgstr "Lenke kopiert til utklippstavlen"
msgid "Listings"
msgstr "Oppføringer"
#. js-lingui-id: Nx262D
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Loading csv ... "
msgstr ""
#. js-lingui-id: s1MstR
#: src/modules/settings/admin-panel/health-status/components/WorkerMetricsGraph.tsx
msgid "Loading metrics data..."
@@ -2936,7 +2877,6 @@ msgstr "Laster inn metrikkdata..."
#. js-lingui-id: Z3FXyt
#: src/modules/settings/admin-panel/components/SettingsAdminVersionDisplay.tsx
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Loading..."
msgstr ""
@@ -3032,11 +2972,6 @@ msgstr "Maks"
msgid "Members"
msgstr "Medlemmer"
#. js-lingui-id: U15XwX
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Message not found"
msgstr ""
#. js-lingui-id: elpx6r
#: src/modules/settings/admin-panel/health-status/components/ConnectedAccountHealthStatus.tsx
msgid "Message Sync"
@@ -3090,13 +3025,11 @@ msgstr "Flere alternativer"
#. js-lingui-id: iSLA/r
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Move left"
msgstr "Flytt til venstre"
#. js-lingui-id: Ubl2by
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Move right"
msgstr "Flytt til h\\u00f8yre"
@@ -3284,11 +3217,6 @@ msgstr "Ingen tilknyttet konto"
msgid "No country"
msgstr "Intet land"
#. js-lingui-id: 7tCnBa
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
msgid "No Data Available for Remote Table"
msgstr ""
#. js-lingui-id: pxvJ9B
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data containing errors"
@@ -3304,11 +3232,6 @@ msgstr ""
msgid "No free workflow executions left. End trial period and activate your billing to continue."
msgstr ""
#. js-lingui-id: pxYUeX
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
msgid "No free workflow executions left. Please contact your admin."
msgstr ""
#. js-lingui-id: OcMef3
#: src/modules/settings/admin-panel/components/SettingsAdminVersionContainer.tsx
msgid "No latest version found"
@@ -3387,7 +3310,6 @@ msgstr "Ingen poster funnet"
#. js-lingui-id: Ev2r9A
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCountrySelect.tsx
msgid "No results"
msgstr ""
@@ -3460,16 +3382,6 @@ msgstr "Ikke tom"
msgid "Not Found"
msgstr "Ikke funnet"
#. js-lingui-id: 51G4/+
#: src/modules/activities/calendar/components/CalendarEventNotSharedContent.tsx
msgid "Not shared"
msgstr ""
#. js-lingui-id: uzFo/5
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessageBodyNotShared.tsx
msgid "Not shared by {notSharedByFullName}"
msgstr ""
#. js-lingui-id: hZWthZ
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Not synced"
@@ -3844,8 +3756,6 @@ msgstr "Opptak bilde"
#. js-lingui-id: K6/7kH
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
msgid "Record label"
msgstr "Opptak etikett"
@@ -3940,11 +3850,6 @@ msgstr "Fjern fra favoritter"
msgid "Remove option"
msgstr "Fjern alternativ"
#. js-lingui-id: Ee8JBW
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
msgid "Reorder field"
msgstr ""
#. js-lingui-id: OfhWJH
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/modules/views/components/ViewBarDetails.tsx
@@ -4116,22 +4021,16 @@ msgstr "Søk i et indeks..."
msgid "Search config variables"
msgstr ""
#. js-lingui-id: WLfEv1
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCountrySelect.tsx
msgid "Search country"
msgstr ""
#. js-lingui-id: sSARNY
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
msgid "Search currency"
msgstr ""
#. js-lingui-id: 7taA9j
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: 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/ObjectFilterDropdownFieldSelect.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterFieldSelectSearchInput.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterDropdownFieldSelectMenu.tsx
msgid "Search fields"
msgstr "Søk etter felter"
@@ -4281,8 +4180,8 @@ 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 ""
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
@@ -4555,11 +4454,6 @@ msgstr "Emne og metadata"
msgid "Subject and metadata will be shared with your team."
msgstr "Emne og metadata vil bli delt med teamet ditt."
#. js-lingui-id: DvSvG9
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessageForbidden.tsx
msgid "Subject not shared"
msgstr ""
#. js-lingui-id: J9ylmk
#: src/modules/settings/accounts/components/SettingsAccountsMessageVisibilityCard.tsx
msgid "Subject, body and attachments will be shared with your team."
@@ -4570,11 +4464,6 @@ msgstr "Emne, kropp og vedlegg vil bli delt med teamet ditt."
msgid "Submit"
msgstr ""
#. js-lingui-id: EDl9kS
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Subscribe"
msgstr ""
#. js-lingui-id: uvY7Wk
#: src/modules/billing/hooks/useEndSubscriptionTrialPeriod.ts
msgid "Subscription activated."
@@ -4905,7 +4794,6 @@ msgstr "Tidsstempel og deltakere vil bli delt med teamet ditt."
#. js-lingui-id: ecUA8p
#: src/modules/settings/admin-panel/health-status/constants/WorkerQueueMetricsSelectOptions.ts
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Today"
msgstr "I dag"
@@ -4914,11 +4802,6 @@ msgstr "I dag"
msgid "Toggle all object permissions"
msgstr ""
#. js-lingui-id: BRMXj0
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Tomorrow"
msgstr ""
#. js-lingui-id: vb0Q0/
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
#~ msgid "Total Users"
@@ -4929,16 +4812,6 @@ msgstr ""
msgid "Track your monthly workflow credit consumption."
msgstr ""
#. js-lingui-id: wN0jHF
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Trial expired. Please contact your admin"
msgstr ""
#. js-lingui-id: y985qL
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Trial expired. Please update your billing details."
msgstr ""
#. js-lingui-id: PiUt3N
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
@@ -5005,12 +4878,6 @@ msgstr "Ukjent feil"
msgid "Unlimited contacts"
msgstr "Ubegrenset kontakter"
#. js-lingui-id: EkH9pt
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Update"
msgstr ""
#. js-lingui-id: +b7T3G
#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx
msgid "Updated"
@@ -5203,21 +5070,6 @@ msgstr "Synlige grupper"
msgid "Visualize"
msgstr "Visualiser"
#. js-lingui-id: zFSQY3
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was created by"
msgstr ""
#. js-lingui-id: uHpu1c
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was deleted by"
msgstr ""
#. js-lingui-id: S0enzB
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was restored by"
msgstr ""
#. js-lingui-id: id6ein
#: src/modules/ui/input/components/ImageInput.tsx
msgid "We support your square PNGs, JPEGs and GIFs under 10MB"
@@ -5365,11 +5217,6 @@ msgstr "Skriv en hemmelighet"
msgid "yes"
msgstr "ja"
#. js-lingui-id: y/0uwd
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Yesterday"
msgstr ""
#. js-lingui-id: qsAug0
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
#~ msgid "You are already importing this column."
@@ -5430,16 +5277,6 @@ msgstr "Ditt navn slik det vil bli vist i appen"
msgid "Your Workspace"
msgstr "Ditt Arbeidsområde"
#. js-lingui-id: oC6WBs
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Your workspace doesn't have an active subscription."
msgstr ""
#. js-lingui-id: QBTEtW
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Your workspace doesn't have an active subscription. Please contact your admin."
msgstr ""
#. js-lingui-id: RhNbPE
#: src/pages/settings/SettingsBilling.tsx
msgid "Your workspace will be disabled"
+9 -172
View File
@@ -93,11 +93,6 @@ msgstr "Klucz API {apiKeyName}"
msgid "{contextStoreNumberOfSelectedRecords} selected"
msgstr "{contextStoreNumberOfSelectedRecords} wybrano"
#. js-lingui-id: wapGcj
#: src/modules/auth/components/VerifyEmailEffect.tsx
msgid "{message}"
msgstr ""
#. js-lingui-id: 6j5rE1
#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowRecordAgnosticActions.tsx
#: src/modules/action-menu/actions/record-actions/run-workflow-actions/hooks/useRunWorkflowRecordActions.tsx
@@ -109,11 +104,6 @@ msgstr "{name}"
msgid "{workspaceMemberName} will be unassigned from the following role:"
msgstr "{workspaceMemberName} zostanie odłączony od następującej roli:"
#. js-lingui-id: NNQszp
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "⚠️ Please verify the auto mapping of the columns. You can also ignore or change the mapping of the columns."
msgstr ""
#. js-lingui-id: YT0WJ4
#: src/pages/onboarding/ChooseYourPlan.tsx
#~ msgid "1 000 workflow node executions"
@@ -627,7 +617,7 @@ msgid "Are you sure you want to delete this record? It can be recovered from the
msgstr "Czy jesteś pewien, że chcesz usunąć ten rekord? Można go odzyskać z menu Command."
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Are you sure? Your current information will not be saved."
msgstr ""
@@ -808,7 +798,7 @@ msgstr "Nie można zmienić nazw API dla standardowych obiektów"
#: 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/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
msgid "Cancel"
msgstr "Anuluj"
@@ -1257,11 +1247,6 @@ msgstr "Stwórz swoją przestrzeń pracy"
msgid "Created"
msgstr "Utworzono"
#. js-lingui-id: R3PLzn
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
msgid "currencies"
msgstr ""
#. js-lingui-id: 6YzXhC
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
msgid "Current value from server environment. Set a custom value to override."
@@ -1498,11 +1483,6 @@ msgstr "Usuń konto i wszystkie powiązane dane"
msgid "Delete API key"
msgstr "Usuń klucz API"
#. js-lingui-id: x2p4/4
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
msgid "Delete field"
msgstr ""
#. js-lingui-id: 4dpwsE
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
#~ msgid "Delete record"
@@ -1736,7 +1716,6 @@ msgstr "Najwcześniejsza data"
#: src/modules/views/view-picker/components/ViewPickerOptionDropdown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Edit"
msgstr "Edytuj"
@@ -1819,8 +1798,8 @@ msgstr "Weryfikacja e-maila"
#. js-lingui-id: TBv/iZ
#: src/modules/auth/components/VerifyEmailEffect.tsx
#~ msgid "Email verification failed."
#~ msgstr "Weryfikacja e-maila nie powiodła się."
msgid "Email verification failed."
msgstr "Weryfikacja e-maila nie powiodła się."
#. js-lingui-id: svTijF
#: src/modules/auth/sign-in-up/hooks/useHandleResendEmailVerificationToken.ts
@@ -1968,11 +1947,6 @@ msgstr "Błąd podczas usuwania dostawcy tożsamości SSO"
msgid "Error editing SSO Identity Provider"
msgstr "Błąd podczas edytowania dostawcy tożsamości SSO"
#. js-lingui-id: 2GvilU
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Error loading message"
msgstr ""
#. js-lingui-id: bj7nh3
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error regenerating api key: {err}"
@@ -2046,7 +2020,7 @@ msgid "Existing objects"
msgstr "Istniejące obiekty"
#. js-lingui-id: ydzS9x
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit"
msgstr ""
@@ -2056,7 +2030,7 @@ msgstr ""
#~ msgstr "Zakończ tryb pełnoekranowy"
#. js-lingui-id: XB4onr
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit import flow"
msgstr ""
@@ -2358,11 +2332,6 @@ msgstr "Globalne"
msgid "Go to Companies"
msgstr ""
#. js-lingui-id: dHvI9O
#: src/modules/workflow/components/OverrideWorkflowDraftConfirmationModal.tsx
msgid "Go to Draft"
msgstr ""
#. js-lingui-id: BQE4ob
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Go to Notes"
@@ -2386,9 +2355,7 @@ msgid "Go to runs"
msgstr "Idź do uruchomień"
#. js-lingui-id: mT57+Q
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Go to Settings"
msgstr "Przejdź do ustawień"
@@ -2471,7 +2438,6 @@ msgstr "Ukryte pola"
#. js-lingui-id: vLyv1R
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Hide"
msgstr "Ukryj"
@@ -2557,11 +2523,6 @@ msgstr "Dostawca tożsamości"
msgid "Identity Provider Metadata XML"
msgstr "Metadane XML dostawcy tożsamości"
#. js-lingui-id: ZfP/Ap
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
msgid "If this is unexpected, please verify your settings."
msgstr ""
#. js-lingui-id: j843N3
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "If youve lost this key, you can regenerate it, but be aware that any script using this key will need to be updated. Please type\"{confirmationValue}\" to confirm."
@@ -2788,11 +2749,6 @@ msgstr "Włoski"
msgid "Japanese"
msgstr "Japoński"
#. js-lingui-id: VIK/N0
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
msgid "JSON keys cannot contain spaces"
msgstr ""
#. js-lingui-id: OGXtL8
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -2862,16 +2818,6 @@ msgstr "Ostatnie 7 dni (od najstarszego → do najnowszego)"
msgid "Last Name"
msgstr "Nazwisko"
#. js-lingui-id: s0kiVA
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
msgid "Last payment failed. Please contact your admin."
msgstr ""
#. js-lingui-id: 3u/3zO
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
msgid "Last payment failed. Please update your billing details."
msgstr ""
#. js-lingui-id: wL3cK8
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
msgid "Latest"
@@ -2924,11 +2870,6 @@ msgstr "Link został skopiowany do schowka"
msgid "Listings"
msgstr "Wpisy"
#. js-lingui-id: Nx262D
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Loading csv ... "
msgstr ""
#. js-lingui-id: s1MstR
#: src/modules/settings/admin-panel/health-status/components/WorkerMetricsGraph.tsx
msgid "Loading metrics data..."
@@ -2936,7 +2877,6 @@ msgstr "Ładowanie danych o metrykach..."
#. js-lingui-id: Z3FXyt
#: src/modules/settings/admin-panel/components/SettingsAdminVersionDisplay.tsx
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Loading..."
msgstr ""
@@ -3032,11 +2972,6 @@ msgstr "Maks"
msgid "Members"
msgstr "Członkowie"
#. js-lingui-id: U15XwX
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Message not found"
msgstr ""
#. js-lingui-id: elpx6r
#: src/modules/settings/admin-panel/health-status/components/ConnectedAccountHealthStatus.tsx
msgid "Message Sync"
@@ -3090,13 +3025,11 @@ msgstr "Więcej opcji"
#. js-lingui-id: iSLA/r
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Move left"
msgstr "Przenieś w lewo"
#. js-lingui-id: Ubl2by
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Move right"
msgstr "Przenieś w prawo"
@@ -3284,11 +3217,6 @@ msgstr "Brak połączonego konta"
msgid "No country"
msgstr "Brak kraju"
#. js-lingui-id: 7tCnBa
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
msgid "No Data Available for Remote Table"
msgstr ""
#. js-lingui-id: pxvJ9B
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data containing errors"
@@ -3304,11 +3232,6 @@ msgstr ""
msgid "No free workflow executions left. End trial period and activate your billing to continue."
msgstr ""
#. js-lingui-id: pxYUeX
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
msgid "No free workflow executions left. Please contact your admin."
msgstr ""
#. js-lingui-id: OcMef3
#: src/modules/settings/admin-panel/components/SettingsAdminVersionContainer.tsx
msgid "No latest version found"
@@ -3387,7 +3310,6 @@ msgstr "Nie znaleziono rekordów"
#. js-lingui-id: Ev2r9A
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCountrySelect.tsx
msgid "No results"
msgstr ""
@@ -3460,16 +3382,6 @@ msgstr "Niepusty"
msgid "Not Found"
msgstr "Nie znaleziono"
#. js-lingui-id: 51G4/+
#: src/modules/activities/calendar/components/CalendarEventNotSharedContent.tsx
msgid "Not shared"
msgstr ""
#. js-lingui-id: uzFo/5
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessageBodyNotShared.tsx
msgid "Not shared by {notSharedByFullName}"
msgstr ""
#. js-lingui-id: hZWthZ
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Not synced"
@@ -3844,8 +3756,6 @@ msgstr "Obraz rekordu"
#. js-lingui-id: K6/7kH
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
msgid "Record label"
msgstr "Etykieta rekordu"
@@ -3940,11 +3850,6 @@ msgstr "Usuń z ulubionych"
msgid "Remove option"
msgstr "Usuń opcję"
#. js-lingui-id: Ee8JBW
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
msgid "Reorder field"
msgstr ""
#. js-lingui-id: OfhWJH
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/modules/views/components/ViewBarDetails.tsx
@@ -4116,22 +4021,16 @@ msgstr "Wyszukaj indeks..."
msgid "Search config variables"
msgstr ""
#. js-lingui-id: WLfEv1
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCountrySelect.tsx
msgid "Search country"
msgstr ""
#. js-lingui-id: sSARNY
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
msgid "Search currency"
msgstr ""
#. js-lingui-id: 7taA9j
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: 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/ObjectFilterDropdownFieldSelect.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterFieldSelectSearchInput.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterDropdownFieldSelectMenu.tsx
msgid "Search fields"
msgstr "Szukaj w polach"
@@ -4281,8 +4180,8 @@ 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 ""
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
@@ -4555,11 +4454,6 @@ msgstr "Temat i metadane"
msgid "Subject and metadata will be shared with your team."
msgstr "Temat i metadane będą udostępniane twojemu zespołowi."
#. js-lingui-id: DvSvG9
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessageForbidden.tsx
msgid "Subject not shared"
msgstr ""
#. js-lingui-id: J9ylmk
#: src/modules/settings/accounts/components/SettingsAccountsMessageVisibilityCard.tsx
msgid "Subject, body and attachments will be shared with your team."
@@ -4570,11 +4464,6 @@ msgstr "Temat, treść i załączniki będą udostępniane twojemu zespołowi."
msgid "Submit"
msgstr ""
#. js-lingui-id: EDl9kS
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Subscribe"
msgstr ""
#. js-lingui-id: uvY7Wk
#: src/modules/billing/hooks/useEndSubscriptionTrialPeriod.ts
msgid "Subscription activated."
@@ -4905,7 +4794,6 @@ msgstr "Znacznik czasu i uczestnicy zostaną udostępnieni twojemu zespołowi."
#. js-lingui-id: ecUA8p
#: src/modules/settings/admin-panel/health-status/constants/WorkerQueueMetricsSelectOptions.ts
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Today"
msgstr "Dziś"
@@ -4914,11 +4802,6 @@ msgstr "Dziś"
msgid "Toggle all object permissions"
msgstr ""
#. js-lingui-id: BRMXj0
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Tomorrow"
msgstr ""
#. js-lingui-id: vb0Q0/
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
#~ msgid "Total Users"
@@ -4929,16 +4812,6 @@ msgstr ""
msgid "Track your monthly workflow credit consumption."
msgstr ""
#. js-lingui-id: wN0jHF
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Trial expired. Please contact your admin"
msgstr ""
#. js-lingui-id: y985qL
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Trial expired. Please update your billing details."
msgstr ""
#. js-lingui-id: PiUt3N
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
@@ -5005,12 +4878,6 @@ msgstr "Nieznany błąd"
msgid "Unlimited contacts"
msgstr "Nieograniczona liczba kontaktów"
#. js-lingui-id: EkH9pt
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Update"
msgstr ""
#. js-lingui-id: +b7T3G
#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx
msgid "Updated"
@@ -5203,21 +5070,6 @@ msgstr "Widoczne grupy"
msgid "Visualize"
msgstr "Wizualizuj"
#. js-lingui-id: zFSQY3
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was created by"
msgstr ""
#. js-lingui-id: uHpu1c
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was deleted by"
msgstr ""
#. js-lingui-id: S0enzB
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was restored by"
msgstr ""
#. js-lingui-id: id6ein
#: src/modules/ui/input/components/ImageInput.tsx
msgid "We support your square PNGs, JPEGs and GIFs under 10MB"
@@ -5365,11 +5217,6 @@ msgstr "Napisz sekret"
msgid "yes"
msgstr "tak"
#. js-lingui-id: y/0uwd
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Yesterday"
msgstr ""
#. js-lingui-id: qsAug0
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
#~ msgid "You are already importing this column."
@@ -5430,16 +5277,6 @@ msgstr "Twoje imię, które będzie wyświetlane w aplikacji"
msgid "Your Workspace"
msgstr "Twoje miejsce pracy"
#. js-lingui-id: oC6WBs
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Your workspace doesn't have an active subscription."
msgstr ""
#. js-lingui-id: QBTEtW
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Your workspace doesn't have an active subscription. Please contact your admin."
msgstr ""
#. js-lingui-id: RhNbPE
#: src/pages/settings/SettingsBilling.tsx
msgid "Your workspace will be disabled"
+9 -172
View File
@@ -85,11 +85,6 @@ msgstr ""
msgid "{contextStoreNumberOfSelectedRecords} selected"
msgstr ""
#. js-lingui-id: wapGcj
#: src/modules/auth/components/VerifyEmailEffect.tsx
msgid "{message}"
msgstr ""
#. js-lingui-id: 6j5rE1
#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowRecordAgnosticActions.tsx
#: src/modules/action-menu/actions/record-actions/run-workflow-actions/hooks/useRunWorkflowRecordActions.tsx
@@ -101,11 +96,6 @@ msgstr ""
msgid "{workspaceMemberName} will be unassigned from the following role:"
msgstr ""
#. js-lingui-id: NNQszp
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "⚠️ Please verify the auto mapping of the columns. You can also ignore or change the mapping of the columns."
msgstr ""
#. js-lingui-id: YT0WJ4
#: src/pages/onboarding/ChooseYourPlan.tsx
#~ msgid "1 000 workflow node executions"
@@ -619,7 +609,7 @@ msgid "Are you sure you want to delete this record? It can be recovered from the
msgstr ""
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Are you sure? Your current information will not be saved."
msgstr ""
@@ -800,7 +790,7 @@ msgstr ""
#: 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/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
msgid "Cancel"
msgstr ""
@@ -1249,11 +1239,6 @@ msgstr ""
msgid "Created"
msgstr ""
#. js-lingui-id: R3PLzn
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
msgid "currencies"
msgstr ""
#. js-lingui-id: 6YzXhC
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
msgid "Current value from server environment. Set a custom value to override."
@@ -1490,11 +1475,6 @@ msgstr ""
msgid "Delete API key"
msgstr ""
#. js-lingui-id: x2p4/4
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
msgid "Delete field"
msgstr ""
#. js-lingui-id: 4dpwsE
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
#~ msgid "Delete record"
@@ -1728,7 +1708,6 @@ msgstr ""
#: src/modules/views/view-picker/components/ViewPickerOptionDropdown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Edit"
msgstr ""
@@ -1811,8 +1790,8 @@ msgstr ""
#. js-lingui-id: TBv/iZ
#: src/modules/auth/components/VerifyEmailEffect.tsx
#~ msgid "Email verification failed."
#~ msgstr ""
msgid "Email verification failed."
msgstr ""
#. js-lingui-id: svTijF
#: src/modules/auth/sign-in-up/hooks/useHandleResendEmailVerificationToken.ts
@@ -1960,11 +1939,6 @@ msgstr ""
msgid "Error editing SSO Identity Provider"
msgstr ""
#. js-lingui-id: 2GvilU
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Error loading message"
msgstr ""
#. js-lingui-id: bj7nh3
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error regenerating api key: {err}"
@@ -2038,7 +2012,7 @@ msgid "Existing objects"
msgstr ""
#. js-lingui-id: ydzS9x
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit"
msgstr ""
@@ -2048,7 +2022,7 @@ msgstr ""
#~ msgstr ""
#. js-lingui-id: XB4onr
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit import flow"
msgstr ""
@@ -2350,11 +2324,6 @@ msgstr ""
msgid "Go to Companies"
msgstr ""
#. js-lingui-id: dHvI9O
#: src/modules/workflow/components/OverrideWorkflowDraftConfirmationModal.tsx
msgid "Go to Draft"
msgstr ""
#. js-lingui-id: BQE4ob
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Go to Notes"
@@ -2378,9 +2347,7 @@ msgid "Go to runs"
msgstr ""
#. js-lingui-id: mT57+Q
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Go to Settings"
msgstr ""
@@ -2463,7 +2430,6 @@ msgstr ""
#. js-lingui-id: vLyv1R
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Hide"
msgstr ""
@@ -2549,11 +2515,6 @@ msgstr ""
msgid "Identity Provider Metadata XML"
msgstr ""
#. js-lingui-id: ZfP/Ap
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
msgid "If this is unexpected, please verify your settings."
msgstr ""
#. js-lingui-id: j843N3
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "If youve lost this key, you can regenerate it, but be aware that any script using this key will need to be updated. Please type\"{confirmationValue}\" to confirm."
@@ -2780,11 +2741,6 @@ msgstr ""
msgid "Japanese"
msgstr ""
#. js-lingui-id: VIK/N0
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
msgid "JSON keys cannot contain spaces"
msgstr ""
#. js-lingui-id: OGXtL8
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -2854,16 +2810,6 @@ msgstr ""
msgid "Last Name"
msgstr ""
#. js-lingui-id: s0kiVA
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
msgid "Last payment failed. Please contact your admin."
msgstr ""
#. js-lingui-id: 3u/3zO
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
msgid "Last payment failed. Please update your billing details."
msgstr ""
#. js-lingui-id: wL3cK8
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
msgid "Latest"
@@ -2916,11 +2862,6 @@ msgstr ""
msgid "Listings"
msgstr ""
#. js-lingui-id: Nx262D
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Loading csv ... "
msgstr ""
#. js-lingui-id: s1MstR
#: src/modules/settings/admin-panel/health-status/components/WorkerMetricsGraph.tsx
msgid "Loading metrics data..."
@@ -2928,7 +2869,6 @@ msgstr ""
#. js-lingui-id: Z3FXyt
#: src/modules/settings/admin-panel/components/SettingsAdminVersionDisplay.tsx
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Loading..."
msgstr ""
@@ -3024,11 +2964,6 @@ msgstr ""
msgid "Members"
msgstr ""
#. js-lingui-id: U15XwX
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Message not found"
msgstr ""
#. js-lingui-id: elpx6r
#: src/modules/settings/admin-panel/health-status/components/ConnectedAccountHealthStatus.tsx
msgid "Message Sync"
@@ -3082,13 +3017,11 @@ msgstr ""
#. js-lingui-id: iSLA/r
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Move left"
msgstr ""
#. js-lingui-id: Ubl2by
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Move right"
msgstr ""
@@ -3276,11 +3209,6 @@ msgstr ""
msgid "No country"
msgstr ""
#. js-lingui-id: 7tCnBa
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
msgid "No Data Available for Remote Table"
msgstr ""
#. js-lingui-id: pxvJ9B
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data containing errors"
@@ -3296,11 +3224,6 @@ msgstr ""
msgid "No free workflow executions left. End trial period and activate your billing to continue."
msgstr ""
#. js-lingui-id: pxYUeX
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
msgid "No free workflow executions left. Please contact your admin."
msgstr ""
#. js-lingui-id: OcMef3
#: src/modules/settings/admin-panel/components/SettingsAdminVersionContainer.tsx
msgid "No latest version found"
@@ -3379,7 +3302,6 @@ msgstr ""
#. js-lingui-id: Ev2r9A
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCountrySelect.tsx
msgid "No results"
msgstr ""
@@ -3452,16 +3374,6 @@ msgstr ""
msgid "Not Found"
msgstr ""
#. js-lingui-id: 51G4/+
#: src/modules/activities/calendar/components/CalendarEventNotSharedContent.tsx
msgid "Not shared"
msgstr ""
#. js-lingui-id: uzFo/5
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessageBodyNotShared.tsx
msgid "Not shared by {notSharedByFullName}"
msgstr ""
#. js-lingui-id: hZWthZ
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Not synced"
@@ -3836,8 +3748,6 @@ msgstr ""
#. js-lingui-id: K6/7kH
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
msgid "Record label"
msgstr ""
@@ -3932,11 +3842,6 @@ msgstr ""
msgid "Remove option"
msgstr ""
#. js-lingui-id: Ee8JBW
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
msgid "Reorder field"
msgstr ""
#. js-lingui-id: OfhWJH
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/modules/views/components/ViewBarDetails.tsx
@@ -4108,22 +4013,16 @@ msgstr ""
msgid "Search config variables"
msgstr ""
#. js-lingui-id: WLfEv1
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCountrySelect.tsx
msgid "Search country"
msgstr ""
#. js-lingui-id: sSARNY
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
msgid "Search currency"
msgstr ""
#. js-lingui-id: 7taA9j
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: 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/ObjectFilterDropdownFieldSelect.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterFieldSelectSearchInput.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterDropdownFieldSelectMenu.tsx
msgid "Search fields"
msgstr ""
@@ -4273,8 +4172,8 @@ 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 ""
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
@@ -4547,11 +4446,6 @@ msgstr ""
msgid "Subject and metadata will be shared with your team."
msgstr ""
#. js-lingui-id: DvSvG9
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessageForbidden.tsx
msgid "Subject not shared"
msgstr ""
#. js-lingui-id: J9ylmk
#: src/modules/settings/accounts/components/SettingsAccountsMessageVisibilityCard.tsx
msgid "Subject, body and attachments will be shared with your team."
@@ -4562,11 +4456,6 @@ msgstr ""
msgid "Submit"
msgstr ""
#. js-lingui-id: EDl9kS
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Subscribe"
msgstr ""
#. js-lingui-id: uvY7Wk
#: src/modules/billing/hooks/useEndSubscriptionTrialPeriod.ts
msgid "Subscription activated."
@@ -4897,7 +4786,6 @@ msgstr ""
#. js-lingui-id: ecUA8p
#: src/modules/settings/admin-panel/health-status/constants/WorkerQueueMetricsSelectOptions.ts
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Today"
msgstr ""
@@ -4906,11 +4794,6 @@ msgstr ""
msgid "Toggle all object permissions"
msgstr ""
#. js-lingui-id: BRMXj0
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Tomorrow"
msgstr ""
#. js-lingui-id: vb0Q0/
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
#~ msgid "Total Users"
@@ -4921,16 +4804,6 @@ msgstr ""
msgid "Track your monthly workflow credit consumption."
msgstr ""
#. js-lingui-id: wN0jHF
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Trial expired. Please contact your admin"
msgstr ""
#. js-lingui-id: y985qL
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Trial expired. Please update your billing details."
msgstr ""
#. js-lingui-id: PiUt3N
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
@@ -4997,12 +4870,6 @@ msgstr ""
msgid "Unlimited contacts"
msgstr ""
#. js-lingui-id: EkH9pt
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Update"
msgstr ""
#. js-lingui-id: +b7T3G
#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx
msgid "Updated"
@@ -5195,21 +5062,6 @@ msgstr ""
msgid "Visualize"
msgstr ""
#. js-lingui-id: zFSQY3
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was created by"
msgstr ""
#. js-lingui-id: uHpu1c
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was deleted by"
msgstr ""
#. js-lingui-id: S0enzB
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was restored by"
msgstr ""
#. js-lingui-id: id6ein
#: src/modules/ui/input/components/ImageInput.tsx
msgid "We support your square PNGs, JPEGs and GIFs under 10MB"
@@ -5357,11 +5209,6 @@ msgstr ""
msgid "yes"
msgstr ""
#. js-lingui-id: y/0uwd
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Yesterday"
msgstr ""
#. js-lingui-id: qsAug0
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
#~ msgid "You are already importing this column."
@@ -5422,16 +5269,6 @@ msgstr ""
msgid "Your Workspace"
msgstr ""
#. js-lingui-id: oC6WBs
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Your workspace doesn't have an active subscription."
msgstr ""
#. js-lingui-id: QBTEtW
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Your workspace doesn't have an active subscription. Please contact your admin."
msgstr ""
#. js-lingui-id: RhNbPE
#: src/pages/settings/SettingsBilling.tsx
msgid "Your workspace will be disabled"
+9 -172
View File
@@ -93,11 +93,6 @@ msgstr "Chave da API {apiKeyName}"
msgid "{contextStoreNumberOfSelectedRecords} selected"
msgstr "{contextStoreNumberOfSelectedRecords} selecionado"
#. js-lingui-id: wapGcj
#: src/modules/auth/components/VerifyEmailEffect.tsx
msgid "{message}"
msgstr ""
#. js-lingui-id: 6j5rE1
#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowRecordAgnosticActions.tsx
#: src/modules/action-menu/actions/record-actions/run-workflow-actions/hooks/useRunWorkflowRecordActions.tsx
@@ -109,11 +104,6 @@ msgstr "{name}"
msgid "{workspaceMemberName} will be unassigned from the following role:"
msgstr "{workspaceMemberName} ser\\u00e1 desvinculado do seguinte cargo:"
#. js-lingui-id: NNQszp
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "⚠️ Please verify the auto mapping of the columns. You can also ignore or change the mapping of the columns."
msgstr ""
#. js-lingui-id: YT0WJ4
#: src/pages/onboarding/ChooseYourPlan.tsx
#~ msgid "1 000 workflow node executions"
@@ -627,7 +617,7 @@ msgid "Are you sure you want to delete this record? It can be recovered from the
msgstr "Tem certeza de que deseja excluir este registro? Ele pode ser recuperado no menu Comando."
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Are you sure? Your current information will not be saved."
msgstr ""
@@ -808,7 +798,7 @@ msgstr "Não é possível alterar nomes de API para objetos padrão"
#: 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/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
msgid "Cancel"
msgstr "Cancelar"
@@ -1257,11 +1247,6 @@ msgstr "Criar seu workspace"
msgid "Created"
msgstr "Criado"
#. js-lingui-id: R3PLzn
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
msgid "currencies"
msgstr ""
#. js-lingui-id: 6YzXhC
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
msgid "Current value from server environment. Set a custom value to override."
@@ -1498,11 +1483,6 @@ msgstr "Excluir a conta e todos os dados associados"
msgid "Delete API key"
msgstr "Excluir Chave API"
#. js-lingui-id: x2p4/4
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
msgid "Delete field"
msgstr ""
#. js-lingui-id: 4dpwsE
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
#~ msgid "Delete record"
@@ -1736,7 +1716,6 @@ msgstr "Data mais antiga"
#: src/modules/views/view-picker/components/ViewPickerOptionDropdown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Edit"
msgstr "Editar"
@@ -1819,8 +1798,8 @@ msgstr "Verificação de e-mail"
#. js-lingui-id: TBv/iZ
#: src/modules/auth/components/VerifyEmailEffect.tsx
#~ msgid "Email verification failed."
#~ msgstr "Falha na verificação de email."
msgid "Email verification failed."
msgstr "Falha na verificação de email."
#. js-lingui-id: svTijF
#: src/modules/auth/sign-in-up/hooks/useHandleResendEmailVerificationToken.ts
@@ -1968,11 +1947,6 @@ msgstr "Erro ao excluir Provedor de Identidade SSO"
msgid "Error editing SSO Identity Provider"
msgstr "Erro ao editar Provedor de Identidade SSO"
#. js-lingui-id: 2GvilU
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Error loading message"
msgstr ""
#. js-lingui-id: bj7nh3
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error regenerating api key: {err}"
@@ -2046,7 +2020,7 @@ msgid "Existing objects"
msgstr "Objetos existentes"
#. js-lingui-id: ydzS9x
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit"
msgstr ""
@@ -2056,7 +2030,7 @@ msgstr ""
#~ msgstr "Sair do modo tela cheia"
#. js-lingui-id: XB4onr
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit import flow"
msgstr ""
@@ -2358,11 +2332,6 @@ msgstr "Global"
msgid "Go to Companies"
msgstr ""
#. js-lingui-id: dHvI9O
#: src/modules/workflow/components/OverrideWorkflowDraftConfirmationModal.tsx
msgid "Go to Draft"
msgstr ""
#. js-lingui-id: BQE4ob
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Go to Notes"
@@ -2386,9 +2355,7 @@ msgid "Go to runs"
msgstr "Ir para execuções"
#. js-lingui-id: mT57+Q
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Go to Settings"
msgstr "Ir para as Configurações"
@@ -2471,7 +2438,6 @@ msgstr "Campos Ocultos"
#. js-lingui-id: vLyv1R
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Hide"
msgstr "Ocultar"
@@ -2557,11 +2523,6 @@ msgstr "Provedor de Identidade"
msgid "Identity Provider Metadata XML"
msgstr "XML de Metadados do Provedor de Identidade"
#. js-lingui-id: ZfP/Ap
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
msgid "If this is unexpected, please verify your settings."
msgstr ""
#. js-lingui-id: j843N3
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "If youve lost this key, you can regenerate it, but be aware that any script using this key will need to be updated. Please type\"{confirmationValue}\" to confirm."
@@ -2788,11 +2749,6 @@ msgstr "Italiano"
msgid "Japanese"
msgstr "Japonês"
#. js-lingui-id: VIK/N0
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
msgid "JSON keys cannot contain spaces"
msgstr ""
#. js-lingui-id: OGXtL8
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -2862,16 +2818,6 @@ msgstr "Últimos 7 Dias (mais antigo → mais recente)"
msgid "Last Name"
msgstr "Sobrenome"
#. js-lingui-id: s0kiVA
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
msgid "Last payment failed. Please contact your admin."
msgstr ""
#. js-lingui-id: 3u/3zO
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
msgid "Last payment failed. Please update your billing details."
msgstr ""
#. js-lingui-id: wL3cK8
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
msgid "Latest"
@@ -2924,11 +2870,6 @@ msgstr "Link copiado para a área de transferência"
msgid "Listings"
msgstr "Listagens"
#. js-lingui-id: Nx262D
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Loading csv ... "
msgstr ""
#. js-lingui-id: s1MstR
#: src/modules/settings/admin-panel/health-status/components/WorkerMetricsGraph.tsx
msgid "Loading metrics data..."
@@ -2936,7 +2877,6 @@ msgstr "Carregando dados de métricas..."
#. js-lingui-id: Z3FXyt
#: src/modules/settings/admin-panel/components/SettingsAdminVersionDisplay.tsx
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Loading..."
msgstr ""
@@ -3032,11 +2972,6 @@ msgstr "Máximo"
msgid "Members"
msgstr "Membros"
#. js-lingui-id: U15XwX
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Message not found"
msgstr ""
#. js-lingui-id: elpx6r
#: src/modules/settings/admin-panel/health-status/components/ConnectedAccountHealthStatus.tsx
msgid "Message Sync"
@@ -3090,13 +3025,11 @@ msgstr "Mais opções"
#. js-lingui-id: iSLA/r
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Move left"
msgstr "Mover para a esquerda"
#. js-lingui-id: Ubl2by
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Move right"
msgstr "Mover para a direita"
@@ -3284,11 +3217,6 @@ msgstr "Nenhuma conta conectada"
msgid "No country"
msgstr "Sem país"
#. js-lingui-id: 7tCnBa
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
msgid "No Data Available for Remote Table"
msgstr ""
#. js-lingui-id: pxvJ9B
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data containing errors"
@@ -3304,11 +3232,6 @@ msgstr ""
msgid "No free workflow executions left. End trial period and activate your billing to continue."
msgstr ""
#. js-lingui-id: pxYUeX
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
msgid "No free workflow executions left. Please contact your admin."
msgstr ""
#. js-lingui-id: OcMef3
#: src/modules/settings/admin-panel/components/SettingsAdminVersionContainer.tsx
msgid "No latest version found"
@@ -3387,7 +3310,6 @@ msgstr "Nenhum registro encontrado"
#. js-lingui-id: Ev2r9A
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCountrySelect.tsx
msgid "No results"
msgstr ""
@@ -3460,16 +3382,6 @@ msgstr "Não vazio"
msgid "Not Found"
msgstr "Não Encontrado"
#. js-lingui-id: 51G4/+
#: src/modules/activities/calendar/components/CalendarEventNotSharedContent.tsx
msgid "Not shared"
msgstr ""
#. js-lingui-id: uzFo/5
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessageBodyNotShared.tsx
msgid "Not shared by {notSharedByFullName}"
msgstr ""
#. js-lingui-id: hZWthZ
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Not synced"
@@ -3844,8 +3756,6 @@ msgstr "Imagem do registro"
#. js-lingui-id: K6/7kH
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
msgid "Record label"
msgstr "Rótulo do registro"
@@ -3940,11 +3850,6 @@ msgstr "Remover dos favoritos"
msgid "Remove option"
msgstr "Remover opção"
#. js-lingui-id: Ee8JBW
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
msgid "Reorder field"
msgstr ""
#. js-lingui-id: OfhWJH
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/modules/views/components/ViewBarDetails.tsx
@@ -4116,22 +4021,16 @@ msgstr "Pesquisar um índice..."
msgid "Search config variables"
msgstr ""
#. js-lingui-id: WLfEv1
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCountrySelect.tsx
msgid "Search country"
msgstr ""
#. js-lingui-id: sSARNY
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
msgid "Search currency"
msgstr ""
#. js-lingui-id: 7taA9j
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: 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/ObjectFilterDropdownFieldSelect.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterFieldSelectSearchInput.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterDropdownFieldSelectMenu.tsx
msgid "Search fields"
msgstr "Pesquisar campos"
@@ -4281,8 +4180,8 @@ 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 ""
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
@@ -4555,11 +4454,6 @@ msgstr "Assunto e metadados"
msgid "Subject and metadata will be shared with your team."
msgstr "Assunto e metadados serão compartilhados com sua equipe."
#. js-lingui-id: DvSvG9
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessageForbidden.tsx
msgid "Subject not shared"
msgstr ""
#. js-lingui-id: J9ylmk
#: src/modules/settings/accounts/components/SettingsAccountsMessageVisibilityCard.tsx
msgid "Subject, body and attachments will be shared with your team."
@@ -4570,11 +4464,6 @@ msgstr "Assunto, corpo e anexos serão compartilhados com sua equipe."
msgid "Submit"
msgstr ""
#. js-lingui-id: EDl9kS
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Subscribe"
msgstr ""
#. js-lingui-id: uvY7Wk
#: src/modules/billing/hooks/useEndSubscriptionTrialPeriod.ts
msgid "Subscription activated."
@@ -4905,7 +4794,6 @@ msgstr "Timestamp e participantes serão compartilhados com sua equipe."
#. js-lingui-id: ecUA8p
#: src/modules/settings/admin-panel/health-status/constants/WorkerQueueMetricsSelectOptions.ts
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Today"
msgstr "Hoje"
@@ -4914,11 +4802,6 @@ msgstr "Hoje"
msgid "Toggle all object permissions"
msgstr ""
#. js-lingui-id: BRMXj0
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Tomorrow"
msgstr ""
#. js-lingui-id: vb0Q0/
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
#~ msgid "Total Users"
@@ -4929,16 +4812,6 @@ msgstr ""
msgid "Track your monthly workflow credit consumption."
msgstr ""
#. js-lingui-id: wN0jHF
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Trial expired. Please contact your admin"
msgstr ""
#. js-lingui-id: y985qL
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Trial expired. Please update your billing details."
msgstr ""
#. js-lingui-id: PiUt3N
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
@@ -5005,12 +4878,6 @@ msgstr "Erro desconhecido"
msgid "Unlimited contacts"
msgstr "Contatos ilimitados"
#. js-lingui-id: EkH9pt
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Update"
msgstr ""
#. js-lingui-id: +b7T3G
#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx
msgid "Updated"
@@ -5203,21 +5070,6 @@ msgstr "Grupos visíveis"
msgid "Visualize"
msgstr "Visualizar"
#. js-lingui-id: zFSQY3
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was created by"
msgstr ""
#. js-lingui-id: uHpu1c
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was deleted by"
msgstr ""
#. js-lingui-id: S0enzB
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was restored by"
msgstr ""
#. js-lingui-id: id6ein
#: src/modules/ui/input/components/ImageInput.tsx
msgid "We support your square PNGs, JPEGs and GIFs under 10MB"
@@ -5365,11 +5217,6 @@ msgstr "Escreva um segredo"
msgid "yes"
msgstr "sim"
#. js-lingui-id: y/0uwd
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Yesterday"
msgstr ""
#. js-lingui-id: qsAug0
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
#~ msgid "You are already importing this column."
@@ -5430,16 +5277,6 @@ msgstr "Seu nome como ser\\u00e1 exibido no aplicativo"
msgid "Your Workspace"
msgstr "Seu Workspace"
#. js-lingui-id: oC6WBs
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Your workspace doesn't have an active subscription."
msgstr ""
#. js-lingui-id: QBTEtW
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Your workspace doesn't have an active subscription. Please contact your admin."
msgstr ""
#. js-lingui-id: RhNbPE
#: src/pages/settings/SettingsBilling.tsx
msgid "Your workspace will be disabled"
+9 -172
View File
@@ -93,11 +93,6 @@ msgstr "{apiKeyName} Chave API"
msgid "{contextStoreNumberOfSelectedRecords} selected"
msgstr "{contextStoreNumberOfSelectedRecords} selecionado"
#. js-lingui-id: wapGcj
#: src/modules/auth/components/VerifyEmailEffect.tsx
msgid "{message}"
msgstr ""
#. js-lingui-id: 6j5rE1
#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowRecordAgnosticActions.tsx
#: src/modules/action-menu/actions/record-actions/run-workflow-actions/hooks/useRunWorkflowRecordActions.tsx
@@ -109,11 +104,6 @@ msgstr "{name}"
msgid "{workspaceMemberName} will be unassigned from the following role:"
msgstr "{workspaceMemberName} ser\\u00e1 desvinculado do seguinte cargo:"
#. js-lingui-id: NNQszp
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "⚠️ Please verify the auto mapping of the columns. You can also ignore or change the mapping of the columns."
msgstr ""
#. js-lingui-id: YT0WJ4
#: src/pages/onboarding/ChooseYourPlan.tsx
#~ msgid "1 000 workflow node executions"
@@ -627,7 +617,7 @@ msgid "Are you sure you want to delete this record? It can be recovered from the
msgstr "Tem certeza de que deseja excluir este registro? Ele pode ser recuperado do menu Comando."
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Are you sure? Your current information will not be saved."
msgstr ""
@@ -808,7 +798,7 @@ msgstr "Não é possível alterar os nomes de API para objetos padrão"
#: 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/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
msgid "Cancel"
msgstr "Cancelar"
@@ -1257,11 +1247,6 @@ msgstr "Crie seu espaço de trabalho"
msgid "Created"
msgstr "Criado"
#. js-lingui-id: R3PLzn
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
msgid "currencies"
msgstr ""
#. js-lingui-id: 6YzXhC
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
msgid "Current value from server environment. Set a custom value to override."
@@ -1498,11 +1483,6 @@ msgstr "Eliminar conta e todos os dados associados"
msgid "Delete API key"
msgstr "Eliminar chave API"
#. js-lingui-id: x2p4/4
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
msgid "Delete field"
msgstr ""
#. js-lingui-id: 4dpwsE
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
#~ msgid "Delete record"
@@ -1736,7 +1716,6 @@ msgstr "Data mais antiga"
#: src/modules/views/view-picker/components/ViewPickerOptionDropdown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Edit"
msgstr "Editar"
@@ -1819,8 +1798,8 @@ msgstr "Verificação de email"
#. js-lingui-id: TBv/iZ
#: src/modules/auth/components/VerifyEmailEffect.tsx
#~ msgid "Email verification failed."
#~ msgstr "Falha na verificação de email."
msgid "Email verification failed."
msgstr "Falha na verificação de email."
#. js-lingui-id: svTijF
#: src/modules/auth/sign-in-up/hooks/useHandleResendEmailVerificationToken.ts
@@ -1968,11 +1947,6 @@ msgstr "Erro ao excluir Fornecedor de Identidade SSO"
msgid "Error editing SSO Identity Provider"
msgstr "Erro ao editar Fornecedor de Identidade SSO"
#. js-lingui-id: 2GvilU
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Error loading message"
msgstr ""
#. js-lingui-id: bj7nh3
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error regenerating api key: {err}"
@@ -2046,7 +2020,7 @@ msgid "Existing objects"
msgstr "Objetos existentes"
#. js-lingui-id: ydzS9x
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit"
msgstr ""
@@ -2056,7 +2030,7 @@ msgstr ""
#~ msgstr "Sair do modo de tela cheia"
#. js-lingui-id: XB4onr
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit import flow"
msgstr ""
@@ -2358,11 +2332,6 @@ msgstr "Global"
msgid "Go to Companies"
msgstr ""
#. js-lingui-id: dHvI9O
#: src/modules/workflow/components/OverrideWorkflowDraftConfirmationModal.tsx
msgid "Go to Draft"
msgstr ""
#. js-lingui-id: BQE4ob
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Go to Notes"
@@ -2386,9 +2355,7 @@ msgid "Go to runs"
msgstr "Ir para execuções"
#. js-lingui-id: mT57+Q
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Go to Settings"
msgstr "Ir para Configurações"
@@ -2471,7 +2438,6 @@ msgstr "Campos Ocultos"
#. js-lingui-id: vLyv1R
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Hide"
msgstr "Esconder"
@@ -2557,11 +2523,6 @@ msgstr "Fornecedor de Identidade"
msgid "Identity Provider Metadata XML"
msgstr "XML de Metadados do Provedor de Identidade"
#. js-lingui-id: ZfP/Ap
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
msgid "If this is unexpected, please verify your settings."
msgstr ""
#. js-lingui-id: j843N3
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "If youve lost this key, you can regenerate it, but be aware that any script using this key will need to be updated. Please type\"{confirmationValue}\" to confirm."
@@ -2788,11 +2749,6 @@ msgstr "Italiano"
msgid "Japanese"
msgstr "Japonês"
#. js-lingui-id: VIK/N0
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
msgid "JSON keys cannot contain spaces"
msgstr ""
#. js-lingui-id: OGXtL8
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -2862,16 +2818,6 @@ msgstr "Últimos 7 Dias (mais antigo → mais recente)"
msgid "Last Name"
msgstr "Sobrenome"
#. js-lingui-id: s0kiVA
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
msgid "Last payment failed. Please contact your admin."
msgstr ""
#. js-lingui-id: 3u/3zO
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
msgid "Last payment failed. Please update your billing details."
msgstr ""
#. js-lingui-id: wL3cK8
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
msgid "Latest"
@@ -2924,11 +2870,6 @@ msgstr "Link copiado para a área de transferência"
msgid "Listings"
msgstr "Listagens"
#. js-lingui-id: Nx262D
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Loading csv ... "
msgstr ""
#. js-lingui-id: s1MstR
#: src/modules/settings/admin-panel/health-status/components/WorkerMetricsGraph.tsx
msgid "Loading metrics data..."
@@ -2936,7 +2877,6 @@ msgstr "Carregando dados de métricas..."
#. js-lingui-id: Z3FXyt
#: src/modules/settings/admin-panel/components/SettingsAdminVersionDisplay.tsx
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Loading..."
msgstr ""
@@ -3032,11 +2972,6 @@ msgstr "Máximo"
msgid "Members"
msgstr "Membros"
#. js-lingui-id: U15XwX
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Message not found"
msgstr ""
#. js-lingui-id: elpx6r
#: src/modules/settings/admin-panel/health-status/components/ConnectedAccountHealthStatus.tsx
msgid "Message Sync"
@@ -3090,13 +3025,11 @@ msgstr "Mais opções"
#. js-lingui-id: iSLA/r
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Move left"
msgstr "Mover para a esquerda"
#. js-lingui-id: Ubl2by
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Move right"
msgstr "Mover para a direita"
@@ -3284,11 +3217,6 @@ msgstr "Nenhuma conta conectada"
msgid "No country"
msgstr "Sem país"
#. js-lingui-id: 7tCnBa
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
msgid "No Data Available for Remote Table"
msgstr ""
#. js-lingui-id: pxvJ9B
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data containing errors"
@@ -3304,11 +3232,6 @@ msgstr ""
msgid "No free workflow executions left. End trial period and activate your billing to continue."
msgstr ""
#. js-lingui-id: pxYUeX
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
msgid "No free workflow executions left. Please contact your admin."
msgstr ""
#. js-lingui-id: OcMef3
#: src/modules/settings/admin-panel/components/SettingsAdminVersionContainer.tsx
msgid "No latest version found"
@@ -3387,7 +3310,6 @@ msgstr "Nenhum registro encontrado"
#. js-lingui-id: Ev2r9A
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCountrySelect.tsx
msgid "No results"
msgstr ""
@@ -3460,16 +3382,6 @@ msgstr "Não vazio"
msgid "Not Found"
msgstr "Não encontrado"
#. js-lingui-id: 51G4/+
#: src/modules/activities/calendar/components/CalendarEventNotSharedContent.tsx
msgid "Not shared"
msgstr ""
#. js-lingui-id: uzFo/5
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessageBodyNotShared.tsx
msgid "Not shared by {notSharedByFullName}"
msgstr ""
#. js-lingui-id: hZWthZ
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Not synced"
@@ -3844,8 +3756,6 @@ msgstr "Imagem de registro"
#. js-lingui-id: K6/7kH
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
msgid "Record label"
msgstr "Etiqueta de registro"
@@ -3940,11 +3850,6 @@ msgstr "Remover dos favoritos"
msgid "Remove option"
msgstr "Remover opção"
#. js-lingui-id: Ee8JBW
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
msgid "Reorder field"
msgstr ""
#. js-lingui-id: OfhWJH
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/modules/views/components/ViewBarDetails.tsx
@@ -4116,22 +4021,16 @@ msgstr "Pesquisar um índice..."
msgid "Search config variables"
msgstr ""
#. js-lingui-id: WLfEv1
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCountrySelect.tsx
msgid "Search country"
msgstr ""
#. js-lingui-id: sSARNY
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
msgid "Search currency"
msgstr ""
#. js-lingui-id: 7taA9j
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: 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/ObjectFilterDropdownFieldSelect.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterFieldSelectSearchInput.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterDropdownFieldSelectMenu.tsx
msgid "Search fields"
msgstr "Pesquisar campos"
@@ -4281,8 +4180,8 @@ 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 ""
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
@@ -4555,11 +4454,6 @@ msgstr "Assunto e metadados"
msgid "Subject and metadata will be shared with your team."
msgstr "Assunto e metadados serão partilhados com a sua equipa."
#. js-lingui-id: DvSvG9
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessageForbidden.tsx
msgid "Subject not shared"
msgstr ""
#. js-lingui-id: J9ylmk
#: src/modules/settings/accounts/components/SettingsAccountsMessageVisibilityCard.tsx
msgid "Subject, body and attachments will be shared with your team."
@@ -4570,11 +4464,6 @@ msgstr "Assunto, corpo e anexos serão partilhados com a sua equipa."
msgid "Submit"
msgstr ""
#. js-lingui-id: EDl9kS
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Subscribe"
msgstr ""
#. js-lingui-id: uvY7Wk
#: src/modules/billing/hooks/useEndSubscriptionTrialPeriod.ts
msgid "Subscription activated."
@@ -4905,7 +4794,6 @@ msgstr "Carimbo de data/hora e participantes serão partilhados com a sua equipa
#. js-lingui-id: ecUA8p
#: src/modules/settings/admin-panel/health-status/constants/WorkerQueueMetricsSelectOptions.ts
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Today"
msgstr "Hoje"
@@ -4914,11 +4802,6 @@ msgstr "Hoje"
msgid "Toggle all object permissions"
msgstr ""
#. js-lingui-id: BRMXj0
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Tomorrow"
msgstr ""
#. js-lingui-id: vb0Q0/
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
#~ msgid "Total Users"
@@ -4929,16 +4812,6 @@ msgstr ""
msgid "Track your monthly workflow credit consumption."
msgstr ""
#. js-lingui-id: wN0jHF
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Trial expired. Please contact your admin"
msgstr ""
#. js-lingui-id: y985qL
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Trial expired. Please update your billing details."
msgstr ""
#. js-lingui-id: PiUt3N
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
@@ -5005,12 +4878,6 @@ msgstr "Erro desconhecido"
msgid "Unlimited contacts"
msgstr "Contactos ilimitados"
#. js-lingui-id: EkH9pt
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Update"
msgstr ""
#. js-lingui-id: +b7T3G
#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx
msgid "Updated"
@@ -5203,21 +5070,6 @@ msgstr "Grupos visíveis"
msgid "Visualize"
msgstr "Visualizar"
#. js-lingui-id: zFSQY3
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was created by"
msgstr ""
#. js-lingui-id: uHpu1c
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was deleted by"
msgstr ""
#. js-lingui-id: S0enzB
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was restored by"
msgstr ""
#. js-lingui-id: id6ein
#: src/modules/ui/input/components/ImageInput.tsx
msgid "We support your square PNGs, JPEGs and GIFs under 10MB"
@@ -5365,11 +5217,6 @@ msgstr "Escrever um segredo"
msgid "yes"
msgstr "sim"
#. js-lingui-id: y/0uwd
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Yesterday"
msgstr ""
#. js-lingui-id: qsAug0
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
#~ msgid "You are already importing this column."
@@ -5430,16 +5277,6 @@ msgstr "O seu nome como será exibido no aplicativo"
msgid "Your Workspace"
msgstr "O seu Espaço de Trabalho"
#. js-lingui-id: oC6WBs
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Your workspace doesn't have an active subscription."
msgstr ""
#. js-lingui-id: QBTEtW
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Your workspace doesn't have an active subscription. Please contact your admin."
msgstr ""
#. js-lingui-id: RhNbPE
#: src/pages/settings/SettingsBilling.tsx
msgid "Your workspace will be disabled"
+9 -172
View File
@@ -93,11 +93,6 @@ msgstr "Cheie API {apiKeyName}"
msgid "{contextStoreNumberOfSelectedRecords} selected"
msgstr "{contextStoreNumberOfSelectedRecords} selectate"
#. js-lingui-id: wapGcj
#: src/modules/auth/components/VerifyEmailEffect.tsx
msgid "{message}"
msgstr ""
#. js-lingui-id: 6j5rE1
#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowRecordAgnosticActions.tsx
#: src/modules/action-menu/actions/record-actions/run-workflow-actions/hooks/useRunWorkflowRecordActions.tsx
@@ -109,11 +104,6 @@ msgstr "{name}"
msgid "{workspaceMemberName} will be unassigned from the following role:"
msgstr "{workspaceMemberName} va fi retras din următorul rol:"
#. js-lingui-id: NNQszp
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "⚠️ Please verify the auto mapping of the columns. You can also ignore or change the mapping of the columns."
msgstr ""
#. js-lingui-id: YT0WJ4
#: src/pages/onboarding/ChooseYourPlan.tsx
#~ msgid "1 000 workflow node executions"
@@ -627,7 +617,7 @@ msgid "Are you sure you want to delete this record? It can be recovered from the
msgstr "Sigur doriți să ștergeți această înregistrare? Ea poate fi recuperată din meniul Command."
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Are you sure? Your current information will not be saved."
msgstr ""
@@ -808,7 +798,7 @@ msgstr "Nu se pot schimba numele API pentru obiectele standard"
#: 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/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
msgid "Cancel"
msgstr "Anulare"
@@ -1257,11 +1247,6 @@ msgstr "Creează spațiul tău de lucru"
msgid "Created"
msgstr "Creat"
#. js-lingui-id: R3PLzn
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
msgid "currencies"
msgstr ""
#. js-lingui-id: 6YzXhC
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
msgid "Current value from server environment. Set a custom value to override."
@@ -1498,11 +1483,6 @@ msgstr "Șterge contul și toate datele asociate"
msgid "Delete API key"
msgstr "Șterge cheia API"
#. js-lingui-id: x2p4/4
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
msgid "Delete field"
msgstr ""
#. js-lingui-id: 4dpwsE
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
#~ msgid "Delete record"
@@ -1736,7 +1716,6 @@ msgstr "Data cea mai devreme"
#: src/modules/views/view-picker/components/ViewPickerOptionDropdown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Edit"
msgstr "Editare"
@@ -1819,8 +1798,8 @@ msgstr "Verificare email"
#. js-lingui-id: TBv/iZ
#: src/modules/auth/components/VerifyEmailEffect.tsx
#~ msgid "Email verification failed."
#~ msgstr "Verificarea emailului a eșuat."
msgid "Email verification failed."
msgstr "Verificarea emailului a eșuat."
#. js-lingui-id: svTijF
#: src/modules/auth/sign-in-up/hooks/useHandleResendEmailVerificationToken.ts
@@ -1968,11 +1947,6 @@ msgstr "Eroare la ștergerea Furnizorului de Identitate SSO"
msgid "Error editing SSO Identity Provider"
msgstr "Eroare la editarea Furnizorului de Identitate SSO"
#. js-lingui-id: 2GvilU
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Error loading message"
msgstr ""
#. js-lingui-id: bj7nh3
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error regenerating api key: {err}"
@@ -2046,7 +2020,7 @@ msgid "Existing objects"
msgstr "Obiecte existente"
#. js-lingui-id: ydzS9x
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit"
msgstr ""
@@ -2056,7 +2030,7 @@ msgstr ""
#~ msgstr "Ieșiți din modul Ecran complet"
#. js-lingui-id: XB4onr
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit import flow"
msgstr ""
@@ -2358,11 +2332,6 @@ msgstr "Global"
msgid "Go to Companies"
msgstr ""
#. js-lingui-id: dHvI9O
#: src/modules/workflow/components/OverrideWorkflowDraftConfirmationModal.tsx
msgid "Go to Draft"
msgstr ""
#. js-lingui-id: BQE4ob
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Go to Notes"
@@ -2386,9 +2355,7 @@ msgid "Go to runs"
msgstr "Mergi la rulări"
#. js-lingui-id: mT57+Q
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Go to Settings"
msgstr "Mergeți la Setări"
@@ -2471,7 +2438,6 @@ msgstr "Câmpuri ascunse"
#. js-lingui-id: vLyv1R
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Hide"
msgstr "Ascunde"
@@ -2557,11 +2523,6 @@ msgstr "Furnizor de Identitate"
msgid "Identity Provider Metadata XML"
msgstr "XML-ul de Metadate al Furnizorului de Identitate"
#. js-lingui-id: ZfP/Ap
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
msgid "If this is unexpected, please verify your settings."
msgstr ""
#. js-lingui-id: j843N3
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "If youve lost this key, you can regenerate it, but be aware that any script using this key will need to be updated. Please type\"{confirmationValue}\" to confirm."
@@ -2788,11 +2749,6 @@ msgstr "Italiană"
msgid "Japanese"
msgstr "Japoneză"
#. js-lingui-id: VIK/N0
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
msgid "JSON keys cannot contain spaces"
msgstr ""
#. js-lingui-id: OGXtL8
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -2862,16 +2818,6 @@ msgstr "Ultimele 7 zile (cel mai vechi → cel mai nou)"
msgid "Last Name"
msgstr "Nume de familie"
#. js-lingui-id: s0kiVA
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
msgid "Last payment failed. Please contact your admin."
msgstr ""
#. js-lingui-id: 3u/3zO
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
msgid "Last payment failed. Please update your billing details."
msgstr ""
#. js-lingui-id: wL3cK8
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
msgid "Latest"
@@ -2924,11 +2870,6 @@ msgstr "Link-ul a fost copiat în clipboard"
msgid "Listings"
msgstr "Listări"
#. js-lingui-id: Nx262D
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Loading csv ... "
msgstr ""
#. js-lingui-id: s1MstR
#: src/modules/settings/admin-panel/health-status/components/WorkerMetricsGraph.tsx
msgid "Loading metrics data..."
@@ -2936,7 +2877,6 @@ msgstr "Se încarcă datele metrice..."
#. js-lingui-id: Z3FXyt
#: src/modules/settings/admin-panel/components/SettingsAdminVersionDisplay.tsx
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Loading..."
msgstr ""
@@ -3032,11 +2972,6 @@ msgstr "Maxim"
msgid "Members"
msgstr "Membri"
#. js-lingui-id: U15XwX
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Message not found"
msgstr ""
#. js-lingui-id: elpx6r
#: src/modules/settings/admin-panel/health-status/components/ConnectedAccountHealthStatus.tsx
msgid "Message Sync"
@@ -3090,13 +3025,11 @@ msgstr "Mai multe opțiuni"
#. js-lingui-id: iSLA/r
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Move left"
msgstr "Mută la stânga"
#. js-lingui-id: Ubl2by
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Move right"
msgstr "Mută la dreapta"
@@ -3284,11 +3217,6 @@ msgstr "Niciun cont conectat"
msgid "No country"
msgstr "Fără țară"
#. js-lingui-id: 7tCnBa
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
msgid "No Data Available for Remote Table"
msgstr ""
#. js-lingui-id: pxvJ9B
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data containing errors"
@@ -3304,11 +3232,6 @@ msgstr ""
msgid "No free workflow executions left. End trial period and activate your billing to continue."
msgstr ""
#. js-lingui-id: pxYUeX
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
msgid "No free workflow executions left. Please contact your admin."
msgstr ""
#. js-lingui-id: OcMef3
#: src/modules/settings/admin-panel/components/SettingsAdminVersionContainer.tsx
msgid "No latest version found"
@@ -3387,7 +3310,6 @@ msgstr "Nu s-au găsit înregistrări"
#. js-lingui-id: Ev2r9A
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCountrySelect.tsx
msgid "No results"
msgstr ""
@@ -3460,16 +3382,6 @@ msgstr "Nu este gol"
msgid "Not Found"
msgstr "Nu a fost găsit"
#. js-lingui-id: 51G4/+
#: src/modules/activities/calendar/components/CalendarEventNotSharedContent.tsx
msgid "Not shared"
msgstr ""
#. js-lingui-id: uzFo/5
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessageBodyNotShared.tsx
msgid "Not shared by {notSharedByFullName}"
msgstr ""
#. js-lingui-id: hZWthZ
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Not synced"
@@ -3844,8 +3756,6 @@ msgstr "Imagine înregistrare"
#. js-lingui-id: K6/7kH
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
msgid "Record label"
msgstr "Etichetă înregistrare"
@@ -3940,11 +3850,6 @@ msgstr "Elimină din favorite"
msgid "Remove option"
msgstr "Elimină opțiunea"
#. js-lingui-id: Ee8JBW
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
msgid "Reorder field"
msgstr ""
#. js-lingui-id: OfhWJH
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/modules/views/components/ViewBarDetails.tsx
@@ -4116,22 +4021,16 @@ msgstr "Caută un index..."
msgid "Search config variables"
msgstr ""
#. js-lingui-id: WLfEv1
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCountrySelect.tsx
msgid "Search country"
msgstr ""
#. js-lingui-id: sSARNY
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
msgid "Search currency"
msgstr ""
#. js-lingui-id: 7taA9j
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: 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/ObjectFilterDropdownFieldSelect.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterFieldSelectSearchInput.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterDropdownFieldSelectMenu.tsx
msgid "Search fields"
msgstr "Caută câmpuri"
@@ -4281,8 +4180,8 @@ 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 ""
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
@@ -4555,11 +4454,6 @@ msgstr "Subiect și meta-date"
msgid "Subject and metadata will be shared with your team."
msgstr "Subiectul și meta-datele vor fi partajate cu echipa dvs."
#. js-lingui-id: DvSvG9
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessageForbidden.tsx
msgid "Subject not shared"
msgstr ""
#. js-lingui-id: J9ylmk
#: src/modules/settings/accounts/components/SettingsAccountsMessageVisibilityCard.tsx
msgid "Subject, body and attachments will be shared with your team."
@@ -4570,11 +4464,6 @@ msgstr "Subiectul, corpul și atașamentele vor fi partajate cu echipa dvs."
msgid "Submit"
msgstr ""
#. js-lingui-id: EDl9kS
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Subscribe"
msgstr ""
#. js-lingui-id: uvY7Wk
#: src/modules/billing/hooks/useEndSubscriptionTrialPeriod.ts
msgid "Subscription activated."
@@ -4905,7 +4794,6 @@ msgstr "Marca temporală și participanții vor fi partajați cu echipa dvs."
#. js-lingui-id: ecUA8p
#: src/modules/settings/admin-panel/health-status/constants/WorkerQueueMetricsSelectOptions.ts
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Today"
msgstr "Azi"
@@ -4914,11 +4802,6 @@ msgstr "Azi"
msgid "Toggle all object permissions"
msgstr ""
#. js-lingui-id: BRMXj0
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Tomorrow"
msgstr ""
#. js-lingui-id: vb0Q0/
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
#~ msgid "Total Users"
@@ -4929,16 +4812,6 @@ msgstr ""
msgid "Track your monthly workflow credit consumption."
msgstr ""
#. js-lingui-id: wN0jHF
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Trial expired. Please contact your admin"
msgstr ""
#. js-lingui-id: y985qL
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Trial expired. Please update your billing details."
msgstr ""
#. js-lingui-id: PiUt3N
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
@@ -5005,12 +4878,6 @@ msgstr "Eroare necunoscută"
msgid "Unlimited contacts"
msgstr "Contacte nelimitate"
#. js-lingui-id: EkH9pt
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Update"
msgstr ""
#. js-lingui-id: +b7T3G
#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx
msgid "Updated"
@@ -5203,21 +5070,6 @@ msgstr "Grupuri vizibile"
msgid "Visualize"
msgstr "Vizualizează"
#. js-lingui-id: zFSQY3
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was created by"
msgstr ""
#. js-lingui-id: uHpu1c
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was deleted by"
msgstr ""
#. js-lingui-id: S0enzB
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was restored by"
msgstr ""
#. js-lingui-id: id6ein
#: src/modules/ui/input/components/ImageInput.tsx
msgid "We support your square PNGs, JPEGs and GIFs under 10MB"
@@ -5365,11 +5217,6 @@ msgstr "Scrieți un secret"
msgid "yes"
msgstr "da"
#. js-lingui-id: y/0uwd
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Yesterday"
msgstr ""
#. js-lingui-id: qsAug0
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
#~ msgid "You are already importing this column."
@@ -5430,16 +5277,6 @@ msgstr "Numele dvs. așa cum va fi afișat în aplicație"
msgid "Your Workspace"
msgstr "Spațiul tău de lucru"
#. js-lingui-id: oC6WBs
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Your workspace doesn't have an active subscription."
msgstr ""
#. js-lingui-id: QBTEtW
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Your workspace doesn't have an active subscription. Please contact your admin."
msgstr ""
#. js-lingui-id: RhNbPE
#: src/pages/settings/SettingsBilling.tsx
msgid "Your workspace will be disabled"
Binary file not shown.
+9 -172
View File
@@ -93,11 +93,6 @@ msgstr "{apiKeyName} API кључ"
msgid "{contextStoreNumberOfSelectedRecords} selected"
msgstr "{contextStoreNumberOfSelectedRecords} изабрано"
#. js-lingui-id: wapGcj
#: src/modules/auth/components/VerifyEmailEffect.tsx
msgid "{message}"
msgstr ""
#. js-lingui-id: 6j5rE1
#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowRecordAgnosticActions.tsx
#: src/modules/action-menu/actions/record-actions/run-workflow-actions/hooks/useRunWorkflowRecordActions.tsx
@@ -109,11 +104,6 @@ msgstr "{name}"
msgid "{workspaceMemberName} will be unassigned from the following role:"
msgstr "{workspaceMemberName} ће бити уклоњен из следеће улоге:"
#. js-lingui-id: NNQszp
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "⚠️ Please verify the auto mapping of the columns. You can also ignore or change the mapping of the columns."
msgstr ""
#. js-lingui-id: YT0WJ4
#: src/pages/onboarding/ChooseYourPlan.tsx
#~ msgid "1 000 workflow node executions"
@@ -627,7 +617,7 @@ msgid "Are you sure you want to delete this record? It can be recovered from the
msgstr "Да ли сте сигурни да желите да обришете овај запис? Може се повратити из командног менија."
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Are you sure? Your current information will not be saved."
msgstr ""
@@ -808,7 +798,7 @@ msgstr "Не могу се мењати API имена за стандардне
#: 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/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
msgid "Cancel"
msgstr "Откажи"
@@ -1257,11 +1247,6 @@ msgstr "Креирај свој радни простор"
msgid "Created"
msgstr "Креирано"
#. js-lingui-id: R3PLzn
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
msgid "currencies"
msgstr ""
#. js-lingui-id: 6YzXhC
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
msgid "Current value from server environment. Set a custom value to override."
@@ -1498,11 +1483,6 @@ msgstr "Обриши налог и све асоциране податке"
msgid "Delete API key"
msgstr "Обриши API кључ"
#. js-lingui-id: x2p4/4
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
msgid "Delete field"
msgstr ""
#. js-lingui-id: 4dpwsE
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
#~ msgid "Delete record"
@@ -1736,7 +1716,6 @@ msgstr "Најранији датум"
#: src/modules/views/view-picker/components/ViewPickerOptionDropdown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Edit"
msgstr "Уреди"
@@ -1819,8 +1798,8 @@ msgstr "Провера имејла"
#. js-lingui-id: TBv/iZ
#: src/modules/auth/components/VerifyEmailEffect.tsx
#~ msgid "Email verification failed."
#~ msgstr "Провера имејла није успела."
msgid "Email verification failed."
msgstr "Провера имејла није успела."
#. js-lingui-id: svTijF
#: src/modules/auth/sign-in-up/hooks/useHandleResendEmailVerificationToken.ts
@@ -1968,11 +1947,6 @@ msgstr "Грешка приликом брисања провајдера за S
msgid "Error editing SSO Identity Provider"
msgstr "Грешка приликом измене провајдера за SSO идентификацију"
#. js-lingui-id: 2GvilU
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Error loading message"
msgstr ""
#. js-lingui-id: bj7nh3
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error regenerating api key: {err}"
@@ -2046,7 +2020,7 @@ msgid "Existing objects"
msgstr "Постојећи објекти"
#. js-lingui-id: ydzS9x
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit"
msgstr ""
@@ -2056,7 +2030,7 @@ msgstr ""
#~ msgstr "Изађи из целог екрана"
#. js-lingui-id: XB4onr
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit import flow"
msgstr ""
@@ -2358,11 +2332,6 @@ msgstr "Глобално"
msgid "Go to Companies"
msgstr ""
#. js-lingui-id: dHvI9O
#: src/modules/workflow/components/OverrideWorkflowDraftConfirmationModal.tsx
msgid "Go to Draft"
msgstr ""
#. js-lingui-id: BQE4ob
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Go to Notes"
@@ -2386,9 +2355,7 @@ msgid "Go to runs"
msgstr "Иди на покретања"
#. js-lingui-id: mT57+Q
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Go to Settings"
msgstr "Идите на Подешавања"
@@ -2471,7 +2438,6 @@ msgstr "Сакривена поља"
#. js-lingui-id: vLyv1R
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Hide"
msgstr "Сакриј"
@@ -2557,11 +2523,6 @@ msgstr "Провајдер идентитета"
msgid "Identity Provider Metadata XML"
msgstr "XML метаподаци провајдера идентитета"
#. js-lingui-id: ZfP/Ap
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
msgid "If this is unexpected, please verify your settings."
msgstr ""
#. js-lingui-id: j843N3
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "If youve lost this key, you can regenerate it, but be aware that any script using this key will need to be updated. Please type\"{confirmationValue}\" to confirm."
@@ -2788,11 +2749,6 @@ msgstr "Италијански"
msgid "Japanese"
msgstr "Јапански"
#. js-lingui-id: VIK/N0
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
msgid "JSON keys cannot contain spaces"
msgstr ""
#. js-lingui-id: OGXtL8
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -2862,16 +2818,6 @@ msgstr "Последњих 7 дана (од најстаријег → најн
msgid "Last Name"
msgstr "Презиме"
#. js-lingui-id: s0kiVA
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
msgid "Last payment failed. Please contact your admin."
msgstr ""
#. js-lingui-id: 3u/3zO
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
msgid "Last payment failed. Please update your billing details."
msgstr ""
#. js-lingui-id: wL3cK8
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
msgid "Latest"
@@ -2924,11 +2870,6 @@ msgstr "Веза копирана у клипборд"
msgid "Listings"
msgstr "Огласи"
#. js-lingui-id: Nx262D
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Loading csv ... "
msgstr ""
#. js-lingui-id: s1MstR
#: src/modules/settings/admin-panel/health-status/components/WorkerMetricsGraph.tsx
msgid "Loading metrics data..."
@@ -2936,7 +2877,6 @@ msgstr "Учитавање података о метрикама..."
#. js-lingui-id: Z3FXyt
#: src/modules/settings/admin-panel/components/SettingsAdminVersionDisplay.tsx
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Loading..."
msgstr ""
@@ -3032,11 +2972,6 @@ msgstr "Максимум"
msgid "Members"
msgstr "Чланови"
#. js-lingui-id: U15XwX
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Message not found"
msgstr ""
#. js-lingui-id: elpx6r
#: src/modules/settings/admin-panel/health-status/components/ConnectedAccountHealthStatus.tsx
msgid "Message Sync"
@@ -3090,13 +3025,11 @@ msgstr "Више опција"
#. js-lingui-id: iSLA/r
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Move left"
msgstr "Помери улево"
#. js-lingui-id: Ubl2by
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Move right"
msgstr "Помери удесно"
@@ -3284,11 +3217,6 @@ msgstr "Није повезан налог"
msgid "No country"
msgstr "Нема земље"
#. js-lingui-id: 7tCnBa
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
msgid "No Data Available for Remote Table"
msgstr ""
#. js-lingui-id: pxvJ9B
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data containing errors"
@@ -3304,11 +3232,6 @@ msgstr ""
msgid "No free workflow executions left. End trial period and activate your billing to continue."
msgstr ""
#. js-lingui-id: pxYUeX
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
msgid "No free workflow executions left. Please contact your admin."
msgstr ""
#. js-lingui-id: OcMef3
#: src/modules/settings/admin-panel/components/SettingsAdminVersionContainer.tsx
msgid "No latest version found"
@@ -3387,7 +3310,6 @@ msgstr "Нису пронађени подаци"
#. js-lingui-id: Ev2r9A
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCountrySelect.tsx
msgid "No results"
msgstr ""
@@ -3460,16 +3382,6 @@ msgstr "Није празно"
msgid "Not Found"
msgstr "Није пронађено"
#. js-lingui-id: 51G4/+
#: src/modules/activities/calendar/components/CalendarEventNotSharedContent.tsx
msgid "Not shared"
msgstr ""
#. js-lingui-id: uzFo/5
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessageBodyNotShared.tsx
msgid "Not shared by {notSharedByFullName}"
msgstr ""
#. js-lingui-id: hZWthZ
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Not synced"
@@ -3844,8 +3756,6 @@ msgstr "Сними слику"
#. js-lingui-id: K6/7kH
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
msgid "Record label"
msgstr "Сними етикету"
@@ -3940,11 +3850,6 @@ msgstr "Уклоните из фаворита"
msgid "Remove option"
msgstr "Уклони опцију"
#. js-lingui-id: Ee8JBW
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
msgid "Reorder field"
msgstr ""
#. js-lingui-id: OfhWJH
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/modules/views/components/ViewBarDetails.tsx
@@ -4116,22 +4021,16 @@ msgstr "Претражите индекс..."
msgid "Search config variables"
msgstr ""
#. js-lingui-id: WLfEv1
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCountrySelect.tsx
msgid "Search country"
msgstr ""
#. js-lingui-id: sSARNY
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
msgid "Search currency"
msgstr ""
#. js-lingui-id: 7taA9j
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: 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/ObjectFilterDropdownFieldSelect.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterFieldSelectSearchInput.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterDropdownFieldSelectMenu.tsx
msgid "Search fields"
msgstr "Претражите поља"
@@ -4281,8 +4180,8 @@ 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 ""
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
@@ -4555,11 +4454,6 @@ msgstr "Субјекат и метаподаци"
msgid "Subject and metadata will be shared with your team."
msgstr "Субјекат и метаподаци ће бити подељени са вашим тимом."
#. js-lingui-id: DvSvG9
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessageForbidden.tsx
msgid "Subject not shared"
msgstr ""
#. js-lingui-id: J9ylmk
#: src/modules/settings/accounts/components/SettingsAccountsMessageVisibilityCard.tsx
msgid "Subject, body and attachments will be shared with your team."
@@ -4570,11 +4464,6 @@ msgstr "Субјекат, тело и додаци ће бити подељен
msgid "Submit"
msgstr ""
#. js-lingui-id: EDl9kS
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Subscribe"
msgstr ""
#. js-lingui-id: uvY7Wk
#: src/modules/billing/hooks/useEndSubscriptionTrialPeriod.ts
msgid "Subscription activated."
@@ -4905,7 +4794,6 @@ msgstr "Временска ознака и учесници ће бити под
#. js-lingui-id: ecUA8p
#: src/modules/settings/admin-panel/health-status/constants/WorkerQueueMetricsSelectOptions.ts
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Today"
msgstr "Данас"
@@ -4914,11 +4802,6 @@ msgstr "Данас"
msgid "Toggle all object permissions"
msgstr ""
#. js-lingui-id: BRMXj0
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Tomorrow"
msgstr ""
#. js-lingui-id: vb0Q0/
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
#~ msgid "Total Users"
@@ -4929,16 +4812,6 @@ msgstr ""
msgid "Track your monthly workflow credit consumption."
msgstr ""
#. js-lingui-id: wN0jHF
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Trial expired. Please contact your admin"
msgstr ""
#. js-lingui-id: y985qL
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Trial expired. Please update your billing details."
msgstr ""
#. js-lingui-id: PiUt3N
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
@@ -5005,12 +4878,6 @@ msgstr "Непозната грешка"
msgid "Unlimited contacts"
msgstr "Неограничени контакти"
#. js-lingui-id: EkH9pt
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Update"
msgstr ""
#. js-lingui-id: +b7T3G
#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx
msgid "Updated"
@@ -5203,21 +5070,6 @@ msgstr "Видљиве групе"
msgid "Visualize"
msgstr "Визуализуј"
#. js-lingui-id: zFSQY3
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was created by"
msgstr ""
#. js-lingui-id: uHpu1c
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was deleted by"
msgstr ""
#. js-lingui-id: S0enzB
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was restored by"
msgstr ""
#. js-lingui-id: id6ein
#: src/modules/ui/input/components/ImageInput.tsx
msgid "We support your square PNGs, JPEGs and GIFs under 10MB"
@@ -5365,11 +5217,6 @@ msgstr "Напишите тајну"
msgid "yes"
msgstr "да"
#. js-lingui-id: y/0uwd
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Yesterday"
msgstr ""
#. js-lingui-id: qsAug0
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
#~ msgid "You are already importing this column."
@@ -5430,16 +5277,6 @@ msgstr "Ваше име како ће бити приказано у аплик
msgid "Your Workspace"
msgstr "Ваш радни простор"
#. js-lingui-id: oC6WBs
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Your workspace doesn't have an active subscription."
msgstr ""
#. js-lingui-id: QBTEtW
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Your workspace doesn't have an active subscription. Please contact your admin."
msgstr ""
#. js-lingui-id: RhNbPE
#: src/pages/settings/SettingsBilling.tsx
msgid "Your workspace will be disabled"
+9 -172
View File
@@ -93,11 +93,6 @@ msgstr "{apiKeyName} API-nyckel"
msgid "{contextStoreNumberOfSelectedRecords} selected"
msgstr "{contextStoreNumberOfSelectedRecords} valda"
#. js-lingui-id: wapGcj
#: src/modules/auth/components/VerifyEmailEffect.tsx
msgid "{message}"
msgstr ""
#. js-lingui-id: 6j5rE1
#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowRecordAgnosticActions.tsx
#: src/modules/action-menu/actions/record-actions/run-workflow-actions/hooks/useRunWorkflowRecordActions.tsx
@@ -109,11 +104,6 @@ msgstr "{name}"
msgid "{workspaceMemberName} will be unassigned from the following role:"
msgstr "{workspaceMemberName} kommer att tas bort från följande roll:"
#. js-lingui-id: NNQszp
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "⚠️ Please verify the auto mapping of the columns. You can also ignore or change the mapping of the columns."
msgstr ""
#. js-lingui-id: YT0WJ4
#: src/pages/onboarding/ChooseYourPlan.tsx
#~ msgid "1 000 workflow node executions"
@@ -627,7 +617,7 @@ msgid "Are you sure you want to delete this record? It can be recovered from the
msgstr "Är du säker på att du vill ta bort denna post? Den kan återställas från kommandomenyn."
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Are you sure? Your current information will not be saved."
msgstr ""
@@ -808,7 +798,7 @@ msgstr "Kan inte ändra API-namn för standardobjekt"
#: 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/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
msgid "Cancel"
msgstr "Avbryt"
@@ -1257,11 +1247,6 @@ msgstr "Skapa din arbetsyta"
msgid "Created"
msgstr "Skapad"
#. js-lingui-id: R3PLzn
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
msgid "currencies"
msgstr ""
#. js-lingui-id: 6YzXhC
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
msgid "Current value from server environment. Set a custom value to override."
@@ -1498,11 +1483,6 @@ msgstr "Radera konto och all associerad data"
msgid "Delete API key"
msgstr "Ta bort API-nyckel"
#. js-lingui-id: x2p4/4
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
msgid "Delete field"
msgstr ""
#. js-lingui-id: 4dpwsE
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
#~ msgid "Delete record"
@@ -1736,7 +1716,6 @@ msgstr "Tidigaste datumet"
#: src/modules/views/view-picker/components/ViewPickerOptionDropdown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Edit"
msgstr "Redigera"
@@ -1819,8 +1798,8 @@ msgstr "E-postverifiering"
#. js-lingui-id: TBv/iZ
#: src/modules/auth/components/VerifyEmailEffect.tsx
#~ msgid "Email verification failed."
#~ msgstr "E-postverifiering misslyckades."
msgid "Email verification failed."
msgstr "E-postverifiering misslyckades."
#. js-lingui-id: svTijF
#: src/modules/auth/sign-in-up/hooks/useHandleResendEmailVerificationToken.ts
@@ -1968,11 +1947,6 @@ msgstr "Fel vid radering av SSO-identitetsleverantör"
msgid "Error editing SSO Identity Provider"
msgstr "Fel vid redigering av SSO-identitetsleverantör"
#. js-lingui-id: 2GvilU
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Error loading message"
msgstr ""
#. js-lingui-id: bj7nh3
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error regenerating api key: {err}"
@@ -2046,7 +2020,7 @@ msgid "Existing objects"
msgstr "Befintliga objekt"
#. js-lingui-id: ydzS9x
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit"
msgstr ""
@@ -2056,7 +2030,7 @@ msgstr ""
#~ msgstr "Avsluta helskärm"
#. js-lingui-id: XB4onr
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit import flow"
msgstr ""
@@ -2358,11 +2332,6 @@ msgstr "Global"
msgid "Go to Companies"
msgstr ""
#. js-lingui-id: dHvI9O
#: src/modules/workflow/components/OverrideWorkflowDraftConfirmationModal.tsx
msgid "Go to Draft"
msgstr ""
#. js-lingui-id: BQE4ob
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Go to Notes"
@@ -2386,9 +2355,7 @@ msgid "Go to runs"
msgstr "Gå till körningar"
#. js-lingui-id: mT57+Q
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Go to Settings"
msgstr "Gå till inställningar"
@@ -2471,7 +2438,6 @@ msgstr "Dolda fält"
#. js-lingui-id: vLyv1R
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Hide"
msgstr "Dölj"
@@ -2557,11 +2523,6 @@ msgstr "Identitetsleverantör"
msgid "Identity Provider Metadata XML"
msgstr "Metadata XML för identitetsleverantör"
#. js-lingui-id: ZfP/Ap
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
msgid "If this is unexpected, please verify your settings."
msgstr ""
#. js-lingui-id: j843N3
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "If youve lost this key, you can regenerate it, but be aware that any script using this key will need to be updated. Please type\"{confirmationValue}\" to confirm."
@@ -2788,11 +2749,6 @@ msgstr "Italienska"
msgid "Japanese"
msgstr "Japanska"
#. js-lingui-id: VIK/N0
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
msgid "JSON keys cannot contain spaces"
msgstr ""
#. js-lingui-id: OGXtL8
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -2862,16 +2818,6 @@ msgstr "Senaste 7 dagarna (äldst → nyast)"
msgid "Last Name"
msgstr "Efternamn"
#. js-lingui-id: s0kiVA
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
msgid "Last payment failed. Please contact your admin."
msgstr ""
#. js-lingui-id: 3u/3zO
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
msgid "Last payment failed. Please update your billing details."
msgstr ""
#. js-lingui-id: wL3cK8
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
msgid "Latest"
@@ -2924,11 +2870,6 @@ msgstr "L\\u00e4nk kopierad till urklipp"
msgid "Listings"
msgstr "Listningar"
#. js-lingui-id: Nx262D
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Loading csv ... "
msgstr ""
#. js-lingui-id: s1MstR
#: src/modules/settings/admin-panel/health-status/components/WorkerMetricsGraph.tsx
msgid "Loading metrics data..."
@@ -2936,7 +2877,6 @@ msgstr "Laddar metrikdata..."
#. js-lingui-id: Z3FXyt
#: src/modules/settings/admin-panel/components/SettingsAdminVersionDisplay.tsx
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Loading..."
msgstr ""
@@ -3032,11 +2972,6 @@ msgstr "Högsta"
msgid "Members"
msgstr "Medlemmar"
#. js-lingui-id: U15XwX
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Message not found"
msgstr ""
#. js-lingui-id: elpx6r
#: src/modules/settings/admin-panel/health-status/components/ConnectedAccountHealthStatus.tsx
msgid "Message Sync"
@@ -3090,13 +3025,11 @@ msgstr "Fler alternativ"
#. js-lingui-id: iSLA/r
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Move left"
msgstr "Flytta \\u00e5t v\\u00e4nster"
#. js-lingui-id: Ubl2by
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Move right"
msgstr "Flytta \\u00e5t h\\u00f6ger"
@@ -3284,11 +3217,6 @@ msgstr "Inget anslutet konto"
msgid "No country"
msgstr "Inget land"
#. js-lingui-id: 7tCnBa
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
msgid "No Data Available for Remote Table"
msgstr ""
#. js-lingui-id: pxvJ9B
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data containing errors"
@@ -3304,11 +3232,6 @@ msgstr ""
msgid "No free workflow executions left. End trial period and activate your billing to continue."
msgstr ""
#. js-lingui-id: pxYUeX
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
msgid "No free workflow executions left. Please contact your admin."
msgstr ""
#. js-lingui-id: OcMef3
#: src/modules/settings/admin-panel/components/SettingsAdminVersionContainer.tsx
msgid "No latest version found"
@@ -3387,7 +3310,6 @@ msgstr "Inga poster hittades"
#. js-lingui-id: Ev2r9A
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCountrySelect.tsx
msgid "No results"
msgstr ""
@@ -3460,16 +3382,6 @@ msgstr "Inte tom"
msgid "Not Found"
msgstr "Hittades inte"
#. js-lingui-id: 51G4/+
#: src/modules/activities/calendar/components/CalendarEventNotSharedContent.tsx
msgid "Not shared"
msgstr ""
#. js-lingui-id: uzFo/5
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessageBodyNotShared.tsx
msgid "Not shared by {notSharedByFullName}"
msgstr ""
#. js-lingui-id: hZWthZ
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Not synced"
@@ -3844,8 +3756,6 @@ msgstr "Spela in bild"
#. js-lingui-id: K6/7kH
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
msgid "Record label"
msgstr "Spela in etikett"
@@ -3940,11 +3850,6 @@ msgstr "Ta bort från favoriter"
msgid "Remove option"
msgstr "Ta bort alternativ"
#. js-lingui-id: Ee8JBW
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
msgid "Reorder field"
msgstr ""
#. js-lingui-id: OfhWJH
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/modules/views/components/ViewBarDetails.tsx
@@ -4116,22 +4021,16 @@ msgstr "Sök ett index..."
msgid "Search config variables"
msgstr ""
#. js-lingui-id: WLfEv1
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCountrySelect.tsx
msgid "Search country"
msgstr ""
#. js-lingui-id: sSARNY
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
msgid "Search currency"
msgstr ""
#. js-lingui-id: 7taA9j
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: 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/ObjectFilterDropdownFieldSelect.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterFieldSelectSearchInput.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterDropdownFieldSelectMenu.tsx
msgid "Search fields"
msgstr "Sök fält"
@@ -4281,8 +4180,8 @@ 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 ""
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
@@ -4555,11 +4454,6 @@ msgstr "Ämne och metadata"
msgid "Subject and metadata will be shared with your team."
msgstr "Ämne och metadata kommer att delas med ditt team."
#. js-lingui-id: DvSvG9
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessageForbidden.tsx
msgid "Subject not shared"
msgstr ""
#. js-lingui-id: J9ylmk
#: src/modules/settings/accounts/components/SettingsAccountsMessageVisibilityCard.tsx
msgid "Subject, body and attachments will be shared with your team."
@@ -4570,11 +4464,6 @@ msgstr "Ämne, kropp och bilagor kommer att delas med ditt team."
msgid "Submit"
msgstr ""
#. js-lingui-id: EDl9kS
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Subscribe"
msgstr ""
#. js-lingui-id: uvY7Wk
#: src/modules/billing/hooks/useEndSubscriptionTrialPeriod.ts
msgid "Subscription activated."
@@ -4905,7 +4794,6 @@ msgstr "Tidsstämpel och deltagare kommer att delas med ditt team."
#. js-lingui-id: ecUA8p
#: src/modules/settings/admin-panel/health-status/constants/WorkerQueueMetricsSelectOptions.ts
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Today"
msgstr "Idag"
@@ -4914,11 +4802,6 @@ msgstr "Idag"
msgid "Toggle all object permissions"
msgstr ""
#. js-lingui-id: BRMXj0
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Tomorrow"
msgstr ""
#. js-lingui-id: vb0Q0/
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
#~ msgid "Total Users"
@@ -4929,16 +4812,6 @@ msgstr ""
msgid "Track your monthly workflow credit consumption."
msgstr ""
#. js-lingui-id: wN0jHF
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Trial expired. Please contact your admin"
msgstr ""
#. js-lingui-id: y985qL
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Trial expired. Please update your billing details."
msgstr ""
#. js-lingui-id: PiUt3N
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
@@ -5005,12 +4878,6 @@ msgstr "Okänt fel"
msgid "Unlimited contacts"
msgstr "Obegränsat med kontakter"
#. js-lingui-id: EkH9pt
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Update"
msgstr ""
#. js-lingui-id: +b7T3G
#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx
msgid "Updated"
@@ -5203,21 +5070,6 @@ msgstr "Synliga grupper"
msgid "Visualize"
msgstr "Visualisera"
#. js-lingui-id: zFSQY3
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was created by"
msgstr ""
#. js-lingui-id: uHpu1c
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was deleted by"
msgstr ""
#. js-lingui-id: S0enzB
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was restored by"
msgstr ""
#. js-lingui-id: id6ein
#: src/modules/ui/input/components/ImageInput.tsx
msgid "We support your square PNGs, JPEGs and GIFs under 10MB"
@@ -5365,11 +5217,6 @@ msgstr "Skriv en hemlighet"
msgid "yes"
msgstr "ja"
#. js-lingui-id: y/0uwd
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Yesterday"
msgstr ""
#. js-lingui-id: qsAug0
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
#~ msgid "You are already importing this column."
@@ -5430,16 +5277,6 @@ msgstr "Ditt namn som det kommer att visas i appen"
msgid "Your Workspace"
msgstr "Din arbetsyta"
#. js-lingui-id: oC6WBs
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Your workspace doesn't have an active subscription."
msgstr ""
#. js-lingui-id: QBTEtW
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Your workspace doesn't have an active subscription. Please contact your admin."
msgstr ""
#. js-lingui-id: RhNbPE
#: src/pages/settings/SettingsBilling.tsx
msgid "Your workspace will be disabled"
+9 -172
View File
@@ -93,11 +93,6 @@ msgstr "{apiKeyName} API Anahtar"
msgid "{contextStoreNumberOfSelectedRecords} selected"
msgstr "{contextStoreNumberOfSelectedRecords} seçildi"
#. js-lingui-id: wapGcj
#: src/modules/auth/components/VerifyEmailEffect.tsx
msgid "{message}"
msgstr ""
#. js-lingui-id: 6j5rE1
#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowRecordAgnosticActions.tsx
#: src/modules/action-menu/actions/record-actions/run-workflow-actions/hooks/useRunWorkflowRecordActions.tsx
@@ -109,11 +104,6 @@ msgstr "{name}"
msgid "{workspaceMemberName} will be unassigned from the following role:"
msgstr "{workspaceMemberName} aşağıdaki rolden atılacak:"
#. js-lingui-id: NNQszp
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "⚠️ Please verify the auto mapping of the columns. You can also ignore or change the mapping of the columns."
msgstr ""
#. js-lingui-id: YT0WJ4
#: src/pages/onboarding/ChooseYourPlan.tsx
#~ msgid "1 000 workflow node executions"
@@ -627,7 +617,7 @@ msgid "Are you sure you want to delete this record? It can be recovered from the
msgstr "Bu kaydı silmek istediğinizden emin misiniz? Komut menüsünden kurtarılabilir."
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Are you sure? Your current information will not be saved."
msgstr ""
@@ -808,7 +798,7 @@ msgstr "Standart nesneler için API adları değiştirilemez"
#: 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/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
msgid "Cancel"
msgstr "İptal"
@@ -1257,11 +1247,6 @@ msgstr "Çalışma alanınızı oluşturun"
msgid "Created"
msgstr "Oluşturulan"
#. js-lingui-id: R3PLzn
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
msgid "currencies"
msgstr ""
#. js-lingui-id: 6YzXhC
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
msgid "Current value from server environment. Set a custom value to override."
@@ -1498,11 +1483,6 @@ msgstr "Hesabı ve tüm ilişkili verileri sil"
msgid "Delete API key"
msgstr "API anahtarını sil"
#. js-lingui-id: x2p4/4
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
msgid "Delete field"
msgstr ""
#. js-lingui-id: 4dpwsE
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
#~ msgid "Delete record"
@@ -1736,7 +1716,6 @@ msgstr "En erken tarih"
#: src/modules/views/view-picker/components/ViewPickerOptionDropdown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Edit"
msgstr "Düzenle"
@@ -1819,8 +1798,8 @@ msgstr "E-posta doğrulama"
#. js-lingui-id: TBv/iZ
#: src/modules/auth/components/VerifyEmailEffect.tsx
#~ msgid "Email verification failed."
#~ msgstr "E-posta doğrulama başarısız."
msgid "Email verification failed."
msgstr "E-posta doğrulama başarısız."
#. js-lingui-id: svTijF
#: src/modules/auth/sign-in-up/hooks/useHandleResendEmailVerificationToken.ts
@@ -1968,11 +1947,6 @@ msgstr "SSO Kimlik Sağlayıcısını silerken hata"
msgid "Error editing SSO Identity Provider"
msgstr "SSO Kimlik Sağlayıcısı düzenlenirken hata"
#. js-lingui-id: 2GvilU
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Error loading message"
msgstr ""
#. js-lingui-id: bj7nh3
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error regenerating api key: {err}"
@@ -2046,7 +2020,7 @@ msgid "Existing objects"
msgstr "Mevcut nesneler"
#. js-lingui-id: ydzS9x
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit"
msgstr ""
@@ -2056,7 +2030,7 @@ msgstr ""
#~ msgstr "Tam Ekrandan Çık"
#. js-lingui-id: XB4onr
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit import flow"
msgstr ""
@@ -2358,11 +2332,6 @@ msgstr "Küresel"
msgid "Go to Companies"
msgstr ""
#. js-lingui-id: dHvI9O
#: src/modules/workflow/components/OverrideWorkflowDraftConfirmationModal.tsx
msgid "Go to Draft"
msgstr ""
#. js-lingui-id: BQE4ob
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Go to Notes"
@@ -2386,9 +2355,7 @@ msgid "Go to runs"
msgstr "Çalışmalara git"
#. js-lingui-id: mT57+Q
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Go to Settings"
msgstr "Ayarlar'a Git"
@@ -2471,7 +2438,6 @@ msgstr "Gizli Alanlar"
#. js-lingui-id: vLyv1R
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Hide"
msgstr "Gizle"
@@ -2557,11 +2523,6 @@ msgstr "Kimlik Sağlayıcısı"
msgid "Identity Provider Metadata XML"
msgstr "Kimlik Sağlayıcı Metadata XML"
#. js-lingui-id: ZfP/Ap
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
msgid "If this is unexpected, please verify your settings."
msgstr ""
#. js-lingui-id: j843N3
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "If youve lost this key, you can regenerate it, but be aware that any script using this key will need to be updated. Please type\"{confirmationValue}\" to confirm."
@@ -2788,11 +2749,6 @@ msgstr "İtalyanca"
msgid "Japanese"
msgstr "Japonca"
#. js-lingui-id: VIK/N0
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
msgid "JSON keys cannot contain spaces"
msgstr ""
#. js-lingui-id: OGXtL8
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -2862,16 +2818,6 @@ msgstr "Son 7 Gün (eskiden → yeniye)"
msgid "Last Name"
msgstr "Soyadı"
#. js-lingui-id: s0kiVA
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
msgid "Last payment failed. Please contact your admin."
msgstr ""
#. js-lingui-id: 3u/3zO
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
msgid "Last payment failed. Please update your billing details."
msgstr ""
#. js-lingui-id: wL3cK8
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
msgid "Latest"
@@ -2924,11 +2870,6 @@ msgstr "Link panoya kopyalandı"
msgid "Listings"
msgstr "Listeler"
#. js-lingui-id: Nx262D
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Loading csv ... "
msgstr ""
#. js-lingui-id: s1MstR
#: src/modules/settings/admin-panel/health-status/components/WorkerMetricsGraph.tsx
msgid "Loading metrics data..."
@@ -2936,7 +2877,6 @@ msgstr "Metrik verileri yükleniyor..."
#. js-lingui-id: Z3FXyt
#: src/modules/settings/admin-panel/components/SettingsAdminVersionDisplay.tsx
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Loading..."
msgstr ""
@@ -3032,11 +2972,6 @@ msgstr "Maks"
msgid "Members"
msgstr "Üyeler"
#. js-lingui-id: U15XwX
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Message not found"
msgstr ""
#. js-lingui-id: elpx6r
#: src/modules/settings/admin-panel/health-status/components/ConnectedAccountHealthStatus.tsx
msgid "Message Sync"
@@ -3090,13 +3025,11 @@ msgstr "Daha fazla seçenek"
#. js-lingui-id: iSLA/r
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Move left"
msgstr "Sola taşı"
#. js-lingui-id: Ubl2by
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Move right"
msgstr "Sağa taşı"
@@ -3284,11 +3217,6 @@ msgstr "Bağlı hesap yok"
msgid "No country"
msgstr "Ülke yok"
#. js-lingui-id: 7tCnBa
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
msgid "No Data Available for Remote Table"
msgstr ""
#. js-lingui-id: pxvJ9B
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data containing errors"
@@ -3304,11 +3232,6 @@ msgstr ""
msgid "No free workflow executions left. End trial period and activate your billing to continue."
msgstr ""
#. js-lingui-id: pxYUeX
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
msgid "No free workflow executions left. Please contact your admin."
msgstr ""
#. js-lingui-id: OcMef3
#: src/modules/settings/admin-panel/components/SettingsAdminVersionContainer.tsx
msgid "No latest version found"
@@ -3387,7 +3310,6 @@ msgstr "Kayıt bulunamadı"
#. js-lingui-id: Ev2r9A
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCountrySelect.tsx
msgid "No results"
msgstr ""
@@ -3460,16 +3382,6 @@ msgstr "Boş değil"
msgid "Not Found"
msgstr "Bulunamadı"
#. js-lingui-id: 51G4/+
#: src/modules/activities/calendar/components/CalendarEventNotSharedContent.tsx
msgid "Not shared"
msgstr ""
#. js-lingui-id: uzFo/5
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessageBodyNotShared.tsx
msgid "Not shared by {notSharedByFullName}"
msgstr ""
#. js-lingui-id: hZWthZ
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Not synced"
@@ -3844,8 +3756,6 @@ msgstr "Kayıt görüntüsü"
#. js-lingui-id: K6/7kH
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
msgid "Record label"
msgstr "Kayıt etiketi"
@@ -3940,11 +3850,6 @@ msgstr "Favorilerden çıkar"
msgid "Remove option"
msgstr "Seçeneği kaldır"
#. js-lingui-id: Ee8JBW
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
msgid "Reorder field"
msgstr ""
#. js-lingui-id: OfhWJH
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/modules/views/components/ViewBarDetails.tsx
@@ -4116,22 +4021,16 @@ msgstr "Bir indeks ara..."
msgid "Search config variables"
msgstr ""
#. js-lingui-id: WLfEv1
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCountrySelect.tsx
msgid "Search country"
msgstr ""
#. js-lingui-id: sSARNY
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
msgid "Search currency"
msgstr ""
#. js-lingui-id: 7taA9j
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: 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/ObjectFilterDropdownFieldSelect.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterFieldSelectSearchInput.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterDropdownFieldSelectMenu.tsx
msgid "Search fields"
msgstr "Alan ara"
@@ -4281,8 +4180,8 @@ 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 ""
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
@@ -4555,11 +4454,6 @@ msgstr "Konu ve meta veri"
msgid "Subject and metadata will be shared with your team."
msgstr "Konu ve meta veri ekibinizle paylaşılacak."
#. js-lingui-id: DvSvG9
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessageForbidden.tsx
msgid "Subject not shared"
msgstr ""
#. js-lingui-id: J9ylmk
#: src/modules/settings/accounts/components/SettingsAccountsMessageVisibilityCard.tsx
msgid "Subject, body and attachments will be shared with your team."
@@ -4570,11 +4464,6 @@ msgstr "Konu, gövde ve ekler ekibinizle paylaşılacak."
msgid "Submit"
msgstr ""
#. js-lingui-id: EDl9kS
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Subscribe"
msgstr ""
#. js-lingui-id: uvY7Wk
#: src/modules/billing/hooks/useEndSubscriptionTrialPeriod.ts
msgid "Subscription activated."
@@ -4905,7 +4794,6 @@ msgstr "Zaman damgası ve katılımcılar ekibinizle paylaşılacak."
#. js-lingui-id: ecUA8p
#: src/modules/settings/admin-panel/health-status/constants/WorkerQueueMetricsSelectOptions.ts
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Today"
msgstr "Bugün"
@@ -4914,11 +4802,6 @@ msgstr "Bugün"
msgid "Toggle all object permissions"
msgstr ""
#. js-lingui-id: BRMXj0
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Tomorrow"
msgstr ""
#. js-lingui-id: vb0Q0/
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
#~ msgid "Total Users"
@@ -4929,16 +4812,6 @@ msgstr ""
msgid "Track your monthly workflow credit consumption."
msgstr ""
#. js-lingui-id: wN0jHF
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Trial expired. Please contact your admin"
msgstr ""
#. js-lingui-id: y985qL
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Trial expired. Please update your billing details."
msgstr ""
#. js-lingui-id: PiUt3N
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
@@ -5005,12 +4878,6 @@ msgstr "Bilinmeyen hata"
msgid "Unlimited contacts"
msgstr "Sınırsız kişilerle iletişim"
#. js-lingui-id: EkH9pt
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Update"
msgstr ""
#. js-lingui-id: +b7T3G
#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx
msgid "Updated"
@@ -5203,21 +5070,6 @@ msgstr "Görünür gruplar"
msgid "Visualize"
msgstr "Görselleştirme"
#. js-lingui-id: zFSQY3
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was created by"
msgstr ""
#. js-lingui-id: uHpu1c
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was deleted by"
msgstr ""
#. js-lingui-id: S0enzB
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was restored by"
msgstr ""
#. js-lingui-id: id6ein
#: src/modules/ui/input/components/ImageInput.tsx
msgid "We support your square PNGs, JPEGs and GIFs under 10MB"
@@ -5365,11 +5217,6 @@ msgstr "Gizli Yazı"
msgid "yes"
msgstr "evet"
#. js-lingui-id: y/0uwd
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Yesterday"
msgstr ""
#. js-lingui-id: qsAug0
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
#~ msgid "You are already importing this column."
@@ -5430,16 +5277,6 @@ msgstr "Uygulamada görüntülenecek adınız"
msgid "Your Workspace"
msgstr "Çalışma Alanınız"
#. js-lingui-id: oC6WBs
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Your workspace doesn't have an active subscription."
msgstr ""
#. js-lingui-id: QBTEtW
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Your workspace doesn't have an active subscription. Please contact your admin."
msgstr ""
#. js-lingui-id: RhNbPE
#: src/pages/settings/SettingsBilling.tsx
msgid "Your workspace will be disabled"
+9 -172
View File
@@ -93,11 +93,6 @@ msgstr "API-ключ {apiKeyName}"
msgid "{contextStoreNumberOfSelectedRecords} selected"
msgstr "{contextStoreNumberOfSelectedRecords} вибрано"
#. js-lingui-id: wapGcj
#: src/modules/auth/components/VerifyEmailEffect.tsx
msgid "{message}"
msgstr ""
#. js-lingui-id: 6j5rE1
#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowRecordAgnosticActions.tsx
#: src/modules/action-menu/actions/record-actions/run-workflow-actions/hooks/useRunWorkflowRecordActions.tsx
@@ -109,11 +104,6 @@ msgstr "{name}"
msgid "{workspaceMemberName} will be unassigned from the following role:"
msgstr "{workspaceMemberName} буде позбавлений наступної ролі:"
#. js-lingui-id: NNQszp
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "⚠️ Please verify the auto mapping of the columns. You can also ignore or change the mapping of the columns."
msgstr ""
#. js-lingui-id: YT0WJ4
#: src/pages/onboarding/ChooseYourPlan.tsx
#~ msgid "1 000 workflow node executions"
@@ -627,7 +617,7 @@ msgid "Are you sure you want to delete this record? It can be recovered from the
msgstr "Ви впевнені, що хочете видалити цей запис? Його можна відновити з меню Command."
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Are you sure? Your current information will not be saved."
msgstr ""
@@ -808,7 +798,7 @@ msgstr "Неможливо змінити API імена для стандарт
#: 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/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
msgid "Cancel"
msgstr "Скасувати"
@@ -1257,11 +1247,6 @@ msgstr "Створіть свій робочий простір"
msgid "Created"
msgstr "Створено"
#. js-lingui-id: R3PLzn
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
msgid "currencies"
msgstr ""
#. js-lingui-id: 6YzXhC
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
msgid "Current value from server environment. Set a custom value to override."
@@ -1498,11 +1483,6 @@ msgstr "Видалити обліковий запис та всі пов'яза
msgid "Delete API key"
msgstr "Видалити ключ API"
#. js-lingui-id: x2p4/4
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
msgid "Delete field"
msgstr ""
#. js-lingui-id: 4dpwsE
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
#~ msgid "Delete record"
@@ -1736,7 +1716,6 @@ msgstr "Найраніша дата"
#: src/modules/views/view-picker/components/ViewPickerOptionDropdown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Edit"
msgstr "Редагувати"
@@ -1819,8 +1798,8 @@ msgstr "Підтвердження електронної пошти"
#. js-lingui-id: TBv/iZ
#: src/modules/auth/components/VerifyEmailEffect.tsx
#~ msgid "Email verification failed."
#~ msgstr "Верифікація електронної пошти не вдалася."
msgid "Email verification failed."
msgstr "Верифікація електронної пошти не вдалася."
#. js-lingui-id: svTijF
#: src/modules/auth/sign-in-up/hooks/useHandleResendEmailVerificationToken.ts
@@ -1968,11 +1947,6 @@ msgstr "Помилка видалення провайдера єдиної си
msgid "Error editing SSO Identity Provider"
msgstr "Помилка редагування провайдера єдиної системи входу"
#. js-lingui-id: 2GvilU
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Error loading message"
msgstr ""
#. js-lingui-id: bj7nh3
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error regenerating api key: {err}"
@@ -2046,7 +2020,7 @@ msgid "Existing objects"
msgstr "Існуючі об'єкти"
#. js-lingui-id: ydzS9x
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit"
msgstr ""
@@ -2056,7 +2030,7 @@ msgstr ""
#~ msgstr "Вийти з повноекранного режиму"
#. js-lingui-id: XB4onr
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit import flow"
msgstr ""
@@ -2358,11 +2332,6 @@ msgstr "Глобальні"
msgid "Go to Companies"
msgstr ""
#. js-lingui-id: dHvI9O
#: src/modules/workflow/components/OverrideWorkflowDraftConfirmationModal.tsx
msgid "Go to Draft"
msgstr ""
#. js-lingui-id: BQE4ob
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Go to Notes"
@@ -2386,9 +2355,7 @@ msgid "Go to runs"
msgstr "Перейти до запусків"
#. js-lingui-id: mT57+Q
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Go to Settings"
msgstr "Перейти до налаштувань"
@@ -2471,7 +2438,6 @@ msgstr "Приховані поля"
#. js-lingui-id: vLyv1R
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Hide"
msgstr "Сховати"
@@ -2557,11 +2523,6 @@ msgstr "Постачальник ідентифікації"
msgid "Identity Provider Metadata XML"
msgstr "XML метадані постачальника ідентифікації"
#. js-lingui-id: ZfP/Ap
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
msgid "If this is unexpected, please verify your settings."
msgstr ""
#. js-lingui-id: j843N3
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "If youve lost this key, you can regenerate it, but be aware that any script using this key will need to be updated. Please type\"{confirmationValue}\" to confirm."
@@ -2788,11 +2749,6 @@ msgstr "Італійська"
msgid "Japanese"
msgstr "Японська"
#. js-lingui-id: VIK/N0
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
msgid "JSON keys cannot contain spaces"
msgstr ""
#. js-lingui-id: OGXtL8
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -2862,16 +2818,6 @@ msgstr "Останні 7 днів (найстаріший → найновіши
msgid "Last Name"
msgstr "Прізвище"
#. js-lingui-id: s0kiVA
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
msgid "Last payment failed. Please contact your admin."
msgstr ""
#. js-lingui-id: 3u/3zO
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
msgid "Last payment failed. Please update your billing details."
msgstr ""
#. js-lingui-id: wL3cK8
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
msgid "Latest"
@@ -2924,11 +2870,6 @@ msgstr "Посилання скопійовано в буфер обміну"
msgid "Listings"
msgstr "Списки"
#. js-lingui-id: Nx262D
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Loading csv ... "
msgstr ""
#. js-lingui-id: s1MstR
#: src/modules/settings/admin-panel/health-status/components/WorkerMetricsGraph.tsx
msgid "Loading metrics data..."
@@ -2936,7 +2877,6 @@ msgstr "Завантаження даних метрик..."
#. js-lingui-id: Z3FXyt
#: src/modules/settings/admin-panel/components/SettingsAdminVersionDisplay.tsx
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Loading..."
msgstr ""
@@ -3032,11 +2972,6 @@ msgstr "Максимум"
msgid "Members"
msgstr "Члени"
#. js-lingui-id: U15XwX
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Message not found"
msgstr ""
#. js-lingui-id: elpx6r
#: src/modules/settings/admin-panel/health-status/components/ConnectedAccountHealthStatus.tsx
msgid "Message Sync"
@@ -3090,13 +3025,11 @@ msgstr "Більше опцій"
#. js-lingui-id: iSLA/r
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Move left"
msgstr "Перемістити вліво"
#. js-lingui-id: Ubl2by
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Move right"
msgstr "Перемістити вправо"
@@ -3284,11 +3217,6 @@ msgstr "Немає підключеного акаунту"
msgid "No country"
msgstr "Немає країни"
#. js-lingui-id: 7tCnBa
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
msgid "No Data Available for Remote Table"
msgstr ""
#. js-lingui-id: pxvJ9B
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data containing errors"
@@ -3304,11 +3232,6 @@ msgstr ""
msgid "No free workflow executions left. End trial period and activate your billing to continue."
msgstr ""
#. js-lingui-id: pxYUeX
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
msgid "No free workflow executions left. Please contact your admin."
msgstr ""
#. js-lingui-id: OcMef3
#: src/modules/settings/admin-panel/components/SettingsAdminVersionContainer.tsx
msgid "No latest version found"
@@ -3387,7 +3310,6 @@ msgstr "Записів не знайдено"
#. js-lingui-id: Ev2r9A
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCountrySelect.tsx
msgid "No results"
msgstr ""
@@ -3460,16 +3382,6 @@ msgstr "Не пустий"
msgid "Not Found"
msgstr "Не знайдено"
#. js-lingui-id: 51G4/+
#: src/modules/activities/calendar/components/CalendarEventNotSharedContent.tsx
msgid "Not shared"
msgstr ""
#. js-lingui-id: uzFo/5
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessageBodyNotShared.tsx
msgid "Not shared by {notSharedByFullName}"
msgstr ""
#. js-lingui-id: hZWthZ
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Not synced"
@@ -3844,8 +3756,6 @@ msgstr "Зображення запису"
#. js-lingui-id: K6/7kH
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
msgid "Record label"
msgstr "Мітка запису"
@@ -3940,11 +3850,6 @@ msgstr "Вилучити з обраного"
msgid "Remove option"
msgstr "Видалити опцію"
#. js-lingui-id: Ee8JBW
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
msgid "Reorder field"
msgstr ""
#. js-lingui-id: OfhWJH
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/modules/views/components/ViewBarDetails.tsx
@@ -4116,22 +4021,16 @@ msgstr "Пошук індексу..."
msgid "Search config variables"
msgstr ""
#. js-lingui-id: WLfEv1
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCountrySelect.tsx
msgid "Search country"
msgstr ""
#. js-lingui-id: sSARNY
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
msgid "Search currency"
msgstr ""
#. js-lingui-id: 7taA9j
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: 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/ObjectFilterDropdownFieldSelect.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterFieldSelectSearchInput.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterDropdownFieldSelectMenu.tsx
msgid "Search fields"
msgstr "Пошук полів"
@@ -4281,8 +4180,8 @@ 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 ""
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
@@ -4555,11 +4454,6 @@ msgstr "Тема та метадані"
msgid "Subject and metadata will be shared with your team."
msgstr "Тема та метадані будуть поділені з вашою командою."
#. js-lingui-id: DvSvG9
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessageForbidden.tsx
msgid "Subject not shared"
msgstr ""
#. js-lingui-id: J9ylmk
#: src/modules/settings/accounts/components/SettingsAccountsMessageVisibilityCard.tsx
msgid "Subject, body and attachments will be shared with your team."
@@ -4570,11 +4464,6 @@ msgstr "Тема, тіло та вкладення будуть поділені
msgid "Submit"
msgstr ""
#. js-lingui-id: EDl9kS
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Subscribe"
msgstr ""
#. js-lingui-id: uvY7Wk
#: src/modules/billing/hooks/useEndSubscriptionTrialPeriod.ts
msgid "Subscription activated."
@@ -4905,7 +4794,6 @@ msgstr "Відмітка часу та учасники будуть поділ
#. js-lingui-id: ecUA8p
#: src/modules/settings/admin-panel/health-status/constants/WorkerQueueMetricsSelectOptions.ts
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Today"
msgstr "Сьогодні"
@@ -4914,11 +4802,6 @@ msgstr "Сьогодні"
msgid "Toggle all object permissions"
msgstr ""
#. js-lingui-id: BRMXj0
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Tomorrow"
msgstr ""
#. js-lingui-id: vb0Q0/
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
#~ msgid "Total Users"
@@ -4929,16 +4812,6 @@ msgstr ""
msgid "Track your monthly workflow credit consumption."
msgstr ""
#. js-lingui-id: wN0jHF
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Trial expired. Please contact your admin"
msgstr ""
#. js-lingui-id: y985qL
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Trial expired. Please update your billing details."
msgstr ""
#. js-lingui-id: PiUt3N
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
@@ -5005,12 +4878,6 @@ msgstr "Невідома помилка"
msgid "Unlimited contacts"
msgstr "Необмежена кількість контактів"
#. js-lingui-id: EkH9pt
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Update"
msgstr ""
#. js-lingui-id: +b7T3G
#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx
msgid "Updated"
@@ -5203,21 +5070,6 @@ msgstr "Видимі групи"
msgid "Visualize"
msgstr "Візуалізувати"
#. js-lingui-id: zFSQY3
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was created by"
msgstr ""
#. js-lingui-id: uHpu1c
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was deleted by"
msgstr ""
#. js-lingui-id: S0enzB
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was restored by"
msgstr ""
#. js-lingui-id: id6ein
#: src/modules/ui/input/components/ImageInput.tsx
msgid "We support your square PNGs, JPEGs and GIFs under 10MB"
@@ -5365,11 +5217,6 @@ msgstr "Написати секрет"
msgid "yes"
msgstr "так"
#. js-lingui-id: y/0uwd
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Yesterday"
msgstr ""
#. js-lingui-id: qsAug0
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
#~ msgid "You are already importing this column."
@@ -5430,16 +5277,6 @@ msgstr "Ваше ім'я, як воно буде відображатися в
msgid "Your Workspace"
msgstr "Ваш робочий простір"
#. js-lingui-id: oC6WBs
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Your workspace doesn't have an active subscription."
msgstr ""
#. js-lingui-id: QBTEtW
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Your workspace doesn't have an active subscription. Please contact your admin."
msgstr ""
#. js-lingui-id: RhNbPE
#: src/pages/settings/SettingsBilling.tsx
msgid "Your workspace will be disabled"
+9 -172
View File
@@ -93,11 +93,6 @@ msgstr "Khóa API {apiKeyName}"
msgid "{contextStoreNumberOfSelectedRecords} selected"
msgstr "{contextStoreNumberOfSelectedRecords} được chọn"
#. js-lingui-id: wapGcj
#: src/modules/auth/components/VerifyEmailEffect.tsx
msgid "{message}"
msgstr ""
#. js-lingui-id: 6j5rE1
#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowRecordAgnosticActions.tsx
#: src/modules/action-menu/actions/record-actions/run-workflow-actions/hooks/useRunWorkflowRecordActions.tsx
@@ -109,11 +104,6 @@ msgstr "{name}"
msgid "{workspaceMemberName} will be unassigned from the following role:"
msgstr "{workspaceMemberName} sẽ không còn được phân công vào vai trò sau:"
#. js-lingui-id: NNQszp
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "⚠️ Please verify the auto mapping of the columns. You can also ignore or change the mapping of the columns."
msgstr ""
#. js-lingui-id: YT0WJ4
#: src/pages/onboarding/ChooseYourPlan.tsx
#~ msgid "1 000 workflow node executions"
@@ -627,7 +617,7 @@ msgid "Are you sure you want to delete this record? It can be recovered from the
msgstr "Bạn có chắc chắn muốn xóa bản ghi này không? Nó có thể được phục hồi từ menu Command."
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Are you sure? Your current information will not be saved."
msgstr ""
@@ -808,7 +798,7 @@ msgstr "Không thể thay đổi tên API cho các đối tượng tiêu chuẩn
#: 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/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
msgid "Cancel"
msgstr "Hủy bỏ"
@@ -1257,11 +1247,6 @@ msgstr "Tạo không gian làm việc của bạn"
msgid "Created"
msgstr "Đã tạo"
#. js-lingui-id: R3PLzn
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
msgid "currencies"
msgstr ""
#. js-lingui-id: 6YzXhC
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
msgid "Current value from server environment. Set a custom value to override."
@@ -1498,11 +1483,6 @@ msgstr "Xóa tài khoản và tất cả dữ liệu liên quan"
msgid "Delete API key"
msgstr "Xóa khóa API"
#. js-lingui-id: x2p4/4
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
msgid "Delete field"
msgstr ""
#. js-lingui-id: 4dpwsE
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
#~ msgid "Delete record"
@@ -1736,7 +1716,6 @@ msgstr "Ngày sớm nhất"
#: src/modules/views/view-picker/components/ViewPickerOptionDropdown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Edit"
msgstr "Chỉnh sửa"
@@ -1819,8 +1798,8 @@ msgstr "Xác minh email"
#. js-lingui-id: TBv/iZ
#: src/modules/auth/components/VerifyEmailEffect.tsx
#~ msgid "Email verification failed."
#~ msgstr "Xác minh email thất bại."
msgid "Email verification failed."
msgstr "Xác minh email thất bại."
#. js-lingui-id: svTijF
#: src/modules/auth/sign-in-up/hooks/useHandleResendEmailVerificationToken.ts
@@ -1968,11 +1947,6 @@ msgstr "Lỗi khi xóa Nhà Cung Cấp Định Danh SSO"
msgid "Error editing SSO Identity Provider"
msgstr "Lỗi khi chỉnh sửa Nhà Cung Cấp Định Danh SSO"
#. js-lingui-id: 2GvilU
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Error loading message"
msgstr ""
#. js-lingui-id: bj7nh3
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error regenerating api key: {err}"
@@ -2046,7 +2020,7 @@ msgid "Existing objects"
msgstr "\"Đối tượng hiện hữu\""
#. js-lingui-id: ydzS9x
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit"
msgstr ""
@@ -2056,7 +2030,7 @@ msgstr ""
#~ msgstr "Thoát chế độ toàn màn hình"
#. js-lingui-id: XB4onr
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit import flow"
msgstr ""
@@ -2358,11 +2332,6 @@ msgstr "\\"
msgid "Go to Companies"
msgstr ""
#. js-lingui-id: dHvI9O
#: src/modules/workflow/components/OverrideWorkflowDraftConfirmationModal.tsx
msgid "Go to Draft"
msgstr ""
#. js-lingui-id: BQE4ob
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Go to Notes"
@@ -2386,9 +2355,7 @@ msgid "Go to runs"
msgstr "Đi đến các lần chạy"
#. js-lingui-id: mT57+Q
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Go to Settings"
msgstr "Đi tới cài đặt"
@@ -2471,7 +2438,6 @@ msgstr "Trường ẩn"
#. js-lingui-id: vLyv1R
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Hide"
msgstr "\\"
@@ -2557,11 +2523,6 @@ msgstr "Nhà Cung Cấp Định Danh"
msgid "Identity Provider Metadata XML"
msgstr "XML Metadata Nhà Cung Cấp Định Danh"
#. js-lingui-id: ZfP/Ap
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
msgid "If this is unexpected, please verify your settings."
msgstr ""
#. js-lingui-id: j843N3
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "If youve lost this key, you can regenerate it, but be aware that any script using this key will need to be updated. Please type\"{confirmationValue}\" to confirm."
@@ -2788,11 +2749,6 @@ msgstr "Tiếng Ý"
msgid "Japanese"
msgstr "Tiếng Nhật"
#. js-lingui-id: VIK/N0
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
msgid "JSON keys cannot contain spaces"
msgstr ""
#. js-lingui-id: OGXtL8
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -2862,16 +2818,6 @@ msgstr "7 Ngày Qua (cũ nhất → mới nhất)"
msgid "Last Name"
msgstr "Tên"
#. js-lingui-id: s0kiVA
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
msgid "Last payment failed. Please contact your admin."
msgstr ""
#. js-lingui-id: 3u/3zO
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
msgid "Last payment failed. Please update your billing details."
msgstr ""
#. js-lingui-id: wL3cK8
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
msgid "Latest"
@@ -2924,11 +2870,6 @@ msgstr "Đã sao chép đường dẫn vào bảng tạm"
msgid "Listings"
msgstr "Danh sách"
#. js-lingui-id: Nx262D
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Loading csv ... "
msgstr ""
#. js-lingui-id: s1MstR
#: src/modules/settings/admin-panel/health-status/components/WorkerMetricsGraph.tsx
msgid "Loading metrics data..."
@@ -2936,7 +2877,6 @@ msgstr "Đang tải dữ liệu chỉ số..."
#. js-lingui-id: Z3FXyt
#: src/modules/settings/admin-panel/components/SettingsAdminVersionDisplay.tsx
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Loading..."
msgstr ""
@@ -3032,11 +2972,6 @@ msgstr "Tối đa"
msgid "Members"
msgstr "Thành viên"
#. js-lingui-id: U15XwX
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Message not found"
msgstr ""
#. js-lingui-id: elpx6r
#: src/modules/settings/admin-panel/health-status/components/ConnectedAccountHealthStatus.tsx
msgid "Message Sync"
@@ -3090,13 +3025,11 @@ msgstr "Thêm lựa chọn"
#. js-lingui-id: iSLA/r
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Move left"
msgstr "Di chuyển sang trái"
#. js-lingui-id: Ubl2by
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Move right"
msgstr "Di chuyển sang phải"
@@ -3284,11 +3217,6 @@ msgstr "Không có tài khoản kết nối"
msgid "No country"
msgstr "Không có quốc gia"
#. js-lingui-id: 7tCnBa
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
msgid "No Data Available for Remote Table"
msgstr ""
#. js-lingui-id: pxvJ9B
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data containing errors"
@@ -3304,11 +3232,6 @@ msgstr ""
msgid "No free workflow executions left. End trial period and activate your billing to continue."
msgstr ""
#. js-lingui-id: pxYUeX
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
msgid "No free workflow executions left. Please contact your admin."
msgstr ""
#. js-lingui-id: OcMef3
#: src/modules/settings/admin-panel/components/SettingsAdminVersionContainer.tsx
msgid "No latest version found"
@@ -3387,7 +3310,6 @@ msgstr "Không tìm thấy bản ghi"
#. js-lingui-id: Ev2r9A
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCountrySelect.tsx
msgid "No results"
msgstr ""
@@ -3460,16 +3382,6 @@ msgstr "Không trống"
msgid "Not Found"
msgstr "Không tìm thấy"
#. js-lingui-id: 51G4/+
#: src/modules/activities/calendar/components/CalendarEventNotSharedContent.tsx
msgid "Not shared"
msgstr ""
#. js-lingui-id: uzFo/5
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessageBodyNotShared.tsx
msgid "Not shared by {notSharedByFullName}"
msgstr ""
#. js-lingui-id: hZWthZ
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Not synced"
@@ -3844,8 +3756,6 @@ msgstr "Ảnh hồ sơ"
#. js-lingui-id: K6/7kH
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
msgid "Record label"
msgstr "Nhãn hồ sơ"
@@ -3940,11 +3850,6 @@ msgstr "Loại bỏ khỏi mục yêu thích"
msgid "Remove option"
msgstr "Xóa tùy chọn"
#. js-lingui-id: Ee8JBW
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
msgid "Reorder field"
msgstr ""
#. js-lingui-id: OfhWJH
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/modules/views/components/ViewBarDetails.tsx
@@ -4116,22 +4021,16 @@ msgstr "Tìm một chỉ mục..."
msgid "Search config variables"
msgstr ""
#. js-lingui-id: WLfEv1
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCountrySelect.tsx
msgid "Search country"
msgstr ""
#. js-lingui-id: sSARNY
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
msgid "Search currency"
msgstr ""
#. js-lingui-id: 7taA9j
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: 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/ObjectFilterDropdownFieldSelect.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterFieldSelectSearchInput.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterDropdownFieldSelectMenu.tsx
msgid "Search fields"
msgstr "Tìm kiếm các trường"
@@ -4281,8 +4180,8 @@ 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 ""
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
@@ -4555,11 +4454,6 @@ msgstr "Chủ đề và siêu dữ liệu"
msgid "Subject and metadata will be shared with your team."
msgstr "Chủ đề và siêu dữ liệu sẽ được chia sẻ với nhóm của bạn."
#. js-lingui-id: DvSvG9
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessageForbidden.tsx
msgid "Subject not shared"
msgstr ""
#. js-lingui-id: J9ylmk
#: src/modules/settings/accounts/components/SettingsAccountsMessageVisibilityCard.tsx
msgid "Subject, body and attachments will be shared with your team."
@@ -4570,11 +4464,6 @@ msgstr "Chủ đề, nội dung và tệp đính kèm sẽ được chia sẻ v
msgid "Submit"
msgstr ""
#. js-lingui-id: EDl9kS
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Subscribe"
msgstr ""
#. js-lingui-id: uvY7Wk
#: src/modules/billing/hooks/useEndSubscriptionTrialPeriod.ts
msgid "Subscription activated."
@@ -4905,7 +4794,6 @@ msgstr "Dấu thời gian và người tham gia sẽ được chia sẻ với nh
#. js-lingui-id: ecUA8p
#: src/modules/settings/admin-panel/health-status/constants/WorkerQueueMetricsSelectOptions.ts
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Today"
msgstr "Hôm nay"
@@ -4914,11 +4802,6 @@ msgstr "Hôm nay"
msgid "Toggle all object permissions"
msgstr ""
#. js-lingui-id: BRMXj0
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Tomorrow"
msgstr ""
#. js-lingui-id: vb0Q0/
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
#~ msgid "Total Users"
@@ -4929,16 +4812,6 @@ msgstr ""
msgid "Track your monthly workflow credit consumption."
msgstr ""
#. js-lingui-id: wN0jHF
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Trial expired. Please contact your admin"
msgstr ""
#. js-lingui-id: y985qL
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Trial expired. Please update your billing details."
msgstr ""
#. js-lingui-id: PiUt3N
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
@@ -5005,12 +4878,6 @@ msgstr "Lỗi không xác định"
msgid "Unlimited contacts"
msgstr "Liên hệ không giới hạn"
#. js-lingui-id: EkH9pt
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Update"
msgstr ""
#. js-lingui-id: +b7T3G
#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx
msgid "Updated"
@@ -5203,21 +5070,6 @@ msgstr "Nhóm hiển thị"
msgid "Visualize"
msgstr "Trực quan hóa"
#. js-lingui-id: zFSQY3
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was created by"
msgstr ""
#. js-lingui-id: uHpu1c
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was deleted by"
msgstr ""
#. js-lingui-id: S0enzB
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was restored by"
msgstr ""
#. js-lingui-id: id6ein
#: src/modules/ui/input/components/ImageInput.tsx
msgid "We support your square PNGs, JPEGs and GIFs under 10MB"
@@ -5365,11 +5217,6 @@ msgstr "Viết một bí mật"
msgid "yes"
msgstr "có"
#. js-lingui-id: y/0uwd
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Yesterday"
msgstr ""
#. js-lingui-id: qsAug0
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
#~ msgid "You are already importing this column."
@@ -5430,16 +5277,6 @@ msgstr "Tên của bạn sẽ được hiển thị như thế nào trên ứng
msgid "Your Workspace"
msgstr "Không gian làm việc của bạn"
#. js-lingui-id: oC6WBs
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Your workspace doesn't have an active subscription."
msgstr ""
#. js-lingui-id: QBTEtW
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Your workspace doesn't have an active subscription. Please contact your admin."
msgstr ""
#. js-lingui-id: RhNbPE
#: src/pages/settings/SettingsBilling.tsx
msgid "Your workspace will be disabled"
+9 -172
View File
@@ -93,11 +93,6 @@ msgstr "{apiKeyName} API 密钥"
msgid "{contextStoreNumberOfSelectedRecords} selected"
msgstr "{contextStoreNumberOfSelectedRecords} 已选择"
#. js-lingui-id: wapGcj
#: src/modules/auth/components/VerifyEmailEffect.tsx
msgid "{message}"
msgstr ""
#. js-lingui-id: 6j5rE1
#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowRecordAgnosticActions.tsx
#: src/modules/action-menu/actions/record-actions/run-workflow-actions/hooks/useRunWorkflowRecordActions.tsx
@@ -109,11 +104,6 @@ msgstr "{name}"
msgid "{workspaceMemberName} will be unassigned from the following role:"
msgstr "{workspaceMemberName}将不再被分配以下角色:"
#. js-lingui-id: NNQszp
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "⚠️ Please verify the auto mapping of the columns. You can also ignore or change the mapping of the columns."
msgstr ""
#. js-lingui-id: YT0WJ4
#: src/pages/onboarding/ChooseYourPlan.tsx
#~ msgid "1 000 workflow node executions"
@@ -627,7 +617,7 @@ msgid "Are you sure you want to delete this record? It can be recovered from the
msgstr "您确定要删除此记录吗?它可以从命令菜单中恢复。"
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Are you sure? Your current information will not be saved."
msgstr ""
@@ -808,7 +798,7 @@ msgstr "无法更改标准对象的 API 名称"
#: 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/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
msgid "Cancel"
msgstr "取消"
@@ -1257,11 +1247,6 @@ msgstr "创建您的工作区"
msgid "Created"
msgstr "已创建"
#. js-lingui-id: R3PLzn
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
msgid "currencies"
msgstr ""
#. js-lingui-id: 6YzXhC
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
msgid "Current value from server environment. Set a custom value to override."
@@ -1498,11 +1483,6 @@ msgstr "删除账户和所有相关数据"
msgid "Delete API key"
msgstr "删除 API 密钥"
#. js-lingui-id: x2p4/4
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
msgid "Delete field"
msgstr ""
#. js-lingui-id: 4dpwsE
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
#~ msgid "Delete record"
@@ -1736,7 +1716,6 @@ msgstr "最早日期"
#: src/modules/views/view-picker/components/ViewPickerOptionDropdown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Edit"
msgstr "编辑"
@@ -1819,8 +1798,8 @@ msgstr "电子邮件验证"
#. js-lingui-id: TBv/iZ
#: src/modules/auth/components/VerifyEmailEffect.tsx
#~ msgid "Email verification failed."
#~ msgstr "电子邮件验证失败。"
msgid "Email verification failed."
msgstr "电子邮件验证失败。"
#. js-lingui-id: svTijF
#: src/modules/auth/sign-in-up/hooks/useHandleResendEmailVerificationToken.ts
@@ -1968,11 +1947,6 @@ msgstr "删除 SSO 身份提供商时出错"
msgid "Error editing SSO Identity Provider"
msgstr "编辑 SSO 身份提供商时出错"
#. js-lingui-id: 2GvilU
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Error loading message"
msgstr ""
#. js-lingui-id: bj7nh3
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error regenerating api key: {err}"
@@ -2046,7 +2020,7 @@ msgid "Existing objects"
msgstr "现有对象"
#. js-lingui-id: ydzS9x
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit"
msgstr ""
@@ -2056,7 +2030,7 @@ msgstr ""
#~ msgstr "退出全屏"
#. js-lingui-id: XB4onr
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit import flow"
msgstr ""
@@ -2358,11 +2332,6 @@ msgstr "全局"
msgid "Go to Companies"
msgstr ""
#. js-lingui-id: dHvI9O
#: src/modules/workflow/components/OverrideWorkflowDraftConfirmationModal.tsx
msgid "Go to Draft"
msgstr ""
#. js-lingui-id: BQE4ob
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Go to Notes"
@@ -2386,9 +2355,7 @@ msgid "Go to runs"
msgstr "前往运行"
#. js-lingui-id: mT57+Q
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Go to Settings"
msgstr "转到设置"
@@ -2471,7 +2438,6 @@ msgstr "隐藏字段"
#. js-lingui-id: vLyv1R
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Hide"
msgstr "隐藏"
@@ -2557,11 +2523,6 @@ msgstr "身份提供商"
msgid "Identity Provider Metadata XML"
msgstr "身份提供商元数据 XML"
#. js-lingui-id: ZfP/Ap
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
msgid "If this is unexpected, please verify your settings."
msgstr ""
#. js-lingui-id: j843N3
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "If youve lost this key, you can regenerate it, but be aware that any script using this key will need to be updated. Please type\"{confirmationValue}\" to confirm."
@@ -2788,11 +2749,6 @@ msgstr "意大利语"
msgid "Japanese"
msgstr "日语"
#. js-lingui-id: VIK/N0
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
msgid "JSON keys cannot contain spaces"
msgstr ""
#. js-lingui-id: OGXtL8
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -2862,16 +2818,6 @@ msgstr "最近7天(最旧 → 最新)"
msgid "Last Name"
msgstr "姓氏"
#. js-lingui-id: s0kiVA
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
msgid "Last payment failed. Please contact your admin."
msgstr ""
#. js-lingui-id: 3u/3zO
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
msgid "Last payment failed. Please update your billing details."
msgstr ""
#. js-lingui-id: wL3cK8
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
msgid "Latest"
@@ -2924,11 +2870,6 @@ msgstr "链接已复制到剪贴板"
msgid "Listings"
msgstr "列表"
#. js-lingui-id: Nx262D
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Loading csv ... "
msgstr ""
#. js-lingui-id: s1MstR
#: src/modules/settings/admin-panel/health-status/components/WorkerMetricsGraph.tsx
msgid "Loading metrics data..."
@@ -2936,7 +2877,6 @@ msgstr "正在加载指标数据……"
#. js-lingui-id: Z3FXyt
#: src/modules/settings/admin-panel/components/SettingsAdminVersionDisplay.tsx
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Loading..."
msgstr ""
@@ -3032,11 +2972,6 @@ msgstr "最大"
msgid "Members"
msgstr "成员"
#. js-lingui-id: U15XwX
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Message not found"
msgstr ""
#. js-lingui-id: elpx6r
#: src/modules/settings/admin-panel/health-status/components/ConnectedAccountHealthStatus.tsx
msgid "Message Sync"
@@ -3090,13 +3025,11 @@ msgstr "更多选项"
#. js-lingui-id: iSLA/r
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Move left"
msgstr "左移"
#. js-lingui-id: Ubl2by
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Move right"
msgstr "右移"
@@ -3284,11 +3217,6 @@ msgstr "无连接账户"
msgid "No country"
msgstr "无国家"
#. js-lingui-id: 7tCnBa
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
msgid "No Data Available for Remote Table"
msgstr ""
#. js-lingui-id: pxvJ9B
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data containing errors"
@@ -3304,11 +3232,6 @@ msgstr ""
msgid "No free workflow executions left. End trial period and activate your billing to continue."
msgstr ""
#. js-lingui-id: pxYUeX
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
msgid "No free workflow executions left. Please contact your admin."
msgstr ""
#. js-lingui-id: OcMef3
#: src/modules/settings/admin-panel/components/SettingsAdminVersionContainer.tsx
msgid "No latest version found"
@@ -3387,7 +3310,6 @@ msgstr "未找到记录"
#. js-lingui-id: Ev2r9A
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCountrySelect.tsx
msgid "No results"
msgstr ""
@@ -3460,16 +3382,6 @@ msgstr "非空"
msgid "Not Found"
msgstr "未找到"
#. js-lingui-id: 51G4/+
#: src/modules/activities/calendar/components/CalendarEventNotSharedContent.tsx
msgid "Not shared"
msgstr ""
#. js-lingui-id: uzFo/5
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessageBodyNotShared.tsx
msgid "Not shared by {notSharedByFullName}"
msgstr ""
#. js-lingui-id: hZWthZ
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Not synced"
@@ -3844,8 +3756,6 @@ msgstr "记录图像"
#. js-lingui-id: K6/7kH
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
msgid "Record label"
msgstr "记录标签"
@@ -3940,11 +3850,6 @@ msgstr "从收藏中移除"
msgid "Remove option"
msgstr "移除选项"
#. js-lingui-id: Ee8JBW
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
msgid "Reorder field"
msgstr ""
#. js-lingui-id: OfhWJH
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/modules/views/components/ViewBarDetails.tsx
@@ -4116,22 +4021,16 @@ msgstr "搜索索引..."
msgid "Search config variables"
msgstr ""
#. js-lingui-id: WLfEv1
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCountrySelect.tsx
msgid "Search country"
msgstr ""
#. js-lingui-id: sSARNY
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
msgid "Search currency"
msgstr ""
#. js-lingui-id: 7taA9j
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: 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/ObjectFilterDropdownFieldSelect.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterFieldSelectSearchInput.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterDropdownFieldSelectMenu.tsx
msgid "Search fields"
msgstr "搜索字段"
@@ -4281,8 +4180,8 @@ 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 ""
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
@@ -4555,11 +4454,6 @@ msgstr "主题和元数据"
msgid "Subject and metadata will be shared with your team."
msgstr "主题和元数据将与您的团队分享。"
#. js-lingui-id: DvSvG9
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessageForbidden.tsx
msgid "Subject not shared"
msgstr ""
#. js-lingui-id: J9ylmk
#: src/modules/settings/accounts/components/SettingsAccountsMessageVisibilityCard.tsx
msgid "Subject, body and attachments will be shared with your team."
@@ -4570,11 +4464,6 @@ msgstr "主题、正文和附件将与您的团队分享。"
msgid "Submit"
msgstr ""
#. js-lingui-id: EDl9kS
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Subscribe"
msgstr ""
#. js-lingui-id: uvY7Wk
#: src/modules/billing/hooks/useEndSubscriptionTrialPeriod.ts
msgid "Subscription activated."
@@ -4905,7 +4794,6 @@ msgstr "时间戳和参与者将与您的团队分享。"
#. js-lingui-id: ecUA8p
#: src/modules/settings/admin-panel/health-status/constants/WorkerQueueMetricsSelectOptions.ts
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Today"
msgstr "今天"
@@ -4914,11 +4802,6 @@ msgstr "今天"
msgid "Toggle all object permissions"
msgstr ""
#. js-lingui-id: BRMXj0
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Tomorrow"
msgstr ""
#. js-lingui-id: vb0Q0/
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
#~ msgid "Total Users"
@@ -4929,16 +4812,6 @@ msgstr ""
msgid "Track your monthly workflow credit consumption."
msgstr ""
#. js-lingui-id: wN0jHF
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Trial expired. Please contact your admin"
msgstr ""
#. js-lingui-id: y985qL
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Trial expired. Please update your billing details."
msgstr ""
#. js-lingui-id: PiUt3N
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
@@ -5005,12 +4878,6 @@ msgstr "未知错误"
msgid "Unlimited contacts"
msgstr "无限联系人"
#. js-lingui-id: EkH9pt
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Update"
msgstr ""
#. js-lingui-id: +b7T3G
#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx
msgid "Updated"
@@ -5203,21 +5070,6 @@ msgstr "可见组"
msgid "Visualize"
msgstr "可视化"
#. js-lingui-id: zFSQY3
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was created by"
msgstr ""
#. js-lingui-id: uHpu1c
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was deleted by"
msgstr ""
#. js-lingui-id: S0enzB
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was restored by"
msgstr ""
#. js-lingui-id: id6ein
#: src/modules/ui/input/components/ImageInput.tsx
msgid "We support your square PNGs, JPEGs and GIFs under 10MB"
@@ -5365,11 +5217,6 @@ msgstr "撰写秘密"
msgid "yes"
msgstr "是"
#. js-lingui-id: y/0uwd
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Yesterday"
msgstr ""
#. js-lingui-id: qsAug0
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
#~ msgid "You are already importing this column."
@@ -5430,16 +5277,6 @@ msgstr "您在应用上显示的姓名"
msgid "Your Workspace"
msgstr "您的工作区"
#. js-lingui-id: oC6WBs
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Your workspace doesn't have an active subscription."
msgstr ""
#. js-lingui-id: QBTEtW
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Your workspace doesn't have an active subscription. Please contact your admin."
msgstr ""
#. js-lingui-id: RhNbPE
#: src/pages/settings/SettingsBilling.tsx
msgid "Your workspace will be disabled"
+9 -172
View File
@@ -93,11 +93,6 @@ msgstr "{apiKeyName} API 密鑰"
msgid "{contextStoreNumberOfSelectedRecords} selected"
msgstr "{contextStoreNumberOfSelectedRecords} 已選取"
#. js-lingui-id: wapGcj
#: src/modules/auth/components/VerifyEmailEffect.tsx
msgid "{message}"
msgstr ""
#. js-lingui-id: 6j5rE1
#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowRecordAgnosticActions.tsx
#: src/modules/action-menu/actions/record-actions/run-workflow-actions/hooks/useRunWorkflowRecordActions.tsx
@@ -109,11 +104,6 @@ msgstr "{name}"
msgid "{workspaceMemberName} will be unassigned from the following role:"
msgstr "{workspaceMemberName} 將不再被指派以下角色:"
#. js-lingui-id: NNQszp
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "⚠️ Please verify the auto mapping of the columns. You can also ignore or change the mapping of the columns."
msgstr ""
#. js-lingui-id: YT0WJ4
#: src/pages/onboarding/ChooseYourPlan.tsx
#~ msgid "1 000 workflow node executions"
@@ -627,7 +617,7 @@ msgid "Are you sure you want to delete this record? It can be recovered from the
msgstr "您確定要刪除此記錄嗎? 它可以從命令菜單中恢復。"
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Are you sure? Your current information will not be saved."
msgstr ""
@@ -808,7 +798,7 @@ msgstr "無法更改標準物件的 API 名稱"
#: 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/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
msgid "Cancel"
msgstr "取消"
@@ -1257,11 +1247,6 @@ msgstr "創建您的工作區"
msgid "Created"
msgstr "已創建"
#. js-lingui-id: R3PLzn
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
msgid "currencies"
msgstr ""
#. js-lingui-id: 6YzXhC
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
msgid "Current value from server environment. Set a custom value to override."
@@ -1498,11 +1483,6 @@ msgstr "刪除帳戶及所有相關數據"
msgid "Delete API key"
msgstr "刪除 API 密鑰"
#. js-lingui-id: x2p4/4
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
msgid "Delete field"
msgstr ""
#. js-lingui-id: 4dpwsE
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
#~ msgid "Delete record"
@@ -1736,7 +1716,6 @@ msgstr "最早日期"
#: src/modules/views/view-picker/components/ViewPickerOptionDropdown.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Edit"
msgstr "編輯"
@@ -1819,8 +1798,8 @@ msgstr "電子郵件驗證"
#. js-lingui-id: TBv/iZ
#: src/modules/auth/components/VerifyEmailEffect.tsx
#~ msgid "Email verification failed."
#~ msgstr "電子郵件驗證失敗。"
msgid "Email verification failed."
msgstr "電子郵件驗證失敗。"
#. js-lingui-id: svTijF
#: src/modules/auth/sign-in-up/hooks/useHandleResendEmailVerificationToken.ts
@@ -1968,11 +1947,6 @@ msgstr "刪除 SSO 身份提供者時出錯"
msgid "Error editing SSO Identity Provider"
msgstr "編輯 SSO 身份提供者時出錯"
#. js-lingui-id: 2GvilU
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Error loading message"
msgstr ""
#. js-lingui-id: bj7nh3
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "Error regenerating api key: {err}"
@@ -2046,7 +2020,7 @@ msgid "Existing objects"
msgstr "現有對象"
#. js-lingui-id: ydzS9x
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit"
msgstr ""
@@ -2056,7 +2030,7 @@ msgstr ""
#~ msgstr "退出全螢幕"
#. js-lingui-id: XB4onr
#: src/modules/spreadsheet-import/components/SpreadSheetImportModalCloseButton.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit import flow"
msgstr ""
@@ -2358,11 +2332,6 @@ msgstr "全局"
msgid "Go to Companies"
msgstr ""
#. js-lingui-id: dHvI9O
#: src/modules/workflow/components/OverrideWorkflowDraftConfirmationModal.tsx
msgid "Go to Draft"
msgstr ""
#. js-lingui-id: BQE4ob
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Go to Notes"
@@ -2386,9 +2355,7 @@ msgid "Go to runs"
msgstr "前往運行"
#. js-lingui-id: mT57+Q
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Go to Settings"
msgstr "前往設置"
@@ -2471,7 +2438,6 @@ msgstr "隱藏字段"
#. js-lingui-id: vLyv1R
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Hide"
msgstr "隱藏"
@@ -2557,11 +2523,6 @@ msgstr "身份提供者"
msgid "Identity Provider Metadata XML"
msgstr "身份提供者元數據 XML"
#. js-lingui-id: ZfP/Ap
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
msgid "If this is unexpected, please verify your settings."
msgstr ""
#. js-lingui-id: j843N3
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "If youve lost this key, you can regenerate it, but be aware that any script using this key will need to be updated. Please type\"{confirmationValue}\" to confirm."
@@ -2788,11 +2749,6 @@ msgstr "意大利語"
msgid "Japanese"
msgstr "日語"
#. js-lingui-id: VIK/N0
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
msgid "JSON keys cannot contain spaces"
msgstr ""
#. js-lingui-id: OGXtL8
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -2862,16 +2818,6 @@ msgstr "最近7天(最早 → 最新)"
msgid "Last Name"
msgstr "姓氏"
#. js-lingui-id: s0kiVA
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
msgid "Last payment failed. Please contact your admin."
msgstr ""
#. js-lingui-id: 3u/3zO
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
msgid "Last payment failed. Please update your billing details."
msgstr ""
#. js-lingui-id: wL3cK8
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
msgid "Latest"
@@ -2924,11 +2870,6 @@ msgstr "鏈接已複製到剪貼板"
msgid "Listings"
msgstr "列表"
#. js-lingui-id: Nx262D
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Loading csv ... "
msgstr ""
#. js-lingui-id: s1MstR
#: src/modules/settings/admin-panel/health-status/components/WorkerMetricsGraph.tsx
msgid "Loading metrics data..."
@@ -2936,7 +2877,6 @@ msgstr "正在加載數據指標……"
#. js-lingui-id: Z3FXyt
#: src/modules/settings/admin-panel/components/SettingsAdminVersionDisplay.tsx
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Loading..."
msgstr ""
@@ -3032,11 +2972,6 @@ msgstr "最大"
msgid "Members"
msgstr "成員"
#. js-lingui-id: U15XwX
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Message not found"
msgstr ""
#. js-lingui-id: elpx6r
#: src/modules/settings/admin-panel/health-status/components/ConnectedAccountHealthStatus.tsx
msgid "Message Sync"
@@ -3090,13 +3025,11 @@ msgstr "更多選項"
#. js-lingui-id: iSLA/r
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Move left"
msgstr "向左移動"
#. js-lingui-id: Ubl2by
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
msgid "Move right"
msgstr "向右移動"
@@ -3284,11 +3217,6 @@ msgstr "無連接帳戶"
msgid "No country"
msgstr "無國家"
#. js-lingui-id: 7tCnBa
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
msgid "No Data Available for Remote Table"
msgstr ""
#. js-lingui-id: pxvJ9B
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data containing errors"
@@ -3304,11 +3232,6 @@ msgstr ""
msgid "No free workflow executions left. End trial period and activate your billing to continue."
msgstr ""
#. js-lingui-id: pxYUeX
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
msgid "No free workflow executions left. Please contact your admin."
msgstr ""
#. js-lingui-id: OcMef3
#: src/modules/settings/admin-panel/components/SettingsAdminVersionContainer.tsx
msgid "No latest version found"
@@ -3387,7 +3310,6 @@ msgstr "未找到記錄"
#. js-lingui-id: Ev2r9A
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCountrySelect.tsx
msgid "No results"
msgstr ""
@@ -3460,16 +3382,6 @@ msgstr "非空"
msgid "Not Found"
msgstr "未找到"
#. js-lingui-id: 51G4/+
#: src/modules/activities/calendar/components/CalendarEventNotSharedContent.tsx
msgid "Not shared"
msgstr ""
#. js-lingui-id: uzFo/5
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessageBodyNotShared.tsx
msgid "Not shared by {notSharedByFullName}"
msgstr ""
#. js-lingui-id: hZWthZ
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Not synced"
@@ -3844,8 +3756,6 @@ msgstr "記錄圖像"
#. js-lingui-id: K6/7kH
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectIdentifiersForm.tsx
msgid "Record label"
msgstr "記錄標籤"
@@ -3940,11 +3850,6 @@ msgstr "從收藏中移除"
msgid "Remove option"
msgstr "移除選項"
#. js-lingui-id: Ee8JBW
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
msgid "Reorder field"
msgstr ""
#. js-lingui-id: OfhWJH
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
#: src/modules/views/components/ViewBarDetails.tsx
@@ -4116,22 +4021,16 @@ msgstr "搜索索引..."
msgid "Search config variables"
msgstr ""
#. js-lingui-id: WLfEv1
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCountrySelect.tsx
msgid "Search country"
msgstr ""
#. js-lingui-id: sSARNY
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
msgid "Search currency"
msgstr ""
#. js-lingui-id: 7taA9j
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: 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/ObjectFilterDropdownFieldSelect.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterFieldSelectSearchInput.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterDropdownFieldSelectMenu.tsx
msgid "Search fields"
msgstr "搜索字段"
@@ -4281,8 +4180,8 @@ 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 ""
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
@@ -4555,11 +4454,6 @@ msgstr "主題和元數據"
msgid "Subject and metadata will be shared with your team."
msgstr "主題和元數據將與您的團隊共享。"
#. js-lingui-id: DvSvG9
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessageForbidden.tsx
msgid "Subject not shared"
msgstr ""
#. js-lingui-id: J9ylmk
#: src/modules/settings/accounts/components/SettingsAccountsMessageVisibilityCard.tsx
msgid "Subject, body and attachments will be shared with your team."
@@ -4570,11 +4464,6 @@ msgstr "主題、正文和附件將與您的團隊共享。"
msgid "Submit"
msgstr ""
#. js-lingui-id: EDl9kS
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Subscribe"
msgstr ""
#. js-lingui-id: uvY7Wk
#: src/modules/billing/hooks/useEndSubscriptionTrialPeriod.ts
msgid "Subscription activated."
@@ -4905,7 +4794,6 @@ msgstr "時間戳和參與者將與您的團隊共享。"
#. js-lingui-id: ecUA8p
#: src/modules/settings/admin-panel/health-status/constants/WorkerQueueMetricsSelectOptions.ts
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Today"
msgstr "今天"
@@ -4914,11 +4802,6 @@ msgstr "今天"
msgid "Toggle all object permissions"
msgstr ""
#. js-lingui-id: BRMXj0
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Tomorrow"
msgstr ""
#. js-lingui-id: vb0Q0/
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
#~ msgid "Total Users"
@@ -4929,16 +4812,6 @@ msgstr ""
msgid "Track your monthly workflow credit consumption."
msgstr ""
#. js-lingui-id: wN0jHF
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Trial expired. Please contact your admin"
msgstr ""
#. js-lingui-id: y985qL
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Trial expired. Please update your billing details."
msgstr ""
#. js-lingui-id: PiUt3N
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
@@ -5005,12 +4878,6 @@ msgstr "未知錯誤"
msgid "Unlimited contacts"
msgstr "無限聯繫人"
#. js-lingui-id: EkH9pt
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
msgid "Update"
msgstr ""
#. js-lingui-id: +b7T3G
#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx
msgid "Updated"
@@ -5203,21 +5070,6 @@ msgstr "可見組"
msgid "Visualize"
msgstr "可視化"
#. js-lingui-id: zFSQY3
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was created by"
msgstr ""
#. js-lingui-id: uHpu1c
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was deleted by"
msgstr ""
#. js-lingui-id: S0enzB
#: src/modules/activities/timeline-activities/rows/main-object/components/EventRowMainObject.tsx
msgid "was restored by"
msgstr ""
#. js-lingui-id: id6ein
#: src/modules/ui/input/components/ImageInput.tsx
msgid "We support your square PNGs, JPEGs and GIFs under 10MB"
@@ -5365,11 +5217,6 @@ msgstr "寫入秘鑰"
msgid "yes"
msgstr "是"
#. js-lingui-id: y/0uwd
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
msgid "Yesterday"
msgstr ""
#. js-lingui-id: qsAug0
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
#~ msgid "You are already importing this column."
@@ -5430,16 +5277,6 @@ msgstr "您的名字將如何在應用程式上顯示"
msgid "Your Workspace"
msgstr "您的工作區"
#. js-lingui-id: oC6WBs
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Your workspace doesn't have an active subscription."
msgstr ""
#. js-lingui-id: QBTEtW
#: src/modules/information-banner/components/billing/InformationBannerNoBillingSubscription.tsx
msgid "Your workspace doesn't have an active subscription. Please contact your admin."
msgstr ""
#. js-lingui-id: RhNbPE
#: src/pages/settings/SettingsBilling.tsx
msgid "Your workspace will be disabled"
@@ -1,17 +0,0 @@
import { Locale } from 'date-fns';
import { enUS } from 'date-fns/locale';
import { APP_LOCALES } from 'twenty-shared/translations';
import { createState } from 'twenty-ui/utilities';
type DateLocaleState = {
locale?: keyof typeof APP_LOCALES;
localeCatalog: Locale;
};
export const dateLocaleState = createState<DateLocaleState>({
key: 'dateLocaleState',
defaultValue: {
locale: undefined,
localeCatalog: enUS,
},
});
@@ -1,14 +1,10 @@
import { ReactNode, useContext } from 'react';
import { ReactNode, useCallback, useContext, useState } from 'react';
import { createPortal } from 'react-dom';
import { ActionDisplay } from '@/action-menu/actions/display/components/ActionDisplay';
import { ActionConfigContext } from '@/action-menu/contexts/ActionConfigContext';
import { ActionMenuContext } from '@/action-menu/contexts/ActionMenuContext';
import { useCloseActionMenu } from '@/action-menu/hooks/useCloseActionMenu';
import { ConfirmationModal } from '@/ui/layout/modal/components/ConfirmationModal';
import { useModal } from '@/ui/layout/modal/hooks/useModal';
import { isModalOpenedComponentState } from '@/ui/layout/modal/states/isModalOpenedComponentState';
import { useRecoilComponentValueV2 } from '@/ui/utilities/state/component-state/hooks/useRecoilComponentValueV2';
import { ButtonAccent } from 'twenty-ui/input';
export type ActionModalProps = {
@@ -28,38 +24,34 @@ export const ActionModal = ({
confirmButtonAccent = 'danger',
isLoading = false,
}: ActionModalProps) => {
const { openModal } = useModal();
const [isOpen, setIsOpen] = useState(false);
const handleOpen = useCallback(() => {
setIsOpen(true);
}, []);
const { closeActionMenu } = useCloseActionMenu();
const handleConfirmClick = () => {
onConfirmClick();
closeActionMenu();
onConfirmClick();
setIsOpen(false);
};
const actionConfig = useContext(ActionConfigContext);
const { actionMenuType } = useContext(ActionMenuContext);
const modalId = `${actionConfig?.key}-action-modal-${actionMenuType}`;
const isModalOpened = useRecoilComponentValueV2(
isModalOpenedComponentState,
modalId,
);
if (!actionConfig) {
return null;
}
const handleClick = () => openModal(modalId);
return (
<>
<ActionDisplay onClick={handleClick} />
{isModalOpened &&
<ActionDisplay onClick={handleOpen} />
{isOpen &&
createPortal(
<ConfirmationModal
modalId={modalId}
isOpen={isOpen}
setIsOpen={setIsOpen}
title={title}
subtitle={subtitle}
onConfirmClick={handleConfirmClick}
@@ -180,10 +180,8 @@ export const DEFAULT_RECORD_ACTIONS_CONFIG: Record<
Icon: IconTrash,
accent: 'default',
isPinned: true,
shouldBeRegistered: ({ selectedRecord, isSoftDeleteFilterActive }) =>
isDefined(selectedRecord) &&
!selectedRecord.isRemote &&
!isSoftDeleteFilterActive,
shouldBeRegistered: ({ selectedRecord }) =>
isDefined(selectedRecord) && !selectedRecord.isRemote,
availableOn: [
ActionViewType.INDEX_PAGE_SINGLE_RECORD_SELECTION,
ActionViewType.SHOW_PAGE,

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