Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a771216f6e | ||
|
|
fe371eb4c4 | ||
|
|
1db92ce662 | ||
|
|
6bb0212a70 | ||
|
|
4a543a0e0a |
@@ -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
|
||||
}
|
||||
|
||||
@@ -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:
|
||||
|
||||
@@ -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:
|
||||
|
||||
@@ -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:
|
||||
|
||||
@@ -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:
|
||||
[
|
||||
|
||||
@@ -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:
|
||||
|
||||
@@ -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:
|
||||
|
||||
@@ -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:
|
||||
|
||||
@@ -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 }}"}'
|
||||
|
||||
@@ -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: ./
|
||||
@@ -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
@@ -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",
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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 "$@"
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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') +
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
process.env.NODE_TLS_REJECT_UNAUTHORIZED = '0';
|
||||
|
||||
module.exports = {
|
||||
schema:
|
||||
(process.env.REACT_APP_SERVER_BASE_URL ?? 'http://localhost:3000') +
|
||||
|
||||
@@ -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'];
|
||||
|
||||
@@ -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);
|
||||
});
|
||||
});
|
||||
+22
-28
@@ -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;
|
||||
|
||||
@@ -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 you’ve 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"
|
||||
|
||||
@@ -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 you’ve 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"
|
||||
|
||||
@@ -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 you’ve 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"
|
||||
|
||||
@@ -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 you’ve 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"
|
||||
|
||||
@@ -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 you’ve 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"
|
||||
|
||||
@@ -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 you’ve 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"
|
||||
|
||||
@@ -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 you’ve 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"
|
||||
|
||||
@@ -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 you’ve 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"
|
||||
|
||||
@@ -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 you’ve 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"
|
||||
|
||||
@@ -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 you’ve 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"
|
||||
|
||||
@@ -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 enregistrement | ||||